.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-1ea1dfd6-4705-418b-84c5-cd3a06c8511d {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-1ea1dfd6-4705-418b-84c5-cd3a06c8511d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1ea1dfd6-4705-418b-84c5-cd3a06c8511d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1ea1dfd6-4705-418b-84c5-cd3a06c8511d {
  
}
}@media (max-width: 767px){#s-1ea1dfd6-4705-418b-84c5-cd3a06c8511d {
  display: none;
}
#s-1ea1dfd6-4705-418b-84c5-cd3a06c8511d, #wrap-s-1ea1dfd6-4705-418b-84c5-cd3a06c8511d { display: none !important; }}







#s-1ea1dfd6-4705-418b-84c5-cd3a06c8511d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1ea1dfd6-4705-418b-84c5-cd3a06c8511d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ee26e227-6e99-4ea7-b9ba-9b6f4eb01153 {
  min-height: 50px;
}








#s-ee26e227-6e99-4ea7-b9ba-9b6f4eb01153 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ee26e227-6e99-4ea7-b9ba-9b6f4eb01153.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-1340069e-a94f-48b5-989e-381804dbe148 {
  margin-top: 25px;
}
@media (max-width: 767px){#s-1340069e-a94f-48b5-989e-381804dbe148 {
  margin-top: 4px;
}
}
#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 60px;
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: center;
  font-family: Mulish;
  font-weight: 700;
  font-style: ;
  font-size: 32px;
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 32px;
}@media (min-width: 1200px){#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 60px;
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: center;
  font-family: Mulish;
  font-weight: 700;
  font-style: ;
  font-size: 36px;
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 36px;
}}@media (min-width: 992px) and (max-width: 1199px){#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 60px;
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: center;
  font-family: Mulish;
  font-weight: 700;
  font-style: ;
  font-size: 36px;
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 36px;
}}@media (min-width: 768px) and (max-width: 991px){#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 60px;
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: center;
  font-family: Mulish;
  font-weight: 700;
  font-style: ;
  font-size: 30px;
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 30px;
}}@media (max-width: 767px){#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 20px;
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 1);
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: center;
  font-family: Mulish;
  font-weight: 700;
  font-style: ;
  font-size: 26px;
}

#s-1340069e-a94f-48b5-989e-381804dbe148 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 26px;
}}
.shg-hr-wrapper {
  padding: 30px 0;
}

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

#s-9b0b62ca-0db8-4ba9-b5a5-ef1369ff1e82 {
  margin-top: -45px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9b0b62ca-0db8-4ba9-b5a5-ef1369ff1e82 {
  
}
}@media (max-width: 767px){#s-9b0b62ca-0db8-4ba9-b5a5-ef1369ff1e82 {
  margin-top: -12px;
}
}
#s-9b0b62ca-0db8-4ba9-b5a5-ef1369ff1e82 hr {
  border-top: 4px solid rgba(119, 119, 119, 1);
}

#s-424723a2-218d-47de-9451-fac8ab3f3501 {
  margin-top: -45px;
}
@media (min-width: 768px) and (max-width: 991px){#s-424723a2-218d-47de-9451-fac8ab3f3501 {
  
}
}@media (max-width: 767px){#s-424723a2-218d-47de-9451-fac8ab3f3501 {
  margin-top: -12px;
}
}
#s-424723a2-218d-47de-9451-fac8ab3f3501 hr {
  border-top: 4px solid rgba(119, 119, 119, 1);
}

#s-acb7e66e-b768-459f-8d0e-fdb662a80b00 {
  margin-top: -45px;
}
@media (min-width: 768px) and (max-width: 991px){#s-acb7e66e-b768-459f-8d0e-fdb662a80b00 {
  
}
}@media (max-width: 767px){#s-acb7e66e-b768-459f-8d0e-fdb662a80b00 {
  margin-top: -12px;
}
}
#s-acb7e66e-b768-459f-8d0e-fdb662a80b00 hr {
  border-top: 4px solid rgba(119, 119, 119, 1);
}

#s-739888bf-1cfd-4bfd-88d2-ec54a10a63a0 {
  margin-top: -45px;
}
@media (min-width: 768px) and (max-width: 991px){#s-739888bf-1cfd-4bfd-88d2-ec54a10a63a0 {
  
}
}@media (max-width: 767px){#s-739888bf-1cfd-4bfd-88d2-ec54a10a63a0 {
  margin-top: -12px;
}
}
#s-739888bf-1cfd-4bfd-88d2-ec54a10a63a0 hr {
  border-top: 4px solid rgba(119, 119, 119, 1);
}

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

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

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

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

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

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

#s-fd0a5ab4-589e-4254-9805-8a10ae90a6c6 {
  margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 875px;
}

#s-fd0a5ab4-589e-4254-9805-8a10ae90a6c6 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid #D5D6D7;
  border-radius: 0px;
}

#s-fd0a5ab4-589e-4254-9805-8a10ae90a6c6 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-fd0a5ab4-589e-4254-9805-8a10ae90a6c6 td.shogun-table-column {
  background-color: #fff;
  padding: 8px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-fd0a5ab4-589e-4254-9805-8a10ae90a6c6 td.shogun-table-row {
  background-color: #fff;
  padding: 2px;
}

#s-fd0a5ab4-589e-4254-9805-8a10ae90a6c6 td.shogun-table-column, #s-fd0a5ab4-589e-4254-9805-8a10ae90a6c6 td.shogun-table-row {
  border: 1px solid #D5D6D7;
}

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

