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

.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-61a29f5c-3db7-4ed0-b9f5-53b09a3c0c56 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(0, 0, 255, 1);
}








#s-61a29f5c-3db7-4ed0-b9f5-53b09a3c0c56 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-61a29f5c-3db7-4ed0-b9f5-53b09a3c0c56.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-44dd0483-de88-4968-b2b5-163be436fc1e {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-44dd0483-de88-4968-b2b5-163be436fc1e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-44dd0483-de88-4968-b2b5-163be436fc1e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-88606e7c-d683-465a-8e43-31186af717a6 {
  margin-left: auto;
margin-right: auto;
}

#s-88606e7c-d683-465a-8e43-31186af717a6 hr {
  border-top: 2px solid rgba(0, 15, 255, 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-4df13cdc-a08e-4051-8a6a-f0400a129137 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

#s-4df13cdc-a08e-4051-8a6a-f0400a129137 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(143, 206, 231, 1);
}

#s-4df13cdc-a08e-4051-8a6a-f0400a129137 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(0, 15, 255, 1);
  padding: 35px;
}

#s-4df13cdc-a08e-4051-8a6a-f0400a129137 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: #8fcee7;
}

#s-4df13cdc-a08e-4051-8a6a-f0400a129137 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(0, 15, 255, 1);
  border-top: 1px solid rgba(143, 206, 231, 1);
}

#s-4df13cdc-a08e-4051-8a6a-f0400a129137 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: #8fcee7;
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 29px;
}

#s-4df13cdc-a08e-4051-8a6a-f0400a129137 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 29px;
}
#s-95300882-04ff-4167-81ca-5d9685d9da09 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-95300882-04ff-4167-81ca-5d9685d9da09 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-95300882-04ff-4167-81ca-5d9685d9da09.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-8b5d7ffa-b01e-46f2-9e3c-dff42fa560bc {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-left: 10%;
padding-bottom: 50px;
padding-right: 10%;
}

#s-6cc8a288-aade-48c1-94aa-ce52d8aedcd2 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-6cc8a288-aade-48c1-94aa-ce52d8aedcd2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6cc8a288-aade-48c1-94aa-ce52d8aedcd2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-629a31dd-f4eb-48ed-89ca-3cf0e33fd699 {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-left: 10%;
padding-bottom: 50px;
padding-right: 10%;
}

#s-23129f87-ec08-4b35-a6b0-555c8ce9b4ed {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-23129f87-ec08-4b35-a6b0-555c8ce9b4ed > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-23129f87-ec08-4b35-a6b0-555c8ce9b4ed.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-77d6c0da-f2c7-434b-a144-3eb057feba0d {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-left: 10%;
padding-bottom: 50px;
padding-right: 10%;
}

#s-fc598cd3-54cd-4894-89f6-510aaa2891c2 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-fc598cd3-54cd-4894-89f6-510aaa2891c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fc598cd3-54cd-4894-89f6-510aaa2891c2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1b087850-2854-47af-a7f3-9633df0268f6 {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-left: 10%;
padding-bottom: 50px;
padding-right: 10%;
}

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

/* 
  Shopify base css adds display none to empty divs
  This causes items in the second column position to shift when
  the first column is empty. In order to overwrite that style,
  we have to manually set empty divs in the column to display block 
  so the whole element holds its positioning on published pages.
*/

.shg-row > div:empty {
  display: block;
}

#s-a04418ea-8ba2-440d-8758-f1f823326c3c {
  margin-left: auto;
margin-right: auto;
background-color: rgba(0, 15, 255, 1);
}

@media (min-width: 0px) {
[id="s-a04418ea-8ba2-440d-8758-f1f823326c3c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a04418ea-8ba2-440d-8758-f1f823326c3c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a04418ea-8ba2-440d-8758-f1f823326c3c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a04418ea-8ba2-440d-8758-f1f823326c3c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a9b7c4ce-7252-4893-a9e3-73d002c1ae7e {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-a9b7c4ce-7252-4893-a9e3-73d002c1ae7e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a9b7c4ce-7252-4893-a9e3-73d002c1ae7e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-rich-text {
  overflow-wrap: break-word;
}

.shg-rich-text img {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .shg-rich-text img {
    display: block;
    float: none !important;
    margin: 0 auto;
  }
}

.shg-default-text-content *:first-child {
  margin-top: 0;
}

.shg-default-text-content {
  text-align: left;
}

.shg-default-text-content p,
.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6,
.shg-default-text-content address,
.shg-default-text-content pre,
.shg-default-text-content div,
.shg-default-text-content ol,
.shg-default-text-content ul {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-family: inherit;
  font-style: normal;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-default-text-content a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

.shg-default-text-content strong,
.shg-default-text-content em {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.shg-default-text-content em {
  font-weight: inherit;
}

.shg-default-text-content strong {
  font-style: inherit;
  font-weight: 700;
}

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

.shg-default-text-content p {
  font-size: 1em;
  font-weight: ;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: ;
  font-family: ;
}

.shg-default-text-content h1 {
  font-size: 1.714em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.166;
  margin-top: 0.67em;
}

.shg-default-text-content h2 {
  font-size: 1.43em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 0.83em;
}

.shg-default-text-content h3 {
  font-size: 1.142em;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.5;
  margin-top: 1em;
}

.shg-default-text-content h4 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: -0.006em;
  line-height: 1.428;
  margin-top: 1.33em;
}

.shg-default-text-content h5 {
  font-size: 0.857em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.333;
  margin-top: 1.43em;
}

.shg-default-text-content h6 {
  font-size: 0.785em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.454;
  margin-top: 1.42em;
  text-transform: uppercase;
}

.shg-default-text-content ul {
  list-style: disc;
}

.shg-default-text-content ol {
  list-style: decimal;
}

.shg-default-text-content ul,
.shg-default-text-content ol {
  margin-block-end: 1em;
  margin-block-start: 1em;
  margin-bottom: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  margin-top: 0;
  padding-inline-start: 40px;
}

.shg-default-text-content li {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1;
  list-style: inherit;
  margin-top: 0.67em;
}

.shg-default-text-content pre {
  font-family: monospace;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 1em;
  white-space: pre-wrap;
  word-break: normal;
}

.shg-default-text-content address {
  font-size: 1em;
  font-style: italic;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0;
}

.shg-default-text-content div {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-bottom: 0;
  margin-top: 0.67em;
}

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-theme-text-content p {
  color: ;
  font-family: ;
  font-weight: ;
}

#s-16ad3284-fff1-4ca1-9277-1dcaa3d45521 {
  margin-top: 23px;
margin-left: 8%;
margin-bottom: 23px;
margin-right: 8%;
padding-top: 42px;
padding-left: 2%;
padding-bottom: 42px;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(143, 206, 231, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(0, 15, 255, 1);
}

#s-746cb0c1-8f7a-493b-b486-bae4287ed2d6 {
  margin-top: 100px;
margin-left: auto;
margin-bottom: 100px;
margin-right: auto;
min-height: 0px;
}








#s-746cb0c1-8f7a-493b-b486-bae4287ed2d6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-746cb0c1-8f7a-493b-b486-bae4287ed2d6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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;
  height: inherit;
  position: relative;
}

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
  margin-top: 13px;
