.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.shg-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.shg-box-video-wrapper {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    position: fixed
    The element is removed from the normal document flow, and no space is created for the element in the page layout. 
    It is positioned relative to the initial containing block established by the viewport, 

    *
      except when one of its ancestors has a transform, perspective, or filter property set to something other than none 
      (see the CSS Transforms Spec), or the will-change property is set to transform, 
      in which case that ancestor behaves as the containing block. 
    *
  */

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#s-47bc1634-42df-4a9a-89eb-cf5852b15e8f {
  min-height: 50px;
}








#s-47bc1634-42df-4a9a-89eb-cf5852b15e8f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-47bc1634-42df-4a9a-89eb-cf5852b15e8f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.shogun-tabs.shogun-modern {
  padding-left: 10px;
  padding-right: 5px;
  overflow: hidden;
  transform: translate(0px, 0px);
}

.shogun-tabs li {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.shogun-tabs.shogun-modern li {
  width: 200px;
  height: 45px;
  margin: 0 5px 0 0;
}

.shogun-tabs.shogun-rounded li {
  margin-bottom: 0;
  float: left;
  box-sizing: border-box;
  margin-right: 2px;
  line-height: 1.42857143;
  position: relative;
  display: block;
  overflow: visible;
}

.shogun-tabs.shogun-rounded li .shogun-tab-box {
  padding: 10px 15px !important;
  border-radius: 4px 4px 0 0;
}

.shogun-tabs.shogun-modern li .shogun-tab-box {
  padding: 12px 5px !important;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .shogun-tabs.shogun-rounded li .shogun-tab-box {
    padding: 10px 5px !important;
    text-align: center;
  }

  .shogun-tabs.shogun-modern li .shogun-tab-box {
    padding: 12px 15px !important;
  }
}

.shogun-tabs.shogun-rounded .shogun-tab-box {
  border-bottom: none !important;
}

.shogun-tabs.shogun-modern li.active {
  z-index: 40;
}

.shogun-tabs.shogun-modern li .shogun-tab-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  content: "";
  transform: perspective(100px) rotateX(30deg);
  -webkit-transform: perspective(100px) rotateX(30deg);
}

.shogun-tabs.shogun-modern li.shogun-tab-active .shogun-tab-box::after {
  border-bottom: none !important;
  height: 46px;
}

.shogun-tabs-body {
  padding-top: 10px;
}

.shogun-tabs-body.shogun-rounded {
  margin-top: 0px !important;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.shogun-tabs-body > .shogun-tab-content {
  display: none;
}

.shogun-tabs-body > .shogun-tab-content.shogun-tab-active {
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
  display: block;
}

.shogun-tab-border {
  position: absolute;
}

.shogun-tab-title {
  white-space: nowrap;
  text-align: center;

  display: inline-block;
  width: 100%;
}

.shogun-tabs.shogun-modern .shogun-tab-title {
  /** Hack for Safari weird bug */
  /* https://stackoverflow.com/questions/18146511/bug-in-css3-rotatey-transition-on-safari */
  transform: translateZ(1000px);
}

#s-37486ad8-2cd9-46c2-a9f9-56d56a5c843a {
  background-color: rgba(253, 253, 253, 0.29);
opacity: 1;
}

#s-37486ad8-2cd9-46c2-a9f9-56d56a5c843a .shogun-tabs > li > .shogun-tab-box {
    background: none;
    border: none;
  }
  #s-37486ad8-2cd9-46c2-a9f9-56d56a5c843a .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: none;
    border: none;
  }
  #s-37486ad8-2cd9-46c2-a9f9-56d56a5c843a .shogun-tabs > li > .shogun-tab-box::after {
    background: rgba(0, 0, 0, 0.92);
    border: 4px solid rgba(70, 139, 219, 1);
  }
  #s-37486ad8-2cd9-46c2-a9f9-56d56a5c843a .shogun-tabs > li.shogun-tab-active > .shogun-tab-box::after  {
    background: rgba(255, 255, 255, 0.6);
    border: 4px solid rgba(10, 101, 207, 1);
  }
#s-37486ad8-2cd9-46c2-a9f9-56d56a5c843a .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(20, 128, 252, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 17px;
}

#s-37486ad8-2cd9-46c2-a9f9-56d56a5c843a .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(10, 101, 207, 1);
}

#s-37486ad8-2cd9-46c2-a9f9-56d56a5c843a .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 4px);
  left: 4px;
  bottom: -4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
}

#s-37486ad8-2cd9-46c2-a9f9-56d56a5c843a .shogun-tabs-body {
  margin-top: -4px;
  border-top: 4px solid rgba(10, 101, 207, 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-5a2c11cc-3cf3-4cf5-b940-04ea37ab3d6a {
  text-align: center;
}
@media (max-width: 767px){#s-5a2c11cc-3cf3-4cf5-b940-04ea37ab3d6a {
  display: none;
}
#s-5a2c11cc-3cf3-4cf5-b940-04ea37ab3d6a, #wrap-s-5a2c11cc-3cf3-4cf5-b940-04ea37ab3d6a { display: none !important; }}






  #s-5a2c11cc-3cf3-4cf5-b940-04ea37ab3d6a img.shogun-image {
    

    
    
    
  }


#s-5a2c11cc-3cf3-4cf5-b940-04ea37ab3d6a .shogun-image-content {
  
    align-items: center;
  
}

#s-05bd2e62-6ec6-451a-815f-cc4c93f19d01 {
  margin-top: 0px;
margin-bottom: 0px;
}


  #s-05bd2e62-6ec6-451a-815f-cc4c93f19d01 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0);
  }
  #s-05bd2e62-6ec6-451a-815f-cc4c93f19d01 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(0, 0, 0, 1);
    border: 1px solid #ddd;
  }
#s-05bd2e62-6ec6-451a-815f-cc4c93f19d01 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(10, 101, 207, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 17px;
}

#s-05bd2e62-6ec6-451a-815f-cc4c93f19d01 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(20, 128, 252, 1);
}

#s-05bd2e62-6ec6-451a-815f-cc4c93f19d01 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(0, 0, 0, 1);
}

#s-05bd2e62-6ec6-451a-815f-cc4c93f19d01 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

#s-139651b4-b7b9-4817-a1fc-6ff5ac99c59e {
  min-height: 50px;
}








#s-139651b4-b7b9-4817-a1fc-6ff5ac99c59e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-139651b4-b7b9-4817-a1fc-6ff5ac99c59e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2a6b6475-f526-485e-95e6-fc257473c45b {
  min-height: 50px;
}








#s-2a6b6475-f526-485e-95e6-fc257473c45b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2a6b6475-f526-485e-95e6-fc257473c45b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-513bc266-95bc-4d60-beb4-6544eb3f33ca {
  min-height: 50px;
}








#s-513bc266-95bc-4d60-beb4-6544eb3f33ca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-513bc266-95bc-4d60-beb4-6544eb3f33ca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

@media (min-width: 0px) {
[id="s-6e8a53ce-8095-4c61-baae-af4db5ca94fa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6e8a53ce-8095-4c61-baae-af4db5ca94fa"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-6e8a53ce-8095-4c61-baae-af4db5ca94fa"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-6e8a53ce-8095-4c61-baae-af4db5ca94fa"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-6e8a53ce-8095-4c61-baae-af4db5ca94fa"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-6e8a53ce-8095-4c61-baae-af4db5ca94fa"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-6e8a53ce-8095-4c61-baae-af4db5ca94fa"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

.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-8686f38c-1976-4e62-aec9-143a7e27c4eb {
  padding-left: 0%;
padding-right: 0%;
background-color: rgba(255, 255, 255, 0);
}

#s-57b14fd3-9d0a-4a8c-829f-8cc0b9095e21 {
  background-color: rgba(0, 0, 0, 0);
}

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

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

#s-15b056b8-012b-4ea3-8513-6a06af698efd {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-15b056b8-012b-4ea3-8513-6a06af698efd {
  
}
}
#s-15b056b8-012b-4ea3-8513-6a06af698efd hr {
  border-top: 1px solid #ddd;
}

#s-4478a537-1c35-4f91-a49f-fcfae9d828de {
  min-height: 50px;
}








#s-4478a537-1c35-4f91-a49f-fcfae9d828de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4478a537-1c35-4f91-a49f-fcfae9d828de.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-7a4e0d55-119b-4ffa-839b-7cbd0a0f5145"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7a4e0d55-119b-4ffa-839b-7cbd0a0f5145"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-7a4e0d55-119b-4ffa-839b-7cbd0a0f5145"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-7a4e0d55-119b-4ffa-839b-7cbd0a0f5145"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-7a4e0d55-119b-4ffa-839b-7cbd0a0f5145"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-7a4e0d55-119b-4ffa-839b-7cbd0a0f5145"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-7a4e0d55-119b-4ffa-839b-7cbd0a0f5145"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-f55f357e-f61c-49a5-9461-fe5df3c5941b {
  padding-left: 0%;
padding-right: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
background-color: rgba(255, 255, 255, 0);
}

#s-9153b407-b418-4e81-bc32-d4feef4303cf {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-9153b407-b418-4e81-bc32-d4feef4303cf {
  
}
}
#s-9153b407-b418-4e81-bc32-d4feef4303cf hr {
  border-top: 1px solid #ddd;
}

#s-96767b61-1e89-4c7c-8a88-9ac66304351a {
  min-height: 50px;
}








#s-96767b61-1e89-4c7c-8a88-9ac66304351a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-96767b61-1e89-4c7c-8a88-9ac66304351a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-3fce279d-75b8-492e-a5c8-9a1c472c3d21"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3fce279d-75b8-492e-a5c8-9a1c472c3d21"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-3fce279d-75b8-492e-a5c8-9a1c472c3d21"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-3fce279d-75b8-492e-a5c8-9a1c472c3d21"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-3fce279d-75b8-492e-a5c8-9a1c472c3d21"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-3fce279d-75b8-492e-a5c8-9a1c472c3d21"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-3fce279d-75b8-492e-a5c8-9a1c472c3d21"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-d646c1f0-d116-4b25-a8a5-4794c62dd0f4 {
  margin-left: 0%;
margin-right: 0%;
background-color: rgba(255, 255, 255, 0);
}

#s-b7970553-c619-4520-af65-c59a4b831d92 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-b7970553-c619-4520-af65-c59a4b831d92 {
  
}
}
#s-b7970553-c619-4520-af65-c59a4b831d92 hr {
  border-top: 1px solid #ddd;
}

#s-876c9776-9a23-4eec-ba90-9a35c063b165 {
  min-height: 50px;
}








#s-876c9776-9a23-4eec-ba90-9a35c063b165 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-876c9776-9a23-4eec-ba90-9a35c063b165.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-3a0c6f8d-d9ba-42c1-b2f2-a29204712b8a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3a0c6f8d-d9ba-42c1-b2f2-a29204712b8a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-3a0c6f8d-d9ba-42c1-b2f2-a29204712b8a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-3a0c6f8d-d9ba-42c1-b2f2-a29204712b8a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-3a0c6f8d-d9ba-42c1-b2f2-a29204712b8a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-3a0c6f8d-d9ba-42c1-b2f2-a29204712b8a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-3a0c6f8d-d9ba-42c1-b2f2-a29204712b8a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-d688ea51-fafb-43b8-a00b-b97fc493bd57 {
  margin-left: 0%;
margin-right: 0%;
background-color: rgba(255, 255, 255, 0);
}

#s-93bbf9f7-cb59-41d1-95cb-27728617e8d2 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-93bbf9f7-cb59-41d1-95cb-27728617e8d2 {
  
}
}
#s-93bbf9f7-cb59-41d1-95cb-27728617e8d2 hr {
  border-top: 1px solid #ddd;
}

#s-e46202e4-c334-4e09-ac6e-cf399422fd90 {
  min-height: 50px;
}








#s-e46202e4-c334-4e09-ac6e-cf399422fd90 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e46202e4-c334-4e09-ac6e-cf399422fd90.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-e04ca860-158b-400d-88a0-7d870f557de5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e04ca860-158b-400d-88a0-7d870f557de5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-e04ca860-158b-400d-88a0-7d870f557de5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-e04ca860-158b-400d-88a0-7d870f557de5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-e04ca860-158b-400d-88a0-7d870f557de5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-e04ca860-158b-400d-88a0-7d870f557de5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-e04ca860-158b-400d-88a0-7d870f557de5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-3833df89-f01d-49f5-812a-4df46418f3c4 {
  background-color: rgba(255, 255, 255, 0);
}

#s-8bc3321d-d5c3-4a2a-ad0b-6019aab01173 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-8bc3321d-d5c3-4a2a-ad0b-6019aab01173 {
  
}
}
#s-8bc3321d-d5c3-4a2a-ad0b-6019aab01173 hr {
  border-top: 1px solid #ddd;
}

#s-1e4fbfa5-3f37-49fa-b663-eba8c5decdfc {
  min-height: 50px;
}