@media (max-width: 767px){#s-e66a2743-1a3c-4c0f-b4d7-34b8bca5d342 {
  
}
}
#s-dd7b6f6f-1452-416e-9dd2-4860923fadd6 {
  margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-dd7b6f6f-1452-416e-9dd2-4860923fadd6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dd7b6f6f-1452-416e-9dd2-4860923fadd6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d43c7ded-670d-42fa-a186-f712022d9e8c {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(119, 119, 119, 1);
border-style: solid;
max-width: 1100px;
}
@media (max-width: 767px){#s-d43c7ded-670d-42fa-a186-f712022d9e8c {
  max-width: 1100px;
}
}
.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-a37eb4f3-1484-41ca-ad10-7cb682599c7e {
  margin-top: 15px;
margin-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-a37eb4f3-1484-41ca-ad10-7cb682599c7e {
  margin-top: 10px;
margin-bottom: 10px;
}
}






  #s-a37eb4f3-1484-41ca-ad10-7cb682599c7e img.shogun-image {
    

    
    
    
  }


#s-a37eb4f3-1484-41ca-ad10-7cb682599c7e .shogun-image-content {
  
    align-items: center;
  
}

#s-4eb76819-106f-4d8e-a4e9-058825a6fafa {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
}
@media (max-width: 767px){#s-4eb76819-106f-4d8e-a4e9-058825a6fafa {
  margin-top: 20px;
margin-bottom: 10px;
}
}
#s-4eb76819-106f-4d8e-a4e9-058825a6fafa hr {
  border-top: 3px solid #ddd;
}

#s-e0a0ddae-21cc-40ac-b421-88d5e6780d65 {
  max-width: 1100px;
}

#s-aedb51f7-f40a-4a2e-895a-c15a385e6e85 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-aedb51f7-f40a-4a2e-895a-c15a385e6e85 {
  min-height: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-aedb51f7-f40a-4a2e-895a-c15a385e6e85 {
  min-height: 350px;
}
}@media (max-width: 767px){#s-aedb51f7-f40a-4a2e-895a-c15a385e6e85 {
  
}
}







#s-aedb51f7-f40a-4a2e-895a-c15a385e6e85 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aedb51f7-f40a-4a2e-895a-c15a385e6e85.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-bd346ed3-f1f4-4a2b-9559-3ce76bcfb28e {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 40px;
margin-right: auto;
max-width: 1375px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-bd346ed3-f1f4-4a2b-9559-3ce76bcfb28e {
  margin-bottom: 28px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-bd346ed3-f1f4-4a2b-9559-3ce76bcfb28e {
  margin-bottom: 27px;
}
}@media (max-width: 767px){#s-bd346ed3-f1f4-4a2b-9559-3ce76bcfb28e {
  margin-top: 10px;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-bd346ed3-f1f4-4a2b-9559-3ce76bcfb28e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bd346ed3-f1f4-4a2b-9559-3ce76bcfb28e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-bd346ed3-f1f4-4a2b-9559-3ce76bcfb28e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-bd346ed3-f1f4-4a2b-9559-3ce76bcfb28e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-712c70b7-c865-4e5e-b0ba-27409670072d {
  box-shadow:0px 4px 6px 2px rgba(51, 51, 51, 0.5);
margin-left: auto;
margin-right: auto;
max-width: 350px;
background-color: rgba(104, 126, 48, 1);
}
@media (max-width: 767px){#s-712c70b7-c865-4e5e-b0ba-27409670072d {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
}
}







#s-712c70b7-c865-4e5e-b0ba-27409670072d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-712c70b7-c865-4e5e-b0ba-27409670072d {
  cursor: pointer;
}#s-712c70b7-c865-4e5e-b0ba-27409670072d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-14ec18be-408d-49b8-a1d8-0d39bb74c324 {
  text-align: center;
}







  #s-14ec18be-408d-49b8-a1d8-0d39bb74c324 img.shogun-image {
    

    
    
    
  }


#s-14ec18be-408d-49b8-a1d8-0d39bb74c324 .shogun-image-content {
  
    align-items: center;
  
}

#s-71b62a8a-7f8e-43c8-b227-851edc9e9ab2 {
  padding-top: 15px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
}

.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: ;
  font-family: ;
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-964985c9-66c6-4036-b90f-620eef0f30b0 {
  box-shadow:0px 3px 7px 0px rgba(34, 25, 36, 0.5);
margin-top: 10px;
margin-bottom: 25px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-964985c9-66c6-4036-b90f-620eef0f30b0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-964985c9-66c6-4036-b90f-620eef0f30b0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-964985c9-66c6-4036-b90f-620eef0f30b0-root {
    text-align: center;
  }


#s-964985c9-66c6-4036-b90f-620eef0f30b0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Mulish;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-964985c9-66c6-4036-b90f-620eef0f30b0-root {
    text-align: center;
  }


#s-964985c9-66c6-4036-b90f-620eef0f30b0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Mulish;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-964985c9-66c6-4036-b90f-620eef0f30b0-root {
    text-align: center;
  }


#s-964985c9-66c6-4036-b90f-620eef0f30b0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Mulish;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-964985c9-66c6-4036-b90f-620eef0f30b0-root {
    text-align: center;
  }


#s-964985c9-66c6-4036-b90f-620eef0f30b0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Mulish;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-964985c9-66c6-4036-b90f-620eef0f30b0-root {
    text-align: center;
  }


#s-964985c9-66c6-4036-b90f-620eef0f30b0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Mulish;
  display:  inline-block ;
}
}
#s-0590195e-eaa0-49d8-ad25-e8642427557e {
  box-shadow:0px 4px 6px 2px rgba(51, 51, 51, 0.5);