margin-left: auto;
margin-bottom: 13px;
margin-right: auto;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
max-width: 200px;
aspect-ratio: 1706/1852;
text-align: center;
}



.shg-image-margin-container-s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
  margin-left: auto;
  margin-right: auto;
  margin-top: 13px;
  margin-bottom: 13px;
}

#s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1b9415b6-7702-4f9d-bf12-501f4444c513 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 200px;
  }



  img.s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shogun-image-content {
  
    align-items: center;
  
}

.s-1b9415b6-7702-4f9d-bf12-501f4444c513.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container {
      position: relative;
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
  
  
  
  
}

#s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1b9415b6-7702-4f9d-bf12-501f4444c513 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 200px;
  }



  img.s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shogun-image-content {
  
    align-items: center;
  
}

.s-1b9415b6-7702-4f9d-bf12-501f4444c513.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container {
      position: relative;
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

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

.shg-image-margin-container-s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
  
  
  
  
}

#s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1b9415b6-7702-4f9d-bf12-501f4444c513 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 200px;
  }



  img.s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shogun-image-content {
  
    align-items: center;
  
}

.s-1b9415b6-7702-4f9d-bf12-501f4444c513.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container {
      position: relative;
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

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

.shg-image-margin-container-s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
  
  
  
  
}

#s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1b9415b6-7702-4f9d-bf12-501f4444c513 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 200px;
  }



  img.s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shogun-image-content {
  
    align-items: center;
  
}

.s-1b9415b6-7702-4f9d-bf12-501f4444c513.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container {
      position: relative;
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

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

.shg-image-margin-container-s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
  
  
  
  
}

#s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1b9415b6-7702-4f9d-bf12-501f4444c513 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 200px;
  }



  img.s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-1b9415b6-7702-4f9d-bf12-501f4444c513 .shogun-image-content {
  
    align-items: center;
  
}

.s-1b9415b6-7702-4f9d-bf12-501f4444c513.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1b9415b6-7702-4f9d-bf12-501f4444c513 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container {
      position: relative;
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1b9415b6-7702-4f9d-bf12-501f4444c513 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 200px;
    }
  }

}
#s-75c66875-5fd7-4503-aa8a-eb119224345b {
  margin-left: auto;
margin-right: auto;
background-color: rgba(0, 15, 255, 1);
}

@media (min-width: 0px) {
[id="s-75c66875-5fd7-4503-aa8a-eb119224345b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-75c66875-5fd7-4503-aa8a-eb119224345b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-75c66875-5fd7-4503-aa8a-eb119224345b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-75c66875-5fd7-4503-aa8a-eb119224345b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d4749e2e-6852-44ee-83d7-5b4828cf201e {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-d4749e2e-6852-44ee-83d7-5b4828cf201e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d4749e2e-6852-44ee-83d7-5b4828cf201e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a0337883-f6d5-4b0f-83d8-43420fb75022 {
  margin-top: 23px;
margin-left: 8%;
margin-bottom: 23px;
margin-right: 8%;
padding-top: 42px;
padding-left: 2%;
padding-bottom: 42px;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(143, 206, 231, 1);
border-style: solid;
border-radius: 1px;
background-color: rgba(0, 15, 255, 1);
}

#s-549da1fa-d74b-4ee7-8bfb-404b5e977e06 {
  margin-top: 100px;
margin-left: auto;
margin-bottom: 100px;
margin-right: auto;
}








#s-549da1fa-d74b-4ee7-8bfb-404b5e977e06 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-549da1fa-d74b-4ee7-8bfb-404b5e977e06.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
  margin-top: 13px;
margin-left: auto;
margin-bottom: 13px;
margin-right: auto;
padding-top: 3px;
padding-left: 1%;
padding-bottom: 3px;
padding-right: 1%;
min-height: 0px;
max-width: 200px;
aspect-ratio: 1706/1852;
text-align: center;
}



.shg-image-margin-container-s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
  margin-left: auto;
  margin-right: auto;
  margin-top: 13px;
  margin-bottom: 13px;
}

#s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-407aeb75-59a1-4f3b-bc4d-bf630863558e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 0px;
    max-height: 200px;
  }



  img.s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image {
    
    
    min-height: 0px;
    max-height: 200px;
  }


.s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shogun-image-content {
  
    align-items: center;
  
}

.s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container {
      position: relative;
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 0px;
      max-width: 200px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
  
  
  
  
}

#s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-407aeb75-59a1-4f3b-bc4d-bf630863558e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 0px;
    max-height: 200px;
  }



  img.s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image {
    
    
    min-height: 0px;
    max-height: 200px;
  }


.s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shogun-image-content {
  
    align-items: center;
  
}

.s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container {
      position: relative;
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 0px;
      max-width: 200px;
    }
  }

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

.shg-image-margin-container-s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
  
  
  
  
}

#s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-407aeb75-59a1-4f3b-bc4d-bf630863558e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 0px;
    max-height: 200px;
  }



  img.s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image {
    
    
    min-height: 0px;
    max-height: 200px;
  }


.s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shogun-image-content {
  
    align-items: center;
  
}

.s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container {
      position: relative;
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 0px;
      max-width: 200px;
    }
  }

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

.shg-image-margin-container-s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
  
  
  
  
}

#s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-407aeb75-59a1-4f3b-bc4d-bf630863558e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 0px;
    max-height: 200px;
  }



  img.s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image {
    
    
    min-height: 0px;
    max-height: 200px;
  }


.s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shogun-image-content {
  
    align-items: center;
  
}

.s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container {
      position: relative;
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 0px;
      max-width: 200px;
    }
  }

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

.shg-image-margin-container-s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
  
  
  
  
}

#s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-407aeb75-59a1-4f3b-bc4d-bf630863558e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 0px;
    max-height: 200px;
  }



  img.s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image {
    
    
    min-height: 0px;
    max-height: 200px;
  }


.s-407aeb75-59a1-4f3b-bc4d-bf630863558e .shogun-image-content {
  
    align-items: center;
  
}

.s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container {
      position: relative;
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-407aeb75-59a1-4f3b-bc4d-bf630863558e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 0px;
      max-width: 200px;
    }
  }

}
#s-fb4487ba-f2b1-46f2-a070-09ba6c5e4f16 {
  margin-left: auto;
margin-right: auto;
background-color: rgba(0, 15, 255, 1);
}