#s-1e4fbfa5-3f37-49fa-b663-eba8c5decdfc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1e4fbfa5-3f37-49fa-b663-eba8c5decdfc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-250b8086-0299-4d42-b774-b16c6f87bdc4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-250b8086-0299-4d42-b774-b16c6f87bdc4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-250b8086-0299-4d42-b774-b16c6f87bdc4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-250b8086-0299-4d42-b774-b16c6f87bdc4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-250b8086-0299-4d42-b774-b16c6f87bdc4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-250b8086-0299-4d42-b774-b16c6f87bdc4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-250b8086-0299-4d42-b774-b16c6f87bdc4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-96b1b021-3922-4d05-b66a-a12689295d99 {
  background-color: rgba(255, 255, 255, 0);
}

#s-94a04568-ef4e-4b96-9490-8258a86e3636 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-94a04568-ef4e-4b96-9490-8258a86e3636 {
  
}
}
#s-94a04568-ef4e-4b96-9490-8258a86e3636 hr {
  border-top: 1px solid #ddd;
}

#s-38b99686-a416-4a6e-95ca-f4d176eee832 {
  min-height: 50px;
}








#s-38b99686-a416-4a6e-95ca-f4d176eee832 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-38b99686-a416-4a6e-95ca-f4d176eee832.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-4aa44d31-ec9c-4ab7-98cc-525134f9418d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4aa44d31-ec9c-4ab7-98cc-525134f9418d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-4aa44d31-ec9c-4ab7-98cc-525134f9418d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-4aa44d31-ec9c-4ab7-98cc-525134f9418d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-4aa44d31-ec9c-4ab7-98cc-525134f9418d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-4aa44d31-ec9c-4ab7-98cc-525134f9418d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-4aa44d31-ec9c-4ab7-98cc-525134f9418d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-3f983742-ca60-40f6-8920-2a0b59c1185e {
  background-color: rgba(255, 255, 255, 0);
}

#s-c15670e9-1742-48a6-9ed5-3a63a01da5b9 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-c15670e9-1742-48a6-9ed5-3a63a01da5b9 {
  
}
}
#s-c15670e9-1742-48a6-9ed5-3a63a01da5b9 hr {
  border-top: 1px solid #ddd;
}

#s-18efec25-bef8-416b-97e5-274b980324ea {
  min-height: 50px;
}








#s-18efec25-bef8-416b-97e5-274b980324ea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-18efec25-bef8-416b-97e5-274b980324ea.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-12589534-dd0d-46c2-a8b5-9fb724abc6b5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-12589534-dd0d-46c2-a8b5-9fb724abc6b5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-12589534-dd0d-46c2-a8b5-9fb724abc6b5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-12589534-dd0d-46c2-a8b5-9fb724abc6b5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-12589534-dd0d-46c2-a8b5-9fb724abc6b5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-12589534-dd0d-46c2-a8b5-9fb724abc6b5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-12589534-dd0d-46c2-a8b5-9fb724abc6b5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-505b84bb-9110-4ef2-b2ab-84afbe2fde57 {
  background-color: rgba(255, 255, 255, 0);
}

#s-324143b9-232d-46d8-8269-2f1bbacd066d {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-324143b9-232d-46d8-8269-2f1bbacd066d {
  
}
}
#s-324143b9-232d-46d8-8269-2f1bbacd066d hr {
  border-top: 1px solid #ddd;
}

#s-38445e39-c078-43a8-8dbf-42fd5fcf7fc6 {
  min-height: 50px;
}








#s-38445e39-c078-43a8-8dbf-42fd5fcf7fc6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-38445e39-c078-43a8-8dbf-42fd5fcf7fc6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-db71f5fc-54aa-41c9-b022-5ecbb704ed4a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-db71f5fc-54aa-41c9-b022-5ecbb704ed4a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-db71f5fc-54aa-41c9-b022-5ecbb704ed4a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-db71f5fc-54aa-41c9-b022-5ecbb704ed4a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-db71f5fc-54aa-41c9-b022-5ecbb704ed4a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-db71f5fc-54aa-41c9-b022-5ecbb704ed4a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-db71f5fc-54aa-41c9-b022-5ecbb704ed4a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-9798fba1-8033-4f2b-9837-7f2c25d4599b {
  background-color: rgba(255, 255, 255, 0);
}

#s-61368b31-f7d1-44fd-832f-7e413ebd2350 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-61368b31-f7d1-44fd-832f-7e413ebd2350 {
  
}
}
#s-61368b31-f7d1-44fd-832f-7e413ebd2350 hr {
  border-top: 1px solid #ddd;
}

#s-cd50c3d2-b84e-4fa0-8f63-e68a5ced08ba {
  min-height: 50px;
}








#s-cd50c3d2-b84e-4fa0-8f63-e68a5ced08ba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cd50c3d2-b84e-4fa0-8f63-e68a5ced08ba.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-519b16e4-7b28-45be-be07-9803736330c7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-519b16e4-7b28-45be-be07-9803736330c7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-519b16e4-7b28-45be-be07-9803736330c7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-519b16e4-7b28-45be-be07-9803736330c7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-519b16e4-7b28-45be-be07-9803736330c7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-519b16e4-7b28-45be-be07-9803736330c7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-519b16e4-7b28-45be-be07-9803736330c7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-7241a3f6-905a-48d8-a8a7-02da136f5da9 {
  background-color: rgba(255, 255, 255, 0);
}

#s-9952f722-74f1-4adb-b350-88deee5e23a6 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-9952f722-74f1-4adb-b350-88deee5e23a6 {
  
}
}
#s-9952f722-74f1-4adb-b350-88deee5e23a6 hr {
  border-top: 1px solid #ddd;
}

#s-f8ab7721-56ba-4720-9c19-6e672dd90ecd {
  min-height: 50px;
}








#s-f8ab7721-56ba-4720-9c19-6e672dd90ecd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f8ab7721-56ba-4720-9c19-6e672dd90ecd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-8ea3b414-1c35-4a8f-a93d-5634adf8e712"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8ea3b414-1c35-4a8f-a93d-5634adf8e712"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-8ea3b414-1c35-4a8f-a93d-5634adf8e712"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-8ea3b414-1c35-4a8f-a93d-5634adf8e712"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-8ea3b414-1c35-4a8f-a93d-5634adf8e712"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-8ea3b414-1c35-4a8f-a93d-5634adf8e712"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-8ea3b414-1c35-4a8f-a93d-5634adf8e712"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-f234a989-67c0-4205-99ef-e04dc1013507 {
  background-color: rgba(255, 255, 255, 0);
}

#s-bec1ec1e-f787-4dfa-bd55-ae621b41af93 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-bec1ec1e-f787-4dfa-bd55-ae621b41af93 {
  
}
}
#s-bec1ec1e-f787-4dfa-bd55-ae621b41af93 hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-924278eb-64a2-4b27-94f7-1f1f5a769ef4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-924278eb-64a2-4b27-94f7-1f1f5a769ef4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-924278eb-64a2-4b27-94f7-1f1f5a769ef4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-924278eb-64a2-4b27-94f7-1f1f5a769ef4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-924278eb-64a2-4b27-94f7-1f1f5a769ef4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-924278eb-64a2-4b27-94f7-1f1f5a769ef4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-924278eb-64a2-4b27-94f7-1f1f5a769ef4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-a7b82e4c-e516-48e6-8358-1b2e8c6e417c {
  background-color: rgba(255, 255, 255, 0);
}

#s-9bcda66d-db1c-43d7-817b-1084ad37f207 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-9bcda66d-db1c-43d7-817b-1084ad37f207 {
  
}
}
#s-9bcda66d-db1c-43d7-817b-1084ad37f207 hr {
  border-top: 1px solid #ddd;
}

#s-d5cdae78-503c-4139-b970-a58bef58f271 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
}

#s-d7e5e69b-011b-49b8-bbfb-a66402cce227 {
  max-width: 3000px;
aspect-ratio: 3000/1266;
text-align: center;
}
@media (max-width: 767px){#s-d7e5e69b-011b-49b8-bbfb-a66402cce227 {
  display: none;
}
#s-d7e5e69b-011b-49b8-bbfb-a66402cce227, #wrap-s-d7e5e69b-011b-49b8-bbfb-a66402cce227 { display: none !important; }}




  #s-d7e5e69b-011b-49b8-bbfb-a66402cce227 img.shogun-image,
  #s-d7e5e69b-011b-49b8-bbfb-a66402cce227 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d7e5e69b-011b-49b8-bbfb-a66402cce227 {
    width: 100%;
    height: auto;
  }



  #s-d7e5e69b-011b-49b8-bbfb-a66402cce227 img.shogun-image {
    

    
    
    
  }


#s-d7e5e69b-011b-49b8-bbfb-a66402cce227 .shogun-image-content {
  
    align-items: center;
  
}

#s-d970f63f-63c9-41ae-be2e-80ba92e7480f {
  text-align: center;
}
@media (min-width: 1200px){#s-d970f63f-63c9-41ae-be2e-80ba92e7480f {
  display: none;
}
#s-d970f63f-63c9-41ae-be2e-80ba92e7480f, #wrap-s-d970f63f-63c9-41ae-be2e-80ba92e7480f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d970f63f-63c9-41ae-be2e-80ba92e7480f {
  display: none;
}
#s-d970f63f-63c9-41ae-be2e-80ba92e7480f, #wrap-s-d970f63f-63c9-41ae-be2e-80ba92e7480f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d970f63f-63c9-41ae-be2e-80ba92e7480f {
  display: none;
}
#s-d970f63f-63c9-41ae-be2e-80ba92e7480f, #wrap-s-d970f63f-63c9-41ae-be2e-80ba92e7480f { display: none !important; }}






  #s-d970f63f-63c9-41ae-be2e-80ba92e7480f img.shogun-image {
    

    
    
    
  }


#s-d970f63f-63c9-41ae-be2e-80ba92e7480f .shogun-image-content {
  
    align-items: center;
  
}

#s-3caab169-bc82-4ae5-9684-8b6c02b9ab78 {
  max-width: 1580px;
aspect-ratio: 1580/1602;
text-align: center;
}
@media (min-width: 1200px){#s-3caab169-bc82-4ae5-9684-8b6c02b9ab78 {
  display: none;
}
#s-3caab169-bc82-4ae5-9684-8b6c02b9ab78, #wrap-s-3caab169-bc82-4ae5-9684-8b6c02b9ab78 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3caab169-bc82-4ae5-9684-8b6c02b9ab78 {
  display: none;
}
#s-3caab169-bc82-4ae5-9684-8b6c02b9ab78, #wrap-s-3caab169-bc82-4ae5-9684-8b6c02b9ab78 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3caab169-bc82-4ae5-9684-8b6c02b9ab78 {
  display: none;
}
#s-3caab169-bc82-4ae5-9684-8b6c02b9ab78, #wrap-s-3caab169-bc82-4ae5-9684-8b6c02b9ab78 { display: none !important; }}




  #s-3caab169-bc82-4ae5-9684-8b6c02b9ab78 img.shogun-image,
  #s-3caab169-bc82-4ae5-9684-8b6c02b9ab78 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3caab169-bc82-4ae5-9684-8b6c02b9ab78 {
    width: 100%;
    height: auto;
  }



  #s-3caab169-bc82-4ae5-9684-8b6c02b9ab78 img.shogun-image {
    

    
    
    
  }


#s-3caab169-bc82-4ae5-9684-8b6c02b9ab78 .shogun-image-content {
  
    align-items: center;
  
}

#s-dfb62a6a-7f2b-4353-9a20-3fb2f483364c {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-left: 18px;
padding-bottom: 10px;
padding-right: 18px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-dfb62a6a-7f2b-4353-9a20-3fb2f483364c {
  display: none;
}
#s-dfb62a6a-7f2b-4353-9a20-3fb2f483364c, #wrap-s-dfb62a6a-7f2b-4353-9a20-3fb2f483364c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dfb62a6a-7f2b-4353-9a20-3fb2f483364c {
  display: none;
}
#s-dfb62a6a-7f2b-4353-9a20-3fb2f483364c, #wrap-s-dfb62a6a-7f2b-4353-9a20-3fb2f483364c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-dfb62a6a-7f2b-4353-9a20-3fb2f483364c {
  display: none;
}
#s-dfb62a6a-7f2b-4353-9a20-3fb2f483364c, #wrap-s-dfb62a6a-7f2b-4353-9a20-3fb2f483364c { display: none !important; }}@media (max-width: 767px){#s-dfb62a6a-7f2b-4353-9a20-3fb2f483364c {
  
}
}
#s-127f6fdc-8c02-4b09-93b7-1b00081a570f {
  text-align: center;
}
@media (min-width: 1200px){#s-127f6fdc-8c02-4b09-93b7-1b00081a570f {
  display: none;
}
#s-127f6fdc-8c02-4b09-93b7-1b00081a570f, #wrap-s-127f6fdc-8c02-4b09-93b7-1b00081a570f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-127f6fdc-8c02-4b09-93b7-1b00081a570f {
  display: none;
}
#s-127f6fdc-8c02-4b09-93b7-1b00081a570f, #wrap-s-127f6fdc-8c02-4b09-93b7-1b00081a570f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-127f6fdc-8c02-4b09-93b7-1b00081a570f {
  display: none;
}
#s-127f6fdc-8c02-4b09-93b7-1b00081a570f, #wrap-s-127f6fdc-8c02-4b09-93b7-1b00081a570f { display: none !important; }}






  #s-127f6fdc-8c02-4b09-93b7-1b00081a570f img.shogun-image {
    

    
    
    
  }