margin-left: auto;
margin-right: auto;
max-width: 350px;
background-color: rgba(104, 126, 48, 1);
}
@media (max-width: 767px){#s-0590195e-eaa0-49d8-ad25-e8642427557e {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
}
}







#s-0590195e-eaa0-49d8-ad25-e8642427557e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0590195e-eaa0-49d8-ad25-e8642427557e {
  cursor: pointer;
}#s-0590195e-eaa0-49d8-ad25-e8642427557e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e8a12204-0649-4968-98a8-0919dbf7a521 {
  text-align: center;
}







  #s-e8a12204-0649-4968-98a8-0919dbf7a521 img.shogun-image {
    

    
    
    
  }


#s-e8a12204-0649-4968-98a8-0919dbf7a521 .shogun-image-content {
  
    align-items: center;
  
}

#s-29466aec-3806-4dfa-a5b3-03a8979ad7c6 {
  padding-top: 15px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
}

#s-eed5bded-e6a1-4ea3-8f5a-208149a6736a {
  box-shadow:0px 3px 7px 0px rgba(34, 25, 36, 0.5);
margin-top: 10px;
margin-bottom: 25px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-eed5bded-e6a1-4ea3-8f5a-208149a6736a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-eed5bded-e6a1-4ea3-8f5a-208149a6736a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-eed5bded-e6a1-4ea3-8f5a-208149a6736a-root {
    text-align: center;
  }


#s-eed5bded-e6a1-4ea3-8f5a-208149a6736a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Mulish;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-eed5bded-e6a1-4ea3-8f5a-208149a6736a-root {
    text-align: center;
  }


#s-eed5bded-e6a1-4ea3-8f5a-208149a6736a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Mulish;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-eed5bded-e6a1-4ea3-8f5a-208149a6736a-root {
    text-align: center;
  }


#s-eed5bded-e6a1-4ea3-8f5a-208149a6736a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Mulish;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-eed5bded-e6a1-4ea3-8f5a-208149a6736a-root {
    text-align: center;
  }


#s-eed5bded-e6a1-4ea3-8f5a-208149a6736a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Mulish;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-eed5bded-e6a1-4ea3-8f5a-208149a6736a-root {
    text-align: center;
  }


#s-eed5bded-e6a1-4ea3-8f5a-208149a6736a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Mulish;
  display:  inline-block ;
}
}
#s-e13ba429-e504-4596-a262-01f2ea5eef31 {
  box-shadow:0px 4px 6px 2px rgba(51, 51, 51, 0.5);
margin-left: auto;
margin-right: auto;
max-width: 350px;
background-color: rgba(104, 126, 48, 1);
}
@media (max-width: 767px){#s-e13ba429-e504-4596-a262-01f2ea5eef31 {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
}
}







#s-e13ba429-e504-4596-a262-01f2ea5eef31 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e13ba429-e504-4596-a262-01f2ea5eef31 {
  cursor: pointer;
}#s-e13ba429-e504-4596-a262-01f2ea5eef31.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-240d4660-5885-4587-bb64-45c1aa19bc05 {
  text-align: center;
}







  #s-240d4660-5885-4587-bb64-45c1aa19bc05 img.shogun-image {
    

    
    
    
  }


#s-240d4660-5885-4587-bb64-45c1aa19bc05 .shogun-image-content {
  
    align-items: center;
  
}

#s-229dfb0e-9520-4688-9a76-5df13c870a0d {
  padding-top: 15px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-714cbfc6-dd90-4431-be82-d980dda77b22 {
  box-shadow:0px 3px 7px 0px rgba(34, 25, 36, 0.5);
margin-top: 10px;
margin-bottom: 25px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-714cbfc6-dd90-4431-be82-d980dda77b22:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-714cbfc6-dd90-4431-be82-d980dda77b22:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-714cbfc6-dd90-4431-be82-d980dda77b22-root {
    text-align: center;
  }


#s-714cbfc6-dd90-4431-be82-d980dda77b22.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Mulish;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-714cbfc6-dd90-4431-be82-d980dda77b22-root {
    text-align: center;
  }


#s-714cbfc6-dd90-4431-be82-d980dda77b22.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Mulish;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-714cbfc6-dd90-4431-be82-d980dda77b22-root {
    text-align: center;
  }


#s-714cbfc6-dd90-4431-be82-d980dda77b22.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Mulish;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-714cbfc6-dd90-4431-be82-d980dda77b22-root {
    text-align: center;
  }


#s-714cbfc6-dd90-4431-be82-d980dda77b22.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Mulish;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-714cbfc6-dd90-4431-be82-d980dda77b22-root {
    text-align: center;
  }