@media (min-width: 0px) {
[id="s-fb4487ba-f2b1-46f2-a070-09ba6c5e4f16"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fb4487ba-f2b1-46f2-a070-09ba6c5e4f16"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fb4487ba-f2b1-46f2-a070-09ba6c5e4f16"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fb4487ba-f2b1-46f2-a070-09ba6c5e4f16"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-04b8061b-3de6-4aea-8203-c28e473f8c52 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-04b8061b-3de6-4aea-8203-c28e473f8c52 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-04b8061b-3de6-4aea-8203-c28e473f8c52.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-45a6eb62-1279-4e8f-b91b-e2ebb167be52 {
  margin-top: 23px;
margin-left: 8%;
margin-bottom: 23px;
margin-right: 8%;
padding-top: 42px;
padding-left: 2%;
padding-bottom: 42px;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(143, 206, 231, 1);
border-style: solid;
border-radius: 1px;
background-color: rgba(0, 15, 255, 1);
}

#s-44091d53-9e1c-4001-9a9e-f3d1fc847f42 {
  margin-top: 100px;
margin-left: auto;
margin-bottom: 100px;
margin-right: auto;
min-height: 50px;
}








#s-44091d53-9e1c-4001-9a9e-f3d1fc847f42 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-44091d53-9e1c-4001-9a9e-f3d1fc847f42.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
  margin-top: 13px;
margin-left: auto;
margin-bottom: 13px;
margin-right: auto;
padding-top: 3px;
padding-left: 1%;
padding-bottom: 3px;
padding-right: 1%;
min-height: 0px;
max-width: 200px;
aspect-ratio: 1706/1852;
text-align: center;
}



.shg-image-margin-container-s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
  margin-left: auto;
  margin-right: auto;
  margin-top: 13px;
  margin-bottom: 13px;
}

#s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 0px;
    max-height: 200px;
  }



  img.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image {
    
    
    min-height: 0px;
    max-height: 200px;
  }


.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shogun-image-content {
  
    align-items: center;
  
}

.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shg-align-container {
  display: flex;
  justify-content: center
}

.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container {
      position: relative;
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 0px;
      max-width: 200px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
  
  
  
  
}

#s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 0px;
    max-height: 200px;
  }



  img.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image {
    
    
    min-height: 0px;
    max-height: 200px;
  }


.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shogun-image-content {
  
    align-items: center;
  
}

.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shg-align-container {
  display: flex;
  justify-content: center
}

.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container {
      position: relative;
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 0px;
      max-width: 200px;
    }
  }

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

.shg-image-margin-container-s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
  
  
  
  
}

#s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 0px;
    max-height: 200px;
  }



  img.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image {
    
    
    min-height: 0px;
    max-height: 200px;
  }


.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shogun-image-content {
  
    align-items: center;
  
}

.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shg-align-container {
  display: flex;
  justify-content: center
}

.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container {
      position: relative;
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 0px;
      max-width: 200px;
    }
  }

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

.shg-image-margin-container-s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
  
  
  
  
}

#s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 0px;
    max-height: 200px;
  }



  img.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image {
    
    
    min-height: 0px;
    max-height: 200px;
  }


.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shogun-image-content {
  
    align-items: center;
  
}

.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shg-align-container {
  display: flex;
  justify-content: center
}

.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container {
      position: relative;
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 0px;
      max-width: 200px;
    }
  }

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

.shg-image-margin-container-s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
  
  
  
  
}

#s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 0px;
    max-height: 200px;
  }



  img.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image {
    
    
    min-height: 0px;
    max-height: 200px;
  }


.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 .shogun-image-content {
  
    align-items: center;
  
}

.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shg-align-container {
  display: flex;
  justify-content: center
}

.s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container {
      position: relative;
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-921ef32d-672a-4a9b-bbd6-f20b4a6a7528 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 0px;
      max-width: 200px;
    }
  }

}
#s-7165a4be-a342-4183-b75d-2009ba558bf1 {
  margin-left: auto;
margin-right: auto;
background-color: rgba(0, 15, 255, 1);
}

@media (min-width: 0px) {
[id="s-7165a4be-a342-4183-b75d-2009ba558bf1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7165a4be-a342-4183-b75d-2009ba558bf1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7165a4be-a342-4183-b75d-2009ba558bf1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7165a4be-a342-4183-b75d-2009ba558bf1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a1312b02-2505-49db-848d-c34b9c2f0a39 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-a1312b02-2505-49db-848d-c34b9c2f0a39 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a1312b02-2505-49db-848d-c34b9c2f0a39.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-83523d21-0b3f-48fd-bd71-363ed166d60d {
  margin-top: 23px;
margin-left: 8%;
margin-bottom: 23px;
margin-right: 8%;
padding-top: 42px;
padding-left: 2%;
padding-bottom: 42px;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(143, 206, 231, 1);
border-style: solid;
border-radius: 1px;
background-color: rgba(0, 15, 255, 1);
}

#s-c9099726-e7b9-42c9-a5da-1bf0b93cb9b5 {
  margin-left: auto;
margin-right: auto;
padding-top: 100px;
padding-bottom: 100px;
}








#s-c9099726-e7b9-42c9-a5da-1bf0b93cb9b5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c9099726-e7b9-42c9-a5da-1bf0b93cb9b5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
  margin-top: 13px;
margin-left: auto;
margin-bottom: 13px;
margin-right: auto;
padding-top: 3px;
padding-left: 1%;
padding-bottom: 3px;
padding-right: 1%;
min-height: 2px;
max-width: 200px;
aspect-ratio: 1706/1852;
text-align: center;
}



.shg-image-margin-container-s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
  margin-left: auto;
  margin-right: auto;
  margin-top: 13px;
  margin-bottom: 13px;
}

#s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 2px;
    max-height: 200px;
  }



  img.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image {
    
    
    min-height: 2px;
    max-height: 200px;
  }


.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shogun-image-content {
  
    align-items: center;
  
}

.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shg-align-container {
  display: flex;
  justify-content: center
}

.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container {
      position: relative;
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 2px;
      max-width: 200px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
  
  
  
  
}

#s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 2px;
    max-height: 200px;
  }



  img.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image {
    
    
    min-height: 2px;
    max-height: 200px;
  }


.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shogun-image-content {
  
    align-items: center;
  
}

.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shg-align-container {
  display: flex;
  justify-content: center
}

.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container {
      position: relative;
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 2px;
      max-width: 200px;
    }
  }

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

.shg-image-margin-container-s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
  
  
  
  
}

#s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 2px;
    max-height: 200px;
  }



  img.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image {
    
    
    min-height: 2px;
    max-height: 200px;
  }


.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shogun-image-content {
  
    align-items: center;
  
}

.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shg-align-container {
  display: flex;
  justify-content: center
}

.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container {
      position: relative;
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 2px;
      max-width: 200px;
    }
  }

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

.shg-image-margin-container-s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
  
  
  
  
}

#s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 2px;
    max-height: 200px;
  }



  img.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image {
    
    
    min-height: 2px;
    max-height: 200px;
  }


.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shogun-image-content {
  
    align-items: center;
  
}

.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shg-align-container {
  display: flex;
  justify-content: center
}

.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container {
      position: relative;
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 2px;
      max-width: 200px;
    }
  }

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

.shg-image-margin-container-s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
  
  
  
  
}

#s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 2px;
    max-height: 200px;
  }



  img.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image {
    
    
    min-height: 2px;
    max-height: 200px;
  }