#s-127f6fdc-8c02-4b09-93b7-1b00081a570f .shogun-image-content {
  
    align-items: center;
  
}

#s-0a15e72b-9bc4-4f4a-9288-64be795db123 {
  padding-top: 60px;
padding-left: 15%;
padding-bottom: 17px;
padding-right: 15%;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-0a15e72b-9bc4-4f4a-9288-64be795db123 {
  display: none;
}
#s-0a15e72b-9bc4-4f4a-9288-64be795db123, #wrap-s-0a15e72b-9bc4-4f4a-9288-64be795db123 { display: none !important; }}
#s-15765332-af57-4554-b9ad-43aac2b490c1 {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-left: 18px;
padding-bottom: 10px;
padding-right: 18px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-15765332-af57-4554-b9ad-43aac2b490c1 {
  display: none;
}
#s-15765332-af57-4554-b9ad-43aac2b490c1, #wrap-s-15765332-af57-4554-b9ad-43aac2b490c1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-15765332-af57-4554-b9ad-43aac2b490c1 {
  display: none;
}
#s-15765332-af57-4554-b9ad-43aac2b490c1, #wrap-s-15765332-af57-4554-b9ad-43aac2b490c1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-15765332-af57-4554-b9ad-43aac2b490c1 {
  display: none;
}
#s-15765332-af57-4554-b9ad-43aac2b490c1, #wrap-s-15765332-af57-4554-b9ad-43aac2b490c1 { display: none !important; }}@media (max-width: 767px){#s-15765332-af57-4554-b9ad-43aac2b490c1 {
  
}
}
#s-0b7853ef-0683-43f3-969a-5349dfa6c69e {
  text-align: center;
}
@media (min-width: 1200px){#s-0b7853ef-0683-43f3-969a-5349dfa6c69e {
  display: none;
}
#s-0b7853ef-0683-43f3-969a-5349dfa6c69e, #wrap-s-0b7853ef-0683-43f3-969a-5349dfa6c69e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0b7853ef-0683-43f3-969a-5349dfa6c69e {
  display: none;
}
#s-0b7853ef-0683-43f3-969a-5349dfa6c69e, #wrap-s-0b7853ef-0683-43f3-969a-5349dfa6c69e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0b7853ef-0683-43f3-969a-5349dfa6c69e {
  display: none;
}
#s-0b7853ef-0683-43f3-969a-5349dfa6c69e, #wrap-s-0b7853ef-0683-43f3-969a-5349dfa6c69e { display: none !important; }}






  #s-0b7853ef-0683-43f3-969a-5349dfa6c69e img.shogun-image {
    

    
    
    
  }


#s-0b7853ef-0683-43f3-969a-5349dfa6c69e .shogun-image-content {
  
    align-items: center;
  
}

#s-57095920-c401-40c7-a1fe-9194cef6993d {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-left: 18px;
padding-bottom: 10px;
padding-right: 18px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-57095920-c401-40c7-a1fe-9194cef6993d {
  display: none;
}
#s-57095920-c401-40c7-a1fe-9194cef6993d, #wrap-s-57095920-c401-40c7-a1fe-9194cef6993d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-57095920-c401-40c7-a1fe-9194cef6993d {
  display: none;
}
#s-57095920-c401-40c7-a1fe-9194cef6993d, #wrap-s-57095920-c401-40c7-a1fe-9194cef6993d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-57095920-c401-40c7-a1fe-9194cef6993d {
  display: none;
}
#s-57095920-c401-40c7-a1fe-9194cef6993d, #wrap-s-57095920-c401-40c7-a1fe-9194cef6993d { display: none !important; }}@media (max-width: 767px){#s-57095920-c401-40c7-a1fe-9194cef6993d {
  
}
}
#s-e1ab6a77-40fd-426e-b0c3-a8a10e9038fa {
  text-align: center;
}
@media (max-width: 767px){#s-e1ab6a77-40fd-426e-b0c3-a8a10e9038fa {
  display: none;
}
#s-e1ab6a77-40fd-426e-b0c3-a8a10e9038fa, #wrap-s-e1ab6a77-40fd-426e-b0c3-a8a10e9038fa { display: none !important; }}






  #s-e1ab6a77-40fd-426e-b0c3-a8a10e9038fa img.shogun-image {
    

    
    
    
  }


#s-e1ab6a77-40fd-426e-b0c3-a8a10e9038fa .shogun-image-content {
  
    align-items: center;
  
}

#s-415ab954-1a90-4e48-a36b-facd78341b66 {
  padding-top: 60px;
padding-left: 15%;
padding-bottom: 17px;
padding-right: 15%;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-415ab954-1a90-4e48-a36b-facd78341b66 {
  display: none;
}
#s-415ab954-1a90-4e48-a36b-facd78341b66, #wrap-s-415ab954-1a90-4e48-a36b-facd78341b66 { display: none !important; }}
#s-3325a653-0471-4419-9319-6736642bf3d4 {
  text-align: center;
}
@media (min-width: 1200px){#s-3325a653-0471-4419-9319-6736642bf3d4 {
  display: none;
}
#s-3325a653-0471-4419-9319-6736642bf3d4, #wrap-s-3325a653-0471-4419-9319-6736642bf3d4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3325a653-0471-4419-9319-6736642bf3d4 {
  display: none;
}
#s-3325a653-0471-4419-9319-6736642bf3d4, #wrap-s-3325a653-0471-4419-9319-6736642bf3d4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3325a653-0471-4419-9319-6736642bf3d4 {
  display: none;
}
#s-3325a653-0471-4419-9319-6736642bf3d4, #wrap-s-3325a653-0471-4419-9319-6736642bf3d4 { display: none !important; }}






  #s-3325a653-0471-4419-9319-6736642bf3d4 img.shogun-image {
    

    
    
    
  }


#s-3325a653-0471-4419-9319-6736642bf3d4 .shogun-image-content {
  
    align-items: center;
  
}

#s-e3bc0475-8433-4db8-9ab3-d142e3fd51d9 {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-left: 18px;
padding-bottom: 10px;
padding-right: 18px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-e3bc0475-8433-4db8-9ab3-d142e3fd51d9 {
  display: none;
}
#s-e3bc0475-8433-4db8-9ab3-d142e3fd51d9, #wrap-s-e3bc0475-8433-4db8-9ab3-d142e3fd51d9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e3bc0475-8433-4db8-9ab3-d142e3fd51d9 {
  display: none;
}
#s-e3bc0475-8433-4db8-9ab3-d142e3fd51d9, #wrap-s-e3bc0475-8433-4db8-9ab3-d142e3fd51d9 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e3bc0475-8433-4db8-9ab3-d142e3fd51d9 {
  display: none;
}
#s-e3bc0475-8433-4db8-9ab3-d142e3fd51d9, #wrap-s-e3bc0475-8433-4db8-9ab3-d142e3fd51d9 { display: none !important; }}@media (max-width: 767px){#s-e3bc0475-8433-4db8-9ab3-d142e3fd51d9 {
  
}
}
#s-345bc008-2f27-4186-aa21-31226e4e736e {
  text-align: center;
}
@media (min-width: 1200px){#s-345bc008-2f27-4186-aa21-31226e4e736e {
  display: none;
}
#s-345bc008-2f27-4186-aa21-31226e4e736e, #wrap-s-345bc008-2f27-4186-aa21-31226e4e736e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-345bc008-2f27-4186-aa21-31226e4e736e {
  display: none;
}
#s-345bc008-2f27-4186-aa21-31226e4e736e, #wrap-s-345bc008-2f27-4186-aa21-31226e4e736e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-345bc008-2f27-4186-aa21-31226e4e736e {
  display: none;
}
#s-345bc008-2f27-4186-aa21-31226e4e736e, #wrap-s-345bc008-2f27-4186-aa21-31226e4e736e { display: none !important; }}






  #s-345bc008-2f27-4186-aa21-31226e4e736e img.shogun-image {
    

    
    
    
  }


#s-345bc008-2f27-4186-aa21-31226e4e736e .shogun-image-content {
  
    align-items: center;
  
}

#s-51be587d-c865-421d-8414-1602811e65d4 {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 30px;
padding-left: 18px;
padding-bottom: 10px;
padding-right: 18px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-51be587d-c865-421d-8414-1602811e65d4 {
  display: none;
}
#s-51be587d-c865-421d-8414-1602811e65d4, #wrap-s-51be587d-c865-421d-8414-1602811e65d4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-51be587d-c865-421d-8414-1602811e65d4 {
  display: none;
}
#s-51be587d-c865-421d-8414-1602811e65d4, #wrap-s-51be587d-c865-421d-8414-1602811e65d4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-51be587d-c865-421d-8414-1602811e65d4 {
  display: none;
}
#s-51be587d-c865-421d-8414-1602811e65d4, #wrap-s-51be587d-c865-421d-8414-1602811e65d4 { display: none !important; }}@media (max-width: 767px){#s-51be587d-c865-421d-8414-1602811e65d4 {
  
}
}
#s-16f7b2dc-61f0-431e-896e-94bb33c34794 {
  text-align: center;
}
@media (min-width: 1200px){#s-16f7b2dc-61f0-431e-896e-94bb33c34794 {
  display: none;
}
#s-16f7b2dc-61f0-431e-896e-94bb33c34794, #wrap-s-16f7b2dc-61f0-431e-896e-94bb33c34794 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-16f7b2dc-61f0-431e-896e-94bb33c34794 {
  display: none;
}
#s-16f7b2dc-61f0-431e-896e-94bb33c34794, #wrap-s-16f7b2dc-61f0-431e-896e-94bb33c34794 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-16f7b2dc-61f0-431e-896e-94bb33c34794 {
  display: none;
}
#s-16f7b2dc-61f0-431e-896e-94bb33c34794, #wrap-s-16f7b2dc-61f0-431e-896e-94bb33c34794 { display: none !important; }}






  #s-16f7b2dc-61f0-431e-896e-94bb33c34794 img.shogun-image {
    

    
    
    
  }


#s-16f7b2dc-61f0-431e-896e-94bb33c34794 .shogun-image-content {
  
    align-items: center;
  
}

#s-ffa291f5-13fb-4f06-957b-8f88187c8b7d {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 30px;
padding-left: 18px;
padding-bottom: 10px;
padding-right: 18px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-ffa291f5-13fb-4f06-957b-8f88187c8b7d {
  display: none;
}
#s-ffa291f5-13fb-4f06-957b-8f88187c8b7d, #wrap-s-ffa291f5-13fb-4f06-957b-8f88187c8b7d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ffa291f5-13fb-4f06-957b-8f88187c8b7d {
  display: none;
}
#s-ffa291f5-13fb-4f06-957b-8f88187c8b7d, #wrap-s-ffa291f5-13fb-4f06-957b-8f88187c8b7d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ffa291f5-13fb-4f06-957b-8f88187c8b7d {
  display: none;
}
#s-ffa291f5-13fb-4f06-957b-8f88187c8b7d, #wrap-s-ffa291f5-13fb-4f06-957b-8f88187c8b7d { display: none !important; }}@media (max-width: 767px){#s-ffa291f5-13fb-4f06-957b-8f88187c8b7d {
  
}
}
#s-4d308af9-8e48-48a2-a01b-ed330d118e2c {
  min-height: 50px;
}








#s-4d308af9-8e48-48a2-a01b-ed330d118e2c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4d308af9-8e48-48a2-a01b-ed330d118e2c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2a41cb2d-af7c-48a8-9fea-c6f2ebaee734 {
  text-align: center;
}
@media (max-width: 767px){#s-2a41cb2d-af7c-48a8-9fea-c6f2ebaee734 {
  display: none;
}
#s-2a41cb2d-af7c-48a8-9fea-c6f2ebaee734, #wrap-s-2a41cb2d-af7c-48a8-9fea-c6f2ebaee734 { display: none !important; }}






  #s-2a41cb2d-af7c-48a8-9fea-c6f2ebaee734 img.shogun-image {
    

    
    
    
  }


#s-2a41cb2d-af7c-48a8-9fea-c6f2ebaee734 .shogun-image-content {
  
    align-items: center;
  
}

#s-c32ecb83-75c2-4730-a28a-be4db7734ac3 {
  text-align: center;
}
@media (max-width: 767px){#s-c32ecb83-75c2-4730-a28a-be4db7734ac3 {
  display: none;
}
#s-c32ecb83-75c2-4730-a28a-be4db7734ac3, #wrap-s-c32ecb83-75c2-4730-a28a-be4db7734ac3 { display: none !important; }}






  #s-c32ecb83-75c2-4730-a28a-be4db7734ac3 img.shogun-image {
    

    
    
    
  }


#s-c32ecb83-75c2-4730-a28a-be4db7734ac3 .shogun-image-content {
  
    align-items: center;
  
}