#s-714cbfc6-dd90-4431-be82-d980dda77b22.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Mulish;
  display:  inline-block ;
}
}
#s-489bb2ed-0e9f-474b-9331-5947ec35e730 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 75px;
padding-left: 2%;
padding-bottom: 75px;
padding-right: 2%;
min-height: 50px;
max-width: 1380px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-489bb2ed-0e9f-474b-9331-5947ec35e730 {
  padding-top: 10px;
padding-bottom: 65px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-489bb2ed-0e9f-474b-9331-5947ec35e730 {
  padding-top: 10px;
padding-bottom: 65px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-489bb2ed-0e9f-474b-9331-5947ec35e730 {
  padding-top: 10px;
padding-left: 0%;
padding-bottom: 30px;
padding-right: 0%;
}
}@media (max-width: 767px){#s-489bb2ed-0e9f-474b-9331-5947ec35e730 {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}
}







#s-489bb2ed-0e9f-474b-9331-5947ec35e730 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-489bb2ed-0e9f-474b-9331-5947ec35e730.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-09d1cd13-7bb2-4972-8836-f92a5a129a81"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-09d1cd13-7bb2-4972-8836-f92a5a129a81"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-09d1cd13-7bb2-4972-8836-f92a5a129a81"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-09d1cd13-7bb2-4972-8836-f92a5a129a81"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 0px) {
[id="s-83c085fc-b6c0-4ed8-8eea-61e186090e7f"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 768px) {
[id="s-83c085fc-b6c0-4ed8-8eea-61e186090e7f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-83c085fc-b6c0-4ed8-8eea-61e186090e7f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-83c085fc-b6c0-4ed8-8eea-61e186090e7f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-ab210e2b-3e37-40d1-881b-30671c48a420 {
  padding-left: 0px;
padding-right: 0px;
}
@media (max-width: 767px){#s-ab210e2b-3e37-40d1-881b-30671c48a420 {
  margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}
}







#s-ab210e2b-3e37-40d1-881b-30671c48a420 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ab210e2b-3e37-40d1-881b-30671c48a420.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-29c9c9da-aa42-4712-b457-aeac1f76ae78 {
  margin-left: auto;
margin-right: auto;
max-width: 115px;
text-align: center;
}







  #s-29c9c9da-aa42-4712-b457-aeac1f76ae78 img.shogun-image {
    

    
    
    
  }


#s-29c9c9da-aa42-4712-b457-aeac1f76ae78 .shogun-image-content {
  
    align-items: center;
  
}

@media (max-width: 767px){#s-0f9e2e92-6cdb-4128-8b8a-a46eae70a3bb {
  margin-top: 0px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}
}







#s-0f9e2e92-6cdb-4128-8b8a-a46eae70a3bb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0f9e2e92-6cdb-4128-8b8a-a46eae70a3bb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9e4b5947-4b92-4f6d-9eab-1b1bdd312f88 {
  margin-left: auto;
margin-right: auto;
max-width: 115px;
text-align: center;
}







  #s-9e4b5947-4b92-4f6d-9eab-1b1bdd312f88 img.shogun-image {
    

    
    
    
  }


#s-9e4b5947-4b92-4f6d-9eab-1b1bdd312f88 .shogun-image-content {
  
    align-items: center;
  
}

@media (max-width: 767px){#s-cb79d50e-6cc2-4c90-b084-a7c148899d07 {
  margin-top: 0px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}
}







#s-cb79d50e-6cc2-4c90-b084-a7c148899d07 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cb79d50e-6cc2-4c90-b084-a7c148899d07.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f2df787c-f478-459a-bea7-9ea3823761dc {
  margin-left: auto;
margin-right: auto;
min-height: 64px;
max-width: 115px;
text-align: center;
}







  #s-f2df787c-f478-459a-bea7-9ea3823761dc img.shogun-image {
    

    
    
    
  }


#s-f2df787c-f478-459a-bea7-9ea3823761dc .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-2c7f1230-8aa1-497f-9640-9db6d4ca5807"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 768px) {
[id="s-2c7f1230-8aa1-497f-9640-9db6d4ca5807"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-2c7f1230-8aa1-497f-9640-9db6d4ca5807"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-2c7f1230-8aa1-497f-9640-9db6d4ca5807"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-9c328e86-cef3-4374-87d7-36b14d67d4f5 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
@media (max-width: 767px){#s-9c328e86-cef3-4374-87d7-36b14d67d4f5 {
  margin-left: 5px;
margin-bottom: 25px;
margin-right: 5px;
}
}







#s-9c328e86-cef3-4374-87d7-36b14d67d4f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9c328e86-cef3-4374-87d7-36b14d67d4f5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-604dc200-4743-4bba-9e17-6d2a240bb362 {
  margin-left: auto;
margin-right: auto;
max-width: 115px;
text-align: center;
}







  #s-604dc200-4743-4bba-9e17-6d2a240bb362 img.shogun-image {
    

    
    
    
  }


#s-604dc200-4743-4bba-9e17-6d2a240bb362 .shogun-image-content {
  
    align-items: center;
  
}

@media (max-width: 767px){#s-8089822d-4efe-4493-9d8a-aa4c2623d72a {
  margin-left: 5px;
margin-right: 5px;
}
}







#s-8089822d-4efe-4493-9d8a-aa4c2623d72a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8089822d-4efe-4493-9d8a-aa4c2623d72a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c5cfa4f8-1631-4fb8-b91b-5d9c5ebfc9b2 {
  margin-left: auto;
margin-right: auto;
min-height: 64px;
max-width: 115px;
text-align: center;
}







  #s-c5cfa4f8-1631-4fb8-b91b-5d9c5ebfc9b2 img.shogun-image {
    

    
    
    
  }


#s-c5cfa4f8-1631-4fb8-b91b-5d9c5ebfc9b2 .shogun-image-content {
  
    align-items: center;
  
}

@media (max-width: 767px){#s-ecd32ce9-2d1a-4ee4-b5ce-638a7a20578b {
  margin-top: 0px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}
}







#s-ecd32ce9-2d1a-4ee4-b5ce-638a7a20578b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ecd32ce9-2d1a-4ee4-b5ce-638a7a20578b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f5bc7d00-c275-4389-9164-af3496bdd616 {
  margin-left: auto;
margin-right: auto;
min-height: 64px;
max-width: 115px;
text-align: center;
}







  #s-f5bc7d00-c275-4389-9164-af3496bdd616 img.shogun-image {
    

    
    
    
  }