.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 .shogun-image-content {
  
    align-items: center;
  
}

.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shg-align-container {
  display: flex;
  justify-content: center
}

.s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container {
      position: relative;
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-beba47b7-d370-4d6a-9f4d-c2a3676a8579 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 2px;
      max-width: 200px;
    }
  }

}
#s-fea399d9-9e22-4ff7-bdfa-e9c0b505829c {
  margin-left: auto;
margin-right: auto;
background-color: rgba(0, 15, 255, 1);
}

@media (min-width: 0px) {
[id="s-fea399d9-9e22-4ff7-bdfa-e9c0b505829c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fea399d9-9e22-4ff7-bdfa-e9c0b505829c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fea399d9-9e22-4ff7-bdfa-e9c0b505829c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fea399d9-9e22-4ff7-bdfa-e9c0b505829c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0447cbf6-43f9-4d98-9f55-75cc9a2b788f {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-0447cbf6-43f9-4d98-9f55-75cc9a2b788f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0447cbf6-43f9-4d98-9f55-75cc9a2b788f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ab33bbbe-efcb-40f1-93fe-46c3e37c7509 {
  margin-top: 23px;
margin-left: 8%;
margin-bottom: 23px;
margin-right: 8%;
padding-top: 42px;
padding-left: 2%;
padding-bottom: 42px;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(143, 206, 231, 1);
border-style: solid;
border-radius: 1px;
background-color: rgba(0, 15, 255, 1);
}

#s-d7361fce-4b94-46c3-a536-c567a513a6f3 {
  margin-left: auto;
margin-right: auto;
padding-top: 100px;
padding-bottom: 100px;
min-height: 50px;
}








#s-d7361fce-4b94-46c3-a536-c567a513a6f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d7361fce-4b94-46c3-a536-c567a513a6f3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-55223be3-0590-464e-a31b-33026d2043c1 {
  margin-top: 13px;
margin-left: auto;
margin-bottom: 13px;
margin-right: auto;
padding-top: 3px;
padding-left: 1%;
padding-bottom: 3px;
padding-right: 1%;
min-height: 0px;
max-width: 200px;
aspect-ratio: 1706/1852;
text-align: center;
}



.shg-image-margin-container-s-55223be3-0590-464e-a31b-33026d2043c1 {
  margin-left: auto;
  margin-right: auto;
  margin-top: 13px;
  margin-bottom: 13px;
}

#s-55223be3-0590-464e-a31b-33026d2043c1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-55223be3-0590-464e-a31b-33026d2043c1 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-55223be3-0590-464e-a31b-33026d2043c1 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-55223be3-0590-464e-a31b-33026d2043c1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-55223be3-0590-464e-a31b-33026d2043c1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 0px;
    max-height: 200px;
  }



  img.s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image {
    
    
    min-height: 0px;
    max-height: 200px;
  }


.s-55223be3-0590-464e-a31b-33026d2043c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-55223be3-0590-464e-a31b-33026d2043c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-55223be3-0590-464e-a31b-33026d2043c1 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container {
      position: relative;
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 0px;
      max-width: 200px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-55223be3-0590-464e-a31b-33026d2043c1 {
  
  
  
  
}

#s-55223be3-0590-464e-a31b-33026d2043c1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-55223be3-0590-464e-a31b-33026d2043c1 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-55223be3-0590-464e-a31b-33026d2043c1 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-55223be3-0590-464e-a31b-33026d2043c1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-55223be3-0590-464e-a31b-33026d2043c1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 0px;
    max-height: 200px;
  }



  img.s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image {
    
    
    min-height: 0px;
    max-height: 200px;
  }


.s-55223be3-0590-464e-a31b-33026d2043c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-55223be3-0590-464e-a31b-33026d2043c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-55223be3-0590-464e-a31b-33026d2043c1 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container {
      position: relative;
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 0px;
      max-width: 200px;
    }
  }

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

.shg-image-margin-container-s-55223be3-0590-464e-a31b-33026d2043c1 {
  
  
  
  
}

#s-55223be3-0590-464e-a31b-33026d2043c1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-55223be3-0590-464e-a31b-33026d2043c1 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-55223be3-0590-464e-a31b-33026d2043c1 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-55223be3-0590-464e-a31b-33026d2043c1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-55223be3-0590-464e-a31b-33026d2043c1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 0px;
    max-height: 200px;
  }



  img.s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image {
    
    
    min-height: 0px;
    max-height: 200px;
  }


.s-55223be3-0590-464e-a31b-33026d2043c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-55223be3-0590-464e-a31b-33026d2043c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-55223be3-0590-464e-a31b-33026d2043c1 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container {
      position: relative;
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 0px;
      max-width: 200px;
    }
  }

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

.shg-image-margin-container-s-55223be3-0590-464e-a31b-33026d2043c1 {
  
  
  
  
}

#s-55223be3-0590-464e-a31b-33026d2043c1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-55223be3-0590-464e-a31b-33026d2043c1 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-55223be3-0590-464e-a31b-33026d2043c1 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-55223be3-0590-464e-a31b-33026d2043c1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-55223be3-0590-464e-a31b-33026d2043c1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 0px;
    max-height: 200px;
  }



  img.s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image {
    
    
    min-height: 0px;
    max-height: 200px;
  }


.s-55223be3-0590-464e-a31b-33026d2043c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-55223be3-0590-464e-a31b-33026d2043c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-55223be3-0590-464e-a31b-33026d2043c1 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container {
      position: relative;
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 0px;
      max-width: 200px;
    }
  }

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

.shg-image-margin-container-s-55223be3-0590-464e-a31b-33026d2043c1 {
  
  
  
  
}

#s-55223be3-0590-464e-a31b-33026d2043c1 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-55223be3-0590-464e-a31b-33026d2043c1 .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-55223be3-0590-464e-a31b-33026d2043c1 .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-55223be3-0590-464e-a31b-33026d2043c1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-55223be3-0590-464e-a31b-33026d2043c1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 0px;
    max-height: 200px;
  }



  img.s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image {
    
    
    min-height: 0px;
    max-height: 200px;
  }


.s-55223be3-0590-464e-a31b-33026d2043c1 .shogun-image-content {
  
    align-items: center;
  
}

.s-55223be3-0590-464e-a31b-33026d2043c1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-55223be3-0590-464e-a31b-33026d2043c1 {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container {
      position: relative;
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-55223be3-0590-464e-a31b-33026d2043c1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 0px;
      max-width: 200px;
    }
  }

}
#s-50e7e84c-a123-4866-b29e-16db7b92a519 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

#s-50e7e84c-a123-4866-b29e-16db7b92a519 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(143, 206, 231, 1);
}

#s-50e7e84c-a123-4866-b29e-16db7b92a519 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(0, 15, 255, 1);
  padding: 35px;
}

#s-50e7e84c-a123-4866-b29e-16db7b92a519 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: #8fcee7;
}