#s-8bb0e2ee-03d4-4fee-9fcc-9e5e10bc01a4 {
  box-shadow:0px 0px 0px 0px rgba(159, 212, 229, 1);
margin-top: 0px;
margin-left: 14%;
margin-bottom: 600px;
padding-top: 23px;
padding-left: 0%;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-8bb0e2ee-03d4-4fee-9fcc-9e5e10bc01a4 {
  display: none;
}
#s-8bb0e2ee-03d4-4fee-9fcc-9e5e10bc01a4, #wrap-s-8bb0e2ee-03d4-4fee-9fcc-9e5e10bc01a4 { display: none !important; }}
#s-8ede09ac-9337-4d7a-af5e-862efd93d4fe {
  box-shadow:0px 0px 0px 0px rgba(159, 212, 229, 1);
padding-top: 60px;
padding-left: 15%;
padding-bottom: 30px;
padding-right: 15%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-8ede09ac-9337-4d7a-af5e-862efd93d4fe {
  display: none;
}
#s-8ede09ac-9337-4d7a-af5e-862efd93d4fe, #wrap-s-8ede09ac-9337-4d7a-af5e-862efd93d4fe { display: none !important; }}
#s-195d5d62-2314-4765-9c07-3a7190862dff {
  text-align: center;
}
@media (min-width: 1200px){#s-195d5d62-2314-4765-9c07-3a7190862dff {
  display: none;
}
#s-195d5d62-2314-4765-9c07-3a7190862dff, #wrap-s-195d5d62-2314-4765-9c07-3a7190862dff { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-195d5d62-2314-4765-9c07-3a7190862dff {
  display: none;
}
#s-195d5d62-2314-4765-9c07-3a7190862dff, #wrap-s-195d5d62-2314-4765-9c07-3a7190862dff { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-195d5d62-2314-4765-9c07-3a7190862dff {
  display: none;
}
#s-195d5d62-2314-4765-9c07-3a7190862dff, #wrap-s-195d5d62-2314-4765-9c07-3a7190862dff { display: none !important; }}






  #s-195d5d62-2314-4765-9c07-3a7190862dff img.shogun-image {
    

    
    
    
  }


#s-195d5d62-2314-4765-9c07-3a7190862dff .shogun-image-content {
  
    align-items: center;
  
}

#s-a24ee053-76ce-4382-a387-323afa85b4ac {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-left: 31px;
padding-bottom: 10px;
padding-right: 31px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-a24ee053-76ce-4382-a387-323afa85b4ac {
  display: none;
}
#s-a24ee053-76ce-4382-a387-323afa85b4ac, #wrap-s-a24ee053-76ce-4382-a387-323afa85b4ac { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a24ee053-76ce-4382-a387-323afa85b4ac {
  display: none;
}
#s-a24ee053-76ce-4382-a387-323afa85b4ac, #wrap-s-a24ee053-76ce-4382-a387-323afa85b4ac { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a24ee053-76ce-4382-a387-323afa85b4ac {
  display: none;
}
#s-a24ee053-76ce-4382-a387-323afa85b4ac, #wrap-s-a24ee053-76ce-4382-a387-323afa85b4ac { display: none !important; }}@media (max-width: 767px){#s-a24ee053-76ce-4382-a387-323afa85b4ac {
  
}
}
#s-f41bdef2-93f4-45e9-9013-f15e0841c2b4 {
  text-align: center;
}
@media (min-width: 1200px){#s-f41bdef2-93f4-45e9-9013-f15e0841c2b4 {
  display: none;
}
#s-f41bdef2-93f4-45e9-9013-f15e0841c2b4, #wrap-s-f41bdef2-93f4-45e9-9013-f15e0841c2b4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f41bdef2-93f4-45e9-9013-f15e0841c2b4 {
  display: none;
}
#s-f41bdef2-93f4-45e9-9013-f15e0841c2b4, #wrap-s-f41bdef2-93f4-45e9-9013-f15e0841c2b4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f41bdef2-93f4-45e9-9013-f15e0841c2b4 {
  display: none;
}
#s-f41bdef2-93f4-45e9-9013-f15e0841c2b4, #wrap-s-f41bdef2-93f4-45e9-9013-f15e0841c2b4 { display: none !important; }}






  #s-f41bdef2-93f4-45e9-9013-f15e0841c2b4 img.shogun-image {
    

    
    
    
  }


#s-f41bdef2-93f4-45e9-9013-f15e0841c2b4 .shogun-image-content {
  
    align-items: center;
  
}

#s-c2fea1c6-ef51-456f-ae87-d85e44aad16b {
  text-align: center;
}
@media (min-width: 1200px){#s-c2fea1c6-ef51-456f-ae87-d85e44aad16b {
  display: none;
}
#s-c2fea1c6-ef51-456f-ae87-d85e44aad16b, #wrap-s-c2fea1c6-ef51-456f-ae87-d85e44aad16b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c2fea1c6-ef51-456f-ae87-d85e44aad16b {
  display: none;
}
#s-c2fea1c6-ef51-456f-ae87-d85e44aad16b, #wrap-s-c2fea1c6-ef51-456f-ae87-d85e44aad16b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c2fea1c6-ef51-456f-ae87-d85e44aad16b {
  display: none;
}
#s-c2fea1c6-ef51-456f-ae87-d85e44aad16b, #wrap-s-c2fea1c6-ef51-456f-ae87-d85e44aad16b { display: none !important; }}






  #s-c2fea1c6-ef51-456f-ae87-d85e44aad16b img.shogun-image {
    

    
    
    
  }


#s-c2fea1c6-ef51-456f-ae87-d85e44aad16b .shogun-image-content {
  
    align-items: center;
  
}

#s-481d56d6-4181-4e5d-8d5f-c676f20c71aa {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-left: 18px;
padding-bottom: 10px;
padding-right: 18px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-481d56d6-4181-4e5d-8d5f-c676f20c71aa {
  display: none;
}
#s-481d56d6-4181-4e5d-8d5f-c676f20c71aa, #wrap-s-481d56d6-4181-4e5d-8d5f-c676f20c71aa { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-481d56d6-4181-4e5d-8d5f-c676f20c71aa {
  display: none;
}
#s-481d56d6-4181-4e5d-8d5f-c676f20c71aa, #wrap-s-481d56d6-4181-4e5d-8d5f-c676f20c71aa { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-481d56d6-4181-4e5d-8d5f-c676f20c71aa {
  display: none;
}
#s-481d56d6-4181-4e5d-8d5f-c676f20c71aa, #wrap-s-481d56d6-4181-4e5d-8d5f-c676f20c71aa { display: none !important; }}@media (max-width: 767px){#s-481d56d6-4181-4e5d-8d5f-c676f20c71aa {
  
}
}
#s-65ef994a-e112-4f81-9050-484db78d7327 {
  text-align: center;
}
@media (min-width: 1200px){#s-65ef994a-e112-4f81-9050-484db78d7327 {
  display: none;
}
#s-65ef994a-e112-4f81-9050-484db78d7327, #wrap-s-65ef994a-e112-4f81-9050-484db78d7327 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-65ef994a-e112-4f81-9050-484db78d7327 {
  display: none;
}
#s-65ef994a-e112-4f81-9050-484db78d7327, #wrap-s-65ef994a-e112-4f81-9050-484db78d7327 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-65ef994a-e112-4f81-9050-484db78d7327 {
  display: none;
}
#s-65ef994a-e112-4f81-9050-484db78d7327, #wrap-s-65ef994a-e112-4f81-9050-484db78d7327 { display: none !important; }}






  #s-65ef994a-e112-4f81-9050-484db78d7327 img.shogun-image {
    

    
    
    
  }


#s-65ef994a-e112-4f81-9050-484db78d7327 .shogun-image-content {
  
    align-items: center;
  
}

#s-33cdaca8-b82c-4363-9100-63f9225eceee {
  text-align: center;
}
@media (max-width: 767px){#s-33cdaca8-b82c-4363-9100-63f9225eceee {
  display: none;
}
#s-33cdaca8-b82c-4363-9100-63f9225eceee, #wrap-s-33cdaca8-b82c-4363-9100-63f9225eceee { display: none !important; }}






  #s-33cdaca8-b82c-4363-9100-63f9225eceee img.shogun-image {
    

    
    
    
  }


#s-33cdaca8-b82c-4363-9100-63f9225eceee .shogun-image-content {
  
    align-items: center;
  
}

#s-a7c2aacd-360c-4b5b-afb6-7280b1b4f3c9 {
  box-shadow:0px 0px 0px 0px rgba(159, 212, 229, 1);
padding-top: 120px;
padding-left: 15%;
padding-bottom: 60px;
padding-right: 15%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-a7c2aacd-360c-4b5b-afb6-7280b1b4f3c9 {
  display: none;
}
#s-a7c2aacd-360c-4b5b-afb6-7280b1b4f3c9, #wrap-s-a7c2aacd-360c-4b5b-afb6-7280b1b4f3c9 { display: none !important; }}
#s-98acc3ad-f3c9-4bc4-b116-8b4ac678dd18 {
  text-align: center;
}
@media (max-width: 767px){#s-98acc3ad-f3c9-4bc4-b116-8b4ac678dd18 {
  display: none;
}
#s-98acc3ad-f3c9-4bc4-b116-8b4ac678dd18, #wrap-s-98acc3ad-f3c9-4bc4-b116-8b4ac678dd18 { display: none !important; }}






  #s-98acc3ad-f3c9-4bc4-b116-8b4ac678dd18 img.shogun-image {
    

    
    
    
  }


#s-98acc3ad-f3c9-4bc4-b116-8b4ac678dd18 .shogun-image-content {
  
    align-items: center;
  
}

#s-12903ba9-6e1d-4ac3-83fb-b22c98769bf2 {
  box-shadow:0px 0px 0px 0px rgba(159, 212, 229, 1);
padding-top: 120px;
padding-left: 15%;
padding-bottom: 30px;
padding-right: 15%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-12903ba9-6e1d-4ac3-83fb-b22c98769bf2 {
  display: none;
}
#s-12903ba9-6e1d-4ac3-83fb-b22c98769bf2, #wrap-s-12903ba9-6e1d-4ac3-83fb-b22c98769bf2 { display: none !important; }}
#s-fdad0dda-e2af-4be7-a13b-352f55328cd8 {
  text-align: center;
}
@media (max-width: 767px){#s-fdad0dda-e2af-4be7-a13b-352f55328cd8 {
  display: none;
}
#s-fdad0dda-e2af-4be7-a13b-352f55328cd8, #wrap-s-fdad0dda-e2af-4be7-a13b-352f55328cd8 { display: none !important; }}






  #s-fdad0dda-e2af-4be7-a13b-352f55328cd8 img.shogun-image {
    

    
    
    
  }


#s-fdad0dda-e2af-4be7-a13b-352f55328cd8 .shogun-image-content {
  
    align-items: center;
  
}

#s-d9daf4a4-1bcc-4028-bc06-a667c7115aa2 {
  box-shadow:0px 0px 0px 0px rgba(159, 212, 229, 1);
padding-top: 120px;
padding-left: 9%;
padding-bottom: 30px;
padding-right: 15%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-d9daf4a4-1bcc-4028-bc06-a667c7115aa2 {
  display: none;
}
#s-d9daf4a4-1bcc-4028-bc06-a667c7115aa2, #wrap-s-d9daf4a4-1bcc-4028-bc06-a667c7115aa2 { display: none !important; }}
#s-0f4ca07c-f66b-4237-9634-7e5c24462563 {
  text-align: center;
}
@media (max-width: 767px){#s-0f4ca07c-f66b-4237-9634-7e5c24462563 {
  display: none;
}
#s-0f4ca07c-f66b-4237-9634-7e5c24462563, #wrap-s-0f4ca07c-f66b-4237-9634-7e5c24462563 { display: none !important; }}






  #s-0f4ca07c-f66b-4237-9634-7e5c24462563 img.shogun-image {
    

    
    
    
  }


#s-0f4ca07c-f66b-4237-9634-7e5c24462563 .shogun-image-content {
  
    align-items: center;
  
}

#s-ad296d09-9aae-4563-adc4-ebf34dbdf55d {
  text-align: center;
}
@media (max-width: 767px){#s-ad296d09-9aae-4563-adc4-ebf34dbdf55d {
  display: none;
}
#s-ad296d09-9aae-4563-adc4-ebf34dbdf55d, #wrap-s-ad296d09-9aae-4563-adc4-ebf34dbdf55d { display: none !important; }}






  #s-ad296d09-9aae-4563-adc4-ebf34dbdf55d img.shogun-image {
    

    
    
    
  }


#s-ad296d09-9aae-4563-adc4-ebf34dbdf55d .shogun-image-content {
  
    align-items: center;
  
}