#s-f5bc7d00-c275-4389-9164-af3496bdd616 .shogun-image-content {
  
    align-items: center;
  
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 {
  margin-bottom: 60px;
}
@media (min-width: 768px) and (max-width: 991px){#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 {
  margin-bottom: 45px;
}
}@media (max-width: 767px){#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 {
  margin-bottom: 30px;
}
}
#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(100, 122, 29, 1);
  padding: 10px;
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 1);
  border-top: 1px solid #ddd;
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: left;
  font-family: Mulish;
  font-weight: 500;
  font-style: ;
  font-size: 22px;
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 22px;
}@media (min-width: 768px) and (max-width: 991px){#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(100, 122, 29, 1);
  padding: 10px;
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 1);
  border-top: 1px solid #ddd;
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: left;
  font-family: Mulish;
  font-weight: 500;
  font-style: ;
  font-size: 20px;
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 20px;
}}@media (max-width: 767px){#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(100, 122, 29, 1);
  padding: 10px;
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 1);
  border-top: 1px solid #ddd;
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: left;
  font-family: Mulish;
  font-weight: 500;
  font-style: ;
  font-size: 17px;
}

#s-93ca1fe4-3a33-493d-bc5c-124e4729b396 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 17px;
}}
#s-8d1b55f1-d690-448f-a6ca-9ebd6882d149 {
  margin-left: 10px;
margin-right: 10px;
}

#s-bb23f27b-5805-4b8c-ae5a-9d71dcf6929d {
  margin-left: 10px;
margin-right: 10px;
}

#s-962aad1a-f9a0-4818-ba78-cd865c986097 {
  margin-left: 10px;
margin-right: 10px;
}

#s-6a4eac1d-efdf-4448-b25a-0a5ca4acc26d {
  margin-left: 10px;
margin-right: 10px;
}

#s-d602849b-8c18-4ead-ad4d-ef8ddddd065a {
  margin-left: 10px;
margin-right: 10px;
}

#s-4c136138-ac6f-4e20-8295-ee6772f3b3bf {
  margin-left: 10px;
margin-right: 10px;
}

#s-fe818af9-5e86-4587-bc1d-5542da1571e5 {
  margin-left: 10px;
margin-right: 10px;
}

#s-e44c8c0d-0b11-4711-8a1e-da80de033050 {
  margin-left: 10px;
margin-right: 10px;
}

#s-a85df9d7-2698-4323-8e17-a64e761bba96 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
max-width: 870px;
}

#s-4cee7995-0eb4-4080-ba40-46d9967b7ba9 {
  margin-top: 30px;
min-height: 20px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-4cee7995-0eb4-4080-ba40-46d9967b7ba9 {
  
}
}@media (max-width: 767px){#s-4cee7995-0eb4-4080-ba40-46d9967b7ba9 {
  display: none;
}
#s-4cee7995-0eb4-4080-ba40-46d9967b7ba9, #wrap-s-4cee7995-0eb4-4080-ba40-46d9967b7ba9 { display: none !important; }}






  #s-4cee7995-0eb4-4080-ba40-46d9967b7ba9 img.shogun-image {
    

    
    
    
  }


#s-4cee7995-0eb4-4080-ba40-46d9967b7ba9 .shogun-image-content {
  
    align-items: center;
  
}

#s-b662b02c-d53d-41f9-b16c-3c24e54b0478 {
  margin-bottom: 75px;
}
@media (min-width: 768px) and (max-width: 991px){#s-b662b02c-d53d-41f9-b16c-3c24e54b0478 {
  margin-bottom: 45px;
}
}@media (max-width: 767px){#s-b662b02c-d53d-41f9-b16c-3c24e54b0478 {
  margin-bottom: 30px;
}
}
@media (min-width: 0px) {
[id="s-b662b02c-d53d-41f9-b16c-3c24e54b0478"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b662b02c-d53d-41f9-b16c-3c24e54b0478"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-b662b02c-d53d-41f9-b16c-3c24e54b0478"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-b662b02c-d53d-41f9-b16c-3c24e54b0478"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

#s-18bc1ef9-8049-4c03-8912-a824ebec4f01 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-c743fe18-0a79-4c11-a748-01f3b512cc09 {
  margin-bottom: 20px;
min-height: 20px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-c743fe18-0a79-4c11-a748-01f3b512cc09 {
  
}
}@media (max-width: 767px){#s-c743fe18-0a79-4c11-a748-01f3b512cc09 {
  display: none;
}
#s-c743fe18-0a79-4c11-a748-01f3b512cc09, #wrap-s-c743fe18-0a79-4c11-a748-01f3b512cc09 { display: none !important; }}






  #s-c743fe18-0a79-4c11-a748-01f3b512cc09 img.shogun-image {
    

    
    
    
  }


#s-c743fe18-0a79-4c11-a748-01f3b512cc09 .shogun-image-content {
  
    align-items: center;
  
}

#s-fed6377a-da30-4270-8745-6cca6cd320ec {
  margin-left: auto;
margin-bottom: 70px;
margin-right: auto;
}
@media (max-width: 767px){#s-fed6377a-da30-4270-8745-6cca6cd320ec {
  margin-bottom: 15px;
}
}
#s-fed6377a-da30-4270-8745-6cca6cd320ec hr {
  border-top: 3px solid #ddd;
}

#s-8c3e86d4-d588-4357-9535-6a03aa817135 {
  min-height: 20px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-8c3e86d4-d588-4357-9535-6a03aa817135 {
  
}
}@media (max-width: 767px){#s-8c3e86d4-d588-4357-9535-6a03aa817135 {
  display: none;
}
#s-8c3e86d4-d588-4357-9535-6a03aa817135, #wrap-s-8c3e86d4-d588-4357-9535-6a03aa817135 { display: none !important; }}






  #s-8c3e86d4-d588-4357-9535-6a03aa817135 img.shogun-image {
    

    
    
    
  }