#s-50e7e84c-a123-4866-b29e-16db7b92a519 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(0, 15, 255, 1);
  border-top: 1px solid rgba(143, 206, 231, 1);
}

#s-50e7e84c-a123-4866-b29e-16db7b92a519 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: #8fcee7;
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 29px;
}

#s-50e7e84c-a123-4866-b29e-16db7b92a519 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 29px;
}
#s-c4035de2-78fa-43bd-98a5-4e9bc3971fc3 {
  margin-left: auto;
margin-right: auto;
background-color: rgba(0, 15, 255, 1);
}

@media (min-width: 0px) {
[id="s-c4035de2-78fa-43bd-98a5-4e9bc3971fc3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c4035de2-78fa-43bd-98a5-4e9bc3971fc3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c4035de2-78fa-43bd-98a5-4e9bc3971fc3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c4035de2-78fa-43bd-98a5-4e9bc3971fc3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-80c0417e-28b0-4834-ba3f-d2e2f43765c9 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(0, 15, 255, 1);
}








#s-80c0417e-28b0-4834-ba3f-d2e2f43765c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-80c0417e-28b0-4834-ba3f-d2e2f43765c9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-401bf24c-aa8a-4189-bd06-758747f0e940 {
  margin-top: 23px;
margin-left: 8%;
margin-bottom: 23px;
margin-right: 8%;
padding-top: 42px;
padding-left: 2%;
padding-bottom: 42px;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(143, 206, 231, 1);
border-style: solid;
border-radius: 1px;
background-color: rgba(0, 15, 255, 1);
}

#s-ec0ebbd8-9d7e-49aa-a927-7ec44ad31c59 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(0, 15, 255, 1);
}








#s-ec0ebbd8-9d7e-49aa-a927-7ec44ad31c59 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ec0ebbd8-9d7e-49aa-a927-7ec44ad31c59.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
  margin-top: 13px;
margin-left: auto;
margin-bottom: 13px;
margin-right: auto;
padding-top: 3px;
padding-left: 1%;
padding-bottom: 3px;
padding-right: 1%;
min-height: 2px;
max-width: 265px;
aspect-ratio: 1706/1852;
text-align: center;
background-color: rgba(0, 15, 255, 1);
}



.shg-image-margin-container-s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
  margin-left: auto;
  margin-right: auto;
  margin-top: 13px;
  margin-bottom: 13px;
}

#s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 2px;
    max-height: 265px;
  }



  img.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image {
    
    
    min-height: 2px;
    max-height: 265px;
  }


.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shogun-image-content {
  
    align-items: center;
  
}

.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container {
      position: relative;
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 2px;
      max-width: 265px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
  
  
  
  
}

#s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 2px;
    max-height: 265px;
  }



  img.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image {
    
    
    min-height: 2px;
    max-height: 265px;
  }


.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shogun-image-content {
  
    align-items: center;
  
}

.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container {
      position: relative;
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 2px;
      max-width: 265px;
    }
  }

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

.shg-image-margin-container-s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
  
  
  
  
}

#s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 2px;
    max-height: 265px;
  }



  img.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image {
    
    
    min-height: 2px;
    max-height: 265px;
  }


.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shogun-image-content {
  
    align-items: center;
  
}

.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container {
      position: relative;
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 2px;
      max-width: 265px;
    }
  }

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

.shg-image-margin-container-s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
  
  
  
  
}

#s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 2px;
    max-height: 265px;
  }



  img.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image {
    
    
    min-height: 2px;
    max-height: 265px;
  }


.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shogun-image-content {
  
    align-items: center;
  
}

.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container {
      position: relative;
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 2px;
      max-width: 265px;
    }
  }

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

.shg-image-margin-container-s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
  
  
  
  
}

#s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shg-image-content-wrapper {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }

    #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shogun-image-link {
      aspect-ratio: 1706/1852;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 2px;
    max-height: 265px;
  }



  img.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image {
    
    
    min-height: 2px;
    max-height: 265px;
  }


.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc .shogun-image-content {
  
    align-items: center;
  
}

.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc {
      --shg-aspect-ratio: calc(1706/1852); 
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container {
      position: relative;
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bf8cf6a4-6e89-41ae-a0b8-4abd6d0809dc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 2px;
      max-width: 265px;
    }
  }

}
#s-13448877-080d-4c15-a170-44693e3300c3 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

#s-13448877-080d-4c15-a170-44693e3300c3 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(143, 206, 231, 1);
}

#s-13448877-080d-4c15-a170-44693e3300c3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(0, 15, 255, 1);
  padding: 35px;
}

#s-13448877-080d-4c15-a170-44693e3300c3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: #8fcee7;
}

#s-13448877-080d-4c15-a170-44693e3300c3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(0, 15, 255, 1);
  border-top: 1px solid rgba(143, 206, 231, 1);
}

#s-13448877-080d-4c15-a170-44693e3300c3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: #8fcee7;
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 29px;
}

#s-13448877-080d-4c15-a170-44693e3300c3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 29px;
}
#s-5236c591-38bb-46e2-b8a8-42a9f15e6023 {
  margin-top: 28px;
margin-left: auto;
margin-bottom: 28px;
margin-right: auto;
min-height: 50px;
background-color: rgba(0, 0, 255, 1);
}








#s-5236c591-38bb-46e2-b8a8-42a9f15e6023 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5236c591-38bb-46e2-b8a8-42a9f15e6023.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-53aef03f-757c-40b3-88ce-806865d82b5c {
  margin-left: 25%;
margin-right: 25%;
max-width: 1314px;
aspect-ratio: 4/3;
text-align: center;
}



.shg-image-margin-container-s-53aef03f-757c-40b3-88ce-806865d82b5c {
  margin-left: 25%;
  margin-right: 25%;
  
  
}

#s-53aef03f-757c-40b3-88ce-806865d82b5c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-53aef03f-757c-40b3-88ce-806865d82b5c .shg-image-content-wrapper {
      aspect-ratio: 4/3;
      min-width: 100%;
      height: auto;
    }

    #s-53aef03f-757c-40b3-88ce-806865d82b5c .shogun-image-link {
      aspect-ratio: 4/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53aef03f-757c-40b3-88ce-806865d82b5c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-53aef03f-757c-40b3-88ce-806865d82b5c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1314px;
  }



  img.s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image {
    
    
    
    max-height: 1314px;
  }


.s-53aef03f-757c-40b3-88ce-806865d82b5c .shogun-image-content {
  
    align-items: center;
  
}

.s-53aef03f-757c-40b3-88ce-806865d82b5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-53aef03f-757c-40b3-88ce-806865d82b5c {
      --shg-aspect-ratio: calc(4/3); 
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container {
      position: relative;
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1314px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-53aef03f-757c-40b3-88ce-806865d82b5c {
  
  
  
  
}

#s-53aef03f-757c-40b3-88ce-806865d82b5c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-53aef03f-757c-40b3-88ce-806865d82b5c .shg-image-content-wrapper {
      aspect-ratio: 4/3;
      min-width: 100%;
      height: auto;
    }

    #s-53aef03f-757c-40b3-88ce-806865d82b5c .shogun-image-link {
      aspect-ratio: 4/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53aef03f-757c-40b3-88ce-806865d82b5c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-53aef03f-757c-40b3-88ce-806865d82b5c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1314px;
  }



  img.s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image {
    
    
    
    max-height: 1314px;
  }