#s-fc519150-7580-4f47-bf00-f4b49d76363e {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 80px;
padding-left: 0%;
padding-bottom: 80px;
padding-right: 0%;
text-align: center;
background-color: rgba(0, 0, 0, 0.97);
opacity: 1;
}
#s-fc519150-7580-4f47-bf00-f4b49d76363e:hover {opacity: 1 !important;}@media (max-width: 767px){#s-fc519150-7580-4f47-bf00-f4b49d76363e {
  display: none;
}
#s-fc519150-7580-4f47-bf00-f4b49d76363e, #wrap-s-fc519150-7580-4f47-bf00-f4b49d76363e { display: none !important; }}






  #s-fc519150-7580-4f47-bf00-f4b49d76363e img.shogun-image {
    

    
    
    
  }


#s-fc519150-7580-4f47-bf00-f4b49d76363e .shogun-image-content {
  
    align-items: center;
  
}

#s-aa55712b-03d5-4a24-b8fd-dcee9903abd7 {
  background-color: rgba(0, 0, 0, 1);
}

#s-46975e56-4806-4cc6-8302-c081abaa5ee6 {
  min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-46975e56-4806-4cc6-8302-c081abaa5ee6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-46975e56-4806-4cc6-8302-c081abaa5ee6.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-c1762cef-0d7e-4d0d-9e1f-94203c44ca81 {
  padding-top: 12px;
padding-left: 22%;
padding-bottom: 30px;
padding-right: 22%;
}

#s-fcaf0bbd-ae8e-4690-bb2d-ba527d206a12 {
  min-height: 50px;
}








#s-fcaf0bbd-ae8e-4690-bb2d-ba527d206a12 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fcaf0bbd-ae8e-4690-bb2d-ba527d206a12.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2ddcbc0d-a648-46ac-b94b-8f3821209197 {
  margin-left: 5%;
margin-right: 5%;
background-color: rgba(253, 253, 253, 0.29);
opacity: 1;
}

#s-2ddcbc0d-a648-46ac-b94b-8f3821209197 .shogun-tabs > li > .shogun-tab-box {
    background: none;
    border: none;
  }
  #s-2ddcbc0d-a648-46ac-b94b-8f3821209197 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: none;
    border: none;
  }
  #s-2ddcbc0d-a648-46ac-b94b-8f3821209197 .shogun-tabs > li > .shogun-tab-box::after {
    background: rgba(0, 0, 0, 0.92);
    border: 4px solid rgba(70, 139, 219, 1);
  }
  #s-2ddcbc0d-a648-46ac-b94b-8f3821209197 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box::after  {
    background: rgba(255, 255, 255, 0.6);
    border: 4px solid rgba(10, 101, 207, 1);
  }
#s-2ddcbc0d-a648-46ac-b94b-8f3821209197 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(20, 128, 252, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 17px;
}

#s-2ddcbc0d-a648-46ac-b94b-8f3821209197 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(10, 101, 207, 1);
}

#s-2ddcbc0d-a648-46ac-b94b-8f3821209197 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 4px);
  left: 4px;
  bottom: -4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
}

#s-2ddcbc0d-a648-46ac-b94b-8f3821209197 .shogun-tabs-body {
  margin-top: -4px;
  border-top: 4px solid rgba(10, 101, 207, 1);
}

#s-6b8f0eca-0ab0-4ab0-966e-1a4a5718c1c1 {
  text-align: center;
}
@media (max-width: 767px){#s-6b8f0eca-0ab0-4ab0-966e-1a4a5718c1c1 {
  display: none;
}
#s-6b8f0eca-0ab0-4ab0-966e-1a4a5718c1c1, #wrap-s-6b8f0eca-0ab0-4ab0-966e-1a4a5718c1c1 { display: none !important; }}






  #s-6b8f0eca-0ab0-4ab0-966e-1a4a5718c1c1 img.shogun-image {
    

    
    
    
  }


#s-6b8f0eca-0ab0-4ab0-966e-1a4a5718c1c1 .shogun-image-content {
  
    align-items: center;
  
}

#s-c17c8020-5ebb-41d5-8bc4-6bf2d684a22f {
  margin-top: 0px;
margin-bottom: 0px;
}


  #s-c17c8020-5ebb-41d5-8bc4-6bf2d684a22f .shogun-tabs > li > .shogun-tab-box {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0);
  }
  #s-c17c8020-5ebb-41d5-8bc4-6bf2d684a22f .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(0, 0, 0, 1);
    border: 1px solid #ddd;
  }
#s-c17c8020-5ebb-41d5-8bc4-6bf2d684a22f .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(10, 101, 207, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 17px;
}

#s-c17c8020-5ebb-41d5-8bc4-6bf2d684a22f .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(20, 128, 252, 1);
}

#s-c17c8020-5ebb-41d5-8bc4-6bf2d684a22f .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(0, 0, 0, 1);
}

#s-c17c8020-5ebb-41d5-8bc4-6bf2d684a22f .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

#s-c0dda210-1dde-49a3-942e-1d301c0bc2a9 {
  min-height: 50px;
}








#s-c0dda210-1dde-49a3-942e-1d301c0bc2a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c0dda210-1dde-49a3-942e-1d301c0bc2a9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7246ff8a-a71e-4af3-ab57-4ed0b8bb8dc6 {
  min-height: 50px;
}








#s-7246ff8a-a71e-4af3-ab57-4ed0b8bb8dc6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7246ff8a-a71e-4af3-ab57-4ed0b8bb8dc6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-28c9041d-9f37-4ab2-8252-d26a60d78e66 {
  min-height: 50px;
}








#s-28c9041d-9f37-4ab2-8252-d26a60d78e66 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-28c9041d-9f37-4ab2-8252-d26a60d78e66.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-74f56408-de30-4b82-b37b-4d1acaae5449"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-74f56408-de30-4b82-b37b-4d1acaae5449"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-74f56408-de30-4b82-b37b-4d1acaae5449"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-74f56408-de30-4b82-b37b-4d1acaae5449"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-74f56408-de30-4b82-b37b-4d1acaae5449"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-74f56408-de30-4b82-b37b-4d1acaae5449"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-74f56408-de30-4b82-b37b-4d1acaae5449"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-c561b561-6d5f-43fa-a41c-9f6fcede24e8 {
  padding-left: 0%;
padding-right: 0%;
background-color: rgba(255, 255, 255, 0);
}

#s-60b21a8f-b2fa-4af3-9796-a428082e83d7 {
  background-color: rgba(0, 0, 0, 0);
}

#s-11e00126-bfba-4f28-b3e9-3e6643d4c5b8 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-11e00126-bfba-4f28-b3e9-3e6643d4c5b8 {
  
}
}
#s-11e00126-bfba-4f28-b3e9-3e6643d4c5b8 hr {
  border-top: 1px solid #ddd;
}

#s-05120799-f219-4e36-a8ce-fc8f9107a94f {
  min-height: 50px;
}








#s-05120799-f219-4e36-a8ce-fc8f9107a94f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-05120799-f219-4e36-a8ce-fc8f9107a94f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-a74c8ab9-4739-4b3f-b7b3-46e0c907cce1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a74c8ab9-4739-4b3f-b7b3-46e0c907cce1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-a74c8ab9-4739-4b3f-b7b3-46e0c907cce1"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-a74c8ab9-4739-4b3f-b7b3-46e0c907cce1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-a74c8ab9-4739-4b3f-b7b3-46e0c907cce1"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-a74c8ab9-4739-4b3f-b7b3-46e0c907cce1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-a74c8ab9-4739-4b3f-b7b3-46e0c907cce1"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-a7569a97-57ad-419e-9da9-fbffcb8fe440 {
  padding-left: 0%;
padding-right: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
background-color: rgba(255, 255, 255, 0);
}

#s-c98dc89e-dea4-4e83-8535-3e1534fc6ce5 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-c98dc89e-dea4-4e83-8535-3e1534fc6ce5 {
  
}
}
#s-c98dc89e-dea4-4e83-8535-3e1534fc6ce5 hr {
  border-top: 1px solid #ddd;
}

#s-1c6fc5e2-c320-4a1b-ab66-c600d9c6dc9e {
  min-height: 50px;
}








#s-1c6fc5e2-c320-4a1b-ab66-c600d9c6dc9e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1c6fc5e2-c320-4a1b-ab66-c600d9c6dc9e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-17381686-87d5-475e-a826-ff783a25758e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-17381686-87d5-475e-a826-ff783a25758e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-17381686-87d5-475e-a826-ff783a25758e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-17381686-87d5-475e-a826-ff783a25758e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-17381686-87d5-475e-a826-ff783a25758e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-17381686-87d5-475e-a826-ff783a25758e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-17381686-87d5-475e-a826-ff783a25758e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-b03cdc49-db04-4f6a-96db-33af4be86c3f {
  margin-left: 0%;
margin-right: 0%;
background-color: rgba(255, 255, 255, 0);
}

#s-cca7d3a1-392d-4705-8dfd-a8d4212dbded {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-cca7d3a1-392d-4705-8dfd-a8d4212dbded {
  
}
}
#s-cca7d3a1-392d-4705-8dfd-a8d4212dbded hr {
  border-top: 1px solid #ddd;
}

#s-0b08db97-1284-411a-b152-29d9a97874e0 {
  min-height: 50px;
}








#s-0b08db97-1284-411a-b152-29d9a97874e0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0b08db97-1284-411a-b152-29d9a97874e0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-6deffcd8-e15c-467b-a38b-6e1d568d6629"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6deffcd8-e15c-467b-a38b-6e1d568d6629"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-6deffcd8-e15c-467b-a38b-6e1d568d6629"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-6deffcd8-e15c-467b-a38b-6e1d568d6629"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-6deffcd8-e15c-467b-a38b-6e1d568d6629"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-6deffcd8-e15c-467b-a38b-6e1d568d6629"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-6deffcd8-e15c-467b-a38b-6e1d568d6629"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-86d102a4-93f4-458b-86f5-f7c67cbecea2 {
  margin-left: 0%;
margin-right: 0%;
background-color: rgba(255, 255, 255, 0);
}

#s-2b0054c6-470e-40c5-82ab-aa92f71e42a1 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-2b0054c6-470e-40c5-82ab-aa92f71e42a1 {
  
}
}
#s-2b0054c6-470e-40c5-82ab-aa92f71e42a1 hr {
  border-top: 1px solid #ddd;
}

#s-553f95c1-eabd-47d6-92f7-37577894f9dd {
  min-height: 50px;
}








#s-553f95c1-eabd-47d6-92f7-37577894f9dd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-553f95c1-eabd-47d6-92f7-37577894f9dd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-967ec4a1-4543-4829-88af-25c66c667162"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-967ec4a1-4543-4829-88af-25c66c667162"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-967ec4a1-4543-4829-88af-25c66c667162"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-967ec4a1-4543-4829-88af-25c66c667162"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-967ec4a1-4543-4829-88af-25c66c667162"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-967ec4a1-4543-4829-88af-25c66c667162"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-967ec4a1-4543-4829-88af-25c66c667162"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-80089607-3859-4eb4-8437-9ac67d7719f9 {
  background-color: rgba(255, 255, 255, 0);
}

#s-63533cfe-0833-4dfc-b14c-17a919ad4def {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-63533cfe-0833-4dfc-b14c-17a919ad4def {
  
}
}
#s-63533cfe-0833-4dfc-b14c-17a919ad4def hr {
  border-top: 1px solid #ddd;
}

#s-dca2b055-97c9-44b2-8fcc-bd5dd290f5c5 {
  min-height: 50px;
}








#s-dca2b055-97c9-44b2-8fcc-bd5dd290f5c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dca2b055-97c9-44b2-8fcc-bd5dd290f5c5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-ed9251a5-3448-4000-ae54-8c0efe45e2c5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ed9251a5-3448-4000-ae54-8c0efe45e2c5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-ed9251a5-3448-4000-ae54-8c0efe45e2c5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-ed9251a5-3448-4000-ae54-8c0efe45e2c5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-ed9251a5-3448-4000-ae54-8c0efe45e2c5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-ed9251a5-3448-4000-ae54-8c0efe45e2c5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-ed9251a5-3448-4000-ae54-8c0efe45e2c5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-720f0880-e614-4d38-8487-e5f2f9d1ac33 {
  background-color: rgba(255, 255, 255, 0);
}

#s-0fe8eb7b-d85e-4cb9-801c-06bb038a987d {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-0fe8eb7b-d85e-4cb9-801c-06bb038a987d {
  
}
}
#s-0fe8eb7b-d85e-4cb9-801c-06bb038a987d hr {
  border-top: 1px solid #ddd;
}

#s-a6b2672c-8477-4c4b-a2ba-c48e75ceee0a {
  min-height: 50px;
}








#s-a6b2672c-8477-4c4b-a2ba-c48e75ceee0a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a6b2672c-8477-4c4b-a2ba-c48e75ceee0a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-cbf39230-2e8b-4afb-9920-9b8a7b29e934"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cbf39230-2e8b-4afb-9920-9b8a7b29e934"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-cbf39230-2e8b-4afb-9920-9b8a7b29e934"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-cbf39230-2e8b-4afb-9920-9b8a7b29e934"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-cbf39230-2e8b-4afb-9920-9b8a7b29e934"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-cbf39230-2e8b-4afb-9920-9b8a7b29e934"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-cbf39230-2e8b-4afb-9920-9b8a7b29e934"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-c5d73338-5081-4b0f-b31c-b5848242b0c1 {
  background-color: rgba(255, 255, 255, 0);
}