#s-8c3e86d4-d588-4357-9535-6a03aa817135 .shogun-image-content {
  
    align-items: center;
  
}

#s-a633bbc5-26b0-4924-acea-cf73e220e778 {
  min-height: 20px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-a633bbc5-26b0-4924-acea-cf73e220e778 {
  
}
}@media (max-width: 767px){#s-a633bbc5-26b0-4924-acea-cf73e220e778 {
  display: none;
}
#s-a633bbc5-26b0-4924-acea-cf73e220e778, #wrap-s-a633bbc5-26b0-4924-acea-cf73e220e778 { display: none !important; }}






  #s-a633bbc5-26b0-4924-acea-cf73e220e778 img.shogun-image {
    

    
    
    
  }


#s-a633bbc5-26b0-4924-acea-cf73e220e778 .shogun-image-content {
  
    align-items: center;
  
}

#s-45f7312b-822f-429b-a5ec-673b7ad484cd {
  margin-bottom: 75px;
}
@media (min-width: 768px) and (max-width: 991px){#s-45f7312b-822f-429b-a5ec-673b7ad484cd {
  margin-bottom: 45px;
}
}@media (max-width: 767px){#s-45f7312b-822f-429b-a5ec-673b7ad484cd {
  margin-bottom: 30px;
}
}
@media (min-width: 0px) {
[id="s-45f7312b-822f-429b-a5ec-673b7ad484cd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-45f7312b-822f-429b-a5ec-673b7ad484cd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-45f7312b-822f-429b-a5ec-673b7ad484cd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-45f7312b-822f-429b-a5ec-673b7ad484cd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (max-width: 767px) {
  [id="s-45f7312b-822f-429b-a5ec-673b7ad484cd"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-ee76aee0-e583-4de1-a55d-636245856a87 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-ee76aee0-e583-4de1-a55d-636245856a87 img.shogun-image {
    

    
    
    
  }


#s-ee76aee0-e583-4de1-a55d-636245856a87 .shogun-image-content {
  
    align-items: center;
  
}

#s-f71f2863-ad14-4f83-ba67-4b627612bf66 {
  margin-left: auto;
margin-bottom: 70px;
margin-right: auto;
}
@media (max-width: 767px){#s-f71f2863-ad14-4f83-ba67-4b627612bf66 {
  margin-bottom: 15px;
}
}
#s-f71f2863-ad14-4f83-ba67-4b627612bf66 hr {
  border-top: 3px solid #ddd;
}

#s-4cafc144-8fb8-4fe2-ae42-58a9acd6a96c {
  margin-bottom: 75px;
}
@media (min-width: 768px) and (max-width: 991px){#s-4cafc144-8fb8-4fe2-ae42-58a9acd6a96c {
  margin-bottom: 45px;
}
}@media (max-width: 767px){#s-4cafc144-8fb8-4fe2-ae42-58a9acd6a96c {
  margin-bottom: 30px;
}
}
@media (min-width: 0px) {
[id="s-4cafc144-8fb8-4fe2-ae42-58a9acd6a96c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4cafc144-8fb8-4fe2-ae42-58a9acd6a96c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-4cafc144-8fb8-4fe2-ae42-58a9acd6a96c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-4cafc144-8fb8-4fe2-ae42-58a9acd6a96c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

#s-8037eb11-75dc-4717-bfbd-66dd83fc6d0a {
  margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-8037eb11-75dc-4717-bfbd-66dd83fc6d0a"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-8037eb11-75dc-4717-bfbd-66dd83fc6d0a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-8037eb11-75dc-4717-bfbd-66dd83fc6d0a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-8037eb11-75dc-4717-bfbd-66dd83fc6d0a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

#s-6f3aacdd-ba7f-42d6-880a-db6e2081bc21 {
  text-align: center;
}







  #s-6f3aacdd-ba7f-42d6-880a-db6e2081bc21 img.shogun-image {
    

    
    
    
  }


#s-6f3aacdd-ba7f-42d6-880a-db6e2081bc21 .shogun-image-content {
  
    align-items: center;
  
}

#s-e686e06a-f397-4ffd-bc79-f0c87dc9bd3f {
  text-align: center;
}







  #s-e686e06a-f397-4ffd-bc79-f0c87dc9bd3f img.shogun-image {
    

    
    
    
  }


#s-e686e06a-f397-4ffd-bc79-f0c87dc9bd3f .shogun-image-content {
  
    align-items: center;
  
}

#s-133e9df8-f43a-4a31-ad48-b025ed13a685 {
  text-align: center;
}







  #s-133e9df8-f43a-4a31-ad48-b025ed13a685 img.shogun-image {
    

    
    
    
  }


#s-133e9df8-f43a-4a31-ad48-b025ed13a685 .shogun-image-content {
  
    align-items: center;
  
}

#s-8c27c5e3-c3cf-47fd-8fe4-92b13e99421f {
  text-align: center;
}







  #s-8c27c5e3-c3cf-47fd-8fe4-92b13e99421f img.shogun-image {
    

    
    
    
  }


#s-8c27c5e3-c3cf-47fd-8fe4-92b13e99421f .shogun-image-content {
  
    align-items: center;
  
}

#s-757791f2-07eb-44ac-a0b7-4ffac7361769 {
  text-align: center;
}







  #s-757791f2-07eb-44ac-a0b7-4ffac7361769 img.shogun-image {
    

    
    
    
  }


#s-757791f2-07eb-44ac-a0b7-4ffac7361769 .shogun-image-content {
  
    align-items: center;
  
}

#s-79a9302a-fe43-4f7a-99ef-1b4c975d408f {
  text-align: center;
}







  #s-79a9302a-fe43-4f7a-99ef-1b4c975d408f img.shogun-image {
    

    
    
    
  }