.s-53aef03f-757c-40b3-88ce-806865d82b5c .shogun-image-content {
  
    align-items: center;
  
}

.s-53aef03f-757c-40b3-88ce-806865d82b5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-53aef03f-757c-40b3-88ce-806865d82b5c {
      --shg-aspect-ratio: calc(4/3); 
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container {
      position: relative;
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1314px;
    }
  }

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

.shg-image-margin-container-s-53aef03f-757c-40b3-88ce-806865d82b5c {
  
  
  
  
}

#s-53aef03f-757c-40b3-88ce-806865d82b5c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-53aef03f-757c-40b3-88ce-806865d82b5c .shg-image-content-wrapper {
      aspect-ratio: 4/3;
      min-width: 100%;
      height: auto;
    }

    #s-53aef03f-757c-40b3-88ce-806865d82b5c .shogun-image-link {
      aspect-ratio: 4/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53aef03f-757c-40b3-88ce-806865d82b5c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-53aef03f-757c-40b3-88ce-806865d82b5c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1314px;
  }



  img.s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image {
    
    
    
    max-height: 1314px;
  }


.s-53aef03f-757c-40b3-88ce-806865d82b5c .shogun-image-content {
  
    align-items: center;
  
}

.s-53aef03f-757c-40b3-88ce-806865d82b5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-53aef03f-757c-40b3-88ce-806865d82b5c {
      --shg-aspect-ratio: calc(4/3); 
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container {
      position: relative;
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1314px;
    }
  }

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

.shg-image-margin-container-s-53aef03f-757c-40b3-88ce-806865d82b5c {
  
  
  
  
}

#s-53aef03f-757c-40b3-88ce-806865d82b5c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-53aef03f-757c-40b3-88ce-806865d82b5c .shg-image-content-wrapper {
      aspect-ratio: 4/3;
      min-width: 100%;
      height: auto;
    }

    #s-53aef03f-757c-40b3-88ce-806865d82b5c .shogun-image-link {
      aspect-ratio: 4/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53aef03f-757c-40b3-88ce-806865d82b5c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-53aef03f-757c-40b3-88ce-806865d82b5c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1314px;
  }



  img.s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image {
    
    
    
    max-height: 1314px;
  }


.s-53aef03f-757c-40b3-88ce-806865d82b5c .shogun-image-content {
  
    align-items: center;
  
}

.s-53aef03f-757c-40b3-88ce-806865d82b5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-53aef03f-757c-40b3-88ce-806865d82b5c {
      --shg-aspect-ratio: calc(4/3); 
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container {
      position: relative;
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1314px;
    }
  }

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

.shg-image-margin-container-s-53aef03f-757c-40b3-88ce-806865d82b5c {
  
  
  
  
}

#s-53aef03f-757c-40b3-88ce-806865d82b5c {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-53aef03f-757c-40b3-88ce-806865d82b5c .shg-image-content-wrapper {
      aspect-ratio: 4/3;
      min-width: 100%;
      height: auto;
    }

    #s-53aef03f-757c-40b3-88ce-806865d82b5c .shogun-image-link {
      aspect-ratio: 4/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53aef03f-757c-40b3-88ce-806865d82b5c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-53aef03f-757c-40b3-88ce-806865d82b5c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 1314px;
  }



  img.s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image {
    
    
    
    max-height: 1314px;
  }


.s-53aef03f-757c-40b3-88ce-806865d82b5c .shogun-image-content {
  
    align-items: center;
  
}

.s-53aef03f-757c-40b3-88ce-806865d82b5c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-53aef03f-757c-40b3-88ce-806865d82b5c {
      --shg-aspect-ratio: calc(4/3); 
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container {
      position: relative;
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53aef03f-757c-40b3-88ce-806865d82b5c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1314px;
    }
  }

}
#s-c8985083-cdf6-4407-87d1-471d21abb21a {
  margin-left: auto;
margin-right: auto;
background-color: rgba(0, 0, 255, 1);
}

@media (min-width: 0px) {
[id="s-c8985083-cdf6-4407-87d1-471d21abb21a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c8985083-cdf6-4407-87d1-471d21abb21a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-c8985083-cdf6-4407-87d1-471d21abb21a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c8985083-cdf6-4407-87d1-471d21abb21a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-c8985083-cdf6-4407-87d1-471d21abb21a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c8985083-cdf6-4407-87d1-471d21abb21a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-c8985083-cdf6-4407-87d1-471d21abb21a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

}

#s-3ab06cd9-097c-413a-9c6a-89d280315e2f {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-3ab06cd9-097c-413a-9c6a-89d280315e2f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3ab06cd9-097c-413a-9c6a-89d280315e2f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-972dd829-40df-4e31-860d-539219c361b6 {
  margin-top: 23px;
margin-left: 8%;
margin-bottom: 23px;
margin-right: 8%;
padding-top: 42px;
padding-left: 2%;
padding-bottom: 42px;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(143, 206, 231, 1);
border-style: solid;
border-radius: 1px;
background-color: rgba(0, 15, 255, 1);
}

#s-c7e808ed-a91c-41c7-8ed6-47355c401dc9 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

#s-c7e808ed-a91c-41c7-8ed6-47355c401dc9 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(143, 206, 231, 1);
}

#s-c7e808ed-a91c-41c7-8ed6-47355c401dc9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(0, 15, 255, 1);
  padding: 35px;
}

#s-c7e808ed-a91c-41c7-8ed6-47355c401dc9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: #8fcee7;
}

#s-c7e808ed-a91c-41c7-8ed6-47355c401dc9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(0, 15, 255, 1);
  border-top: 1px solid rgba(143, 206, 231, 1);
}

#s-c7e808ed-a91c-41c7-8ed6-47355c401dc9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: #8fcee7;
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 29px;
}

#s-c7e808ed-a91c-41c7-8ed6-47355c401dc9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 29px;
}
#s-a2d096d3-c00b-46bf-9fa9-e480797605bb {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-a2d096d3-c00b-46bf-9fa9-e480797605bb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a2d096d3-c00b-46bf-9fa9-e480797605bb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shogun-heading-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-82b8237d-f278-43f2-a4b4-e688b61b418a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 8%;
padding-bottom: 10px;
padding-right: 8%;
text-align: center;
background-color: rgba(255, 190, 252, 1);
}
@media (min-width: 1200px){#s-82b8237d-f278-43f2-a4b4-e688b61b418a {
  display: none;
}
#s-82b8237d-f278-43f2-a4b4-e688b61b418a, #wrap-s-82b8237d-f278-43f2-a4b4-e688b61b418a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-82b8237d-f278-43f2-a4b4-e688b61b418a {
  display: none;
}
#s-82b8237d-f278-43f2-a4b4-e688b61b418a, #wrap-s-82b8237d-f278-43f2-a4b4-e688b61b418a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-82b8237d-f278-43f2-a4b4-e688b61b418a {
  
}
}@media (max-width: 767px){#s-82b8237d-f278-43f2-a4b4-e688b61b418a {
  display: none;
}
#s-82b8237d-f278-43f2-a4b4-e688b61b418a, #wrap-s-82b8237d-f278-43f2-a4b4-e688b61b418a { display: none !important; }}
#s-82b8237d-f278-43f2-a4b4-e688b61b418a .shogun-heading-component h1 {
  color: rgba(255, 0, 4, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 150px;
  
  letter-spacing: -2px;
  
}