#s-612ed5ee-59ed-458a-86ba-954683f150d9 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-612ed5ee-59ed-458a-86ba-954683f150d9 {
  
}
}
#s-612ed5ee-59ed-458a-86ba-954683f150d9 hr {
  border-top: 1px solid #ddd;
}

#s-c71c1c2a-2006-44f8-9fe3-337a07505e09 {
  min-height: 50px;
}








#s-c71c1c2a-2006-44f8-9fe3-337a07505e09 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c71c1c2a-2006-44f8-9fe3-337a07505e09.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-e18ec4e9-550a-43cf-836e-f7de5dffdfae"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e18ec4e9-550a-43cf-836e-f7de5dffdfae"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-e18ec4e9-550a-43cf-836e-f7de5dffdfae"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-e18ec4e9-550a-43cf-836e-f7de5dffdfae"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-e18ec4e9-550a-43cf-836e-f7de5dffdfae"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-e18ec4e9-550a-43cf-836e-f7de5dffdfae"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-e18ec4e9-550a-43cf-836e-f7de5dffdfae"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-791d4b87-e8ce-4dbb-bac2-e8a23e67f0fc {
  background-color: rgba(255, 255, 255, 0);
}

#s-c72ce0bf-9fd8-4053-bde8-7e012ea22faf {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-c72ce0bf-9fd8-4053-bde8-7e012ea22faf {
  
}
}
#s-c72ce0bf-9fd8-4053-bde8-7e012ea22faf hr {
  border-top: 1px solid #ddd;
}

#s-3c12cb5f-dade-4967-85bf-d4becdec096e {
  min-height: 50px;
}








#s-3c12cb5f-dade-4967-85bf-d4becdec096e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c12cb5f-dade-4967-85bf-d4becdec096e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-669db34d-e341-4305-b10e-cf0c0f452fd5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-669db34d-e341-4305-b10e-cf0c0f452fd5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-669db34d-e341-4305-b10e-cf0c0f452fd5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-669db34d-e341-4305-b10e-cf0c0f452fd5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-669db34d-e341-4305-b10e-cf0c0f452fd5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-669db34d-e341-4305-b10e-cf0c0f452fd5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-669db34d-e341-4305-b10e-cf0c0f452fd5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-3983de4b-ab03-4b07-96e4-e044903c15c4 {
  background-color: rgba(255, 255, 255, 0);
}

#s-2c74d2fc-9847-475c-912d-8fa9cbda6b24 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-2c74d2fc-9847-475c-912d-8fa9cbda6b24 {
  
}
}
#s-2c74d2fc-9847-475c-912d-8fa9cbda6b24 hr {
  border-top: 1px solid #ddd;
}

#s-ede80b2b-ab12-4f3f-bf81-06095fb75317 {
  min-height: 50px;
}








#s-ede80b2b-ab12-4f3f-bf81-06095fb75317 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ede80b2b-ab12-4f3f-bf81-06095fb75317.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-25275745-dfed-4622-b082-7c74c92bceb1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-25275745-dfed-4622-b082-7c74c92bceb1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-25275745-dfed-4622-b082-7c74c92bceb1"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-25275745-dfed-4622-b082-7c74c92bceb1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-25275745-dfed-4622-b082-7c74c92bceb1"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-25275745-dfed-4622-b082-7c74c92bceb1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-25275745-dfed-4622-b082-7c74c92bceb1"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-ca95ac71-7615-4e41-ada2-41046a6fec7e {
  background-color: rgba(255, 255, 255, 0);
}

#s-948fe01a-b3dd-4efc-b5c3-e8adecf4b56b {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-948fe01a-b3dd-4efc-b5c3-e8adecf4b56b {
  
}
}
#s-948fe01a-b3dd-4efc-b5c3-e8adecf4b56b hr {
  border-top: 1px solid #ddd;
}

#s-91f5ef61-e818-4036-b40a-9d227a5dbea9 {
  min-height: 50px;
}








#s-91f5ef61-e818-4036-b40a-9d227a5dbea9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-91f5ef61-e818-4036-b40a-9d227a5dbea9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-4b8f6895-d14d-41b1-8bfb-0fa3042a5050"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4b8f6895-d14d-41b1-8bfb-0fa3042a5050"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-4b8f6895-d14d-41b1-8bfb-0fa3042a5050"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-4b8f6895-d14d-41b1-8bfb-0fa3042a5050"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-4b8f6895-d14d-41b1-8bfb-0fa3042a5050"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-4b8f6895-d14d-41b1-8bfb-0fa3042a5050"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-4b8f6895-d14d-41b1-8bfb-0fa3042a5050"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-be47202a-e31f-4fa4-8750-5ee130e0d315 {
  background-color: rgba(255, 255, 255, 0);
}

#s-7be2ae5c-9009-4811-a74f-d13c759fc29b {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-7be2ae5c-9009-4811-a74f-d13c759fc29b {
  
}
}
#s-7be2ae5c-9009-4811-a74f-d13c759fc29b hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-67b99295-fb62-407e-be22-5efb45a0cdf1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-67b99295-fb62-407e-be22-5efb45a0cdf1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-67b99295-fb62-407e-be22-5efb45a0cdf1"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-67b99295-fb62-407e-be22-5efb45a0cdf1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-67b99295-fb62-407e-be22-5efb45a0cdf1"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-67b99295-fb62-407e-be22-5efb45a0cdf1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-67b99295-fb62-407e-be22-5efb45a0cdf1"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-6522767c-6e8d-4b51-b82d-cb3f93be4ef7 {
  background-color: rgba(255, 255, 255, 0);
}

#s-38af9f9f-03d1-4917-9c01-19d4680e962e {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 1px;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-38af9f9f-03d1-4917-9c01-19d4680e962e {
  
}
}
#s-38af9f9f-03d1-4917-9c01-19d4680e962e hr {
  border-top: 1px solid #ddd;
}

#s-362b6b04-eef8-4185-b7e8-32ca04d89ae4 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
}

#s-2b0d38db-ff8f-4212-8ffa-c3741795378c {
  max-width: 3000px;
aspect-ratio: 3000/1266;
text-align: center;
}
@media (max-width: 767px){#s-2b0d38db-ff8f-4212-8ffa-c3741795378c {
  display: none;
}
#s-2b0d38db-ff8f-4212-8ffa-c3741795378c, #wrap-s-2b0d38db-ff8f-4212-8ffa-c3741795378c { display: none !important; }}




  #s-2b0d38db-ff8f-4212-8ffa-c3741795378c img.shogun-image,
  #s-2b0d38db-ff8f-4212-8ffa-c3741795378c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2b0d38db-ff8f-4212-8ffa-c3741795378c {
    width: 100%;
    height: auto;
  }



  #s-2b0d38db-ff8f-4212-8ffa-c3741795378c img.shogun-image {
    

    
    
    
  }


#s-2b0d38db-ff8f-4212-8ffa-c3741795378c .shogun-image-content {
  
    align-items: center;
  
}

#s-14323340-9597-407c-83ad-e4cacfabcf49 {
  text-align: center;
}
@media (min-width: 1200px){#s-14323340-9597-407c-83ad-e4cacfabcf49 {
  display: none;
}
#s-14323340-9597-407c-83ad-e4cacfabcf49, #wrap-s-14323340-9597-407c-83ad-e4cacfabcf49 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-14323340-9597-407c-83ad-e4cacfabcf49 {
  display: none;
}
#s-14323340-9597-407c-83ad-e4cacfabcf49, #wrap-s-14323340-9597-407c-83ad-e4cacfabcf49 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-14323340-9597-407c-83ad-e4cacfabcf49 {
  display: none;
}
#s-14323340-9597-407c-83ad-e4cacfabcf49, #wrap-s-14323340-9597-407c-83ad-e4cacfabcf49 { display: none !important; }}






  #s-14323340-9597-407c-83ad-e4cacfabcf49 img.shogun-image {
    

    
    
    
  }


#s-14323340-9597-407c-83ad-e4cacfabcf49 .shogun-image-content {
  
    align-items: center;
  
}

#s-4818a95f-7c62-4576-9a3d-611bb6fde8bc {
  max-width: 1580px;
aspect-ratio: 1580/1602;
text-align: center;
}
@media (min-width: 1200px){#s-4818a95f-7c62-4576-9a3d-611bb6fde8bc {
  display: none;
}
#s-4818a95f-7c62-4576-9a3d-611bb6fde8bc, #wrap-s-4818a95f-7c62-4576-9a3d-611bb6fde8bc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4818a95f-7c62-4576-9a3d-611bb6fde8bc {
  display: none;
}
#s-4818a95f-7c62-4576-9a3d-611bb6fde8bc, #wrap-s-4818a95f-7c62-4576-9a3d-611bb6fde8bc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4818a95f-7c62-4576-9a3d-611bb6fde8bc {
  display: none;
}
#s-4818a95f-7c62-4576-9a3d-611bb6fde8bc, #wrap-s-4818a95f-7c62-4576-9a3d-611bb6fde8bc { display: none !important; }}




  #s-4818a95f-7c62-4576-9a3d-611bb6fde8bc img.shogun-image,
  #s-4818a95f-7c62-4576-9a3d-611bb6fde8bc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4818a95f-7c62-4576-9a3d-611bb6fde8bc {
    width: 100%;
    height: auto;
  }



  #s-4818a95f-7c62-4576-9a3d-611bb6fde8bc img.shogun-image {
    

    
    
    
  }


#s-4818a95f-7c62-4576-9a3d-611bb6fde8bc .shogun-image-content {
  
    align-items: center;
  
}

#s-36292458-8ae0-435b-918c-465ae2a74142 {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-left: 18px;
padding-bottom: 10px;
padding-right: 18px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-36292458-8ae0-435b-918c-465ae2a74142 {
  display: none;
}
#s-36292458-8ae0-435b-918c-465ae2a74142, #wrap-s-36292458-8ae0-435b-918c-465ae2a74142 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-36292458-8ae0-435b-918c-465ae2a74142 {
  display: none;
}
#s-36292458-8ae0-435b-918c-465ae2a74142, #wrap-s-36292458-8ae0-435b-918c-465ae2a74142 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-36292458-8ae0-435b-918c-465ae2a74142 {
  display: none;
}
#s-36292458-8ae0-435b-918c-465ae2a74142, #wrap-s-36292458-8ae0-435b-918c-465ae2a74142 { display: none !important; }}@media (max-width: 767px){#s-36292458-8ae0-435b-918c-465ae2a74142 {
  
}
}
#s-8218ebaf-4088-4403-b3a8-b5aaeb5f85ae {
  text-align: center;
}
@media (min-width: 1200px){#s-8218ebaf-4088-4403-b3a8-b5aaeb5f85ae {
  display: none;
}
#s-8218ebaf-4088-4403-b3a8-b5aaeb5f85ae, #wrap-s-8218ebaf-4088-4403-b3a8-b5aaeb5f85ae { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8218ebaf-4088-4403-b3a8-b5aaeb5f85ae {
  display: none;
}
#s-8218ebaf-4088-4403-b3a8-b5aaeb5f85ae, #wrap-s-8218ebaf-4088-4403-b3a8-b5aaeb5f85ae { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8218ebaf-4088-4403-b3a8-b5aaeb5f85ae {
  display: none;
}
#s-8218ebaf-4088-4403-b3a8-b5aaeb5f85ae, #wrap-s-8218ebaf-4088-4403-b3a8-b5aaeb5f85ae { display: none !important; }}






  #s-8218ebaf-4088-4403-b3a8-b5aaeb5f85ae img.shogun-image {
    

    
    
    
  }


#s-8218ebaf-4088-4403-b3a8-b5aaeb5f85ae .shogun-image-content {
  
    align-items: center;
  
}

#s-ea69b0af-d073-4f24-97a0-32bb91f1ee63 {
  padding-top: 60px;