#s-79a9302a-fe43-4f7a-99ef-1b4c975d408f .shogun-image-content {
  
    align-items: center;
  
}

#s-fed27959-4654-4313-bbcd-46e853f90b08 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-fed27959-4654-4313-bbcd-46e853f90b08"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-fed27959-4654-4313-bbcd-46e853f90b08"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-fed27959-4654-4313-bbcd-46e853f90b08"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-fed27959-4654-4313-bbcd-46e853f90b08"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

#s-beec813a-5825-4651-9c01-48a64f23a464 {
  text-align: center;
}







  #s-beec813a-5825-4651-9c01-48a64f23a464 img.shogun-image {
    

    
    
    
  }


#s-beec813a-5825-4651-9c01-48a64f23a464 .shogun-image-content {
  
    align-items: center;
  
}

#s-123218c2-28e0-4d19-bbad-422e7c00109c {
  text-align: center;
}







  #s-123218c2-28e0-4d19-bbad-422e7c00109c img.shogun-image {
    

    
    
    
  }


#s-123218c2-28e0-4d19-bbad-422e7c00109c .shogun-image-content {
  
    align-items: center;
  
}

#s-b30daf6f-f633-42d8-9a26-e313d5ca510e {
  text-align: center;
}







  #s-b30daf6f-f633-42d8-9a26-e313d5ca510e img.shogun-image {
    

    
    
    
  }


#s-b30daf6f-f633-42d8-9a26-e313d5ca510e .shogun-image-content {
  
    align-items: center;
  
}

#s-be033cac-355e-4c07-93cf-75bca2231db5 {
  text-align: center;
}







  #s-be033cac-355e-4c07-93cf-75bca2231db5 img.shogun-image {
    

    
    
    
  }


#s-be033cac-355e-4c07-93cf-75bca2231db5 .shogun-image-content {
  
    align-items: center;
  
}

#s-14b2ac20-125d-4aca-8b4d-296894c1b414 {
  text-align: center;
}







  #s-14b2ac20-125d-4aca-8b4d-296894c1b414 img.shogun-image {
    

    
    
    
  }


#s-14b2ac20-125d-4aca-8b4d-296894c1b414 .shogun-image-content {
  
    align-items: center;
  
}

#s-34ae0b47-66bb-4dc3-b22a-e34fd8cdab5f {
  text-align: center;
}







  #s-34ae0b47-66bb-4dc3-b22a-e34fd8cdab5f img.shogun-image {
    

    
    
    
  }


#s-34ae0b47-66bb-4dc3-b22a-e34fd8cdab5f .shogun-image-content {
  
    align-items: center;
  
}

#s-8255ea2e-970d-43d8-a33e-b903e922ed11 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-8255ea2e-970d-43d8-a33e-b903e922ed11"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-8255ea2e-970d-43d8-a33e-b903e922ed11"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-8255ea2e-970d-43d8-a33e-b903e922ed11"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-8255ea2e-970d-43d8-a33e-b903e922ed11"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

#s-f3f2f65a-1255-4e77-b4f1-c49d3125580c {
  text-align: center;
}







  #s-f3f2f65a-1255-4e77-b4f1-c49d3125580c img.shogun-image {
    

    
    
    
  }


#s-f3f2f65a-1255-4e77-b4f1-c49d3125580c .shogun-image-content {
  
    align-items: center;
  
}

#s-8abba1b9-fdaa-49ef-9c51-09c5cd40ddc3 {
  text-align: center;
}







  #s-8abba1b9-fdaa-49ef-9c51-09c5cd40ddc3 img.shogun-image {
    

    
    
    
  }


#s-8abba1b9-fdaa-49ef-9c51-09c5cd40ddc3 .shogun-image-content {
  
    align-items: center;
  
}

#s-027c4ce8-b0fa-471e-9c4a-080e74e20516 {
  text-align: center;
}







  #s-027c4ce8-b0fa-471e-9c4a-080e74e20516 img.shogun-image {
    

    
    
    
  }


#s-027c4ce8-b0fa-471e-9c4a-080e74e20516 .shogun-image-content {
  
    align-items: center;
  
}

#s-9bdb9fa6-7941-4526-bca7-1ac6d90bfc5c {
  text-align: center;
}







  #s-9bdb9fa6-7941-4526-bca7-1ac6d90bfc5c img.shogun-image {
    

    
    
    
  }


#s-9bdb9fa6-7941-4526-bca7-1ac6d90bfc5c .shogun-image-content {
  
    align-items: center;
  
}

#s-3aa6ce90-520a-4dbc-acc3-6187d39a4872 {
  text-align: center;
}







  #s-3aa6ce90-520a-4dbc-acc3-6187d39a4872 img.shogun-image {
    

    
    
    
  }


#s-3aa6ce90-520a-4dbc-acc3-6187d39a4872 .shogun-image-content {
  
    align-items: center;
  
}

#s-134ffba5-650a-43d8-8ab9-0ad0fc53dead {
  text-align: center;
}







  #s-134ffba5-650a-43d8-8ab9-0ad0fc53dead img.shogun-image {
    

    
    
    
  }


#s-134ffba5-650a-43d8-8ab9-0ad0fc53dead .shogun-image-content {
  
    align-items: center;
  
}

#s-6ae7c306-05f9-4a3d-bd12-1b890df67a35 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-6ae7c306-05f9-4a3d-bd12-1b890df67a35"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-6ae7c306-05f9-4a3d-bd12-1b890df67a35"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-6ae7c306-05f9-4a3d-bd12-1b890df67a35"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-6ae7c306-05f9-4a3d-bd12-1b890df67a35"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