#s-dbb7f05f-367b-4b94-bb64-bb64cc494cad {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 8%;
padding-bottom: 10px;
padding-right: 8%;
text-align: center;
background-color: rgba(255, 190, 252, 1);
}
@media (min-width: 1200px){#s-dbb7f05f-367b-4b94-bb64-bb64cc494cad {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-dbb7f05f-367b-4b94-bb64-bb64cc494cad {
  display: none;
}
#s-dbb7f05f-367b-4b94-bb64-bb64cc494cad, #wrap-s-dbb7f05f-367b-4b94-bb64-bb64cc494cad { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-dbb7f05f-367b-4b94-bb64-bb64cc494cad {
  display: none;
}
#s-dbb7f05f-367b-4b94-bb64-bb64cc494cad, #wrap-s-dbb7f05f-367b-4b94-bb64-bb64cc494cad { display: none !important; }}@media (max-width: 767px){#s-dbb7f05f-367b-4b94-bb64-bb64cc494cad {
  display: none;
}
#s-dbb7f05f-367b-4b94-bb64-bb64cc494cad, #wrap-s-dbb7f05f-367b-4b94-bb64-bb64cc494cad { display: none !important; }}
#s-dbb7f05f-367b-4b94-bb64-bb64cc494cad .shogun-heading-component h1 {
  color: rgba(255, 0, 4, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 250px;
  
  letter-spacing: -2px;
  
}



#s-8a722a27-a99d-4821-b4e8-add62a796e9e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 8%;
padding-bottom: 10px;
padding-right: 8%;
text-align: center;
background-color: rgba(255, 190, 252, 1);
}
@media (min-width: 1200px){#s-8a722a27-a99d-4821-b4e8-add62a796e9e {
  display: none;
}
#s-8a722a27-a99d-4821-b4e8-add62a796e9e, #wrap-s-8a722a27-a99d-4821-b4e8-add62a796e9e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8a722a27-a99d-4821-b4e8-add62a796e9e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-8a722a27-a99d-4821-b4e8-add62a796e9e {
  display: none;
}
#s-8a722a27-a99d-4821-b4e8-add62a796e9e, #wrap-s-8a722a27-a99d-4821-b4e8-add62a796e9e { display: none !important; }}@media (max-width: 767px){#s-8a722a27-a99d-4821-b4e8-add62a796e9e {
  display: none;
}
#s-8a722a27-a99d-4821-b4e8-add62a796e9e, #wrap-s-8a722a27-a99d-4821-b4e8-add62a796e9e { display: none !important; }}
#s-8a722a27-a99d-4821-b4e8-add62a796e9e .shogun-heading-component h1 {
  color: rgba(255, 0, 4, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 150px;
  
  letter-spacing: 0px;
  
}



#s-5408c1bf-ee96-4f6e-b26f-fcccd7d891eb {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 8%;
padding-bottom: 10px;
padding-right: 8%;
text-align: center;
background-color: rgba(255, 172, 235, 1);
}
@media (min-width: 1200px){#s-5408c1bf-ee96-4f6e-b26f-fcccd7d891eb {
  display: none;
}
#s-5408c1bf-ee96-4f6e-b26f-fcccd7d891eb, #wrap-s-5408c1bf-ee96-4f6e-b26f-fcccd7d891eb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5408c1bf-ee96-4f6e-b26f-fcccd7d891eb {
  display: none;
}
#s-5408c1bf-ee96-4f6e-b26f-fcccd7d891eb, #wrap-s-5408c1bf-ee96-4f6e-b26f-fcccd7d891eb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5408c1bf-ee96-4f6e-b26f-fcccd7d891eb {
  display: none;
}
#s-5408c1bf-ee96-4f6e-b26f-fcccd7d891eb, #wrap-s-5408c1bf-ee96-4f6e-b26f-fcccd7d891eb { display: none !important; }}
#s-5408c1bf-ee96-4f6e-b26f-fcccd7d891eb .shogun-heading-component h1 {
  color: rgba(255, 0, 4, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 90px;
  
  
  
}



#s-8f1f5cfa-9203-4528-8e98-e333cf7030df {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 190, 252, 1);
}








#s-8f1f5cfa-9203-4528-8e98-e333cf7030df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8f1f5cfa-9203-4528-8e98-e333cf7030df.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1591b1b1-301f-49bc-b08f-2e4e6e64d575 {
  margin-top: 41px;
margin-left: 11%;
margin-bottom: 41px;
margin-right: 11%;
}

#s-9683890b-42cc-46af-b544-e9c6b26856f8 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-9683890b-42cc-46af-b544-e9c6b26856f8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9683890b-42cc-46af-b544-e9c6b26856f8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: ;
  font-family: ;
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-e876ef30-8bcf-40fb-8d7b-ec8231f3bae4 {
  margin-top: 16px;
margin-left: 11%;
margin-bottom: 38px;
margin-right: 11%;
padding-top: 10px;
padding-left: 22px;
padding-bottom: 12px;
padding-right: 22px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 0, 4, 1);
border-style: solid;
border-radius: 14px;
background-color: rgba(255, 0, 4, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 190, 252, 1);
}
#s-e876ef30-8bcf-40fb-8d7b-ec8231f3bae4:hover {background-color: rgba(241, 255, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-e876ef30-8bcf-40fb-8d7b-ec8231f3bae4:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e876ef30-8bcf-40fb-8d7b-ec8231f3bae4-root {
    text-align: left;
  }