padding-left: 10%;
padding-bottom: 17px;
padding-right: 10%;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-ea69b0af-d073-4f24-97a0-32bb91f1ee63 {
  display: none;
}
#s-ea69b0af-d073-4f24-97a0-32bb91f1ee63, #wrap-s-ea69b0af-d073-4f24-97a0-32bb91f1ee63 { display: none !important; }}
#s-5dc72638-f3e0-4792-a473-f382675d32a6 {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-left: 18px;
padding-bottom: 10px;
padding-right: 18px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-5dc72638-f3e0-4792-a473-f382675d32a6 {
  display: none;
}
#s-5dc72638-f3e0-4792-a473-f382675d32a6, #wrap-s-5dc72638-f3e0-4792-a473-f382675d32a6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5dc72638-f3e0-4792-a473-f382675d32a6 {
  display: none;
}
#s-5dc72638-f3e0-4792-a473-f382675d32a6, #wrap-s-5dc72638-f3e0-4792-a473-f382675d32a6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5dc72638-f3e0-4792-a473-f382675d32a6 {
  display: none;
}
#s-5dc72638-f3e0-4792-a473-f382675d32a6, #wrap-s-5dc72638-f3e0-4792-a473-f382675d32a6 { display: none !important; }}@media (max-width: 767px){#s-5dc72638-f3e0-4792-a473-f382675d32a6 {
  
}
}
#s-db9bf608-85f9-42ec-bd6a-0eb2becd120e {
  text-align: center;
}
@media (min-width: 1200px){#s-db9bf608-85f9-42ec-bd6a-0eb2becd120e {
  display: none;
}
#s-db9bf608-85f9-42ec-bd6a-0eb2becd120e, #wrap-s-db9bf608-85f9-42ec-bd6a-0eb2becd120e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-db9bf608-85f9-42ec-bd6a-0eb2becd120e {
  display: none;
}
#s-db9bf608-85f9-42ec-bd6a-0eb2becd120e, #wrap-s-db9bf608-85f9-42ec-bd6a-0eb2becd120e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-db9bf608-85f9-42ec-bd6a-0eb2becd120e {
  display: none;
}
#s-db9bf608-85f9-42ec-bd6a-0eb2becd120e, #wrap-s-db9bf608-85f9-42ec-bd6a-0eb2becd120e { display: none !important; }}






  #s-db9bf608-85f9-42ec-bd6a-0eb2becd120e img.shogun-image {
    

    
    
    
  }


#s-db9bf608-85f9-42ec-bd6a-0eb2becd120e .shogun-image-content {
  
    align-items: center;
  
}

#s-89bd372f-0c4b-4ba1-8421-d132f0088e09 {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-left: 18px;
padding-bottom: 10px;
padding-right: 18px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-89bd372f-0c4b-4ba1-8421-d132f0088e09 {
  display: none;
}
#s-89bd372f-0c4b-4ba1-8421-d132f0088e09, #wrap-s-89bd372f-0c4b-4ba1-8421-d132f0088e09 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-89bd372f-0c4b-4ba1-8421-d132f0088e09 {
  display: none;
}
#s-89bd372f-0c4b-4ba1-8421-d132f0088e09, #wrap-s-89bd372f-0c4b-4ba1-8421-d132f0088e09 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-89bd372f-0c4b-4ba1-8421-d132f0088e09 {
  display: none;
}
#s-89bd372f-0c4b-4ba1-8421-d132f0088e09, #wrap-s-89bd372f-0c4b-4ba1-8421-d132f0088e09 { display: none !important; }}@media (max-width: 767px){#s-89bd372f-0c4b-4ba1-8421-d132f0088e09 {
  
}
}
#s-88d0f678-23db-46b4-a70c-53cbc1954fc3 {
  text-align: center;
}
@media (max-width: 767px){#s-88d0f678-23db-46b4-a70c-53cbc1954fc3 {
  display: none;
}
#s-88d0f678-23db-46b4-a70c-53cbc1954fc3, #wrap-s-88d0f678-23db-46b4-a70c-53cbc1954fc3 { display: none !important; }}






  #s-88d0f678-23db-46b4-a70c-53cbc1954fc3 img.shogun-image {
    

    
    
    
  }


#s-88d0f678-23db-46b4-a70c-53cbc1954fc3 .shogun-image-content {
  
    align-items: center;
  
}

#s-fefba0cc-2f52-4667-8989-67a4a4b3af2a {
  padding-top: 60px;
padding-left: 15%;
padding-bottom: 17px;
padding-right: 15%;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-fefba0cc-2f52-4667-8989-67a4a4b3af2a {
  display: none;
}
#s-fefba0cc-2f52-4667-8989-67a4a4b3af2a, #wrap-s-fefba0cc-2f52-4667-8989-67a4a4b3af2a { display: none !important; }}
#s-ffaeae55-c9cc-450a-94a6-085f4c25bea0 {
  text-align: center;
}
@media (min-width: 1200px){#s-ffaeae55-c9cc-450a-94a6-085f4c25bea0 {
  display: none;
}
#s-ffaeae55-c9cc-450a-94a6-085f4c25bea0, #wrap-s-ffaeae55-c9cc-450a-94a6-085f4c25bea0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ffaeae55-c9cc-450a-94a6-085f4c25bea0 {
  display: none;
}
#s-ffaeae55-c9cc-450a-94a6-085f4c25bea0, #wrap-s-ffaeae55-c9cc-450a-94a6-085f4c25bea0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ffaeae55-c9cc-450a-94a6-085f4c25bea0 {
  display: none;
}
#s-ffaeae55-c9cc-450a-94a6-085f4c25bea0, #wrap-s-ffaeae55-c9cc-450a-94a6-085f4c25bea0 { display: none !important; }}






  #s-ffaeae55-c9cc-450a-94a6-085f4c25bea0 img.shogun-image {
    

    
    
    
  }


#s-ffaeae55-c9cc-450a-94a6-085f4c25bea0 .shogun-image-content {
  
    align-items: center;
  
}

#s-84d4dffd-3a76-42f7-ab5c-f447b95242af {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-left: 18px;
padding-bottom: 10px;
padding-right: 18px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-84d4dffd-3a76-42f7-ab5c-f447b95242af {
  display: none;
}
#s-84d4dffd-3a76-42f7-ab5c-f447b95242af, #wrap-s-84d4dffd-3a76-42f7-ab5c-f447b95242af { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-84d4dffd-3a76-42f7-ab5c-f447b95242af {
  display: none;
}
#s-84d4dffd-3a76-42f7-ab5c-f447b95242af, #wrap-s-84d4dffd-3a76-42f7-ab5c-f447b95242af { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-84d4dffd-3a76-42f7-ab5c-f447b95242af {
  display: none;
}
#s-84d4dffd-3a76-42f7-ab5c-f447b95242af, #wrap-s-84d4dffd-3a76-42f7-ab5c-f447b95242af { display: none !important; }}@media (max-width: 767px){#s-84d4dffd-3a76-42f7-ab5c-f447b95242af {
  
}
}
#s-493d68c7-34bb-446c-9d15-45d9d875a113 {
  text-align: center;
}
@media (min-width: 1200px){#s-493d68c7-34bb-446c-9d15-45d9d875a113 {
  display: none;
}
#s-493d68c7-34bb-446c-9d15-45d9d875a113, #wrap-s-493d68c7-34bb-446c-9d15-45d9d875a113 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-493d68c7-34bb-446c-9d15-45d9d875a113 {
  display: none;
}
#s-493d68c7-34bb-446c-9d15-45d9d875a113, #wrap-s-493d68c7-34bb-446c-9d15-45d9d875a113 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-493d68c7-34bb-446c-9d15-45d9d875a113 {
  display: none;
}
#s-493d68c7-34bb-446c-9d15-45d9d875a113, #wrap-s-493d68c7-34bb-446c-9d15-45d9d875a113 { display: none !important; }}






  #s-493d68c7-34bb-446c-9d15-45d9d875a113 img.shogun-image {
    

    
    
    
  }


#s-493d68c7-34bb-446c-9d15-45d9d875a113 .shogun-image-content {
  
    align-items: center;
  
}

#s-b015c8b5-89b0-40ee-8f18-08cae592e751 {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 30px;
padding-left: 18px;
padding-bottom: 10px;
padding-right: 18px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-b015c8b5-89b0-40ee-8f18-08cae592e751 {
  display: none;
}
#s-b015c8b5-89b0-40ee-8f18-08cae592e751, #wrap-s-b015c8b5-89b0-40ee-8f18-08cae592e751 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b015c8b5-89b0-40ee-8f18-08cae592e751 {
  display: none;
}
#s-b015c8b5-89b0-40ee-8f18-08cae592e751, #wrap-s-b015c8b5-89b0-40ee-8f18-08cae592e751 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b015c8b5-89b0-40ee-8f18-08cae592e751 {
  display: none;
}
#s-b015c8b5-89b0-40ee-8f18-08cae592e751, #wrap-s-b015c8b5-89b0-40ee-8f18-08cae592e751 { display: none !important; }}@media (max-width: 767px){#s-b015c8b5-89b0-40ee-8f18-08cae592e751 {
  
}
}
#s-e39f5b4c-5f13-413b-8cfd-503d7f4a78bf {
  text-align: center;
}
@media (min-width: 1200px){#s-e39f5b4c-5f13-413b-8cfd-503d7f4a78bf {
  display: none;
}
#s-e39f5b4c-5f13-413b-8cfd-503d7f4a78bf, #wrap-s-e39f5b4c-5f13-413b-8cfd-503d7f4a78bf { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e39f5b4c-5f13-413b-8cfd-503d7f4a78bf {
  display: none;
}
#s-e39f5b4c-5f13-413b-8cfd-503d7f4a78bf, #wrap-s-e39f5b4c-5f13-413b-8cfd-503d7f4a78bf { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e39f5b4c-5f13-413b-8cfd-503d7f4a78bf {
  display: none;
}
#s-e39f5b4c-5f13-413b-8cfd-503d7f4a78bf, #wrap-s-e39f5b4c-5f13-413b-8cfd-503d7f4a78bf { display: none !important; }}






  #s-e39f5b4c-5f13-413b-8cfd-503d7f4a78bf img.shogun-image {
    

    
    
    
  }


#s-e39f5b4c-5f13-413b-8cfd-503d7f4a78bf .shogun-image-content {
  
    align-items: center;
  
}

#s-d137a3c4-7fe6-4867-b976-995ab9213806 {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 30px;
padding-left: 18px;
padding-bottom: 10px;
padding-right: 18px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-d137a3c4-7fe6-4867-b976-995ab9213806 {
  display: none;
}
#s-d137a3c4-7fe6-4867-b976-995ab9213806, #wrap-s-d137a3c4-7fe6-4867-b976-995ab9213806 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d137a3c4-7fe6-4867-b976-995ab9213806 {
  display: none;
}
#s-d137a3c4-7fe6-4867-b976-995ab9213806, #wrap-s-d137a3c4-7fe6-4867-b976-995ab9213806 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d137a3c4-7fe6-4867-b976-995ab9213806 {
  display: none;
}
#s-d137a3c4-7fe6-4867-b976-995ab9213806, #wrap-s-d137a3c4-7fe6-4867-b976-995ab9213806 { display: none !important; }}@media (max-width: 767px){#s-d137a3c4-7fe6-4867-b976-995ab9213806 {
  
}
}
#s-831a0f42-b8a1-45f2-8030-865c5bac5fc1 {
  min-height: 50px;
}








#s-831a0f42-b8a1-45f2-8030-865c5bac5fc1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-831a0f42-b8a1-45f2-8030-865c5bac5fc1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5800abf8-c281-467b-a9dd-dae9954c4880 {
  text-align: center;
}
@media (max-width: 767px){#s-5800abf8-c281-467b-a9dd-dae9954c4880 {
  display: none;
}
#s-5800abf8-c281-467b-a9dd-dae9954c4880, #wrap-s-5800abf8-c281-467b-a9dd-dae9954c4880 { display: none !important; }}






  #s-5800abf8-c281-467b-a9dd-dae9954c4880 img.shogun-image {
    

    
    
    
  }


#s-5800abf8-c281-467b-a9dd-dae9954c4880 .shogun-image-content {
  
    align-items: center;
  
}

#s-44d7b58c-746b-42c1-be14-272253ffa7cf {
  text-align: center;
}
@media (max-width: 767px){#s-44d7b58c-746b-42c1-be14-272253ffa7cf {
  display: none;
}
#s-44d7b58c-746b-42c1-be14-272253ffa7cf, #wrap-s-44d7b58c-746b-42c1-be14-272253ffa7cf { display: none !important; }}






  #s-44d7b58c-746b-42c1-be14-272253ffa7cf img.shogun-image {
    

    
    
    
  }


#s-44d7b58c-746b-42c1-be14-272253ffa7cf .shogun-image-content {
  
    align-items: center;
  
}

#s-9f251ab0-62bc-477d-979a-b9590d26c0a4 {
  box-shadow:0px 0px 0px 0px rgba(159, 212, 229, 1);
margin-top: 0px;
margin-left: 14%;
margin-bottom: 600px;
padding-top: 23px;
padding-left: 0%;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-9f251ab0-62bc-477d-979a-b9590d26c0a4 {
  display: none;
}
#s-9f251ab0-62bc-477d-979a-b9590d26c0a4, #wrap-s-9f251ab0-62bc-477d-979a-b9590d26c0a4 { display: none !important; }}
#s-8d7dec58-cde7-4f4b-af57-7169242abcaf {
  box-shadow:0px 0px 0px 0px rgba(159, 212, 229, 1);