#s-a0215c77-94dc-4fad-90c3-e605a3b675fd {
  text-align: center;
}







  #s-a0215c77-94dc-4fad-90c3-e605a3b675fd img.shogun-image {
    

    
    
    
  }


#s-a0215c77-94dc-4fad-90c3-e605a3b675fd .shogun-image-content {
  
    align-items: center;
  
}

#s-375a9dd8-17c4-4dd7-9cb8-eacaff4f5430 {
  text-align: center;
}







  #s-375a9dd8-17c4-4dd7-9cb8-eacaff4f5430 img.shogun-image {
    

    
    
    
  }


#s-375a9dd8-17c4-4dd7-9cb8-eacaff4f5430 .shogun-image-content {
  
    align-items: center;
  
}

#s-1501e4e7-1067-4248-b2b6-dc1bc1eb3c2e {
  text-align: center;
}







  #s-1501e4e7-1067-4248-b2b6-dc1bc1eb3c2e img.shogun-image {
    

    
    
    
  }


#s-1501e4e7-1067-4248-b2b6-dc1bc1eb3c2e .shogun-image-content {
  
    align-items: center;
  
}

#s-c9a6fe3e-27e0-4a15-9f8c-e7910ffb3bd4 {
  text-align: center;
}







  #s-c9a6fe3e-27e0-4a15-9f8c-e7910ffb3bd4 img.shogun-image {
    

    
    
    
  }


#s-c9a6fe3e-27e0-4a15-9f8c-e7910ffb3bd4 .shogun-image-content {
  
    align-items: center;
  
}

#s-516275e2-9cae-4a84-99c0-893b1f72448a {
  text-align: center;
}







  #s-516275e2-9cae-4a84-99c0-893b1f72448a img.shogun-image {
    

    
    
    
  }


#s-516275e2-9cae-4a84-99c0-893b1f72448a .shogun-image-content {
  
    align-items: center;
  
}

#s-bc3886e6-48a1-48bf-95b9-9581b62a959d {
  text-align: center;
}







  #s-bc3886e6-48a1-48bf-95b9-9581b62a959d img.shogun-image {
    

    
    
    
  }


#s-bc3886e6-48a1-48bf-95b9-9581b62a959d .shogun-image-content {
  
    align-items: center;
  
}

#s-b7cc05e4-033d-4293-9b51-c60eebe63449 {
  margin-top: 10px;
}

@media (min-width: 0px) {
[id="s-b7cc05e4-033d-4293-9b51-c60eebe63449"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-b7cc05e4-033d-4293-9b51-c60eebe63449"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-b7cc05e4-033d-4293-9b51-c60eebe63449"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-b7cc05e4-033d-4293-9b51-c60eebe63449"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

#s-81194e9e-157d-45f8-8c9b-2b16a3e519af {
  text-align: center;
}







  #s-81194e9e-157d-45f8-8c9b-2b16a3e519af img.shogun-image {
    

    
    
    
  }


#s-81194e9e-157d-45f8-8c9b-2b16a3e519af .shogun-image-content {
  
    align-items: center;
  
}

#s-b57968e6-b928-423a-9cb7-4791c271df63 {
  text-align: center;
}







  #s-b57968e6-b928-423a-9cb7-4791c271df63 img.shogun-image {
    

    
    
    
  }


#s-b57968e6-b928-423a-9cb7-4791c271df63 .shogun-image-content {
  
    align-items: center;
  
}

#s-4e0e4824-9bf1-4a0c-97ef-32dbb2a24eb5 {
  text-align: center;
}







  #s-4e0e4824-9bf1-4a0c-97ef-32dbb2a24eb5 img.shogun-image {
    

    
    
    
  }


#s-4e0e4824-9bf1-4a0c-97ef-32dbb2a24eb5 .shogun-image-content {
  
    align-items: center;
  
}

#s-205bcbb1-1048-495e-94a6-ce25266829a6 {
  text-align: center;
}







  #s-205bcbb1-1048-495e-94a6-ce25266829a6 img.shogun-image {
    

    
    
    
  }


#s-205bcbb1-1048-495e-94a6-ce25266829a6 .shogun-image-content {
  
    align-items: center;
  
}

#s-e3d85093-2f9b-40d5-bf42-efcd7dd10760 {
  text-align: center;
}







  #s-e3d85093-2f9b-40d5-bf42-efcd7dd10760 img.shogun-image {
    

    
    
    
  }


#s-e3d85093-2f9b-40d5-bf42-efcd7dd10760 .shogun-image-content {
  
    align-items: center;
  
}

#s-de9121d5-9391-43ca-b4f5-fa5d11ee67f0 {
  text-align: center;
}







  #s-de9121d5-9391-43ca-b4f5-fa5d11ee67f0 img.shogun-image {
    

    
    
    
  }


#s-de9121d5-9391-43ca-b4f5-fa5d11ee67f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-e5999638-9d5c-40c7-8c84-ae6638879c20 {
  min-height: 20px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-e5999638-9d5c-40c7-8c84-ae6638879c20 {
  
}
}@media (max-width: 767px){#s-e5999638-9d5c-40c7-8c84-ae6638879c20 {
  display: none;
}
#s-e5999638-9d5c-40c7-8c84-ae6638879c20, #wrap-s-e5999638-9d5c-40c7-8c84-ae6638879c20 { display: none !important; }}






  #s-e5999638-9d5c-40c7-8c84-ae6638879c20 img.shogun-image {
    

    
    
    
  }


#s-e5999638-9d5c-40c7-8c84-ae6638879c20 .shogun-image-content {
  
    align-items: center;
  
}

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