#s-e876ef30-8bcf-40fb-8d7b-ec8231f3bae4.shg-btn {
  color: rgba(255, 190, 252, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e876ef30-8bcf-40fb-8d7b-ec8231f3bae4-root {
    text-align: left;
  }


#s-e876ef30-8bcf-40fb-8d7b-ec8231f3bae4.shg-btn {
  color: rgba(255, 190, 252, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e876ef30-8bcf-40fb-8d7b-ec8231f3bae4-root {
    text-align: left;
  }


#s-e876ef30-8bcf-40fb-8d7b-ec8231f3bae4.shg-btn {
  color: rgba(255, 190, 252, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e876ef30-8bcf-40fb-8d7b-ec8231f3bae4-root {
    text-align: left;
  }


#s-e876ef30-8bcf-40fb-8d7b-ec8231f3bae4.shg-btn {
  color: rgba(255, 190, 252, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e876ef30-8bcf-40fb-8d7b-ec8231f3bae4-root {
    text-align: left;
  }


#s-e876ef30-8bcf-40fb-8d7b-ec8231f3bae4.shg-btn {
  color: rgba(255, 190, 252, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-8510716c-3537-466f-be98-dc43d28ccfb9 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

#s-8510716c-3537-466f-be98-dc43d28ccfb9 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(143, 206, 231, 1);
}

#s-8510716c-3537-466f-be98-dc43d28ccfb9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(0, 15, 255, 1);
  padding: 35px;
}

#s-8510716c-3537-466f-be98-dc43d28ccfb9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: #8fcee7;
}

#s-8510716c-3537-466f-be98-dc43d28ccfb9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(0, 15, 255, 1);
  border-top: 1px solid rgba(143, 206, 231, 1);
}

#s-8510716c-3537-466f-be98-dc43d28ccfb9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: #8fcee7;
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 29px;
}

#s-8510716c-3537-466f-be98-dc43d28ccfb9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 29px;
}
#s-b33526a2-d8a2-4972-9d02-68834b7ab08c {
  margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 0px;
background-color: rgba(0, 15, 255, 1);
}

@media (min-width: 0px) {
[id="s-b33526a2-d8a2-4972-9d02-68834b7ab08c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b33526a2-d8a2-4972-9d02-68834b7ab08c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b33526a2-d8a2-4972-9d02-68834b7ab08c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b33526a2-d8a2-4972-9d02-68834b7ab08c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-516c4cd0-e618-446f-ac81-d92a74bcfb00 {
  margin-left: auto;
margin-right: auto;
min-height: 0px;
background-color: rgba(0, 15, 255, 1);
}








#s-516c4cd0-e618-446f-ac81-d92a74bcfb00 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-516c4cd0-e618-446f-ac81-d92a74bcfb00.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-33d04c8a-7fff-4305-ba19-5ce15b29b13f {
  margin-left: auto;
margin-right: auto;
min-height: 0px;
background-color: rgba(27, 255, 7, 1);
}








#s-33d04c8a-7fff-4305-ba19-5ce15b29b13f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-33d04c8a-7fff-4305-ba19-5ce15b29b13f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-db7c27ad-5eae-4082-a6ab-419689888b73 {
  margin-left: 10%;
margin-right: 10%;
padding-left: 12%;
padding-right: 12%;
}

#s-397562f7-32f0-4083-b222-a6b121209899 {
  border-style: solid;
margin-top: 28px;
margin-left: 0%;
margin-bottom: 42px;
margin-right: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 7px;
border-left-width: 7px;
border-bottom-width: 7px;
border-right-width: 7px;
border-color: rgba(7, 39, 255, 1);
border-radius: 27px;
background-color: rgba(7, 39, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(27, 255, 7, 1);
background-image: none;
hover-type: color;
}
#s-397562f7-32f0-4083-b222-a6b121209899:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-397562f7-32f0-4083-b222-a6b121209899:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-397562f7-32f0-4083-b222-a6b121209899-root {
    text-align: center;
  }


#s-397562f7-32f0-4083-b222-a6b121209899.shg-btn {
  color: rgba(27, 255, 7, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-397562f7-32f0-4083-b222-a6b121209899-root {
    text-align: center;
  }


#s-397562f7-32f0-4083-b222-a6b121209899.shg-btn {
  color: rgba(27, 255, 7, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-397562f7-32f0-4083-b222-a6b121209899-root {
    text-align: center;
  }


#s-397562f7-32f0-4083-b222-a6b121209899.shg-btn {
  color: rgba(27, 255, 7, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-397562f7-32f0-4083-b222-a6b121209899-root {
    text-align: center;
  }


#s-397562f7-32f0-4083-b222-a6b121209899.shg-btn {
  color: rgba(27, 255, 7, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-397562f7-32f0-4083-b222-a6b121209899-root {
    text-align: center;
  }


#s-397562f7-32f0-4083-b222-a6b121209899.shg-btn {
  color: rgba(27, 255, 7, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-868d31b5-0b94-4ccf-b348-3b2c8a2cc48a {
  margin-left: auto;
margin-right: auto;
min-height: 0px;
background-color: rgba(255, 190, 252, 1);
}








#s-868d31b5-0b94-4ccf-b348-3b2c8a2cc48a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-868d31b5-0b94-4ccf-b348-3b2c8a2cc48a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-81b3b235-548a-465f-8f5d-dd949f874b90 {
  margin-left: 10%;
margin-right: 10%;
padding-left: 12%;
padding-right: 12%;
}

#s-dcf76b2d-cf2a-42fa-8b8e-5937997e02fe {
  border-style: solid;
margin-top: 28px;
margin-left: 0%;
margin-bottom: 42px;
margin-right: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 7px;
border-left-width: 7px;
border-bottom-width: 7px;
border-right-width: 7px;
border-color: rgba(255, 0, 4, 1);
border-radius: 27px;
background-color: rgba(255, 0, 4, 1);
text-align: center;
text-decoration: none;
color: rgba(255, 190, 252, 1);
background-image: none;
hover-type: color;
}
#s-dcf76b2d-cf2a-42fa-8b8e-5937997e02fe:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-dcf76b2d-cf2a-42fa-8b8e-5937997e02fe:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-dcf76b2d-cf2a-42fa-8b8e-5937997e02fe-root {
    text-align: center;
  }


#s-dcf76b2d-cf2a-42fa-8b8e-5937997e02fe.shg-btn {
  color: rgba(255, 190, 252, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-dcf76b2d-cf2a-42fa-8b8e-5937997e02fe-root {
    text-align: center;
  }


#s-dcf76b2d-cf2a-42fa-8b8e-5937997e02fe.shg-btn {
  color: rgba(255, 190, 252, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-dcf76b2d-cf2a-42fa-8b8e-5937997e02fe-root {
    text-align: center;
  }


#s-dcf76b2d-cf2a-42fa-8b8e-5937997e02fe.shg-btn {
  color: rgba(255, 190, 252, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-dcf76b2d-cf2a-42fa-8b8e-5937997e02fe-root {
    text-align: center;
  }


#s-dcf76b2d-cf2a-42fa-8b8e-5937997e02fe.shg-btn {
  color: rgba(255, 190, 252, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-dcf76b2d-cf2a-42fa-8b8e-5937997e02fe-root {
    text-align: center;
  }


#s-dcf76b2d-cf2a-42fa-8b8e-5937997e02fe.shg-btn {
  color: rgba(255, 190, 252, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-3b45e236-e830-48ef-a15f-fb6f1f91f7e7 {
  margin-left: auto;
margin-right: auto;
}

#s-3b45e236-e830-48ef-a15f-fb6f1f91f7e7 hr {
  border-top: 2px solid rgba(0, 15, 255, 1);
}

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

#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-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:not(.shopify-section *):not([id^="wistia"]) {
  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;
}

@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;
  }
}