padding-top: 60px;
padding-left: 15%;
padding-bottom: 30px;
padding-right: 15%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-8d7dec58-cde7-4f4b-af57-7169242abcaf {
  display: none;
}
#s-8d7dec58-cde7-4f4b-af57-7169242abcaf, #wrap-s-8d7dec58-cde7-4f4b-af57-7169242abcaf { display: none !important; }}
#s-a3a1594c-467c-4bfb-95a1-2f5d755ee4fa {
  text-align: center;
}
@media (min-width: 1200px){#s-a3a1594c-467c-4bfb-95a1-2f5d755ee4fa {
  display: none;
}
#s-a3a1594c-467c-4bfb-95a1-2f5d755ee4fa, #wrap-s-a3a1594c-467c-4bfb-95a1-2f5d755ee4fa { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a3a1594c-467c-4bfb-95a1-2f5d755ee4fa {
  display: none;
}
#s-a3a1594c-467c-4bfb-95a1-2f5d755ee4fa, #wrap-s-a3a1594c-467c-4bfb-95a1-2f5d755ee4fa { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a3a1594c-467c-4bfb-95a1-2f5d755ee4fa {
  display: none;
}
#s-a3a1594c-467c-4bfb-95a1-2f5d755ee4fa, #wrap-s-a3a1594c-467c-4bfb-95a1-2f5d755ee4fa { display: none !important; }}






  #s-a3a1594c-467c-4bfb-95a1-2f5d755ee4fa img.shogun-image {
    

    
    
    
  }


#s-a3a1594c-467c-4bfb-95a1-2f5d755ee4fa .shogun-image-content {
  
    align-items: center;
  
}

#s-2b153cd3-65a6-4c44-b244-263f61cc656f {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-left: 31px;
padding-bottom: 10px;
padding-right: 31px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-2b153cd3-65a6-4c44-b244-263f61cc656f {
  display: none;
}
#s-2b153cd3-65a6-4c44-b244-263f61cc656f, #wrap-s-2b153cd3-65a6-4c44-b244-263f61cc656f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2b153cd3-65a6-4c44-b244-263f61cc656f {
  display: none;
}
#s-2b153cd3-65a6-4c44-b244-263f61cc656f, #wrap-s-2b153cd3-65a6-4c44-b244-263f61cc656f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2b153cd3-65a6-4c44-b244-263f61cc656f {
  display: none;
}
#s-2b153cd3-65a6-4c44-b244-263f61cc656f, #wrap-s-2b153cd3-65a6-4c44-b244-263f61cc656f { display: none !important; }}@media (max-width: 767px){#s-2b153cd3-65a6-4c44-b244-263f61cc656f {
  
}
}
#s-949820d2-3f76-4c28-ae0c-86ecabb25a72 {
  text-align: center;
}
@media (min-width: 1200px){#s-949820d2-3f76-4c28-ae0c-86ecabb25a72 {
  display: none;
}
#s-949820d2-3f76-4c28-ae0c-86ecabb25a72, #wrap-s-949820d2-3f76-4c28-ae0c-86ecabb25a72 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-949820d2-3f76-4c28-ae0c-86ecabb25a72 {
  display: none;
}
#s-949820d2-3f76-4c28-ae0c-86ecabb25a72, #wrap-s-949820d2-3f76-4c28-ae0c-86ecabb25a72 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-949820d2-3f76-4c28-ae0c-86ecabb25a72 {
  display: none;
}
#s-949820d2-3f76-4c28-ae0c-86ecabb25a72, #wrap-s-949820d2-3f76-4c28-ae0c-86ecabb25a72 { display: none !important; }}






  #s-949820d2-3f76-4c28-ae0c-86ecabb25a72 img.shogun-image {
    

    
    
    
  }


#s-949820d2-3f76-4c28-ae0c-86ecabb25a72 .shogun-image-content {
  
    align-items: center;
  
}

#s-1f82fd4a-d86e-461b-9121-62851611f237 {
  text-align: center;
}
@media (min-width: 1200px){#s-1f82fd4a-d86e-461b-9121-62851611f237 {
  display: none;
}
#s-1f82fd4a-d86e-461b-9121-62851611f237, #wrap-s-1f82fd4a-d86e-461b-9121-62851611f237 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1f82fd4a-d86e-461b-9121-62851611f237 {
  display: none;
}
#s-1f82fd4a-d86e-461b-9121-62851611f237, #wrap-s-1f82fd4a-d86e-461b-9121-62851611f237 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1f82fd4a-d86e-461b-9121-62851611f237 {
  display: none;
}
#s-1f82fd4a-d86e-461b-9121-62851611f237, #wrap-s-1f82fd4a-d86e-461b-9121-62851611f237 { display: none !important; }}






  #s-1f82fd4a-d86e-461b-9121-62851611f237 img.shogun-image {
    

    
    
    
  }


#s-1f82fd4a-d86e-461b-9121-62851611f237 .shogun-image-content {
  
    align-items: center;
  
}

#s-45307fde-efb3-43dc-9b53-41f9e9cd1cdc {
  box-shadow:0px 0px 0px 0px rgba(216, 223, 236, 1);
margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-left: 18px;
padding-bottom: 10px;
padding-right: 18px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 0.97);
}
@media (min-width: 1200px){#s-45307fde-efb3-43dc-9b53-41f9e9cd1cdc {
  display: none;
}
#s-45307fde-efb3-43dc-9b53-41f9e9cd1cdc, #wrap-s-45307fde-efb3-43dc-9b53-41f9e9cd1cdc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-45307fde-efb3-43dc-9b53-41f9e9cd1cdc {
  display: none;
}
#s-45307fde-efb3-43dc-9b53-41f9e9cd1cdc, #wrap-s-45307fde-efb3-43dc-9b53-41f9e9cd1cdc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-45307fde-efb3-43dc-9b53-41f9e9cd1cdc {
  display: none;
}
#s-45307fde-efb3-43dc-9b53-41f9e9cd1cdc, #wrap-s-45307fde-efb3-43dc-9b53-41f9e9cd1cdc { display: none !important; }}@media (max-width: 767px){#s-45307fde-efb3-43dc-9b53-41f9e9cd1cdc {
  
}
}
#s-627d29b3-68fc-46d3-8d8e-96077f214321 {
  text-align: center;
}
@media (min-width: 1200px){#s-627d29b3-68fc-46d3-8d8e-96077f214321 {
  display: none;
}
#s-627d29b3-68fc-46d3-8d8e-96077f214321, #wrap-s-627d29b3-68fc-46d3-8d8e-96077f214321 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-627d29b3-68fc-46d3-8d8e-96077f214321 {
  display: none;
}
#s-627d29b3-68fc-46d3-8d8e-96077f214321, #wrap-s-627d29b3-68fc-46d3-8d8e-96077f214321 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-627d29b3-68fc-46d3-8d8e-96077f214321 {
  display: none;
}
#s-627d29b3-68fc-46d3-8d8e-96077f214321, #wrap-s-627d29b3-68fc-46d3-8d8e-96077f214321 { display: none !important; }}






  #s-627d29b3-68fc-46d3-8d8e-96077f214321 img.shogun-image {
    

    
    
    
  }


#s-627d29b3-68fc-46d3-8d8e-96077f214321 .shogun-image-content {
  
    align-items: center;
  
}

#s-ff61e04b-03a0-402e-b91d-57b6ea0a458b {
  text-align: center;
}
@media (max-width: 767px){#s-ff61e04b-03a0-402e-b91d-57b6ea0a458b {
  display: none;
}
#s-ff61e04b-03a0-402e-b91d-57b6ea0a458b, #wrap-s-ff61e04b-03a0-402e-b91d-57b6ea0a458b { display: none !important; }}






  #s-ff61e04b-03a0-402e-b91d-57b6ea0a458b img.shogun-image {
    

    
    
    
  }


#s-ff61e04b-03a0-402e-b91d-57b6ea0a458b .shogun-image-content {
  
    align-items: center;
  
}

#s-afafd3b4-c202-428a-8161-05101fc3c47b {
  box-shadow:0px 0px 0px 0px rgba(159, 212, 229, 1);
padding-top: 120px;
padding-left: 15%;
padding-bottom: 60px;
padding-right: 15%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-afafd3b4-c202-428a-8161-05101fc3c47b {
  display: none;
}
#s-afafd3b4-c202-428a-8161-05101fc3c47b, #wrap-s-afafd3b4-c202-428a-8161-05101fc3c47b { display: none !important; }}
#s-f5e5945e-0d16-479a-a0e4-780d8c9cfe6c {
  text-align: center;
}
@media (max-width: 767px){#s-f5e5945e-0d16-479a-a0e4-780d8c9cfe6c {
  display: none;
}
#s-f5e5945e-0d16-479a-a0e4-780d8c9cfe6c, #wrap-s-f5e5945e-0d16-479a-a0e4-780d8c9cfe6c { display: none !important; }}






  #s-f5e5945e-0d16-479a-a0e4-780d8c9cfe6c img.shogun-image {
    

    
    
    
  }


#s-f5e5945e-0d16-479a-a0e4-780d8c9cfe6c .shogun-image-content {
  
    align-items: center;
  
}

#s-600997f0-4510-45b0-8ac8-550814fdf1f4 {
  box-shadow:0px 0px 0px 0px rgba(159, 212, 229, 1);
padding-top: 120px;
padding-left: 15%;
padding-bottom: 30px;
padding-right: 15%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-600997f0-4510-45b0-8ac8-550814fdf1f4 {
  display: none;
}
#s-600997f0-4510-45b0-8ac8-550814fdf1f4, #wrap-s-600997f0-4510-45b0-8ac8-550814fdf1f4 { display: none !important; }}
#s-6d64c5df-2963-4149-a6f4-118024ed4e4a {
  text-align: center;
}
@media (max-width: 767px){#s-6d64c5df-2963-4149-a6f4-118024ed4e4a {
  display: none;
}
#s-6d64c5df-2963-4149-a6f4-118024ed4e4a, #wrap-s-6d64c5df-2963-4149-a6f4-118024ed4e4a { display: none !important; }}






  #s-6d64c5df-2963-4149-a6f4-118024ed4e4a img.shogun-image {
    

    
    
    
  }


#s-6d64c5df-2963-4149-a6f4-118024ed4e4a .shogun-image-content {
  
    align-items: center;
  
}

#s-4415b82c-96d3-45ee-9ace-e8c57536eea6 {
  box-shadow:0px 0px 0px 0px rgba(159, 212, 229, 1);
padding-top: 120px;
padding-left: 9%;
padding-bottom: 30px;
padding-right: 15%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-4415b82c-96d3-45ee-9ace-e8c57536eea6 {
  display: none;
}
#s-4415b82c-96d3-45ee-9ace-e8c57536eea6, #wrap-s-4415b82c-96d3-45ee-9ace-e8c57536eea6 { display: none !important; }}
#s-259b3bc0-cdd0-4c97-b7ca-757f3812b205 {
  text-align: center;
}
@media (max-width: 767px){#s-259b3bc0-cdd0-4c97-b7ca-757f3812b205 {
  display: none;
}
#s-259b3bc0-cdd0-4c97-b7ca-757f3812b205, #wrap-s-259b3bc0-cdd0-4c97-b7ca-757f3812b205 { display: none !important; }}






  #s-259b3bc0-cdd0-4c97-b7ca-757f3812b205 img.shogun-image {
    

    
    
    
  }


#s-259b3bc0-cdd0-4c97-b7ca-757f3812b205 .shogun-image-content {
  
    align-items: center;
  
}

#s-f1f3cf14-ed1b-4624-b555-2db7c229f16d {
  text-align: center;
}
@media (max-width: 767px){#s-f1f3cf14-ed1b-4624-b555-2db7c229f16d {
  display: none;
}
#s-f1f3cf14-ed1b-4624-b555-2db7c229f16d, #wrap-s-f1f3cf14-ed1b-4624-b555-2db7c229f16d { display: none !important; }}






  #s-f1f3cf14-ed1b-4624-b555-2db7c229f16d img.shogun-image {
    

    
    
    
  }


#s-f1f3cf14-ed1b-4624-b555-2db7c229f16d .shogun-image-content {
  
    align-items: center;
  
}

#s-3e8dcd39-921f-4076-8193-e010d900636c {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 80px;
padding-left: 0%;
padding-bottom: 80px;
padding-right: 0%;
text-align: center;
background-color: rgba(0, 0, 0, 0.97);
opacity: 1;
}
#s-3e8dcd39-921f-4076-8193-e010d900636c:hover {opacity: 1 !important;}@media (max-width: 767px){#s-3e8dcd39-921f-4076-8193-e010d900636c {
  display: none;
}
#s-3e8dcd39-921f-4076-8193-e010d900636c, #wrap-s-3e8dcd39-921f-4076-8193-e010d900636c { display: none !important; }}






  #s-3e8dcd39-921f-4076-8193-e010d900636c img.shogun-image {
    

    
    
    
  }


#s-3e8dcd39-921f-4076-8193-e010d900636c .shogun-image-content {
  
    align-items: center;
  
}

#s-6c796c87-26d6-4217-951b-52b06c4cd1bd {
  background-color: rgba(0, 0, 0, 1);
}

#s-0a948a39-25d6-403e-95bd-41db8eadc481 {
  min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-0a948a39-25d6-403e-95bd-41db8eadc481 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0a948a39-25d6-403e-95bd-41db8eadc481.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3c4d61e7-165d-4c80-b877-2ee9437ca695 {
  padding-top: 12px;
padding-left: 22%;
padding-bottom: 30px;
padding-right: 22%;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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