#s-3e9171d8-ac87-43d7-bb39-e768321eb785 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

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

@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 {
  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-e4242d7a-65da-4dd2-ae84-c0d1543f21d1 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(246, 246, 246, 0);
  }
  #s-e4242d7a-65da-4dd2-ae84-c0d1543f21d1 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
  }
#s-e4242d7a-65da-4dd2-ae84-c0d1543f21d1 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-e4242d7a-65da-4dd2-ae84-c0d1543f21d1 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(20, 133, 239, 1);
}

#s-e4242d7a-65da-4dd2-ae84-c0d1543f21d1 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(255, 255, 255, 1);
}

#s-e4242d7a-65da-4dd2-ae84-c0d1543f21d1 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

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

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
}

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

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  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-abc1f6b6-f11d-4e00-b175-6a42578e72ec {
  min-height: 50px;
}








#s-abc1f6b6-f11d-4e00-b175-6a42578e72ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-abc1f6b6-f11d-4e00-b175-6a42578e72ec.shg-box.shg-c {
  justify-content: center;
}

#s-8c75bac3-3056-45ab-98f5-8e9243e06bdd {
  text-align: left;
}

#s-a7e2e132-2b0c-4f4b-98ff-5623f3e09183 {
  margin-top: -3em;
margin-left: 0px;
margin-bottom: 0em;
margin-right: 0px;
min-height: 50px;
}
@media (min-width: 1200px){#s-a7e2e132-2b0c-4f4b-98ff-5623f3e09183 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a7e2e132-2b0c-4f4b-98ff-5623f3e09183 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a7e2e132-2b0c-4f4b-98ff-5623f3e09183 {
  
}
}@media (max-width: 767px){#s-a7e2e132-2b0c-4f4b-98ff-5623f3e09183 {
  margin-top: -5em;
display: none;
}
#s-a7e2e132-2b0c-4f4b-98ff-5623f3e09183, #wrap-s-a7e2e132-2b0c-4f4b-98ff-5623f3e09183, #wrap-content-s-a7e2e132-2b0c-4f4b-98ff-5623f3e09183 { display: none !important; }}







#s-a7e2e132-2b0c-4f4b-98ff-5623f3e09183 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a7e2e132-2b0c-4f4b-98ff-5623f3e09183.shg-box.shg-c {
  justify-content: center;
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  justify-content: space-between;
}

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

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

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

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

#s-d45c9ae2-1e2e-4c61-82c9-a026c813edfd {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-d45c9ae2-1e2e-4c61-82c9-a026c813edfd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-d45c9ae2-1e2e-4c61-82c9-a026c813edfd"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 0.0px);
}

[id="s-d45c9ae2-1e2e-4c61-82c9-a026c813edfd"] > .shg-row > .shg-c-sm-3_2 {
  width: calc(26.66666666666667% - 0.0px);
}

[id="s-d45c9ae2-1e2e-4c61-82c9-a026c813edfd"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d45c9ae2-1e2e-4c61-82c9-a026c813edfd"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 0.0px);
}

[id="s-d45c9ae2-1e2e-4c61-82c9-a026c813edfd"] > .shg-row > .shg-c-md-3_2 {
  width: calc(26.66666666666667% - 0.0px);
}

[id="s-d45c9ae2-1e2e-4c61-82c9-a026c813edfd"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d45c9ae2-1e2e-4c61-82c9-a026c813edfd"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 0.0px);
}

[id="s-d45c9ae2-1e2e-4c61-82c9-a026c813edfd"] > .shg-row > .shg-c-lg-3_2 {
  width: calc(26.66666666666667% - 0.0px);
}

[id="s-d45c9ae2-1e2e-4c61-82c9-a026c813edfd"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-2078b441-8633-44d9-a8c7-b819827e3caf {
  margin-left: 0em;
margin-right: 0em;
min-height: 50px;
}
@media (min-width: 1200px){#s-2078b441-8633-44d9-a8c7-b819827e3caf {
  margin-top: 0em;
display: none;
}
#s-2078b441-8633-44d9-a8c7-b819827e3caf, #wrap-s-2078b441-8633-44d9-a8c7-b819827e3caf, #wrap-content-s-2078b441-8633-44d9-a8c7-b819827e3caf { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2078b441-8633-44d9-a8c7-b819827e3caf {
  display: none;
}
#s-2078b441-8633-44d9-a8c7-b819827e3caf, #wrap-s-2078b441-8633-44d9-a8c7-b819827e3caf, #wrap-content-s-2078b441-8633-44d9-a8c7-b819827e3caf { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2078b441-8633-44d9-a8c7-b819827e3caf {
  display: none;
}
#s-2078b441-8633-44d9-a8c7-b819827e3caf, #wrap-s-2078b441-8633-44d9-a8c7-b819827e3caf, #wrap-content-s-2078b441-8633-44d9-a8c7-b819827e3caf { display: none !important; }}@media (max-width: 767px){#s-2078b441-8633-44d9-a8c7-b819827e3caf {
  margin-left: 9em;
}
}







#s-2078b441-8633-44d9-a8c7-b819827e3caf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2078b441-8633-44d9-a8c7-b819827e3caf.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 1200px){#s-3625de8a-9e32-4703-9081-1091ec7b3d14 {
  padding-right: 0.5em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3625de8a-9e32-4703-9081-1091ec7b3d14 {
  padding-right: 0.5em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-3625de8a-9e32-4703-9081-1091ec7b3d14 {
  padding-right: 0.5em;
}
}@media (max-width: 767px){#s-3625de8a-9e32-4703-9081-1091ec7b3d14 {
  display: none;
}
#s-3625de8a-9e32-4703-9081-1091ec7b3d14, #wrap-s-3625de8a-9e32-4703-9081-1091ec7b3d14, #wrap-content-s-3625de8a-9e32-4703-9081-1091ec7b3d14 { display: none !important; }}
.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 ::-moz-selection, .shg-default-text-content *::-moz-selection {
  background: #accef7;
}
.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-8cb9e21f-3948-4396-8ee7-51dc3418bddb {
  margin-left: 0em;
margin-right: 0em;
padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
}

#s-ea40a019-c786-4cf0-be7f-95e12b0ffbd5 {
  margin-left: 0px;
margin-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-ea40a019-c786-4cf0-be7f-95e12b0ffbd5 {
  margin-top: 1em;
margin-left: -5em;
}
}
#s-b528af84-ca6a-492e-9495-eb50b834035c {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 8px;
margin-right: 0px;
}
@media (max-width: 767px){#s-b528af84-ca6a-492e-9495-eb50b834035c {
  margin-bottom: 0px;
}
}
#s-1b495624-6192-4a75-b520-f37eac3ee75b {
  margin-left: 0%;
margin-right: 0%;
text-align: left;
}

#s-1b495624-6192-4a75-b520-f37eac3ee75b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-1b495624-6192-4a75-b520-f37eac3ee75b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 18px;
}

#s-1b495624-6192-4a75-b520-f37eac3ee75b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(166, 163, 163, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 5px;
}

#s-14c08ca5-3649-4413-8631-d6841f91c992 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 8px;
margin-right: 0px;
}
@media (max-width: 767px){#s-14c08ca5-3649-4413-8631-d6841f91c992 {
  margin-bottom: 0px;
}
}
#s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911 {
  display: none;
}
#s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911, #wrap-s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911, #wrap-content-s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911 {
  display: none;
}
#s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911, #wrap-s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911, #wrap-content-s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911 {
  display: none;
}
#s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911, #wrap-s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911, #wrap-content-s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911 { display: none !important; }}@media (max-width: 767px){#s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911 {
  margin-top: -4em;
}
}
@media (min-width: 0px) {
[id="s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7ff985e2-ab03-4ae2-81dd-1bb53b6a0911"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-2bc6bbe2-7f3c-4acf-9cdc-780feb66d8e0 {
  margin-left: 0em;
margin-right: 0em;
min-height: 50px;
}
@media (min-width: 1200px){#s-2bc6bbe2-7f3c-4acf-9cdc-780feb66d8e0 {
  margin-top: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2bc6bbe2-7f3c-4acf-9cdc-780feb66d8e0 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2bc6bbe2-7f3c-4acf-9cdc-780feb66d8e0 {
  
}
}@media (max-width: 767px){#s-2bc6bbe2-7f3c-4acf-9cdc-780feb66d8e0 {
  display: none;
}
#s-2bc6bbe2-7f3c-4acf-9cdc-780feb66d8e0, #wrap-s-2bc6bbe2-7f3c-4acf-9cdc-780feb66d8e0, #wrap-content-s-2bc6bbe2-7f3c-4acf-9cdc-780feb66d8e0 { display: none !important; }}







#s-2bc6bbe2-7f3c-4acf-9cdc-780feb66d8e0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2bc6bbe2-7f3c-4acf-9cdc-780feb66d8e0.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 1200px){#s-02a9d5db-e34f-459d-b34b-5950256049ca {
  display: none;
}
#s-02a9d5db-e34f-459d-b34b-5950256049ca, #wrap-s-02a9d5db-e34f-459d-b34b-5950256049ca, #wrap-content-s-02a9d5db-e34f-459d-b34b-5950256049ca { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-02a9d5db-e34f-459d-b34b-5950256049ca {
  display: none;
}
#s-02a9d5db-e34f-459d-b34b-5950256049ca, #wrap-s-02a9d5db-e34f-459d-b34b-5950256049ca, #wrap-content-s-02a9d5db-e34f-459d-b34b-5950256049ca { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-02a9d5db-e34f-459d-b34b-5950256049ca {
  display: none;
}
#s-02a9d5db-e34f-459d-b34b-5950256049ca, #wrap-s-02a9d5db-e34f-459d-b34b-5950256049ca, #wrap-content-s-02a9d5db-e34f-459d-b34b-5950256049ca { display: none !important; }}@media (max-width: 767px){#s-02a9d5db-e34f-459d-b34b-5950256049ca {
  
}
}
#s-ebb4d1b6-7c1e-4e16-8781-7382f468a929 {
  margin-left: 0em;
margin-right: 0em;
padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
}

#s-1c2776f5-2d61-4688-bf81-ffd6af86d4cf {
  margin-left: 0px;
margin-right: 0px;
text-align: right;
}
@media (max-width: 767px){#s-1c2776f5-2d61-4688-bf81-ffd6af86d4cf {
  margin-top: 1em;
margin-left: 0em;
}
}
#s-568534dd-fe30-4c80-8930-8d1b6fba7ae1 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 8px;
margin-right: 0px;
}
@media (max-width: 767px){#s-568534dd-fe30-4c80-8930-8d1b6fba7ae1 {
  margin-bottom: 0px;
}
}
#s-5b4d47a1-0b9d-48c4-a19d-dfcfe32c63f0 {
  margin-left: 0%;
margin-right: 0%;
text-align: left;
}

#s-5b4d47a1-0b9d-48c4-a19d-dfcfe32c63f0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-5b4d47a1-0b9d-48c4-a19d-dfcfe32c63f0 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 18px;
}

#s-5b4d47a1-0b9d-48c4-a19d-dfcfe32c63f0 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(166, 163, 163, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 5px;
}

#s-c50f6bf9-59a4-4edf-8d0d-d10740d4eb3e {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 8px;
margin-right: 0px;
}
@media (max-width: 767px){#s-c50f6bf9-59a4-4edf-8d0d-d10740d4eb3e {
  margin-bottom: 0px;
}
}
#s-f66d0685-a4df-479c-b518-870ead0055a6 {
  margin-left: 0px;
margin-right: 0px;
min-height: 50px;
}
@media (min-width: 1200px){#s-f66d0685-a4df-479c-b518-870ead0055a6 {
  display: none;
}
#s-f66d0685-a4df-479c-b518-870ead0055a6, #wrap-s-f66d0685-a4df-479c-b518-870ead0055a6, #wrap-content-s-f66d0685-a4df-479c-b518-870ead0055a6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f66d0685-a4df-479c-b518-870ead0055a6 {
  display: none;
}
#s-f66d0685-a4df-479c-b518-870ead0055a6, #wrap-s-f66d0685-a4df-479c-b518-870ead0055a6, #wrap-content-s-f66d0685-a4df-479c-b518-870ead0055a6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f66d0685-a4df-479c-b518-870ead0055a6 {
  display: none;
}
#s-f66d0685-a4df-479c-b518-870ead0055a6, #wrap-s-f66d0685-a4df-479c-b518-870ead0055a6, #wrap-content-s-f66d0685-a4df-479c-b518-870ead0055a6 { display: none !important; }}@media (max-width: 767px){#s-f66d0685-a4df-479c-b518-870ead0055a6 {
  margin-top: 0em;
display: none;
}
#s-f66d0685-a4df-479c-b518-870ead0055a6, #wrap-s-f66d0685-a4df-479c-b518-870ead0055a6, #wrap-content-s-f66d0685-a4df-479c-b518-870ead0055a6 { display: none !important; }}







#s-f66d0685-a4df-479c-b518-870ead0055a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f66d0685-a4df-479c-b518-870ead0055a6.shg-box.shg-c {
  justify-content: center;
}

#s-c6c0bcc9-942e-41b7-b913-cff32b326a7a {
  margin-left: 1em;
margin-right: auto;
}

#s-41628f10-cc1a-4437-bba2-0770483ebc72 {
  margin-top: 0em;
margin-left: 13em;
margin-bottom: 0em;
margin-right: 13em;
min-height: 50px;
}
@media (min-width: 1200px){#s-41628f10-cc1a-4437-bba2-0770483ebc72 {
  display: none;
}
#s-41628f10-cc1a-4437-bba2-0770483ebc72, #wrap-s-41628f10-cc1a-4437-bba2-0770483ebc72, #wrap-content-s-41628f10-cc1a-4437-bba2-0770483ebc72 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-41628f10-cc1a-4437-bba2-0770483ebc72 {
  display: none;
}
#s-41628f10-cc1a-4437-bba2-0770483ebc72, #wrap-s-41628f10-cc1a-4437-bba2-0770483ebc72, #wrap-content-s-41628f10-cc1a-4437-bba2-0770483ebc72 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-41628f10-cc1a-4437-bba2-0770483ebc72 {
  display: none;
}
#s-41628f10-cc1a-4437-bba2-0770483ebc72, #wrap-s-41628f10-cc1a-4437-bba2-0770483ebc72, #wrap-content-s-41628f10-cc1a-4437-bba2-0770483ebc72 { display: none !important; }}@media (max-width: 767px){#s-41628f10-cc1a-4437-bba2-0770483ebc72 {
  display: none;
}
#s-41628f10-cc1a-4437-bba2-0770483ebc72, #wrap-s-41628f10-cc1a-4437-bba2-0770483ebc72, #wrap-content-s-41628f10-cc1a-4437-bba2-0770483ebc72 { display: none !important; }}







#s-41628f10-cc1a-4437-bba2-0770483ebc72 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-41628f10-cc1a-4437-bba2-0770483ebc72.shg-box.shg-c {
  justify-content: center;
}

.shg-align-container {
  box-sizing: border-box;
}

.shg-image-content-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.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;
  flex-direction: column;
  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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

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

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

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

.shg-imageV2-content {
  text-align: initial;
}

.shogun-image-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  min-width: 100%;
  min-height: 100%;
  /* Ensures that the content children fills the container */
  align-items: stretch;
}

.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-top {
  align-items: flex-start;
}

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-10bdc787-0b86-45a3-b788-be04af493031 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
max-width: 1200px;
aspect-ratio: 1440/900;
text-align: center;
}

#s-10bdc787-0b86-45a3-b788-be04af493031 {
  margin: 0 !important;
  overflow: visible;
}

#s-10bdc787-0b86-45a3-b788-be04af493031-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10bdc787-0b86-45a3-b788-be04af493031 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.shg-image-content-margin-container-s-10bdc787-0b86-45a3-b788-be04af493031 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10bdc787-0b86-45a3-b788-be04af493031 img.shogun-image {
  /* Add background color handling */
  
}

#s-10bdc787-0b86-45a3-b788-be04af493031 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-10bdc787-0b86-45a3-b788-be04af493031.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-10bdc787-0b86-45a3-b788-be04af493031 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10bdc787-0b86-45a3-b788-be04af493031.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10bdc787-0b86-45a3-b788-be04af493031.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10bdc787-0b86-45a3-b788-be04af493031.shogun-image {
  box-sizing: border-box;
}



.s-10bdc787-0b86-45a3-b788-be04af493031 img.shogun-image {
  
}


@media (min-width: 1200px){#s-10bdc787-0b86-45a3-b788-be04af493031 {
  margin: 0 !important;
  overflow: visible;
}

#s-10bdc787-0b86-45a3-b788-be04af493031-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10bdc787-0b86-45a3-b788-be04af493031 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10bdc787-0b86-45a3-b788-be04af493031 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10bdc787-0b86-45a3-b788-be04af493031 img.shogun-image {
  /* Add background color handling */
  
}

#s-10bdc787-0b86-45a3-b788-be04af493031 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-10bdc787-0b86-45a3-b788-be04af493031.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-10bdc787-0b86-45a3-b788-be04af493031 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10bdc787-0b86-45a3-b788-be04af493031.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10bdc787-0b86-45a3-b788-be04af493031.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10bdc787-0b86-45a3-b788-be04af493031.shogun-image {
  box-sizing: border-box;
}



.s-10bdc787-0b86-45a3-b788-be04af493031 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-10bdc787-0b86-45a3-b788-be04af493031 {
  margin: 0 !important;
  overflow: visible;
}

#s-10bdc787-0b86-45a3-b788-be04af493031-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10bdc787-0b86-45a3-b788-be04af493031 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10bdc787-0b86-45a3-b788-be04af493031 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10bdc787-0b86-45a3-b788-be04af493031 img.shogun-image {
  /* Add background color handling */
  
}

#s-10bdc787-0b86-45a3-b788-be04af493031 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-10bdc787-0b86-45a3-b788-be04af493031.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-10bdc787-0b86-45a3-b788-be04af493031 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10bdc787-0b86-45a3-b788-be04af493031.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10bdc787-0b86-45a3-b788-be04af493031.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10bdc787-0b86-45a3-b788-be04af493031.shogun-image {
  box-sizing: border-box;
}



.s-10bdc787-0b86-45a3-b788-be04af493031 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-10bdc787-0b86-45a3-b788-be04af493031 {
  margin: 0 !important;
  overflow: visible;
}

#s-10bdc787-0b86-45a3-b788-be04af493031-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10bdc787-0b86-45a3-b788-be04af493031 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10bdc787-0b86-45a3-b788-be04af493031 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10bdc787-0b86-45a3-b788-be04af493031 img.shogun-image {
  /* Add background color handling */
  
}

#s-10bdc787-0b86-45a3-b788-be04af493031 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-10bdc787-0b86-45a3-b788-be04af493031.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-10bdc787-0b86-45a3-b788-be04af493031 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10bdc787-0b86-45a3-b788-be04af493031.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10bdc787-0b86-45a3-b788-be04af493031.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10bdc787-0b86-45a3-b788-be04af493031.shogun-image {
  box-sizing: border-box;
}



.s-10bdc787-0b86-45a3-b788-be04af493031 img.shogun-image {
  
}


}@media (max-width: 767px){#s-10bdc787-0b86-45a3-b788-be04af493031 {
  margin: 0 !important;
  overflow: visible;
}

#s-10bdc787-0b86-45a3-b788-be04af493031-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-10bdc787-0b86-45a3-b788-be04af493031 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-10bdc787-0b86-45a3-b788-be04af493031 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-10bdc787-0b86-45a3-b788-be04af493031 img.shogun-image {
  /* Add background color handling */
  
}

#s-10bdc787-0b86-45a3-b788-be04af493031 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-10bdc787-0b86-45a3-b788-be04af493031.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-10bdc787-0b86-45a3-b788-be04af493031 .shogun-image-content {
  
    justify-content: center;
  
}

.s-10bdc787-0b86-45a3-b788-be04af493031.shg-align-container {
  display: flex;
  justify-content: center
}

.s-10bdc787-0b86-45a3-b788-be04af493031.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-10bdc787-0b86-45a3-b788-be04af493031.shogun-image {
  box-sizing: border-box;
}



.s-10bdc787-0b86-45a3-b788-be04af493031 img.shogun-image {
  
}


}
#s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d {
  margin-top: 0em;
margin-left: 13em;
margin-bottom: 0em;
margin-right: 13em;
min-height: 50px;
}
@media (min-width: 1200px){#s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d {
  display: none;
}
#s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d, #wrap-s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d, #wrap-content-s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d {
  display: none;
}
#s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d, #wrap-s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d, #wrap-content-s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d {
  display: none;
}
#s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d, #wrap-s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d, #wrap-content-s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d { display: none !important; }}@media (max-width: 767px){#s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d {
  display: none;
}
#s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d, #wrap-s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d, #wrap-content-s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d { display: none !important; }}







#s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2bbb18ac-70f2-445c-bfee-4ba92cd5410d.shg-box.shg-c {
  justify-content: center;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
max-width: 1200px;
aspect-ratio: 1440/900;
text-align: center;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad {
  margin: 0 !important;
  overflow: visible;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-84af8524-3448-4091-899a-8e6d5609b2ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.shg-image-content-margin-container-s-84af8524-3448-4091-899a-8e6d5609b2ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad img.shogun-image {
  /* Add background color handling */
  
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-84af8524-3448-4091-899a-8e6d5609b2ad.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-84af8524-3448-4091-899a-8e6d5609b2ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-84af8524-3448-4091-899a-8e6d5609b2ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84af8524-3448-4091-899a-8e6d5609b2ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad.shogun-image {
  box-sizing: border-box;
}



.s-84af8524-3448-4091-899a-8e6d5609b2ad img.shogun-image {
  
}


@media (min-width: 1200px){#s-84af8524-3448-4091-899a-8e6d5609b2ad {
  margin: 0 !important;
  overflow: visible;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-84af8524-3448-4091-899a-8e6d5609b2ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-84af8524-3448-4091-899a-8e6d5609b2ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad img.shogun-image {
  /* Add background color handling */
  
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-84af8524-3448-4091-899a-8e6d5609b2ad.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-84af8524-3448-4091-899a-8e6d5609b2ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-84af8524-3448-4091-899a-8e6d5609b2ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84af8524-3448-4091-899a-8e6d5609b2ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad.shogun-image {
  box-sizing: border-box;
}



.s-84af8524-3448-4091-899a-8e6d5609b2ad img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-84af8524-3448-4091-899a-8e6d5609b2ad {
  margin: 0 !important;
  overflow: visible;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-84af8524-3448-4091-899a-8e6d5609b2ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-84af8524-3448-4091-899a-8e6d5609b2ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad img.shogun-image {
  /* Add background color handling */
  
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-84af8524-3448-4091-899a-8e6d5609b2ad.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-84af8524-3448-4091-899a-8e6d5609b2ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-84af8524-3448-4091-899a-8e6d5609b2ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84af8524-3448-4091-899a-8e6d5609b2ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad.shogun-image {
  box-sizing: border-box;
}



.s-84af8524-3448-4091-899a-8e6d5609b2ad img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-84af8524-3448-4091-899a-8e6d5609b2ad {
  margin: 0 !important;
  overflow: visible;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-84af8524-3448-4091-899a-8e6d5609b2ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-84af8524-3448-4091-899a-8e6d5609b2ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad img.shogun-image {
  /* Add background color handling */
  
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-84af8524-3448-4091-899a-8e6d5609b2ad.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-84af8524-3448-4091-899a-8e6d5609b2ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-84af8524-3448-4091-899a-8e6d5609b2ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84af8524-3448-4091-899a-8e6d5609b2ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad.shogun-image {
  box-sizing: border-box;
}



.s-84af8524-3448-4091-899a-8e6d5609b2ad img.shogun-image {
  
}


}@media (max-width: 767px){#s-84af8524-3448-4091-899a-8e6d5609b2ad {
  margin: 0 !important;
  overflow: visible;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-84af8524-3448-4091-899a-8e6d5609b2ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-84af8524-3448-4091-899a-8e6d5609b2ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad img.shogun-image {
  /* Add background color handling */
  
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-84af8524-3448-4091-899a-8e6d5609b2ad.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-84af8524-3448-4091-899a-8e6d5609b2ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-84af8524-3448-4091-899a-8e6d5609b2ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84af8524-3448-4091-899a-8e6d5609b2ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84af8524-3448-4091-899a-8e6d5609b2ad.shogun-image {
  box-sizing: border-box;
}



.s-84af8524-3448-4091-899a-8e6d5609b2ad img.shogun-image {
  
}


}
#s-2310c7d4-020c-47df-b128-e32029ca3f3f {
  margin-top: 10px;
margin-left: 1em;
margin-bottom: 0px;
margin-right: 1em;
padding-left: 0em;
padding-right: 0em;
border-top-width: 1.5px;
border-left-width: 1.5px;
border-bottom-width: 1.5px;
border-right-width: 1.5px;
border-color: #000;
border-style: none;
border-radius: 10px;
min-height: 50px;
background-color: rgba(223, 234, 245, 1);
}
@media (min-width: 1200px){#s-2310c7d4-020c-47df-b128-e32029ca3f3f {
  display: none;
}
#s-2310c7d4-020c-47df-b128-e32029ca3f3f, #wrap-s-2310c7d4-020c-47df-b128-e32029ca3f3f, #wrap-content-s-2310c7d4-020c-47df-b128-e32029ca3f3f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2310c7d4-020c-47df-b128-e32029ca3f3f {
  display: none;
}
#s-2310c7d4-020c-47df-b128-e32029ca3f3f, #wrap-s-2310c7d4-020c-47df-b128-e32029ca3f3f, #wrap-content-s-2310c7d4-020c-47df-b128-e32029ca3f3f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2310c7d4-020c-47df-b128-e32029ca3f3f {
  display: none;
}
#s-2310c7d4-020c-47df-b128-e32029ca3f3f, #wrap-s-2310c7d4-020c-47df-b128-e32029ca3f3f, #wrap-content-s-2310c7d4-020c-47df-b128-e32029ca3f3f { display: none !important; }}@media (max-width: 767px){#s-2310c7d4-020c-47df-b128-e32029ca3f3f {
  margin-top: 0px;
display: none;
}
#s-2310c7d4-020c-47df-b128-e32029ca3f3f, #wrap-s-2310c7d4-020c-47df-b128-e32029ca3f3f, #wrap-content-s-2310c7d4-020c-47df-b128-e32029ca3f3f { display: none !important; }}







#s-2310c7d4-020c-47df-b128-e32029ca3f3f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2310c7d4-020c-47df-b128-e32029ca3f3f.shg-box.shg-c {
  justify-content: center;
}

#s-e2387b95-a268-466e-91a2-2ee7b6df9fac {
  margin-top: 5px;
margin-bottom: -10px;
padding-left: 0%;
padding-right: 0%;
}

#s-e5cc7473-a033-4a64-9ef4-0564e6da8af5 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-6024c25f-d61d-4ba2-9d49-adb98c5ec122 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-6024c25f-d61d-4ba2-9d49-adb98c5ec122 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6024c25f-d61d-4ba2-9d49-adb98c5ec122.shg-box.shg-c {
  justify-content: center;
}

#s-70ab7594-9550-4478-a38d-360479e47f65 {
  margin-top: 10px;
margin-left: 9em;
margin-bottom: 10px;
margin-right: 9em;
min-height: 50px;
}
@media (max-width: 767px){#s-70ab7594-9550-4478-a38d-360479e47f65 {
  margin-top: 0.5em;
margin-left: 1em;
margin-bottom: 0.5em;
margin-right: 1em;
}
}







#s-70ab7594-9550-4478-a38d-360479e47f65 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-70ab7594-9550-4478-a38d-360479e47f65.shg-box.shg-c {
  justify-content: center;
}

#s-f40eb0b2-679f-4771-84bb-8c9721111ba5 {
  margin-top: 3em;
margin-left: 2em;
margin-bottom: 5em;
margin-right: 0em;
}
@media (min-width: 1200px){#s-f40eb0b2-679f-4771-84bb-8c9721111ba5 {
  margin-top: 4em;
margin-bottom: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f40eb0b2-679f-4771-84bb-8c9721111ba5 {
  margin-top: 4em;
margin-bottom: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f40eb0b2-679f-4771-84bb-8c9721111ba5 {
  margin-bottom: 2em;
}
}@media (max-width: 767px){#s-f40eb0b2-679f-4771-84bb-8c9721111ba5 {
  margin-top: 1em;
margin-left: 0em;
margin-bottom: 2em;
}
}
.autoplay-video-for-iq {
    width:100%;
    
}
.mobile-video-slot {
    display:none;
}
.radius-right-for-video{
    border-radius: 8px 50px 50px 8px;
}
@media screen and (max-width: 900px) and (min-width: 60px) {
.desktop-video-slot {
    display:none;
}
.mobile-video-slot {
    display:block;
}
}
#s-61bab5ad-259e-4837-b430-24366182c56d {
  margin-top: -15em;
margin-left: 4em;
margin-bottom: 0em;
margin-right: 8em;
padding-top: 0em;
padding-bottom: 3em;
min-height: 50px;
}
@media (max-width: 767px){#s-61bab5ad-259e-4837-b430-24366182c56d {
  margin-top: -17em;
margin-left: 2em;
margin-right: 2em;
padding-bottom: 0em;
}
}







#s-61bab5ad-259e-4837-b430-24366182c56d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-61bab5ad-259e-4837-b430-24366182c56d.shg-box.shg-c {
  justify-content: center;
}

#s-ec10354c-951a-4cfa-bdc6-b7cf6dafe291 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-ec10354c-951a-4cfa-bdc6-b7cf6dafe291 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ec10354c-951a-4cfa-bdc6-b7cf6dafe291.shg-box.shg-c {
  justify-content: center;
}

.popup-text{
    color:#ffffff;;
    text-align: center;
    font-size: 1.2em;
        background-color: rgba(0, 0, 0, 0);
        -webkit-text-stroke-width: 0.03em;
}

.showdrop [data-component="popup-for-piqo-video"] .modal{
     display:block!important;
     visibility: visible!important;
}

/*.modal{*/
/*    overflow: scroll;*/
/*}*/
.popup-text:focus, .popup-text:hover, .popup-text:focus, .popup-text:hover {
    color:#ffffff;
    font-size:1.2em;
        background-color: rgba(0, 0, 0, 0);
        -webkit-text-stroke-width: 0.03em;
}
.button-popup{
       border:none;
     /*
    color: #A9A9A9;
    font-size: 16px;
        background-color: rgba(0, 0, 0, 0);
        -webkit-text-stroke-width: 0.03em;*/
}
.piqo_icon:focus, .piqo_icon:hover, .piqo_icon:focus, .piqo_icon:hover 
    {
    width: 4em;
    height: 4em;
    -o-object-fit: contain;
       object-fit: contain;
    margin-right:15px;
    }
.piqo_icon{
    width: 4em;
    height: 4em;
    -o-object-fit: contain;
       object-fit: contain;
    margin-right:15px;
}
.litetext{
background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 10px;
    padding: 3px 7px;
    font-size:14px;
}
.starstyle{
    color:#ffffff;
     font-size:20px;
     margin-left: 5px;
    
}
.piqoPopup-mainDiv{
    width: 88%;
    height:87.1vh;
    max-height: 100vh;
    left: unset;
    right: 0;
    transform: translateY(-50%);
    border: 0;
    top: unset !important;
    bottom: -46%;
}
.piqoPopup-mainDiv .modal-close{
    color: #fff !important;
    padding-top: 3px;
    position: sticky;
    float: right;
    right:0.8% !important;
}
.piqoPopup-mainDiv .modal-close i{
    -webkit-text-stroke: 0px #666666;
    padding: 9px 12px;
    background: #666666;
    border-radius: 50%;
    margin-left: -7px;
}
.piqoPopup-mainDiv::-webkit-scrollbar {
    display: none;
}
@media screen and (max-width: 900px) and (min-width: 60px) {
.dropzone-class{
  overflow: auto;
}
.popup-text{
    font-size:.8em !important;
}
.popup-text:focus, .popup-text:hover, .popup-text:focus, .popup-text:hover {
    font-size:.8em !important;
}
.piqo_icon{
    width: 4em !important;
    height: 4em !important;

}
.pigo-popupText{
    font-size:1.4em;
}
.litetext{
 font-size:10px !important;   
}
.button-popup{
    padding-top:0px !important;
    padding-bottom:10px;
}
.piqoPopup-mainDiv {
    height: 84.8vh;
}
}
@media screen and (max-width: 5000px) and (min-width: 1500px) {
    .piqoPopup-mainDiv{
     height: 91vh;
    }
}
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: -24px;
margin-left: 0px;
margin-right: 0px;
min-height: 30em;
background-position: center center;
}
@media (max-width: 767px){#s-570d45d2-81a5-4463-aca0-79bbea1a6b88 {
  min-height: 15em;
}
}
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88 {
  background-image: url(https://i.shgcdn.com/cde73de1-4444-4c9c-94f7-9c838404ec75/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88 {
  background-image: url(https://i.shgcdn.com/cde73de1-4444-4c9c-94f7-9c838404ec75/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88 {
  background-image: url(https://i.shgcdn.com/cde73de1-4444-4c9c-94f7-9c838404ec75/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88 {
  background-image: url(https://i.shgcdn.com/cde73de1-4444-4c9c-94f7-9c838404ec75/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88 {
  background-image: url(https://i.shgcdn.com/cde73de1-4444-4c9c-94f7-9c838404ec75/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88 {
  background-image: url(https://i.shgcdn.com/cde73de1-4444-4c9c-94f7-9c838404ec75/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88 {
  background-image: url(https://i.shgcdn.com/cde73de1-4444-4c9c-94f7-9c838404ec75/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88 {
  background-image: url(https://i.shgcdn.com/cde73de1-4444-4c9c-94f7-9c838404ec75/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88 {
  background-image: url(https://i.shgcdn.com/cde73de1-4444-4c9c-94f7-9c838404ec75/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-570d45d2-81a5-4463-aca0-79bbea1a6b88.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-570d45d2-81a5-4463-aca0-79bbea1a6b88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-570d45d2-81a5-4463-aca0-79bbea1a6b88.shg-box.shg-c {
  justify-content: center;
}

#s-4ddf2a22-805c-4fdb-bf55-b893f543d74e {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-4ddf2a22-805c-4fdb-bf55-b893f543d74e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4ddf2a22-805c-4fdb-bf55-b893f543d74e.shg-box.shg-c {
  justify-content: center;
}

#s-2705d42a-584c-4c63-b995-4ac1d47e27fb {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-2705d42a-584c-4c63-b995-4ac1d47e27fb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2705d42a-584c-4c63-b995-4ac1d47e27fb.shg-box.shg-c {
  justify-content: center;
}

#s-df1a573f-bf42-453d-9a8e-25f25437bc84 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
}

#s-6c7ca7e7-ab16-412c-af0e-6a840b2ae38f {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
}

#s-4d1a51d3-755f-4807-8de5-61a468252218 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: -24px;
margin-left: 0px;
margin-right: 0px;
min-height: 30em;
background-position: center center;
}
@media (max-width: 767px){#s-4d1a51d3-755f-4807-8de5-61a468252218 {
  min-height: 15em;
}
}
#s-4d1a51d3-755f-4807-8de5-61a468252218 {
  background-image: url(https://i.shgcdn.com/d7e95f16-e909-41d0-99fe-62dc9acca96c/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-4d1a51d3-755f-4807-8de5-61a468252218 {
  background-image: url(https://i.shgcdn.com/d7e95f16-e909-41d0-99fe-62dc9acca96c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}
#s-4d1a51d3-755f-4807-8de5-61a468252218.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-4d1a51d3-755f-4807-8de5-61a468252218 {
  background-image: url(https://i.shgcdn.com/d7e95f16-e909-41d0-99fe-62dc9acca96c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}
#s-4d1a51d3-755f-4807-8de5-61a468252218.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-4d1a51d3-755f-4807-8de5-61a468252218 {
  background-image: url(https://i.shgcdn.com/d7e95f16-e909-41d0-99fe-62dc9acca96c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}
#s-4d1a51d3-755f-4807-8de5-61a468252218.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-4d1a51d3-755f-4807-8de5-61a468252218 {
  background-image: url(https://i.shgcdn.com/d7e95f16-e909-41d0-99fe-62dc9acca96c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}
#s-4d1a51d3-755f-4807-8de5-61a468252218.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-4d1a51d3-755f-4807-8de5-61a468252218 {
  background-image: url(https://i.shgcdn.com/d7e95f16-e909-41d0-99fe-62dc9acca96c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}
#s-4d1a51d3-755f-4807-8de5-61a468252218.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-4d1a51d3-755f-4807-8de5-61a468252218 {
  background-image: url(https://i.shgcdn.com/d7e95f16-e909-41d0-99fe-62dc9acca96c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-4d1a51d3-755f-4807-8de5-61a468252218.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-4d1a51d3-755f-4807-8de5-61a468252218 {
  background-image: url(https://i.shgcdn.com/d7e95f16-e909-41d0-99fe-62dc9acca96c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}
#s-4d1a51d3-755f-4807-8de5-61a468252218.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-4d1a51d3-755f-4807-8de5-61a468252218 {
  background-image: url(https://i.shgcdn.com/d7e95f16-e909-41d0-99fe-62dc9acca96c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-4d1a51d3-755f-4807-8de5-61a468252218.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-4d1a51d3-755f-4807-8de5-61a468252218 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4d1a51d3-755f-4807-8de5-61a468252218.shg-box.shg-c {
  justify-content: center;
}

#s-111a56e0-3a71-4cd3-a769-bdc0f390e25c {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-111a56e0-3a71-4cd3-a769-bdc0f390e25c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-111a56e0-3a71-4cd3-a769-bdc0f390e25c.shg-box.shg-c {
  justify-content: center;
}

#s-768fd031-bcad-474a-920e-43e1c85c9d7a {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-768fd031-bcad-474a-920e-43e1c85c9d7a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-768fd031-bcad-474a-920e-43e1c85c9d7a.shg-box.shg-c {
  justify-content: center;
}

#s-0d9c4865-a527-42aa-9dcc-4e4eab0c2b7d {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
}

#s-eaefc20f-65f3-4212-a0a1-0efa987a3c9a {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
}

#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: -24px;
margin-left: 0px;
margin-right: 0px;
min-height: 30em;
background-position: center center;
}
@media (max-width: 767px){#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5 {
  min-height: 15em;
}
}
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5 {
  background-image: url(https://i.shgcdn.com/df020a89-de8b-43c9-acb5-e7654d0e6e45/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5 {
  background-image: url(https://i.shgcdn.com/df020a89-de8b-43c9-acb5-e7654d0e6e45/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5 {
  background-image: url(https://i.shgcdn.com/df020a89-de8b-43c9-acb5-e7654d0e6e45/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5 {
  background-image: url(https://i.shgcdn.com/df020a89-de8b-43c9-acb5-e7654d0e6e45/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5 {
  background-image: url(https://i.shgcdn.com/df020a89-de8b-43c9-acb5-e7654d0e6e45/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5 {
  background-image: url(https://i.shgcdn.com/df020a89-de8b-43c9-acb5-e7654d0e6e45/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5 {
  background-image: url(https://i.shgcdn.com/df020a89-de8b-43c9-acb5-e7654d0e6e45/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5 {
  background-image: url(https://i.shgcdn.com/df020a89-de8b-43c9-acb5-e7654d0e6e45/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5 {
  background-image: url(https://i.shgcdn.com/df020a89-de8b-43c9-acb5-e7654d0e6e45/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fa1e33f3-324c-4bbb-982c-4f90c3fc97f5.shg-box.shg-c {
  justify-content: center;
}

#s-47ea76c5-f29c-4211-a5a9-d684f4c4f186 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-47ea76c5-f29c-4211-a5a9-d684f4c4f186 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-47ea76c5-f29c-4211-a5a9-d684f4c4f186.shg-box.shg-c {
  justify-content: center;
}

#s-29b655dc-c987-4603-b2a5-e83fa2bd8ce4 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-29b655dc-c987-4603-b2a5-e83fa2bd8ce4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-29b655dc-c987-4603-b2a5-e83fa2bd8ce4.shg-box.shg-c {
  justify-content: center;
}

#s-95c8ef53-f0f2-43bf-b1a4-815f65e2c369 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
}

#s-f6ce4086-dce4-444f-9fe9-06a1833fa129 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
}

#s-cb124877-b11a-4d2e-9bde-a9077e6bbfd8 {
  margin-top: 0px;
margin-left: 9em;
margin-bottom: 30px;
margin-right: 9em;
min-height: 50px;
}
@media (max-width: 767px){#s-cb124877-b11a-4d2e-9bde-a9077e6bbfd8 {
  margin-left: 1em;
margin-bottom: 0.5em;
margin-right: 1em;
}
}







#s-cb124877-b11a-4d2e-9bde-a9077e6bbfd8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cb124877-b11a-4d2e-9bde-a9077e6bbfd8.shg-box.shg-c {
  justify-content: center;
}

#s-945074af-6cfa-4cc7-aeab-ad37b073be68 {
  margin-top: -15em;
margin-left: 4em;
margin-bottom: 0em;
margin-right: 8em;
padding-top: 0em;
padding-bottom: 3em;
min-height: 50px;
}
@media (min-width: 1200px){#s-945074af-6cfa-4cc7-aeab-ad37b073be68 {
  margin-top: -17em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-945074af-6cfa-4cc7-aeab-ad37b073be68 {
  margin-top: -17em;
}
}@media (max-width: 767px){#s-945074af-6cfa-4cc7-aeab-ad37b073be68 {
  margin-top: -16em;
margin-left: 2em;
margin-right: 2em;
padding-bottom: 0em;
}
}







#s-945074af-6cfa-4cc7-aeab-ad37b073be68 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-945074af-6cfa-4cc7-aeab-ad37b073be68.shg-box.shg-c {
  justify-content: center;
}

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

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

#s-bd8a9bb4-37c5-4a39-b951-aa9f2d18dd08 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-bd8a9bb4-37c5-4a39-b951-aa9f2d18dd08 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-bd8a9bb4-37c5-4a39-b951-aa9f2d18dd08 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-bd8a9bb4-37c5-4a39-b951-aa9f2d18dd08 .shogun-heading-component h4 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-739375b5-bcbc-4f00-8d4d-8526d46d795c {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-739375b5-bcbc-4f00-8d4d-8526d46d795c {
  margin-top: 1em;
}
}







#s-739375b5-bcbc-4f00-8d4d-8526d46d795c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-739375b5-bcbc-4f00-8d4d-8526d46d795c.shg-box.shg-c {
  justify-content: center;
}

#s-b060bc47-e3b0-4854-b218-7a5736e19dd5 {
  margin-top: -24px;
margin-left: 0px;
margin-right: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-b060bc47-e3b0-4854-b218-7a5736e19dd5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b060bc47-e3b0-4854-b218-7a5736e19dd5.shg-box.shg-c {
  justify-content: center;
}

#s-e10d14be-e9e2-4182-88fe-b824db222829 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 30em;
background-position: center center;
}
@media (max-width: 767px){#s-e10d14be-e9e2-4182-88fe-b824db222829 {
  min-height: 15em;
}
}
#s-e10d14be-e9e2-4182-88fe-b824db222829 {
  background-image: url(https://i.shgcdn.com/a2bb8ee9-2bf5-49c0-a564-05cda69e20e5/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-e10d14be-e9e2-4182-88fe-b824db222829 {
  background-image: url(https://i.shgcdn.com/a2bb8ee9-2bf5-49c0-a564-05cda69e20e5/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}
#s-e10d14be-e9e2-4182-88fe-b824db222829.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-e10d14be-e9e2-4182-88fe-b824db222829 {
  background-image: url(https://i.shgcdn.com/a2bb8ee9-2bf5-49c0-a564-05cda69e20e5/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}
#s-e10d14be-e9e2-4182-88fe-b824db222829.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-e10d14be-e9e2-4182-88fe-b824db222829 {
  background-image: url(https://i.shgcdn.com/a2bb8ee9-2bf5-49c0-a564-05cda69e20e5/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}
#s-e10d14be-e9e2-4182-88fe-b824db222829.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-e10d14be-e9e2-4182-88fe-b824db222829 {
  background-image: url(https://i.shgcdn.com/a2bb8ee9-2bf5-49c0-a564-05cda69e20e5/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}
#s-e10d14be-e9e2-4182-88fe-b824db222829.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-e10d14be-e9e2-4182-88fe-b824db222829 {
  background-image: url(https://i.shgcdn.com/a2bb8ee9-2bf5-49c0-a564-05cda69e20e5/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}
#s-e10d14be-e9e2-4182-88fe-b824db222829.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-e10d14be-e9e2-4182-88fe-b824db222829 {
  background-image: url(https://i.shgcdn.com/a2bb8ee9-2bf5-49c0-a564-05cda69e20e5/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-e10d14be-e9e2-4182-88fe-b824db222829.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-e10d14be-e9e2-4182-88fe-b824db222829 {
  background-image: url(https://i.shgcdn.com/a2bb8ee9-2bf5-49c0-a564-05cda69e20e5/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}
#s-e10d14be-e9e2-4182-88fe-b824db222829.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-e10d14be-e9e2-4182-88fe-b824db222829 {
  background-image: url(https://i.shgcdn.com/a2bb8ee9-2bf5-49c0-a564-05cda69e20e5/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-e10d14be-e9e2-4182-88fe-b824db222829.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-e10d14be-e9e2-4182-88fe-b824db222829 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e10d14be-e9e2-4182-88fe-b824db222829.shg-box.shg-c {
  justify-content: center;
}

#s-33e6733e-0b1a-4d38-be80-204538498b0e {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-33e6733e-0b1a-4d38-be80-204538498b0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-33e6733e-0b1a-4d38-be80-204538498b0e.shg-box.shg-c {
  justify-content: center;
}

#s-2ec9e46f-62bd-4c5d-b52d-a38319c0c91e {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
}

#s-31313e71-a5f4-4de0-8cd7-55a1861dea95 {
  margin-left: 5%;
margin-right: 5%;
}

#s-6d7583c1-869a-4b55-af0a-459c398b2f93 {
  margin-top: -24px;
margin-left: 0px;
margin-right: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-6d7583c1-869a-4b55-af0a-459c398b2f93 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6d7583c1-869a-4b55-af0a-459c398b2f93.shg-box.shg-c {
  justify-content: center;
}

#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 30em;
background-position: center center;
}
@media (max-width: 767px){#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5 {
  min-height: 15em;
}
}
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5 {
  background-image: url(https://i.shgcdn.com/100a6c38-8214-4298-bc35-a67e1881a7e0/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5 {
  background-image: url(https://i.shgcdn.com/100a6c38-8214-4298-bc35-a67e1881a7e0/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5 {
  background-image: url(https://i.shgcdn.com/100a6c38-8214-4298-bc35-a67e1881a7e0/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5 {
  background-image: url(https://i.shgcdn.com/100a6c38-8214-4298-bc35-a67e1881a7e0/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5 {
  background-image: url(https://i.shgcdn.com/100a6c38-8214-4298-bc35-a67e1881a7e0/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5 {
  background-image: url(https://i.shgcdn.com/100a6c38-8214-4298-bc35-a67e1881a7e0/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5 {
  background-image: url(https://i.shgcdn.com/100a6c38-8214-4298-bc35-a67e1881a7e0/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5 {
  background-image: url(https://i.shgcdn.com/100a6c38-8214-4298-bc35-a67e1881a7e0/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5.shogun-lazyload-bg-image {
  background-image: none;
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5 {
  background-image: url(https://i.shgcdn.com/100a6c38-8214-4298-bc35-a67e1881a7e0/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}
#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5.shogun-lazyload-bg-image {
  background-image: none;
}

}







#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-365f84ea-a7d9-4d80-a560-d85a5b923bb5.shg-box.shg-c {
  justify-content: center;
}

#s-e58d1ee7-3287-475e-bff3-95296867ec8c {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-e58d1ee7-3287-475e-bff3-95296867ec8c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e58d1ee7-3287-475e-bff3-95296867ec8c.shg-box.shg-c {
  justify-content: center;
}

#s-a6832630-6b16-406f-acf6-d63e3d9f4378 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
}

#s-adec63c0-2bb2-4903-80be-b694601341dc {
  margin-left: 5%;
margin-right: 5%;
}

#s-4423b683-ea1d-474c-9996-e114acca8a0c {
  margin-top: 0em;
margin-left: 9em;
margin-bottom: 0em;
margin-right: 9em;
min-height: 50px;
}
@media (max-width: 767px){#s-4423b683-ea1d-474c-9996-e114acca8a0c {
  margin-left: 1em;
margin-bottom: 0.5em;
margin-right: 1em;
}
}







#s-4423b683-ea1d-474c-9996-e114acca8a0c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4423b683-ea1d-474c-9996-e114acca8a0c.shg-box.shg-c {
  justify-content: center;
}

#s-a3a84de4-9fa8-4d46-b70d-8719b626c0a8 {
  margin-top: -15em;
margin-left: 4em;
margin-bottom: 0em;
margin-right: 8em;
padding-top: 0em;
padding-bottom: 3em;
min-height: 50px;
}
@media (max-width: 767px){#s-a3a84de4-9fa8-4d46-b70d-8719b626c0a8 {
  margin-top: -13em;
margin-left: 2em;
margin-right: 2em;
padding-bottom: 0em;
}
}







#s-a3a84de4-9fa8-4d46-b70d-8719b626c0a8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a3a84de4-9fa8-4d46-b70d-8719b626c0a8.shg-box.shg-c {
  justify-content: center;
}

#s-20805e29-3a9c-4647-a97d-9a27a757f44e {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-20805e29-3a9c-4647-a97d-9a27a757f44e {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-20805e29-3a9c-4647-a97d-9a27a757f44e .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-20805e29-3a9c-4647-a97d-9a27a757f44e .shogun-heading-component h4 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-d31dac38-d9ca-46a8-b0c7-ea6e53a519f9 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-d31dac38-d9ca-46a8-b0c7-ea6e53a519f9 {
  margin-top: 1em;
}
}







#s-d31dac38-d9ca-46a8-b0c7-ea6e53a519f9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d31dac38-d9ca-46a8-b0c7-ea6e53a519f9.shg-box.shg-c {
  justify-content: center;
}

#s-8f4416fd-4c34-4163-bb22-d2749d98caef {
  margin-top: -24px;
margin-left: 0px;
margin-right: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-8f4416fd-4c34-4163-bb22-d2749d98caef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8f4416fd-4c34-4163-bb22-d2749d98caef.shg-box.shg-c {
  justify-content: center;
}

#s-7e936dff-890f-4f4d-9249-3740b49f065d {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-7e936dff-890f-4f4d-9249-3740b49f065d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7e936dff-890f-4f4d-9249-3740b49f065d.shg-box.shg-c {
  justify-content: center;
}

#s-9f92bdcd-bb3f-4509-ae18-d155b2657382 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-9f92bdcd-bb3f-4509-ae18-d155b2657382"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9f92bdcd-bb3f-4509-ae18-d155b2657382"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-9f92bdcd-bb3f-4509-ae18-d155b2657382"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-9f92bdcd-bb3f-4509-ae18-d155b2657382"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  margin-left: auto;
margin-right: auto;
max-width: 1057px;
aspect-ratio: 1057/1000;
text-align: center;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  margin: 0 !important;
  overflow: visible;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
  /* Add background color handling */
  
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-28aef2d1-d77e-4971-94ca-7909173573e4 .shg-image-content-wrapper {
      aspect-ratio: 1057/1000;
      min-width: 100%;
      height: auto;
    }

    #s-28aef2d1-d77e-4971-94ca-7909173573e4 .shogun-image-link {
      aspect-ratio: 1057/1000;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-28aef2d1-d77e-4971-94ca-7909173573e4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1057px;
  }



  img.s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image {
    
    
    
    max-height: 1057px;
  }


.s-28aef2d1-d77e-4971-94ca-7909173573e4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-28aef2d1-d77e-4971-94ca-7909173573e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image {
  box-sizing: border-box;
}



.s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-28aef2d1-d77e-4971-94ca-7909173573e4 {
      --shg-aspect-ratio: calc(1057/1000); 
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container {
      position: relative;
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1057px;
    }
  }

@media (min-width: 1200px){#s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  margin: 0 !important;
  overflow: visible;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
  /* Add background color handling */
  
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-28aef2d1-d77e-4971-94ca-7909173573e4 .shg-image-content-wrapper {
      aspect-ratio: 1057/1000;
      min-width: 100%;
      height: auto;
    }

    #s-28aef2d1-d77e-4971-94ca-7909173573e4 .shogun-image-link {
      aspect-ratio: 1057/1000;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-28aef2d1-d77e-4971-94ca-7909173573e4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1057px;
  }



  img.s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image {
    
    
    
    max-height: 1057px;
  }


.s-28aef2d1-d77e-4971-94ca-7909173573e4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-28aef2d1-d77e-4971-94ca-7909173573e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image {
  box-sizing: border-box;
}



.s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-28aef2d1-d77e-4971-94ca-7909173573e4 {
      --shg-aspect-ratio: calc(1057/1000); 
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container {
      position: relative;
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1057px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  margin: 0 !important;
  overflow: visible;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
  /* Add background color handling */
  
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-28aef2d1-d77e-4971-94ca-7909173573e4 .shg-image-content-wrapper {
      aspect-ratio: 1057/1000;
      min-width: 100%;
      height: auto;
    }

    #s-28aef2d1-d77e-4971-94ca-7909173573e4 .shogun-image-link {
      aspect-ratio: 1057/1000;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-28aef2d1-d77e-4971-94ca-7909173573e4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1057px;
  }



  img.s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image {
    
    
    
    max-height: 1057px;
  }


.s-28aef2d1-d77e-4971-94ca-7909173573e4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-28aef2d1-d77e-4971-94ca-7909173573e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image {
  box-sizing: border-box;
}



.s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-28aef2d1-d77e-4971-94ca-7909173573e4 {
      --shg-aspect-ratio: calc(1057/1000); 
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container {
      position: relative;
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1057px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  margin: 0 !important;
  overflow: visible;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
  /* Add background color handling */
  
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-28aef2d1-d77e-4971-94ca-7909173573e4 .shg-image-content-wrapper {
      aspect-ratio: 1057/1000;
      min-width: 100%;
      height: auto;
    }

    #s-28aef2d1-d77e-4971-94ca-7909173573e4 .shogun-image-link {
      aspect-ratio: 1057/1000;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-28aef2d1-d77e-4971-94ca-7909173573e4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1057px;
  }



  img.s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image {
    
    
    
    max-height: 1057px;
  }


.s-28aef2d1-d77e-4971-94ca-7909173573e4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-28aef2d1-d77e-4971-94ca-7909173573e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image {
  box-sizing: border-box;
}



.s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-28aef2d1-d77e-4971-94ca-7909173573e4 {
      --shg-aspect-ratio: calc(1057/1000); 
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container {
      position: relative;
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1057px;
    }
  }

}@media (max-width: 767px){#s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  margin: 0 !important;
  overflow: visible;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-28aef2d1-d77e-4971-94ca-7909173573e4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
  /* Add background color handling */
  
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-28aef2d1-d77e-4971-94ca-7909173573e4 .shg-image-content-wrapper {
      aspect-ratio: 1057/1000;
      min-width: 100%;
      height: auto;
    }

    #s-28aef2d1-d77e-4971-94ca-7909173573e4 .shogun-image-link {
      aspect-ratio: 1057/1000;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-28aef2d1-d77e-4971-94ca-7909173573e4 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1057px;
  }



  img.s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image {
    
    
    
    max-height: 1057px;
  }


.s-28aef2d1-d77e-4971-94ca-7909173573e4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-28aef2d1-d77e-4971-94ca-7909173573e4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image {
  box-sizing: border-box;
}



.s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-28aef2d1-d77e-4971-94ca-7909173573e4 {
      --shg-aspect-ratio: calc(1057/1000); 
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container {
      position: relative;
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28aef2d1-d77e-4971-94ca-7909173573e4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1057px;
    }
  }

}
#s-533dacf6-8d4b-42ac-b9f4-3acf588e179b {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-533dacf6-8d4b-42ac-b9f4-3acf588e179b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-533dacf6-8d4b-42ac-b9f4-3acf588e179b.shg-box.shg-c {
  justify-content: center;
}

#s-a9d8187c-853a-4efd-a985-92238763a95b {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
}

#s-74f41bae-c98e-4dd7-842c-8f309153a7e4 {
  margin-left: 5%;
margin-right: 5%;
}

#s-4d0ee00b-e6fc-4201-bd06-12e0c4f813dd {
  margin-top: -24px;
margin-left: 0px;
margin-right: 0px;
min-height: 50px;
}








#s-4d0ee00b-e6fc-4201-bd06-12e0c4f813dd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4d0ee00b-e6fc-4201-bd06-12e0c4f813dd.shg-box.shg-c {
  justify-content: center;
}

#s-56e3b231-80b4-4c30-8de4-9c35e868ea95 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-56e3b231-80b4-4c30-8de4-9c35e868ea95"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-56e3b231-80b4-4c30-8de4-9c35e868ea95"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-56e3b231-80b4-4c30-8de4-9c35e868ea95"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-56e3b231-80b4-4c30-8de4-9c35e868ea95"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-56e3b231-80b4-4c30-8de4-9c35e868ea95"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-56e3b231-80b4-4c30-8de4-9c35e868ea95"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-56e3b231-80b4-4c30-8de4-9c35e868ea95"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  margin-left: auto;
margin-right: auto;
max-width: 1057px;
aspect-ratio: 1550/1174;
text-align: center;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  margin: 0 !important;
  overflow: visible;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
  /* Add background color handling */
  
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shg-image-content-wrapper {
      aspect-ratio: 1550/1174;
      min-width: 100%;
      height: auto;
    }

    #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shogun-image-link {
      aspect-ratio: 1550/1174;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1057px;
  }



  img.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image {
    
    
    
    max-height: 1057px;
  }


.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image {
  box-sizing: border-box;
}



.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
      --shg-aspect-ratio: calc(1550/1174); 
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container {
      position: relative;
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1057px;
    }
  }

@media (min-width: 1200px){#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  margin: 0 !important;
  overflow: visible;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
  /* Add background color handling */
  
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shg-image-content-wrapper {
      aspect-ratio: 1550/1174;
      min-width: 100%;
      height: auto;
    }

    #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shogun-image-link {
      aspect-ratio: 1550/1174;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1057px;
  }



  img.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image {
    
    
    
    max-height: 1057px;
  }


.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image {
  box-sizing: border-box;
}



.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
      --shg-aspect-ratio: calc(1550/1174); 
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container {
      position: relative;
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1057px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  margin: 0 !important;
  overflow: visible;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
  /* Add background color handling */
  
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shg-image-content-wrapper {
      aspect-ratio: 1550/1174;
      min-width: 100%;
      height: auto;
    }

    #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shogun-image-link {
      aspect-ratio: 1550/1174;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1057px;
  }



  img.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image {
    
    
    
    max-height: 1057px;
  }


.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image {
  box-sizing: border-box;
}



.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
      --shg-aspect-ratio: calc(1550/1174); 
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container {
      position: relative;
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1057px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  margin: 0 !important;
  overflow: visible;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
  /* Add background color handling */
  
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shg-image-content-wrapper {
      aspect-ratio: 1550/1174;
      min-width: 100%;
      height: auto;
    }

    #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shogun-image-link {
      aspect-ratio: 1550/1174;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1057px;
  }



  img.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image {
    
    
    
    max-height: 1057px;
  }


.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image {
  box-sizing: border-box;
}



.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
      --shg-aspect-ratio: calc(1550/1174); 
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container {
      position: relative;
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1057px;
    }
  }

}@media (max-width: 767px){#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  margin: 0 !important;
  overflow: visible;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
  /* Add background color handling */
  
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shg-image-content-wrapper {
      aspect-ratio: 1550/1174;
      min-width: 100%;
      height: auto;
    }

    #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shogun-image-link {
      aspect-ratio: 1550/1174;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1057px;
  }



  img.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image {
    
    
    
    max-height: 1057px;
  }


.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image {
  box-sizing: border-box;
}



.s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 {
      --shg-aspect-ratio: calc(1550/1174); 
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container {
      position: relative;
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6f542580-9efa-4ead-9ee9-c3e63d86cf22 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1057px;
    }
  }

}
#s-4483a3ed-c16f-47bb-82d0-4d658f66d174 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-4483a3ed-c16f-47bb-82d0-4d658f66d174 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4483a3ed-c16f-47bb-82d0-4d658f66d174.shg-box.shg-c {
  justify-content: center;
}

#s-e6bea056-8954-42d0-b780-17e702b1f0e5 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-e6bea056-8954-42d0-b780-17e702b1f0e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e6bea056-8954-42d0-b780-17e702b1f0e5.shg-box.shg-c {
  justify-content: center;
}

#s-26b1b66f-bc6d-49d2-9461-9c4a1362f8d9 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
}

#s-4d5f01d3-a574-431a-b612-2cbc7d4ba072 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 1200px){#s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad {
  display: none;
}
#s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad, #wrap-s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad, #wrap-content-s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad {
  display: none;
}
#s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad, #wrap-s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad, #wrap-content-s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad {
  display: none;
}
#s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad, #wrap-s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad, #wrap-content-s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad { display: none !important; }}@media (max-width: 767px){#s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad {
  display: none;
}
#s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad, #wrap-s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad, #wrap-content-s-9d23331d-a4e1-4a3c-b4c6-d50e15adbaad { display: none !important; }}
#s-6a69305c-1239-49c7-aad6-83cd90d5a42e {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-6a69305c-1239-49c7-aad6-83cd90d5a42e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6a69305c-1239-49c7-aad6-83cd90d5a42e.shg-box.shg-c {
  justify-content: center;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  max-width: 1240px;
aspect-ratio: 1240/400;
text-align: center;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  margin: 0 !important;
  overflow: visible;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
  /* Add background color handling */
  
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shg-image-content-wrapper {
      aspect-ratio: 1240/400;
      min-width: 100%;
      height: auto;
    }

    #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shogun-image-link {
      aspect-ratio: 1240/400;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1240px;
  }



  img.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image {
    
    
    
    max-height: 1240px;
  }


.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image {
  box-sizing: border-box;
}



.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
      --shg-aspect-ratio: calc(1240/400); 
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container {
      position: relative;
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1240px;
    }
  }

@media (min-width: 1200px){#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  margin: 0 !important;
  overflow: visible;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
  /* Add background color handling */
  
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shg-image-content-wrapper {
      aspect-ratio: 1240/400;
      min-width: 100%;
      height: auto;
    }

    #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shogun-image-link {
      aspect-ratio: 1240/400;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1240px;
  }



  img.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image {
    
    
    
    max-height: 1240px;
  }


.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image {
  box-sizing: border-box;
}



.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
      --shg-aspect-ratio: calc(1240/400); 
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container {
      position: relative;
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1240px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  margin: 0 !important;
  overflow: visible;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
  /* Add background color handling */
  
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shg-image-content-wrapper {
      aspect-ratio: 1240/400;
      min-width: 100%;
      height: auto;
    }

    #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shogun-image-link {
      aspect-ratio: 1240/400;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1240px;
  }



  img.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image {
    
    
    
    max-height: 1240px;
  }


.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image {
  box-sizing: border-box;
}



.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
      --shg-aspect-ratio: calc(1240/400); 
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container {
      position: relative;
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1240px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  margin: 0 !important;
  overflow: visible;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
  /* Add background color handling */
  
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shg-image-content-wrapper {
      aspect-ratio: 1240/400;
      min-width: 100%;
      height: auto;
    }

    #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shogun-image-link {
      aspect-ratio: 1240/400;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1240px;
  }



  img.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image {
    
    
    
    max-height: 1240px;
  }


.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image {
  box-sizing: border-box;
}



.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
      --shg-aspect-ratio: calc(1240/400); 
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container {
      position: relative;
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1240px;
    }
  }

}@media (max-width: 767px){#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  margin: 0 !important;
  overflow: visible;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
  /* Add background color handling */
  
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shg-image-content-wrapper {
      aspect-ratio: 1240/400;
      min-width: 100%;
      height: auto;
    }

    #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shogun-image-link {
      aspect-ratio: 1240/400;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1240px;
  }



  img.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image {
    
    
    
    max-height: 1240px;
  }


.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image {
  box-sizing: border-box;
}



.s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 {
      --shg-aspect-ratio: calc(1240/400); 
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container {
      position: relative;
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd14f734-4f53-498f-bb78-5d0bfd2e0da2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1240px;
    }
  }

}
#s-13698a4d-5d84-41da-9cbb-8559b0bb0d70 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-13698a4d-5d84-41da-9cbb-8559b0bb0d70 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-13698a4d-5d84-41da-9cbb-8559b0bb0d70.shg-box.shg-c {
  justify-content: center;
}

#s-3909f281-452a-421a-9c2e-4a456f31c1f4 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
}

#s-14a8b8c6-0495-4ddd-863e-c5cc5d469337 {
  margin-left: 5%;
margin-right: 5%;
}

#s-bfe8328b-f971-402b-a5bc-efb5c6cd0294 {
  margin-top: 5em;
margin-left: 8.5em;
margin-bottom: 1em;
margin-right: 0em;
min-height: 50px;
}
@media (min-width: 1200px){#s-bfe8328b-f971-402b-a5bc-efb5c6cd0294 {
  margin-top: 4em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bfe8328b-f971-402b-a5bc-efb5c6cd0294 {
  margin-top: 4em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-bfe8328b-f971-402b-a5bc-efb5c6cd0294 {
  margin-top: 4em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-bfe8328b-f971-402b-a5bc-efb5c6cd0294 {
  margin-top: 3em;
margin-left: 7em;
margin-bottom: 1em;
}
}







#s-bfe8328b-f971-402b-a5bc-efb5c6cd0294 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bfe8328b-f971-402b-a5bc-efb5c6cd0294.shg-box.shg-c {
  justify-content: center;
}

#s-f04f947b-569c-4d78-834c-7e1f0f668495 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-f04f947b-569c-4d78-834c-7e1f0f668495 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-f04f947b-569c-4d78-834c-7e1f0f668495 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-f04f947b-569c-4d78-834c-7e1f0f668495 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-52566531-b956-446a-b20d-493c9e5d7dd9 {
  margin-left: 1em;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-52566531-b956-446a-b20d-493c9e5d7dd9 {
  margin-left: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-52566531-b956-446a-b20d-493c9e5d7dd9 {
  margin-left: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-52566531-b956-446a-b20d-493c9e5d7dd9 {
  margin-left: 0em;
}
}@media (max-width: 767px){#s-52566531-b956-446a-b20d-493c9e5d7dd9 {
  margin-left: 1em;
margin-right: 1em;
}
}







#s-52566531-b956-446a-b20d-493c9e5d7dd9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-52566531-b956-446a-b20d-493c9e5d7dd9.shg-box.shg-c {
  justify-content: center;
}

#s-a0e404d2-4474-42ab-9ac9-63a655c63eaf {
  margin-left: 8.5em;
margin-right: -5em;
padding-top: 6em;
min-height: 50px;
}
@media (min-width: 1200px){#s-a0e404d2-4474-42ab-9ac9-63a655c63eaf {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a0e404d2-4474-42ab-9ac9-63a655c63eaf {
  
}
}@media (max-width: 767px){#s-a0e404d2-4474-42ab-9ac9-63a655c63eaf {
  margin-left: 0em;
margin-right: 0em;
padding-top: 0em;
}
}







#s-a0e404d2-4474-42ab-9ac9-63a655c63eaf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a0e404d2-4474-42ab-9ac9-63a655c63eaf.shg-box.shg-c {
  justify-content: center;
}

.pigo-review-slider .slick-next, .pigo-review-slider .slick-prev {
    top:-25px;
    background-color: #E0F9FB !important;
    border-radius: 50%;
    width: 45px;
    height:45px;
}
.pigo-review-slider .slick-prev {
     left: 0;
}
.pigo-review-slider .slick-prev::before {
     background-image: url(https://cdn11.bigcommerce.com/s-8mw570y811/images/stencil/original/image-manager/left-chevron-1-.png);
}
.pigo-review-slider .slick-active button::after{
    border:none;
}
.pigo-review-slider .slick-next::before {
   background-image: url(https://cdn11.bigcommerce.com/s-8mw570y811/images/stencil/original/image-manager/right-chevron.png);
}
.pigo-review-slider .slick-next {
    left:3.5rem;
}
.slick-slide {
      padding: 5px !important;
    }
    .slick-next::before {
      width: 15px;
      height: 15px;
     margin-left: 4px;
    }
    .slick-prev::before {
      width: 15px;
      height: 15px;
    }
    .carousel-tooltip {
      display: none !important;
    }
    .slick-active button::before {
      background: #e5e5e57d !important;
    }
  
    .slick-active button {
        position: relative;
        padding: 10px;
        background-color: transparent;
        color: #000;
        font-size: 16px;
        cursor: pointer;
        overflow: hidden;
        border: none;
        border-radius: 50px;
    }

    .slick-active button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 100%;
  border: 2px solid #000;
  border-radius: 50px;
  animation: border-animation 10s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  animation-timing-function: linear;
}
@media screen and (max-width: 900px) and (min-width: 60px) {
 .slick-next::before {
      width: 33px;
      margin-left: -1.5em!important;
    }
    .slick-prev::before {
      width: 33px;
      margin-left: 1em;
    }   
    .slick-next, .slick-prev{
     margin-top: -1.07143rem;
}
   .main-slider-div::after{
   border-bottom: 2px solid #efefef;
}
}

#s-d5889e0f-b5e2-449d-b2dd-d747d716a824 {
  margin-right: 0em;
}

.scene {
    width: 100%;
  /*  perspective:100vh;*/
}

.card {
  width: 100%;
  height: 32em;
  transition: transform 1s;
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
  margin-bottom: 0px;
}

.card.is-flipped {
  transform: rotateY(180deg);
}

.card__face {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  backface-visibility: hidden;
}

.card__face--front {
    background-size: cover;
    border-radius: 20px;
}

.card__face--back {
  background: rgb(0, 0, 0);
  transform: rotateY(180deg);
  border-radius: 20px;
}
.card-icon span{
    color: #000;
    font-size: 27px;
    position: absolute;
}
.mainCard .card-icon span{
    margin: 8px;
}
.card-icon{
    display: flex;
    justify-content: flex-end;
    margin-top: 0px;
    margin-bottom: 0px;
}
.card-font-text{
    position: absolute;
    bottom: 0;
    color: #fff;
    font-weight: 500;
    font-size: 0.8em;
    left: 50%;
    transform: translate(-50%, -50%);
    width:100%;
    margin-bottom: 0px;
    padding-bottom:13px;
}
.bottom-card-text{
    margin-bottom: -3px;
    padding-bottom: 16px;
}
.card-text{
    color: #fff;
    font-size: 0.4em;
    font-weight: 500;
    padding: 1px 25px;
    position: absolute;
    top: 48%;
    transform: translate(0%, -50%);
    bottom: unset !important;
}
.card-font-text h2{
   color:#fff !important; 
   font-weight: normal;
   
    font-style: normal;
    font-size: 1em;
    line-height: 31px;
}
.card-icon span i{ 
    -webkit-text-stroke: 1px #E0F9FB;
    background: #E0F9FB;
    border-radius: 50%;
    width: 39px;
    padding: 12px 0px 9px 0px;
    font-size: 0.65em;
}
.card-icon span .fa-times{
    -webkit-text-stroke: 1px #666666;
    background: #666666;
}
.card__image{
    border-radius: 20px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
}
.card-top-content{
  top: 0;
  position: absolute;
  width: 100%;
}
.card-top-content p{
  margin: 0;
  font-size: 0.5em;
  color: #000;
  font-weight: 600;
  line-height: 0px;
}
.card-top-content span{
  margin-top: 40px;
  margin-bottom: 0px;
  font-weight: 400;
  font-size: 0.4em;
}
@media screen and (max-width: 5000px) and (min-width: 1500px) {
.card {
  height: 40em;
}
}
#s-4010ab30-f903-4898-905b-ec484ad33760 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-4010ab30-f903-4898-905b-ec484ad33760 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-4010ab30-f903-4898-905b-ec484ad33760 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-4010ab30-f903-4898-905b-ec484ad33760 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-a46b1b6d-dae8-4460-9bd8-22171a52ab3b {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-a46b1b6d-dae8-4460-9bd8-22171a52ab3b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-a46b1b6d-dae8-4460-9bd8-22171a52ab3b .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-a46b1b6d-dae8-4460-9bd8-22171a52ab3b .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-fa5d663d-29e2-468d-8135-d6c2309d7edc {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-fa5d663d-29e2-468d-8135-d6c2309d7edc {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-fa5d663d-29e2-468d-8135-d6c2309d7edc .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-fa5d663d-29e2-468d-8135-d6c2309d7edc .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-d516f964-34c7-4a6d-bc45-cfa9c37ee12d {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-d516f964-34c7-4a6d-bc45-cfa9c37ee12d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-d516f964-34c7-4a6d-bc45-cfa9c37ee12d .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-d516f964-34c7-4a6d-bc45-cfa9c37ee12d .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-90754fd5-61a8-4b30-8294-ccefef1e7e7f {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-90754fd5-61a8-4b30-8294-ccefef1e7e7f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-90754fd5-61a8-4b30-8294-ccefef1e7e7f .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-90754fd5-61a8-4b30-8294-ccefef1e7e7f .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-caf19c3b-744f-4698-9a65-f76946377149 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-caf19c3b-744f-4698-9a65-f76946377149 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-caf19c3b-744f-4698-9a65-f76946377149 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-caf19c3b-744f-4698-9a65-f76946377149 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-3a2cc2f7-b8f1-4d66-b466-6e929e2b95a2 {
  margin-left: 0em;
margin-right: 0em;
min-height: 50px;
}
@media (min-width: 1200px){#s-3a2cc2f7-b8f1-4d66-b466-6e929e2b95a2 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3a2cc2f7-b8f1-4d66-b466-6e929e2b95a2 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-3a2cc2f7-b8f1-4d66-b466-6e929e2b95a2 {
  
}
}@media (max-width: 767px){#s-3a2cc2f7-b8f1-4d66-b466-6e929e2b95a2 {
  display: none;
}
#s-3a2cc2f7-b8f1-4d66-b466-6e929e2b95a2, #wrap-s-3a2cc2f7-b8f1-4d66-b466-6e929e2b95a2, #wrap-content-s-3a2cc2f7-b8f1-4d66-b466-6e929e2b95a2 { display: none !important; }}







#s-3a2cc2f7-b8f1-4d66-b466-6e929e2b95a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3a2cc2f7-b8f1-4d66-b466-6e929e2b95a2.shg-box.shg-c {
  justify-content: center;
}

#s-93f5994f-d412-4a1b-986c-c91c43c639d8 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-cea4a29c-5d72-4b3a-870a-6f343930f732 {
  margin-top: 2em;
margin-left: 0em;
margin-bottom: 2em;
margin-right: 0em;
min-height: 50px;
}
@media (max-width: 767px){#s-cea4a29c-5d72-4b3a-870a-6f343930f732 {
  margin-top: 4em;
margin-bottom: 0px;
}
}







#s-cea4a29c-5d72-4b3a-870a-6f343930f732 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cea4a29c-5d72-4b3a-870a-6f343930f732.shg-box.shg-c {
  justify-content: center;
}

#s-77c72e17-38df-401f-9d97-10725deb1dc8 {
  margin-left: 7em;
margin-right: -1em;
min-height: 50px;
}
@media (max-width: 767px){#s-77c72e17-38df-401f-9d97-10725deb1dc8 {
  margin-left: 3em;
}
}







#s-77c72e17-38df-401f-9d97-10725deb1dc8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-77c72e17-38df-401f-9d97-10725deb1dc8.shg-box.shg-c {
  justify-content: center;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  margin-left: 0em;
margin-right: auto;
min-height: 17em;
max-width: 720px;
text-align: center;
}
@media (min-width: 1200px){#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  min-height: 17em;
}
}@media (max-width: 767px){#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  min-height: 9em;
}
}
#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0em;
  
  
  
}

.shg-image-content-margin-container-s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: rgba(0, 0, 0, 0);
  border-style: solid;
  border-radius: 20px;

}






.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8.shogun-image {
  box-sizing: border-box;
}



.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 img.shogun-image {
  min-height: 17em;
}


@media (min-width: 1200px){#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8.shogun-image {
  box-sizing: border-box;
}



.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 img.shogun-image {
  min-height: 17em;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8.shogun-image {
  box-sizing: border-box;
}



.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 img.shogun-image {
  min-height: 17em;
}


}@media (min-width: 768px) and (max-width: 991px){#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8.shogun-image {
  box-sizing: border-box;
}



.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 img.shogun-image {
  min-height: 17em;
}


}@media (max-width: 767px){#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-43be65f7-5760-43bf-8131-c3ca0c5d50e8.shogun-image {
  box-sizing: border-box;
}



.s-43be65f7-5760-43bf-8131-c3ca0c5d50e8 img.shogun-image {
  min-height: 17em;
}


}
#s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  margin-left: 0em;
margin-right: 0em;
min-height: 17em;
max-width: 720px;
text-align: center;
}
@media (max-width: 767px){#s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  min-height: 9em;
}
}
#s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  margin: 0 !important;
  overflow: visible;
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0em;
  margin-right: 0em;
  
  
}

.shg-image-content-margin-container-s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c img.shogun-image {
  /* Add background color handling */
  
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: rgba(0, 0, 0, 0.01);
  border-style: none;
  border-radius: 20px;

}






.s-b52e0ea8-abd7-42ae-9409-51f9743e984c .shogun-image-content {
  
    justify-content: center;
  
}

.s-b52e0ea8-abd7-42ae-9409-51f9743e984c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b52e0ea8-abd7-42ae-9409-51f9743e984c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c.shogun-image {
  box-sizing: border-box;
}



.s-b52e0ea8-abd7-42ae-9409-51f9743e984c img.shogun-image {
  min-height: 17em;
}


@media (min-width: 1200px){#s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  margin: 0 !important;
  overflow: visible;
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c img.shogun-image {
  /* Add background color handling */
  
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-b52e0ea8-abd7-42ae-9409-51f9743e984c .shogun-image-content {
  
    justify-content: center;
  
}

.s-b52e0ea8-abd7-42ae-9409-51f9743e984c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b52e0ea8-abd7-42ae-9409-51f9743e984c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c.shogun-image {
  box-sizing: border-box;
}



.s-b52e0ea8-abd7-42ae-9409-51f9743e984c img.shogun-image {
  min-height: 17em;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  margin: 0 !important;
  overflow: visible;
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c img.shogun-image {
  /* Add background color handling */
  
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-b52e0ea8-abd7-42ae-9409-51f9743e984c .shogun-image-content {
  
    justify-content: center;
  
}

.s-b52e0ea8-abd7-42ae-9409-51f9743e984c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b52e0ea8-abd7-42ae-9409-51f9743e984c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c.shogun-image {
  box-sizing: border-box;
}



.s-b52e0ea8-abd7-42ae-9409-51f9743e984c img.shogun-image {
  min-height: 17em;
}


}@media (min-width: 768px) and (max-width: 991px){#s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  margin: 0 !important;
  overflow: visible;
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c img.shogun-image {
  /* Add background color handling */
  
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-b52e0ea8-abd7-42ae-9409-51f9743e984c .shogun-image-content {
  
    justify-content: center;
  
}

.s-b52e0ea8-abd7-42ae-9409-51f9743e984c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b52e0ea8-abd7-42ae-9409-51f9743e984c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c.shogun-image {
  box-sizing: border-box;
}



.s-b52e0ea8-abd7-42ae-9409-51f9743e984c img.shogun-image {
  min-height: 17em;
}


}@media (max-width: 767px){#s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  margin: 0 !important;
  overflow: visible;
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b52e0ea8-abd7-42ae-9409-51f9743e984c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c img.shogun-image {
  /* Add background color handling */
  
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-b52e0ea8-abd7-42ae-9409-51f9743e984c .shogun-image-content {
  
    justify-content: center;
  
}

.s-b52e0ea8-abd7-42ae-9409-51f9743e984c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b52e0ea8-abd7-42ae-9409-51f9743e984c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b52e0ea8-abd7-42ae-9409-51f9743e984c.shogun-image {
  box-sizing: border-box;
}



.s-b52e0ea8-abd7-42ae-9409-51f9743e984c img.shogun-image {
  min-height: 17em;
}


}
#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  margin-left: 0em;
margin-right: 0em;
min-height: 17em;
max-width: 750px;
text-align: center;
}
@media (max-width: 767px){#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  min-height: 9em;
}
}
#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  margin: 0 !important;
  overflow: visible;
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0em;
  margin-right: 0em;
  
  
}

.shg-image-content-margin-container-s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b img.shogun-image {
  /* Add background color handling */
  
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: rgba(0, 0, 0, 0.01);
  border-style: none;
  border-radius: 20px;

}






.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b .shogun-image-content {
  
    justify-content: center;
  
}

.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b.shogun-image {
  box-sizing: border-box;
}



.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b img.shogun-image {
  min-height: 17em;
}


@media (min-width: 1200px){#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  margin: 0 !important;
  overflow: visible;
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b img.shogun-image {
  /* Add background color handling */
  
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b .shogun-image-content {
  
    justify-content: center;
  
}

.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b.shogun-image {
  box-sizing: border-box;
}



.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b img.shogun-image {
  min-height: 17em;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  margin: 0 !important;
  overflow: visible;
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b img.shogun-image {
  /* Add background color handling */
  
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b .shogun-image-content {
  
    justify-content: center;
  
}

.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b.shogun-image {
  box-sizing: border-box;
}



.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b img.shogun-image {
  min-height: 17em;
}


}@media (min-width: 768px) and (max-width: 991px){#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  margin: 0 !important;
  overflow: visible;
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b img.shogun-image {
  /* Add background color handling */
  
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b .shogun-image-content {
  
    justify-content: center;
  
}

.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b.shogun-image {
  box-sizing: border-box;
}



.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b img.shogun-image {
  min-height: 17em;
}


}@media (max-width: 767px){#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  margin: 0 !important;
  overflow: visible;
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-68220791-ca13-4bfa-a56e-c4e8f1ce421b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b img.shogun-image {
  /* Add background color handling */
  
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b .shogun-image-content {
  
    justify-content: center;
  
}

.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68220791-ca13-4bfa-a56e-c4e8f1ce421b.shogun-image {
  box-sizing: border-box;
}



.s-68220791-ca13-4bfa-a56e-c4e8f1ce421b img.shogun-image {
  min-height: 17em;
}


}
#s-fbd363b6-f8c1-4b28-a578-f9c0b1c6898f {
  margin-top: 3em;
margin-left: auto;
margin-bottom: 3em;
margin-right: auto;
min-height: 0px;
}








#s-fbd363b6-f8c1-4b28-a578-f9c0b1c6898f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fbd363b6-f8c1-4b28-a578-f9c0b1c6898f.shg-box.shg-c {
  justify-content: center;
}

#s-3e4cfb45-5f82-4486-8d28-31b93b97c190 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-3e4cfb45-5f82-4486-8d28-31b93b97c190 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-3e4cfb45-5f82-4486-8d28-31b93b97c190 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-3e4cfb45-5f82-4486-8d28-31b93b97c190 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-eed60aa0-c33a-4a97-a17c-a981acf38e6e {
  margin-left: -2em;
margin-right: 8em;
min-height: 50px;
}
@media (max-width: 767px){#s-eed60aa0-c33a-4a97-a17c-a981acf38e6e {
  margin-right: 4em;
}
}







#s-eed60aa0-c33a-4a97-a17c-a981acf38e6e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-eed60aa0-c33a-4a97-a17c-a981acf38e6e.shg-box.shg-c {
  justify-content: center;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  min-height: 17em;
max-width: 720px;
text-align: center;
}
@media (max-width: 767px){#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  min-height: 9em;
}
}
#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  margin: 0 !important;
  overflow: visible;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b img.shogun-image {
  /* Add background color handling */
  
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: rgba(0, 0, 0, 0.01);
  border-style: none;
  border-radius: 20px;

}






.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b .shogun-image-content {
  
    justify-content: center;
  
}

.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b.shogun-image {
  box-sizing: border-box;
}



.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b img.shogun-image {
  min-height: 17em;
}


@media (min-width: 1200px){#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  margin: 0 !important;
  overflow: visible;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b img.shogun-image {
  /* Add background color handling */
  
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b .shogun-image-content {
  
    justify-content: center;
  
}

.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b.shogun-image {
  box-sizing: border-box;
}



.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b img.shogun-image {
  min-height: 17em;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  margin: 0 !important;
  overflow: visible;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b img.shogun-image {
  /* Add background color handling */
  
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b .shogun-image-content {
  
    justify-content: center;
  
}

.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b.shogun-image {
  box-sizing: border-box;
}



.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b img.shogun-image {
  min-height: 17em;
}


}@media (min-width: 768px) and (max-width: 991px){#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  margin: 0 !important;
  overflow: visible;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b img.shogun-image {
  /* Add background color handling */
  
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b .shogun-image-content {
  
    justify-content: center;
  
}

.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b.shogun-image {
  box-sizing: border-box;
}



.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b img.shogun-image {
  min-height: 17em;
}


}@media (max-width: 767px){#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  margin: 0 !important;
  overflow: visible;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d4f9f3e7-3e25-404f-9465-272343cc0c2b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b img.shogun-image {
  /* Add background color handling */
  
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b .shogun-image-content {
  
    justify-content: center;
  
}

.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d4f9f3e7-3e25-404f-9465-272343cc0c2b.shogun-image {
  box-sizing: border-box;
}



.s-d4f9f3e7-3e25-404f-9465-272343cc0c2b img.shogun-image {
  min-height: 17em;
}


}
#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  margin-left: auto;
margin-right: auto;
min-height: 17em;
max-width: 720px;
text-align: center;
}
@media (max-width: 767px){#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  min-height: 9em;
}
}
#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  margin: 0 !important;
  overflow: visible;
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa img.shogun-image {
  /* Add background color handling */
  
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: rgba(0, 0, 0, 0.01);
  border-style: none;
  border-radius: 20px;

}






.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa .shogun-image-content {
  
    justify-content: center;
  
}

.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa.shogun-image {
  box-sizing: border-box;
}



.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa img.shogun-image {
  min-height: 17em;
}


@media (min-width: 1200px){#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  margin: 0 !important;
  overflow: visible;
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa img.shogun-image {
  /* Add background color handling */
  
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa .shogun-image-content {
  
    justify-content: center;
  
}

.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa.shogun-image {
  box-sizing: border-box;
}



.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa img.shogun-image {
  min-height: 17em;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  margin: 0 !important;
  overflow: visible;
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa img.shogun-image {
  /* Add background color handling */
  
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa .shogun-image-content {
  
    justify-content: center;
  
}

.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa.shogun-image {
  box-sizing: border-box;
}



.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa img.shogun-image {
  min-height: 17em;
}


}@media (min-width: 768px) and (max-width: 991px){#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  margin: 0 !important;
  overflow: visible;
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa img.shogun-image {
  /* Add background color handling */
  
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa .shogun-image-content {
  
    justify-content: center;
  
}

.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa.shogun-image {
  box-sizing: border-box;
}



.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa img.shogun-image {
  min-height: 17em;
}


}@media (max-width: 767px){#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  margin: 0 !important;
  overflow: visible;
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cc7e9826-0666-4e44-9737-cb1cf812fbfa {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa img.shogun-image {
  /* Add background color handling */
  
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa .shogun-image-content {
  
    justify-content: center;
  
}

.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cc7e9826-0666-4e44-9737-cb1cf812fbfa.shogun-image {
  box-sizing: border-box;
}



.s-cc7e9826-0666-4e44-9737-cb1cf812fbfa img.shogun-image {
  min-height: 17em;
}


}
#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  margin-left: auto;
margin-right: auto;
min-height: 17em;
max-width: 720px;
text-align: center;
}
@media (max-width: 767px){#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  min-height: 9em;
}
}
#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  margin: 0 !important;
  overflow: visible;
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 img.shogun-image {
  /* Add background color handling */
  
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: rgba(0, 0, 0, 0.01);
  border-style: none;
  border-radius: 20px;

}






.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 .shogun-image-content {
  
    justify-content: center;
  
}

.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71.shogun-image {
  box-sizing: border-box;
}



.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 img.shogun-image {
  min-height: 17em;
}


@media (min-width: 1200px){#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  margin: 0 !important;
  overflow: visible;
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 img.shogun-image {
  /* Add background color handling */
  
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 .shogun-image-content {
  
    justify-content: center;
  
}

.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71.shogun-image {
  box-sizing: border-box;
}



.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 img.shogun-image {
  min-height: 17em;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  margin: 0 !important;
  overflow: visible;
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 img.shogun-image {
  /* Add background color handling */
  
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 .shogun-image-content {
  
    justify-content: center;
  
}

.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71.shogun-image {
  box-sizing: border-box;
}



.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 img.shogun-image {
  min-height: 17em;
}


}@media (min-width: 768px) and (max-width: 991px){#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  margin: 0 !important;
  overflow: visible;
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 img.shogun-image {
  /* Add background color handling */
  
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 .shogun-image-content {
  
    justify-content: center;
  
}

.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71.shogun-image {
  box-sizing: border-box;
}



.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 img.shogun-image {
  min-height: 17em;
}


}@media (max-width: 767px){#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  margin: 0 !important;
  overflow: visible;
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 img.shogun-image {
  /* Add background color handling */
  
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 .shogun-image-content {
  
    justify-content: center;
  
}

.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71.shg-align-container {
  display: flex;
  justify-content: center
}

.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71.shogun-image {
  box-sizing: border-box;
}



.s-abd1b20c-9d0c-4ae9-87f1-6b7155c2af71 img.shogun-image {
  min-height: 17em;
}


}
#s-300af4df-d01b-4974-a833-996c289cb012 {
  padding-left: 0em;
padding-right: 0em;
}

#s-137362a4-9bab-4d1d-98a8-faf3363bb4f3 {
  margin-top: 0em;
margin-left: 1em;
margin-bottom: 0em;
margin-right: 1em;
min-height: 50px;
}
@media (min-width: 1200px){#s-137362a4-9bab-4d1d-98a8-faf3363bb4f3 {
  display: none;
}
#s-137362a4-9bab-4d1d-98a8-faf3363bb4f3, #wrap-s-137362a4-9bab-4d1d-98a8-faf3363bb4f3, #wrap-content-s-137362a4-9bab-4d1d-98a8-faf3363bb4f3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-137362a4-9bab-4d1d-98a8-faf3363bb4f3 {
  display: none;
}
#s-137362a4-9bab-4d1d-98a8-faf3363bb4f3, #wrap-s-137362a4-9bab-4d1d-98a8-faf3363bb4f3, #wrap-content-s-137362a4-9bab-4d1d-98a8-faf3363bb4f3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-137362a4-9bab-4d1d-98a8-faf3363bb4f3 {
  display: none;
}
#s-137362a4-9bab-4d1d-98a8-faf3363bb4f3, #wrap-s-137362a4-9bab-4d1d-98a8-faf3363bb4f3, #wrap-content-s-137362a4-9bab-4d1d-98a8-faf3363bb4f3 { display: none !important; }}







#s-137362a4-9bab-4d1d-98a8-faf3363bb4f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-137362a4-9bab-4d1d-98a8-faf3363bb4f3.shg-box.shg-c {
  justify-content: center;
}

#s-2e620cfc-661c-4ea5-b368-20291dd3589c {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-2e620cfc-661c-4ea5-b368-20291dd3589c {
  margin-top: 3em;
margin-left: 2em;
margin-bottom: 2em;
margin-right: 2em;
}
}







#s-2e620cfc-661c-4ea5-b368-20291dd3589c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2e620cfc-661c-4ea5-b368-20291dd3589c.shg-box.shg-c {
  justify-content: center;
}

#s-c298a548-52c9-433f-a25b-c745f31d0776 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-c298a548-52c9-433f-a25b-c745f31d0776 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-c298a548-52c9-433f-a25b-c745f31d0776 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-c298a548-52c9-433f-a25b-c745f31d0776 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-02e66795-3726-4bff-a818-81cd388cfdcc {
  margin-top: 0em;
margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-02e66795-3726-4bff-a818-81cd388cfdcc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-02e66795-3726-4bff-a818-81cd388cfdcc.shg-box.shg-c {
  justify-content: center;
}

#s-19c1e39e-51e8-4c11-b4a8-a00fd96bd9b8 {
  margin-bottom: 0px;
}

#s-3a81914a-f9ab-4f7f-ac58-1c9b1b48f76c {
  margin-top: -4em;
margin-left: 2em;
margin-right: auto;
}

#s-7fdd020d-5f27-4405-ab78-ece9854eb43b {
  margin-top: 3em;
margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-7fdd020d-5f27-4405-ab78-ece9854eb43b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7fdd020d-5f27-4405-ab78-ece9854eb43b.shg-box.shg-c {
  justify-content: center;
}

#s-8510136e-4268-4eee-b997-bf0a2a817a81 {
  margin-bottom: 0.5em;
}

#s-0eeda055-51e6-4566-ab48-fd9c3aaace20 {
  margin-top: -4em;
margin-left: 2em;
margin-right: auto;
}

#s-83903a90-829d-4fb1-913d-80ed1b36c4f7 {
  margin-top: 5em;
margin-left: 8.5em;
margin-bottom: 1em;
margin-right: 0em;
min-height: 50px;
}
@media (min-width: 1200px){#s-83903a90-829d-4fb1-913d-80ed1b36c4f7 {
  margin-top: 4em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-83903a90-829d-4fb1-913d-80ed1b36c4f7 {
  margin-top: 4em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-83903a90-829d-4fb1-913d-80ed1b36c4f7 {
  margin-top: 4em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-83903a90-829d-4fb1-913d-80ed1b36c4f7 {
  margin-left: 8em;
}
}







#s-83903a90-829d-4fb1-913d-80ed1b36c4f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-83903a90-829d-4fb1-913d-80ed1b36c4f7.shg-box.shg-c {
  justify-content: center;
}

#s-e1fdeda8-6a6c-4015-9901-5894fadb6b88 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-e1fdeda8-6a6c-4015-9901-5894fadb6b88 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-e1fdeda8-6a6c-4015-9901-5894fadb6b88 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-e1fdeda8-6a6c-4015-9901-5894fadb6b88 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-ec80cded-e077-4148-aedd-6cad8ef8c9f0 {
  margin-left: 1em;
margin-right: 1em;
min-height: 50px;
}








#s-ec80cded-e077-4148-aedd-6cad8ef8c9f0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ec80cded-e077-4148-aedd-6cad8ef8c9f0.shg-box.shg-c {
  justify-content: center;
}

#s-e8924809-d2df-44f8-b14e-7e8eabf67fc6 {
  margin-left: 7.5em;
margin-right: -5em;
padding-top: 6em;
min-height: 50px;
}
@media (min-width: 1200px){#s-e8924809-d2df-44f8-b14e-7e8eabf67fc6 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e8924809-d2df-44f8-b14e-7e8eabf67fc6 {
  
}
}@media (max-width: 767px){#s-e8924809-d2df-44f8-b14e-7e8eabf67fc6 {
  margin-left: 0em;
margin-right: 0em;
padding-top: 0em;
}
}







#s-e8924809-d2df-44f8-b14e-7e8eabf67fc6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e8924809-d2df-44f8-b14e-7e8eabf67fc6.shg-box.shg-c {
  justify-content: center;
}

#s-5253b4d9-7378-4464-9493-437cddbb6054 {
  margin-left: 0em;
margin-right: 0em;
}

 .video-card {
        position: relative;
        margin: 0 auto;
    }
  .backgroundVideo{
      width:100%;
      border-radius: 20px;
      -o-object-fit: cover;
         object-fit: cover;
      height: 32em;
  }
    .user-info {
        position: absolute;
        top: 1em;
        left: 1em;
        display: flex;
        align-items: center;
        padding: 10px;
        border-radius: 8px;
    }

    .user-info img {
        width: 33px;
        height: 33px;
        border-radius: 50%;
        margin-right: 10px;
        -o-object-fit: cover;
           object-fit: cover;
    }

    .user-info h3 {
        margin: 0;
        font-size: 1em;
        color: #fff;
    }

    .quote {
        position: absolute;
        bottom: 6em;
        left: 50%;
        transform: translateX(-50%);
        text-align: left;
        color: #333;
        font-size: 16px;
        padding: 0 0.5em;
        opacity: 1; /* Start fully visible */
        transition: opacity 1.5s ease; /* Fade effect with transition */
        width: 100%;
    }

    .quote p {
        margin: 0;
        color: #fff;
        line-height:1.1;
    }

    .quote .author {
        margin-top: 0.5em;
        font-weight: bold;
    }

    .play-button {
        position: absolute;
        bottom: 3em;
        left: 50%;
        transform: translateX(-50%);
        background-color: transparent;
        color: white;
        font-size: 1em;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        border-radius: 5px;
        display: flex;
        align-items: center; /* Center align text and icon */
        justify-content: center;
    }
    .play-button:hover , .play-button:focus {
      color:#d4d4d4;
      background-color: transparent;
    }

    .video-card .play-button i  {
    margin-left: 10px;
    -webkit-text-stroke: 0px #ffffff;
    background: transparent;
    border: none;
    position: static;
    padding: 2px;
    width: 7px;
    height: 9px;
    }
    .video-card .play-button {
        color:#fff;
        width: 6.5em;
        background: linear-gradient(180deg, #939393 0%, #0000006e 100%), linear-gradient(0deg, rgba(255, 193, 7, 0), rgba(255, 193, 7, 0));
        padding: 5px 0px 5px 0px;
        
    }
    

    @media screen and (max-width: 5000px) and (min-width: 1500px) {
  .backgroundVideo {
    height: 40em;
   }
}
#s-3626f6b6-6a61-432a-8ab2-e6bec497d0e2 {
  margin-top: 3em;
margin-left: 1em;
margin-bottom: 0em;
margin-right: 1em;
min-height: 50px;
}
@media (max-width: 767px){#s-3626f6b6-6a61-432a-8ab2-e6bec497d0e2 {
  margin-top: 2em;
}
}







#s-3626f6b6-6a61-432a-8ab2-e6bec497d0e2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3626f6b6-6a61-432a-8ab2-e6bec497d0e2.shg-box.shg-c {
  justify-content: center;
}

#s-1b002d7f-db17-4b93-b264-da373e3fe190 {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 10px;
margin-right: 0em;
}
@media (max-width: 767px){#s-1b002d7f-db17-4b93-b264-da373e3fe190 {
  margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-1b002d7f-db17-4b93-b264-da373e3fe190"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1b002d7f-db17-4b93-b264-da373e3fe190"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-1b002d7f-db17-4b93-b264-da373e3fe190"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-1b002d7f-db17-4b93-b264-da373e3fe190"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-36682a72-31a8-4f88-8469-0dd0e603821e {
  margin-left: auto;
margin-right: auto;
}








#s-36682a72-31a8-4f88-8469-0dd0e603821e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-36682a72-31a8-4f88-8469-0dd0e603821e.shg-box.shg-c {
  justify-content: center;
}

#s-a40e34ff-b887-4a17-8f6e-c854c7889fcd {
  margin-bottom: 0.5em;
}
@media (min-width: 1200px){#s-a40e34ff-b887-4a17-8f6e-c854c7889fcd {
  margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a40e34ff-b887-4a17-8f6e-c854c7889fcd {
  margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a40e34ff-b887-4a17-8f6e-c854c7889fcd {
  margin-bottom: 0em;
}
}
#s-0cae00c0-9ca1-452a-82f4-d0e5eb478e31 {
  margin-left: auto;
margin-right: auto;
min-height: 35px;
}

@media (min-width: 0px) {
[id="s-0cae00c0-9ca1-452a-82f4-d0e5eb478e31"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0cae00c0-9ca1-452a-82f4-d0e5eb478e31"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0cae00c0-9ca1-452a-82f4-d0e5eb478e31"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0cae00c0-9ca1-452a-82f4-d0e5eb478e31"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0cae00c0-9ca1-452a-82f4-d0e5eb478e31"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0cae00c0-9ca1-452a-82f4-d0e5eb478e31"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0cae00c0-9ca1-452a-82f4-d0e5eb478e31"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

#s-eddd237b-72ff-4b91-b16b-dd90af16078b {
  padding-left: 0em;
padding-right: 0em;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-eddd237b-72ff-4b91-b16b-dd90af16078b {
  margin-top: -2em;
}
}@media (max-width: 767px){#s-eddd237b-72ff-4b91-b16b-dd90af16078b {
  padding-left: 1em;
padding-right: 1em;
}
}
@media (min-width: 0px) {
[id="s-eddd237b-72ff-4b91-b16b-dd90af16078b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-eddd237b-72ff-4b91-b16b-dd90af16078b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-eddd237b-72ff-4b91-b16b-dd90af16078b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-eddd237b-72ff-4b91-b16b-dd90af16078b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

#s-9eff1eff-21ab-4666-9214-5fa578f93523 {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-left: 0em;
padding-right: 0em;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 20px;
min-height: 35px;
background-color: rgba(51, 51, 51, 1);
}








#s-9eff1eff-21ab-4666-9214-5fa578f93523 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9eff1eff-21ab-4666-9214-5fa578f93523.shg-box.shg-c {
  justify-content: center;
}

#s-f286911e-609b-46d0-b041-2c9707149647 {
  margin-left: 0px;
margin-right: 0px;
max-width: 12px;
aspect-ratio: 11/12;
text-align: left;
}
@media (max-width: 767px){#s-f286911e-609b-46d0-b041-2c9707149647 {
  margin-bottom: 0.8em;
}
}
#s-f286911e-609b-46d0-b041-2c9707149647 {
  margin: 0 !important;
  overflow: visible;
}

#s-f286911e-609b-46d0-b041-2c9707149647-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f286911e-609b-46d0-b041-2c9707149647 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-f286911e-609b-46d0-b041-2c9707149647 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f286911e-609b-46d0-b041-2c9707149647 img.shogun-image {
  /* Add background color handling */
  
}

#s-f286911e-609b-46d0-b041-2c9707149647 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-f286911e-609b-46d0-b041-2c9707149647.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-f286911e-609b-46d0-b041-2c9707149647 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f286911e-609b-46d0-b041-2c9707149647.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-f286911e-609b-46d0-b041-2c9707149647.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f286911e-609b-46d0-b041-2c9707149647.shogun-image {
  box-sizing: border-box;
}



.s-f286911e-609b-46d0-b041-2c9707149647 img.shogun-image {
  
}


@media (min-width: 1200px){#s-f286911e-609b-46d0-b041-2c9707149647 {
  margin: 0 !important;
  overflow: visible;
}

#s-f286911e-609b-46d0-b041-2c9707149647-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f286911e-609b-46d0-b041-2c9707149647 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f286911e-609b-46d0-b041-2c9707149647 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f286911e-609b-46d0-b041-2c9707149647 img.shogun-image {
  /* Add background color handling */
  
}

#s-f286911e-609b-46d0-b041-2c9707149647 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-f286911e-609b-46d0-b041-2c9707149647.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-f286911e-609b-46d0-b041-2c9707149647 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f286911e-609b-46d0-b041-2c9707149647.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-f286911e-609b-46d0-b041-2c9707149647.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f286911e-609b-46d0-b041-2c9707149647.shogun-image {
  box-sizing: border-box;
}



.s-f286911e-609b-46d0-b041-2c9707149647 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-f286911e-609b-46d0-b041-2c9707149647 {
  margin: 0 !important;
  overflow: visible;
}

#s-f286911e-609b-46d0-b041-2c9707149647-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f286911e-609b-46d0-b041-2c9707149647 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f286911e-609b-46d0-b041-2c9707149647 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f286911e-609b-46d0-b041-2c9707149647 img.shogun-image {
  /* Add background color handling */
  
}

#s-f286911e-609b-46d0-b041-2c9707149647 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-f286911e-609b-46d0-b041-2c9707149647.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-f286911e-609b-46d0-b041-2c9707149647 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f286911e-609b-46d0-b041-2c9707149647.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-f286911e-609b-46d0-b041-2c9707149647.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f286911e-609b-46d0-b041-2c9707149647.shogun-image {
  box-sizing: border-box;
}



.s-f286911e-609b-46d0-b041-2c9707149647 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-f286911e-609b-46d0-b041-2c9707149647 {
  margin: 0 !important;
  overflow: visible;
}

#s-f286911e-609b-46d0-b041-2c9707149647-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f286911e-609b-46d0-b041-2c9707149647 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f286911e-609b-46d0-b041-2c9707149647 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f286911e-609b-46d0-b041-2c9707149647 img.shogun-image {
  /* Add background color handling */
  
}

#s-f286911e-609b-46d0-b041-2c9707149647 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-f286911e-609b-46d0-b041-2c9707149647.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-f286911e-609b-46d0-b041-2c9707149647 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f286911e-609b-46d0-b041-2c9707149647.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-f286911e-609b-46d0-b041-2c9707149647.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f286911e-609b-46d0-b041-2c9707149647.shogun-image {
  box-sizing: border-box;
}



.s-f286911e-609b-46d0-b041-2c9707149647 img.shogun-image {
  
}


}@media (max-width: 767px){#s-f286911e-609b-46d0-b041-2c9707149647 {
  margin: 0 !important;
  overflow: visible;
}

#s-f286911e-609b-46d0-b041-2c9707149647-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f286911e-609b-46d0-b041-2c9707149647 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 0.8em;
}

.shg-image-content-margin-container-s-f286911e-609b-46d0-b041-2c9707149647 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f286911e-609b-46d0-b041-2c9707149647 img.shogun-image {
  /* Add background color handling */
  
}

#s-f286911e-609b-46d0-b041-2c9707149647 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-f286911e-609b-46d0-b041-2c9707149647.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-f286911e-609b-46d0-b041-2c9707149647 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f286911e-609b-46d0-b041-2c9707149647.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-f286911e-609b-46d0-b041-2c9707149647.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f286911e-609b-46d0-b041-2c9707149647.shogun-image {
  box-sizing: border-box;
}



.s-f286911e-609b-46d0-b041-2c9707149647 img.shogun-image {
  
}


}
#s-8872ec4b-efbf-4c99-bde7-9e0b71912c39 {
  margin-left: 0px;
margin-right: 0px;
}

#s-d7b2d0ea-1b28-4c3c-8569-fc0442984ec8 {
  margin-top: 0em;
margin-left: 0px;
margin-bottom: 0em;
margin-right: 0px;
padding-left: 0em;
padding-right: 0em;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 20px;
min-height: 35px;
background-color: rgba(51, 51, 51, 1);
}








#s-d7b2d0ea-1b28-4c3c-8569-fc0442984ec8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d7b2d0ea-1b28-4c3c-8569-fc0442984ec8.shg-box.shg-c {
  justify-content: center;
}

#s-8888d98e-745d-496f-a929-84edea56121c {
  margin-left: 0px;
margin-right: 0px;
max-width: 12px;
aspect-ratio: 14/12;
text-align: left;
}
@media (max-width: 767px){#s-8888d98e-745d-496f-a929-84edea56121c {
  margin-bottom: 0.8em;
}
}
#s-8888d98e-745d-496f-a929-84edea56121c {
  margin: 0 !important;
  overflow: visible;
}

#s-8888d98e-745d-496f-a929-84edea56121c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8888d98e-745d-496f-a929-84edea56121c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-8888d98e-745d-496f-a929-84edea56121c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8888d98e-745d-496f-a929-84edea56121c img.shogun-image {
  /* Add background color handling */
  
}

#s-8888d98e-745d-496f-a929-84edea56121c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8888d98e-745d-496f-a929-84edea56121c.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-8888d98e-745d-496f-a929-84edea56121c .shogun-image-content {
  
    justify-content: center;
  
}

.s-8888d98e-745d-496f-a929-84edea56121c.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8888d98e-745d-496f-a929-84edea56121c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8888d98e-745d-496f-a929-84edea56121c.shogun-image {
  box-sizing: border-box;
}



.s-8888d98e-745d-496f-a929-84edea56121c img.shogun-image {
  
}


@media (min-width: 1200px){#s-8888d98e-745d-496f-a929-84edea56121c {
  margin: 0 !important;
  overflow: visible;
}

#s-8888d98e-745d-496f-a929-84edea56121c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8888d98e-745d-496f-a929-84edea56121c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8888d98e-745d-496f-a929-84edea56121c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8888d98e-745d-496f-a929-84edea56121c img.shogun-image {
  /* Add background color handling */
  
}

#s-8888d98e-745d-496f-a929-84edea56121c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8888d98e-745d-496f-a929-84edea56121c.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-8888d98e-745d-496f-a929-84edea56121c .shogun-image-content {
  
    justify-content: center;
  
}

.s-8888d98e-745d-496f-a929-84edea56121c.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8888d98e-745d-496f-a929-84edea56121c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8888d98e-745d-496f-a929-84edea56121c.shogun-image {
  box-sizing: border-box;
}



.s-8888d98e-745d-496f-a929-84edea56121c img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-8888d98e-745d-496f-a929-84edea56121c {
  margin: 0 !important;
  overflow: visible;
}

#s-8888d98e-745d-496f-a929-84edea56121c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8888d98e-745d-496f-a929-84edea56121c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8888d98e-745d-496f-a929-84edea56121c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8888d98e-745d-496f-a929-84edea56121c img.shogun-image {
  /* Add background color handling */
  
}

#s-8888d98e-745d-496f-a929-84edea56121c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8888d98e-745d-496f-a929-84edea56121c.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-8888d98e-745d-496f-a929-84edea56121c .shogun-image-content {
  
    justify-content: center;
  
}

.s-8888d98e-745d-496f-a929-84edea56121c.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8888d98e-745d-496f-a929-84edea56121c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8888d98e-745d-496f-a929-84edea56121c.shogun-image {
  box-sizing: border-box;
}



.s-8888d98e-745d-496f-a929-84edea56121c img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-8888d98e-745d-496f-a929-84edea56121c {
  margin: 0 !important;
  overflow: visible;
}

#s-8888d98e-745d-496f-a929-84edea56121c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8888d98e-745d-496f-a929-84edea56121c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8888d98e-745d-496f-a929-84edea56121c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8888d98e-745d-496f-a929-84edea56121c img.shogun-image {
  /* Add background color handling */
  
}

#s-8888d98e-745d-496f-a929-84edea56121c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8888d98e-745d-496f-a929-84edea56121c.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-8888d98e-745d-496f-a929-84edea56121c .shogun-image-content {
  
    justify-content: center;
  
}

.s-8888d98e-745d-496f-a929-84edea56121c.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8888d98e-745d-496f-a929-84edea56121c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8888d98e-745d-496f-a929-84edea56121c.shogun-image {
  box-sizing: border-box;
}



.s-8888d98e-745d-496f-a929-84edea56121c img.shogun-image {
  
}


}@media (max-width: 767px){#s-8888d98e-745d-496f-a929-84edea56121c {
  margin: 0 !important;
  overflow: visible;
}

#s-8888d98e-745d-496f-a929-84edea56121c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8888d98e-745d-496f-a929-84edea56121c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 0.8em;
}

.shg-image-content-margin-container-s-8888d98e-745d-496f-a929-84edea56121c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8888d98e-745d-496f-a929-84edea56121c img.shogun-image {
  /* Add background color handling */
  
}

#s-8888d98e-745d-496f-a929-84edea56121c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-8888d98e-745d-496f-a929-84edea56121c.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-8888d98e-745d-496f-a929-84edea56121c .shogun-image-content {
  
    justify-content: center;
  
}

.s-8888d98e-745d-496f-a929-84edea56121c.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8888d98e-745d-496f-a929-84edea56121c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8888d98e-745d-496f-a929-84edea56121c.shogun-image {
  box-sizing: border-box;
}



.s-8888d98e-745d-496f-a929-84edea56121c img.shogun-image {
  
}


}
#s-81add564-c8c7-470e-a35d-456e7e002503 {
  margin-left: 0px;
margin-right: 0px;
}

#s-261d9382-b0c9-4f00-aedc-bbb80bebd774 {
  margin-left: auto;
margin-right: auto;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(239, 239, 239, 1);
border-style: solid;
border-radius: 20px;
min-height: 50px;
}








#s-261d9382-b0c9-4f00-aedc-bbb80bebd774 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-261d9382-b0c9-4f00-aedc-bbb80bebd774.shg-box.shg-c {
  justify-content: center;
}

#s-cd031d38-9ea2-408d-9ee8-ec658a1f244a {
  margin-bottom: 0.5em;
}
@media (min-width: 1200px){#s-cd031d38-9ea2-408d-9ee8-ec658a1f244a {
  margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cd031d38-9ea2-408d-9ee8-ec658a1f244a {
  margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-cd031d38-9ea2-408d-9ee8-ec658a1f244a {
  margin-bottom: 0em;
}
}
#s-db1d7f4d-795b-43fb-b0e3-97559123d463 {
  margin-bottom: 0em;
}
@media (max-width: 767px){#s-db1d7f4d-795b-43fb-b0e3-97559123d463 {
  margin-top: 0.5em;
margin-bottom: 0.5em;
}
}
#s-c0418f4f-c08a-4068-9a1d-00f74ad59707 {
  margin-left: 0em;
margin-right: 0em;
}

@media (min-width: 0px) {
[id="s-c0418f4f-c08a-4068-9a1d-00f74ad59707"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c0418f4f-c08a-4068-9a1d-00f74ad59707"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c0418f4f-c08a-4068-9a1d-00f74ad59707"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c0418f4f-c08a-4068-9a1d-00f74ad59707"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c0418f4f-c08a-4068-9a1d-00f74ad59707"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c0418f4f-c08a-4068-9a1d-00f74ad59707"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c0418f4f-c08a-4068-9a1d-00f74ad59707"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-74524fa5-1d30-4f4a-8ab0-0d3663a49cdc {
  margin-top: 0em;
margin-left: 0px;
margin-bottom: 0em;
margin-right: 0px;
padding-top: 0.5em;
padding-bottom: 0.5em;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-74524fa5-1d30-4f4a-8ab0-0d3663a49cdc {
  margin-left: 1em;
margin-right: 1em;
}
}







#s-74524fa5-1d30-4f4a-8ab0-0d3663a49cdc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-74524fa5-1d30-4f4a-8ab0-0d3663a49cdc.shg-box.shg-c {
  justify-content: center;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  margin-left: 0px;
margin-right: 0px;
text-align: left;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  margin: 0 !important;
  overflow: visible;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc img.shogun-image {
  /* Add background color handling */
  
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-21e489f0-f9a8-4be4-8b21-1263405861fc.shogun-image {
    
    
    
    
  }


.s-21e489f0-f9a8-4be4-8b21-1263405861fc .shogun-image-content {
  
    justify-content: center;
  
}

.s-21e489f0-f9a8-4be4-8b21-1263405861fc.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-21e489f0-f9a8-4be4-8b21-1263405861fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc.shogun-image {
  box-sizing: border-box;
}



.s-21e489f0-f9a8-4be4-8b21-1263405861fc img.shogun-image {
  
}


@media (min-width: 1200px){#s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  margin: 0 !important;
  overflow: visible;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc img.shogun-image {
  /* Add background color handling */
  
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-21e489f0-f9a8-4be4-8b21-1263405861fc.shogun-image {
    
    
    
    
  }


.s-21e489f0-f9a8-4be4-8b21-1263405861fc .shogun-image-content {
  
    justify-content: center;
  
}

.s-21e489f0-f9a8-4be4-8b21-1263405861fc.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-21e489f0-f9a8-4be4-8b21-1263405861fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc.shogun-image {
  box-sizing: border-box;
}



.s-21e489f0-f9a8-4be4-8b21-1263405861fc img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  margin: 0 !important;
  overflow: visible;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc img.shogun-image {
  /* Add background color handling */
  
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-21e489f0-f9a8-4be4-8b21-1263405861fc.shogun-image {
    
    
    
    
  }


.s-21e489f0-f9a8-4be4-8b21-1263405861fc .shogun-image-content {
  
    justify-content: center;
  
}

.s-21e489f0-f9a8-4be4-8b21-1263405861fc.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-21e489f0-f9a8-4be4-8b21-1263405861fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc.shogun-image {
  box-sizing: border-box;
}



.s-21e489f0-f9a8-4be4-8b21-1263405861fc img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  margin: 0 !important;
  overflow: visible;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc img.shogun-image {
  /* Add background color handling */
  
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-21e489f0-f9a8-4be4-8b21-1263405861fc.shogun-image {
    
    
    
    
  }


.s-21e489f0-f9a8-4be4-8b21-1263405861fc .shogun-image-content {
  
    justify-content: center;
  
}

.s-21e489f0-f9a8-4be4-8b21-1263405861fc.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-21e489f0-f9a8-4be4-8b21-1263405861fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc.shogun-image {
  box-sizing: border-box;
}



.s-21e489f0-f9a8-4be4-8b21-1263405861fc img.shogun-image {
  
}


}@media (max-width: 767px){#s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  margin: 0 !important;
  overflow: visible;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-21e489f0-f9a8-4be4-8b21-1263405861fc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc img.shogun-image {
  /* Add background color handling */
  
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-21e489f0-f9a8-4be4-8b21-1263405861fc.shogun-image {
    
    
    
    
  }


.s-21e489f0-f9a8-4be4-8b21-1263405861fc .shogun-image-content {
  
    justify-content: center;
  
}

.s-21e489f0-f9a8-4be4-8b21-1263405861fc.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-21e489f0-f9a8-4be4-8b21-1263405861fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21e489f0-f9a8-4be4-8b21-1263405861fc.shogun-image {
  box-sizing: border-box;
}



.s-21e489f0-f9a8-4be4-8b21-1263405861fc img.shogun-image {
  
}


}
#s-37d12a11-c0d3-4771-8bb0-69190c239a3f {
  margin-left: 0px;
margin-right: 0px;
}

#s-4bac095f-88ba-49b1-ad5e-c4a620d630ab {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 10px;
margin-right: 0em;
}
@media (max-width: 767px){#s-4bac095f-88ba-49b1-ad5e-c4a620d630ab {
  margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-4bac095f-88ba-49b1-ad5e-c4a620d630ab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4bac095f-88ba-49b1-ad5e-c4a620d630ab"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-4bac095f-88ba-49b1-ad5e-c4a620d630ab"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-4bac095f-88ba-49b1-ad5e-c4a620d630ab"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-4bac095f-88ba-49b1-ad5e-c4a620d630ab"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-4bac095f-88ba-49b1-ad5e-c4a620d630ab"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-4bac095f-88ba-49b1-ad5e-c4a620d630ab"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

}

#s-94274f35-ac2e-4c75-ba71-8ffef2252a8e {
  margin-bottom: 0em;
}
@media (max-width: 767px){#s-94274f35-ac2e-4c75-ba71-8ffef2252a8e {
  margin-bottom: 0.5em;
}
}
#s-3c6746c6-1170-42d1-99a4-7e5e7969440d {
  margin-left: auto;
margin-right: auto;
min-height: 35px;
}

@media (min-width: 0px) {
[id="s-3c6746c6-1170-42d1-99a4-7e5e7969440d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3c6746c6-1170-42d1-99a4-7e5e7969440d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3c6746c6-1170-42d1-99a4-7e5e7969440d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3c6746c6-1170-42d1-99a4-7e5e7969440d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3c6746c6-1170-42d1-99a4-7e5e7969440d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3c6746c6-1170-42d1-99a4-7e5e7969440d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3c6746c6-1170-42d1-99a4-7e5e7969440d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

#s-d5dcaef8-0ace-4a34-9f56-0b1f45fc7527 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 20px;
min-height: 35px;
background-color: rgba(51, 51, 51, 1);
}
@media (max-width: 767px){#s-d5dcaef8-0ace-4a34-9f56-0b1f45fc7527 {
  margin-left: 1em;
margin-right: 1em;
}
}







#s-d5dcaef8-0ace-4a34-9f56-0b1f45fc7527 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d5dcaef8-0ace-4a34-9f56-0b1f45fc7527.shg-box.shg-c {
  justify-content: center;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  margin-left: 0px;
margin-right: 0px;
max-width: 12px;
aspect-ratio: 12/14;
text-align: left;
}
@media (max-width: 767px){#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  margin-bottom: 0.8em;
}
}
#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  margin: 0 !important;
  overflow: visible;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f img.shogun-image {
  /* Add background color handling */
  
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f .shogun-image-content {
  
    justify-content: center;
  
}

.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shogun-image {
  box-sizing: border-box;
}



.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f img.shogun-image {
  
}


@media (min-width: 1200px){#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  margin: 0 !important;
  overflow: visible;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f img.shogun-image {
  /* Add background color handling */
  
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f .shogun-image-content {
  
    justify-content: center;
  
}

.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shogun-image {
  box-sizing: border-box;
}



.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  margin: 0 !important;
  overflow: visible;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f img.shogun-image {
  /* Add background color handling */
  
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f .shogun-image-content {
  
    justify-content: center;
  
}

.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shogun-image {
  box-sizing: border-box;
}



.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  margin: 0 !important;
  overflow: visible;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f img.shogun-image {
  /* Add background color handling */
  
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f .shogun-image-content {
  
    justify-content: center;
  
}

.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shogun-image {
  box-sizing: border-box;
}



.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f img.shogun-image {
  
}


}@media (max-width: 767px){#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  margin: 0 !important;
  overflow: visible;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 0.8em;
}

.shg-image-content-margin-container-s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f img.shogun-image {
  /* Add background color handling */
  
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f .shogun-image-content {
  
    justify-content: center;
  
}

.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f.shogun-image {
  box-sizing: border-box;
}



.s-24f2cd3e-1850-4e3a-af81-d2abefac6c3f img.shogun-image {
  
}


}
#s-9122f16e-3732-4981-89c6-73e57d3b904c {
  margin-left: 0px;
margin-right: 0px;
}

#s-1755beea-627e-4182-9603-c16e96d8a1b7 {
  margin-top: 0px;
}
@media (max-width: 767px){#s-1755beea-627e-4182-9603-c16e96d8a1b7 {
  margin-bottom: 0.5em;
display: none;
}
#s-1755beea-627e-4182-9603-c16e96d8a1b7, #wrap-s-1755beea-627e-4182-9603-c16e96d8a1b7, #wrap-content-s-1755beea-627e-4182-9603-c16e96d8a1b7 { display: none !important; }}
#s-a5de63dc-14dc-41a2-b25d-c982177803cb {
  margin-top: 0px;
}
@media (min-width: 1200px){#s-a5de63dc-14dc-41a2-b25d-c982177803cb {
  display: none;
}
#s-a5de63dc-14dc-41a2-b25d-c982177803cb, #wrap-s-a5de63dc-14dc-41a2-b25d-c982177803cb, #wrap-content-s-a5de63dc-14dc-41a2-b25d-c982177803cb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a5de63dc-14dc-41a2-b25d-c982177803cb {
  display: none;
}
#s-a5de63dc-14dc-41a2-b25d-c982177803cb, #wrap-s-a5de63dc-14dc-41a2-b25d-c982177803cb, #wrap-content-s-a5de63dc-14dc-41a2-b25d-c982177803cb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a5de63dc-14dc-41a2-b25d-c982177803cb {
  display: none;
}
#s-a5de63dc-14dc-41a2-b25d-c982177803cb, #wrap-s-a5de63dc-14dc-41a2-b25d-c982177803cb, #wrap-content-s-a5de63dc-14dc-41a2-b25d-c982177803cb { display: none !important; }}@media (max-width: 767px){#s-a5de63dc-14dc-41a2-b25d-c982177803cb {
  margin-bottom: 0.5em;
}
}
#s-c6ddd620-e931-418b-b651-5520235b93af {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 10px;
margin-right: 0em;
}
@media (max-width: 767px){#s-c6ddd620-e931-418b-b651-5520235b93af {
  margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-c6ddd620-e931-418b-b651-5520235b93af"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c6ddd620-e931-418b-b651-5520235b93af"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-c6ddd620-e931-418b-b651-5520235b93af"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-c6ddd620-e931-418b-b651-5520235b93af"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-1819d40c-6dd3-4738-bc79-531590acb49b {
  margin-bottom: 0em;
}
@media (max-width: 767px){#s-1819d40c-6dd3-4738-bc79-531590acb49b {
  margin-bottom: 0.5em;
}
}
#s-08957571-9446-4fbe-9aee-f0f755cd320b {
  margin-left: auto;
margin-right: auto;
min-height: 35px;
}

@media (min-width: 0px) {
[id="s-08957571-9446-4fbe-9aee-f0f755cd320b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-08957571-9446-4fbe-9aee-f0f755cd320b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-08957571-9446-4fbe-9aee-f0f755cd320b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-08957571-9446-4fbe-9aee-f0f755cd320b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-08957571-9446-4fbe-9aee-f0f755cd320b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-08957571-9446-4fbe-9aee-f0f755cd320b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-08957571-9446-4fbe-9aee-f0f755cd320b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-08957571-9446-4fbe-9aee-f0f755cd320b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-08957571-9446-4fbe-9aee-f0f755cd320b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-08957571-9446-4fbe-9aee-f0f755cd320b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-3036e9a3-d9b9-4942-8d48-6c46b67c38eb {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 20px;
min-height: 35px;
background-color: rgba(51, 51, 51, 1);
}
@media (max-width: 767px){#s-3036e9a3-d9b9-4942-8d48-6c46b67c38eb {
  margin-left: 1em;
margin-right: 1em;
}
}







#s-3036e9a3-d9b9-4942-8d48-6c46b67c38eb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3036e9a3-d9b9-4942-8d48-6c46b67c38eb.shg-box.shg-c {
  justify-content: center;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  margin-left: 0px;
margin-right: 0px;
max-width: 12px;
aspect-ratio: 11/12;
text-align: left;
}
@media (max-width: 767px){#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  margin-bottom: 0.8em;
}
}
#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  margin: 0 !important;
  overflow: visible;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 img.shogun-image {
  /* Add background color handling */
  
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-edceae1d-8e85-4b2c-9f61-a924956e8f01 .shogun-image-content {
  
    justify-content: center;
  
}

.s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shogun-image {
  box-sizing: border-box;
}



.s-edceae1d-8e85-4b2c-9f61-a924956e8f01 img.shogun-image {
  
}


@media (min-width: 1200px){#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  margin: 0 !important;
  overflow: visible;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 img.shogun-image {
  /* Add background color handling */
  
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-edceae1d-8e85-4b2c-9f61-a924956e8f01 .shogun-image-content {
  
    justify-content: center;
  
}

.s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shogun-image {
  box-sizing: border-box;
}



.s-edceae1d-8e85-4b2c-9f61-a924956e8f01 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  margin: 0 !important;
  overflow: visible;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 img.shogun-image {
  /* Add background color handling */
  
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-edceae1d-8e85-4b2c-9f61-a924956e8f01 .shogun-image-content {
  
    justify-content: center;
  
}

.s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shogun-image {
  box-sizing: border-box;
}



.s-edceae1d-8e85-4b2c-9f61-a924956e8f01 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  margin: 0 !important;
  overflow: visible;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 img.shogun-image {
  /* Add background color handling */
  
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-edceae1d-8e85-4b2c-9f61-a924956e8f01 .shogun-image-content {
  
    justify-content: center;
  
}

.s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shogun-image {
  box-sizing: border-box;
}



.s-edceae1d-8e85-4b2c-9f61-a924956e8f01 img.shogun-image {
  
}


}@media (max-width: 767px){#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  margin: 0 !important;
  overflow: visible;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 0.8em;
}

.shg-image-content-margin-container-s-edceae1d-8e85-4b2c-9f61-a924956e8f01 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 img.shogun-image {
  /* Add background color handling */
  
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-edceae1d-8e85-4b2c-9f61-a924956e8f01 .shogun-image-content {
  
    justify-content: center;
  
}

.s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edceae1d-8e85-4b2c-9f61-a924956e8f01.shogun-image {
  box-sizing: border-box;
}



.s-edceae1d-8e85-4b2c-9f61-a924956e8f01 img.shogun-image {
  
}


}
#s-3c33485e-b66e-4a58-9ed6-9109caba3a43 {
  margin-left: 0px;
margin-right: 0px;
}

@media (max-width: 767px){#s-d07e8a68-f4b5-45ec-bf84-838aa3bee4f5 {
  margin-bottom: 0.5em;
}
}
#s-6e550313-6c07-485f-bfa2-53b5491c798d {
  margin-bottom: 0em;
}
@media (max-width: 767px){#s-6e550313-6c07-485f-bfa2-53b5491c798d {
  margin-top: 0em;
margin-bottom: 0.5em;
}
}
#s-7cc5df25-d0be-4ba8-8095-b295e501edcf {
  margin-left: auto;
margin-right: auto;
min-height: 35px;
}
@media (min-width: 1200px){#s-7cc5df25-d0be-4ba8-8095-b295e501edcf {
  margin-left: 0em;
margin-right: 0em;
}
}
@media (min-width: 0px) {
[id="s-7cc5df25-d0be-4ba8-8095-b295e501edcf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7cc5df25-d0be-4ba8-8095-b295e501edcf"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7cc5df25-d0be-4ba8-8095-b295e501edcf"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7cc5df25-d0be-4ba8-8095-b295e501edcf"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7cc5df25-d0be-4ba8-8095-b295e501edcf"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7cc5df25-d0be-4ba8-8095-b295e501edcf"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7cc5df25-d0be-4ba8-8095-b295e501edcf"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7cc5df25-d0be-4ba8-8095-b295e501edcf"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7cc5df25-d0be-4ba8-8095-b295e501edcf"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7cc5df25-d0be-4ba8-8095-b295e501edcf"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

}

#s-70a4a5db-845b-43c9-927f-1e137e3dd0a0 {
  padding-left: 0em;
padding-right: 0em;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-70a4a5db-845b-43c9-927f-1e137e3dd0a0 {
  margin-top: -2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-70a4a5db-845b-43c9-927f-1e137e3dd0a0 {
  padding-left: 0.5em;
padding-right: 0.5em;
}
}@media (max-width: 767px){#s-70a4a5db-845b-43c9-927f-1e137e3dd0a0 {
  padding-left: 1em;
padding-right: 1em;
}
}
@media (min-width: 0px) {
[id="s-70a4a5db-845b-43c9-927f-1e137e3dd0a0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-70a4a5db-845b-43c9-927f-1e137e3dd0a0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-70a4a5db-845b-43c9-927f-1e137e3dd0a0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-70a4a5db-845b-43c9-927f-1e137e3dd0a0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

#s-5be6181a-2401-4244-8f17-e108dabc7357 {
  margin-top: 0em;
margin-left: 0px;
margin-bottom: 0em;
margin-right: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 20px;
min-height: 35px;
background-color: rgba(51, 51, 51, 1);
}








#s-5be6181a-2401-4244-8f17-e108dabc7357 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5be6181a-2401-4244-8f17-e108dabc7357.shg-box.shg-c {
  justify-content: center;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  margin-left: 0px;
margin-right: 0px;
max-width: 12px;
aspect-ratio: 1/1;
text-align: left;
}
@media (max-width: 767px){#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  margin-bottom: 0.8em;
}
}
#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  margin: 0 !important;
  overflow: visible;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 img.shogun-image {
  /* Add background color handling */
  
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shogun-image {
  box-sizing: border-box;
}



.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 img.shogun-image {
  
}


@media (min-width: 1200px){#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  margin: 0 !important;
  overflow: visible;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 img.shogun-image {
  /* Add background color handling */
  
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shogun-image {
  box-sizing: border-box;
}



.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  margin: 0 !important;
  overflow: visible;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 img.shogun-image {
  /* Add background color handling */
  
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shogun-image {
  box-sizing: border-box;
}



.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  margin: 0 !important;
  overflow: visible;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 img.shogun-image {
  /* Add background color handling */
  
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shogun-image {
  box-sizing: border-box;
}



.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 img.shogun-image {
  
}


}@media (max-width: 767px){#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  margin: 0 !important;
  overflow: visible;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 0.8em;
}

.shg-image-content-margin-container-s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 img.shogun-image {
  /* Add background color handling */
  
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 img.shogun-image {
  /* Add padding handling */
  
  
  
  padding-bottom: 0em;
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 .shogun-image-content {
  
    justify-content: center;
  
}

.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0.shogun-image {
  box-sizing: border-box;
}



.s-130fe1f1-0b4f-4173-a7bc-12719afcb1a0 img.shogun-image {
  
}


}
#s-a98c03f3-bc0f-4c85-885b-fbac6aa58921 {
  margin-left: 0px;
margin-right: 0px;
}

#s-cf17c497-d9e7-49eb-9999-90e4a34b7fd1 {
  margin-top: 0em;
margin-left: 0px;
margin-bottom: 0em;
margin-right: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 20px;
min-height: 35px;
background-color: rgba(51, 51, 51, 1);
}








#s-cf17c497-d9e7-49eb-9999-90e4a34b7fd1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cf17c497-d9e7-49eb-9999-90e4a34b7fd1.shg-box.shg-c {
  justify-content: center;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  margin-left: 0px;
margin-right: 0px;
max-width: 12px;
aspect-ratio: 1/1;
text-align: left;
}
@media (max-width: 767px){#s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  margin-bottom: 0.8em;
}
}
#s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  margin: 0 !important;
  overflow: visible;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172 img.shogun-image {
  /* Add background color handling */
  
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-eb368a7b-2b42-4aee-be39-c4db4a639172.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-eb368a7b-2b42-4aee-be39-c4db4a639172 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eb368a7b-2b42-4aee-be39-c4db4a639172.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-eb368a7b-2b42-4aee-be39-c4db4a639172.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172.shogun-image {
  box-sizing: border-box;
}



.s-eb368a7b-2b42-4aee-be39-c4db4a639172 img.shogun-image {
  
}


@media (min-width: 1200px){#s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  margin: 0 !important;
  overflow: visible;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172 img.shogun-image {
  /* Add background color handling */
  
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-eb368a7b-2b42-4aee-be39-c4db4a639172.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-eb368a7b-2b42-4aee-be39-c4db4a639172 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eb368a7b-2b42-4aee-be39-c4db4a639172.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-eb368a7b-2b42-4aee-be39-c4db4a639172.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172.shogun-image {
  box-sizing: border-box;
}



.s-eb368a7b-2b42-4aee-be39-c4db4a639172 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  margin: 0 !important;
  overflow: visible;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172 img.shogun-image {
  /* Add background color handling */
  
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-eb368a7b-2b42-4aee-be39-c4db4a639172.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-eb368a7b-2b42-4aee-be39-c4db4a639172 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eb368a7b-2b42-4aee-be39-c4db4a639172.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-eb368a7b-2b42-4aee-be39-c4db4a639172.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172.shogun-image {
  box-sizing: border-box;
}



.s-eb368a7b-2b42-4aee-be39-c4db4a639172 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  margin: 0 !important;
  overflow: visible;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172 img.shogun-image {
  /* Add background color handling */
  
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-eb368a7b-2b42-4aee-be39-c4db4a639172.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-eb368a7b-2b42-4aee-be39-c4db4a639172 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eb368a7b-2b42-4aee-be39-c4db4a639172.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-eb368a7b-2b42-4aee-be39-c4db4a639172.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172.shogun-image {
  box-sizing: border-box;
}



.s-eb368a7b-2b42-4aee-be39-c4db4a639172 img.shogun-image {
  
}


}@media (max-width: 767px){#s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  margin: 0 !important;
  overflow: visible;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  margin-bottom: 0.8em;
}

.shg-image-content-margin-container-s-eb368a7b-2b42-4aee-be39-c4db4a639172 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172 img.shogun-image {
  /* Add background color handling */
  
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-eb368a7b-2b42-4aee-be39-c4db4a639172.shogun-image {
    
    
    
    max-height: 12px;
  }


.s-eb368a7b-2b42-4aee-be39-c4db4a639172 .shogun-image-content {
  
    justify-content: center;
  
}

.s-eb368a7b-2b42-4aee-be39-c4db4a639172.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-eb368a7b-2b42-4aee-be39-c4db4a639172.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb368a7b-2b42-4aee-be39-c4db4a639172.shogun-image {
  box-sizing: border-box;
}



.s-eb368a7b-2b42-4aee-be39-c4db4a639172 img.shogun-image {
  
}


}
#s-c67fb61c-1e2b-49d5-aba3-06b3c0c2d384 {
  margin-left: 0px;
margin-right: 0px;
}

#s-ff286482-0c1d-4787-8ec8-a6452079d20c {
  margin-top: 0em;
margin-left: 9em;
margin-bottom: 2em;
margin-right: 9em;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 4px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-ff286482-0c1d-4787-8ec8-a6452079d20c {
  margin-bottom: 3em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ff286482-0c1d-4787-8ec8-a6452079d20c {
  margin-bottom: 3em;
}
}@media (max-width: 767px){#s-ff286482-0c1d-4787-8ec8-a6452079d20c {
  margin-top: 0em;
margin-left: 1em;
margin-bottom: 0.5em;
margin-right: 1em;
}
}







#s-ff286482-0c1d-4787-8ec8-a6452079d20c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ff286482-0c1d-4787-8ec8-a6452079d20c.shg-box.shg-c {
  justify-content: center;
}

#s-a6e3b2a1-da71-4f8f-965c-1e999fb702b2 {
  margin-top: 5em;
margin-left: 0em;
margin-bottom: 1em;
margin-right: 0em;
min-height: 50px;
}








#s-a6e3b2a1-da71-4f8f-965c-1e999fb702b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a6e3b2a1-da71-4f8f-965c-1e999fb702b2.shg-box.shg-c {
  justify-content: center;
}

#s-65558c81-b8af-4bd7-958d-6d6b71367ecd {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-65558c81-b8af-4bd7-958d-6d6b71367ecd {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-65558c81-b8af-4bd7-958d-6d6b71367ecd .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-65558c81-b8af-4bd7-958d-6d6b71367ecd .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-4df6d5f9-7ac0-4e7e-82d6-bb5959ad5ace {
  text-align: left;
}

#s-f0994996-f849-4adc-9d79-bc25df995fa7 {
  margin-top: 2em;
margin-left: 0em;
margin-bottom: 0px;
margin-right: 0em;
}
@media (max-width: 767px){#s-f0994996-f849-4adc-9d79-bc25df995fa7 {
  margin-top: 1em;
}
}
@media (min-width: 0px) {
[id="s-f0994996-f849-4adc-9d79-bc25df995fa7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f0994996-f849-4adc-9d79-bc25df995fa7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f0994996-f849-4adc-9d79-bc25df995fa7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f0994996-f849-4adc-9d79-bc25df995fa7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e064c9e5-8b8d-4d6a-b63b-d4de6b24ca28 {
  margin-left: 0em;
margin-bottom: 1em;
margin-right: 0em;
padding-top: 1em;
padding-left: 0em;
padding-bottom: 2em;
padding-right: 0em;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(239, 239, 239, 1);
border-style: solid;
border-radius: 25px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-e064c9e5-8b8d-4d6a-b63b-d4de6b24ca28 {
  margin-bottom: 0.5em;
}
}







#s-e064c9e5-8b8d-4d6a-b63b-d4de6b24ca28 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e064c9e5-8b8d-4d6a-b63b-d4de6b24ca28.shg-box.shg-c {
  justify-content: center;
}

#s-f6abf674-36d9-404e-acbc-a18137ff4403 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-f6abf674-36d9-404e-acbc-a18137ff4403 {
  margin-left: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f6abf674-36d9-404e-acbc-a18137ff4403 {
  margin-left: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f6abf674-36d9-404e-acbc-a18137ff4403 {
  margin-left: 30px;
}
}@media (max-width: 767px){#s-f6abf674-36d9-404e-acbc-a18137ff4403 {
  margin-top: 10px;
margin-left: 2em;
margin-bottom: 10px;
min-height: 0px;
}
}







#s-f6abf674-36d9-404e-acbc-a18137ff4403 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f6abf674-36d9-404e-acbc-a18137ff4403.shg-box.shg-c {
  justify-content: center;
}

#s-fe930ab8-1bec-4e5e-877d-d0aefe88965e {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-fe930ab8-1bec-4e5e-877d-d0aefe88965e {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-fe930ab8-1bec-4e5e-877d-d0aefe88965e .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-fe930ab8-1bec-4e5e-877d-d0aefe88965e .shogun-heading-component h4 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-79869f32-42b9-49a3-ae51-165d58b65bf1 {
  margin-left: 2em;
padding-top: 0em;
padding-bottom: 1em;
}

.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-eda7d212-ce06-4f42-91f5-21772325efa2 {
  margin-top: 1em;
margin-left: 2em;
margin-bottom: 2em;
margin-right: 0px;
padding-top: 9px;
padding-left: 80px;
padding-bottom: 9px;
padding-right: 80px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 20px;
background-color: rgba(239, 239, 239, 1);
text-align: left;
text-decoration: none;
color: rgba(92, 88, 88, 1);
}
#s-eda7d212-ce06-4f42-91f5-21772325efa2:hover {background-color: rgba(239, 239, 239, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-eda7d212-ce06-4f42-91f5-21772325efa2:active {background-color: rgba(239, 239, 239, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-eda7d212-ce06-4f42-91f5-21772325efa2 {
  display: none;
}
#s-eda7d212-ce06-4f42-91f5-21772325efa2, #wrap-s-eda7d212-ce06-4f42-91f5-21772325efa2, #wrap-content-s-eda7d212-ce06-4f42-91f5-21772325efa2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-eda7d212-ce06-4f42-91f5-21772325efa2 {
  display: none;
}
#s-eda7d212-ce06-4f42-91f5-21772325efa2, #wrap-s-eda7d212-ce06-4f42-91f5-21772325efa2, #wrap-content-s-eda7d212-ce06-4f42-91f5-21772325efa2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-eda7d212-ce06-4f42-91f5-21772325efa2 {
  display: none;
}
#s-eda7d212-ce06-4f42-91f5-21772325efa2, #wrap-s-eda7d212-ce06-4f42-91f5-21772325efa2, #wrap-content-s-eda7d212-ce06-4f42-91f5-21772325efa2 { display: none !important; }}@media (max-width: 767px){#s-eda7d212-ce06-4f42-91f5-21772325efa2 {
  display: none;
}
#s-eda7d212-ce06-4f42-91f5-21772325efa2, #wrap-s-eda7d212-ce06-4f42-91f5-21772325efa2, #wrap-content-s-eda7d212-ce06-4f42-91f5-21772325efa2 { display: none !important; }}

  #s-eda7d212-ce06-4f42-91f5-21772325efa2-root {
    text-align: left;
  }


#s-eda7d212-ce06-4f42-91f5-21772325efa2.shg-btn {
  color: rgba(92, 88, 88, 1);
  font-size: 16px;
  
  
  font-family: Roobert-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-eda7d212-ce06-4f42-91f5-21772325efa2-root {
    text-align: left;
  }


#s-eda7d212-ce06-4f42-91f5-21772325efa2.shg-btn {
  color: rgba(92, 88, 88, 1);
  font-size: 16px;
  
  
  font-family: Roobert-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-eda7d212-ce06-4f42-91f5-21772325efa2-root {
    text-align: left;
  }


#s-eda7d212-ce06-4f42-91f5-21772325efa2.shg-btn {
  color: rgba(92, 88, 88, 1);
  font-size: 16px;
  
  
  font-family: Roobert-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-eda7d212-ce06-4f42-91f5-21772325efa2-root {
    text-align: left;
  }


#s-eda7d212-ce06-4f42-91f5-21772325efa2.shg-btn {
  color: rgba(92, 88, 88, 1);
  font-size: 16px;
  
  
  font-family: Roobert-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-eda7d212-ce06-4f42-91f5-21772325efa2-root {
    text-align: left;
  }


#s-eda7d212-ce06-4f42-91f5-21772325efa2.shg-btn {
  color: rgba(92, 88, 88, 1);
  font-size: 16px;
  
  
  font-family: Roobert-Medium;
  display:  inline-block ;
}
}
#s-90164f64-fc67-4f9c-a9bf-80fb455bba50 {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
padding-top: 2em;
padding-left: 2em;
padding-bottom: 1em;
padding-right: 0em;
}

#s-2550958a-a27c-4fb6-a797-44051664cc82 {
  margin-left: 2em;
margin-right: 0%;
min-height: 50px;
}








#s-2550958a-a27c-4fb6-a797-44051664cc82 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2550958a-a27c-4fb6-a797-44051664cc82.shg-box.shg-c {
  justify-content: center;
}

#s-5056001a-d147-4de8-93df-99ff327e931a {
  margin-left: 0px;
margin-bottom: 0.3em;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 12px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-5056001a-d147-4de8-93df-99ff327e931a {
  padding-left: 0em;
}
}







#s-5056001a-d147-4de8-93df-99ff327e931a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5056001a-d147-4de8-93df-99ff327e931a.shg-box.shg-c {
  justify-content: center;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  margin-left: 0px;
margin-right: 0px;
max-width: 24px;
text-align: left;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  margin: 0 !important;
  overflow: visible;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074 img.shogun-image {
  /* Add background color handling */
  
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-76122a0d-682a-4215-bdfe-0e55c274f074.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-76122a0d-682a-4215-bdfe-0e55c274f074 .shogun-image-content {
  
    justify-content: center;
  
}

.s-76122a0d-682a-4215-bdfe-0e55c274f074.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-76122a0d-682a-4215-bdfe-0e55c274f074.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074.shogun-image {
  box-sizing: border-box;
}



.s-76122a0d-682a-4215-bdfe-0e55c274f074 img.shogun-image {
  
}


@media (min-width: 1200px){#s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  margin: 0 !important;
  overflow: visible;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074 img.shogun-image {
  /* Add background color handling */
  
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-76122a0d-682a-4215-bdfe-0e55c274f074.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-76122a0d-682a-4215-bdfe-0e55c274f074 .shogun-image-content {
  
    justify-content: center;
  
}

.s-76122a0d-682a-4215-bdfe-0e55c274f074.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-76122a0d-682a-4215-bdfe-0e55c274f074.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074.shogun-image {
  box-sizing: border-box;
}



.s-76122a0d-682a-4215-bdfe-0e55c274f074 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  margin: 0 !important;
  overflow: visible;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074 img.shogun-image {
  /* Add background color handling */
  
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-76122a0d-682a-4215-bdfe-0e55c274f074.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-76122a0d-682a-4215-bdfe-0e55c274f074 .shogun-image-content {
  
    justify-content: center;
  
}

.s-76122a0d-682a-4215-bdfe-0e55c274f074.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-76122a0d-682a-4215-bdfe-0e55c274f074.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074.shogun-image {
  box-sizing: border-box;
}



.s-76122a0d-682a-4215-bdfe-0e55c274f074 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  margin: 0 !important;
  overflow: visible;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074 img.shogun-image {
  /* Add background color handling */
  
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-76122a0d-682a-4215-bdfe-0e55c274f074.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-76122a0d-682a-4215-bdfe-0e55c274f074 .shogun-image-content {
  
    justify-content: center;
  
}

.s-76122a0d-682a-4215-bdfe-0e55c274f074.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-76122a0d-682a-4215-bdfe-0e55c274f074.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074.shogun-image {
  box-sizing: border-box;
}



.s-76122a0d-682a-4215-bdfe-0e55c274f074 img.shogun-image {
  
}


}@media (max-width: 767px){#s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  margin: 0 !important;
  overflow: visible;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-76122a0d-682a-4215-bdfe-0e55c274f074 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074 img.shogun-image {
  /* Add background color handling */
  
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-76122a0d-682a-4215-bdfe-0e55c274f074.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-76122a0d-682a-4215-bdfe-0e55c274f074 .shogun-image-content {
  
    justify-content: center;
  
}

.s-76122a0d-682a-4215-bdfe-0e55c274f074.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-76122a0d-682a-4215-bdfe-0e55c274f074.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76122a0d-682a-4215-bdfe-0e55c274f074.shogun-image {
  box-sizing: border-box;
}



.s-76122a0d-682a-4215-bdfe-0e55c274f074 img.shogun-image {
  
}


}
#s-b6185974-093a-401c-a3d1-f90fa94d54fa {
  margin-left: 0px;
margin-bottom: 0.3em;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 12px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-b6185974-093a-401c-a3d1-f90fa94d54fa {
  padding-left: 0em;
}
}







#s-b6185974-093a-401c-a3d1-f90fa94d54fa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b6185974-093a-401c-a3d1-f90fa94d54fa.shg-box.shg-c {
  justify-content: center;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  margin-left: 0px;
margin-right: 0px;
max-width: 24px;
text-align: left;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  margin: 0 !important;
  overflow: visible;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 img.shogun-image {
  /* Add background color handling */
  
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-d18e546e-1c43-4261-bdd8-b636904e7dc6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shogun-image {
  box-sizing: border-box;
}



.s-d18e546e-1c43-4261-bdd8-b636904e7dc6 img.shogun-image {
  
}


@media (min-width: 1200px){#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  margin: 0 !important;
  overflow: visible;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 img.shogun-image {
  /* Add background color handling */
  
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-d18e546e-1c43-4261-bdd8-b636904e7dc6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shogun-image {
  box-sizing: border-box;
}



.s-d18e546e-1c43-4261-bdd8-b636904e7dc6 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  margin: 0 !important;
  overflow: visible;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 img.shogun-image {
  /* Add background color handling */
  
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-d18e546e-1c43-4261-bdd8-b636904e7dc6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shogun-image {
  box-sizing: border-box;
}



.s-d18e546e-1c43-4261-bdd8-b636904e7dc6 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  margin: 0 !important;
  overflow: visible;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 img.shogun-image {
  /* Add background color handling */
  
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-d18e546e-1c43-4261-bdd8-b636904e7dc6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shogun-image {
  box-sizing: border-box;
}



.s-d18e546e-1c43-4261-bdd8-b636904e7dc6 img.shogun-image {
  
}


}@media (max-width: 767px){#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  margin: 0 !important;
  overflow: visible;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d18e546e-1c43-4261-bdd8-b636904e7dc6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 img.shogun-image {
  /* Add background color handling */
  
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-d18e546e-1c43-4261-bdd8-b636904e7dc6 .shogun-image-content {
  
    justify-content: center;
  
}

.s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d18e546e-1c43-4261-bdd8-b636904e7dc6.shogun-image {
  box-sizing: border-box;
}



.s-d18e546e-1c43-4261-bdd8-b636904e7dc6 img.shogun-image {
  
}


}
#s-0d2dccd2-f0d6-4803-9f01-b6b23914944c {
  margin-left: 0px;
margin-bottom: 0.3em;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 12px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-0d2dccd2-f0d6-4803-9f01-b6b23914944c {
  padding-left: 0em;
}
}







#s-0d2dccd2-f0d6-4803-9f01-b6b23914944c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0d2dccd2-f0d6-4803-9f01-b6b23914944c.shg-box.shg-c {
  justify-content: center;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  margin-left: 0px;
margin-right: 0px;
text-align: left;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  margin: 0 !important;
  overflow: visible;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3 img.shogun-image {
  /* Add background color handling */
  
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a346128c-bc55-4c43-8517-391e1f7389e3.shogun-image {
    
    
    
    
  }


.s-a346128c-bc55-4c43-8517-391e1f7389e3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a346128c-bc55-4c43-8517-391e1f7389e3.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-a346128c-bc55-4c43-8517-391e1f7389e3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3.shogun-image {
  box-sizing: border-box;
}



.s-a346128c-bc55-4c43-8517-391e1f7389e3 img.shogun-image {
  
}


@media (min-width: 1200px){#s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  margin: 0 !important;
  overflow: visible;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3 img.shogun-image {
  /* Add background color handling */
  
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a346128c-bc55-4c43-8517-391e1f7389e3.shogun-image {
    
    
    
    
  }


.s-a346128c-bc55-4c43-8517-391e1f7389e3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a346128c-bc55-4c43-8517-391e1f7389e3.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-a346128c-bc55-4c43-8517-391e1f7389e3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3.shogun-image {
  box-sizing: border-box;
}



.s-a346128c-bc55-4c43-8517-391e1f7389e3 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  margin: 0 !important;
  overflow: visible;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3 img.shogun-image {
  /* Add background color handling */
  
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a346128c-bc55-4c43-8517-391e1f7389e3.shogun-image {
    
    
    
    
  }


.s-a346128c-bc55-4c43-8517-391e1f7389e3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a346128c-bc55-4c43-8517-391e1f7389e3.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-a346128c-bc55-4c43-8517-391e1f7389e3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3.shogun-image {
  box-sizing: border-box;
}



.s-a346128c-bc55-4c43-8517-391e1f7389e3 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  margin: 0 !important;
  overflow: visible;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3 img.shogun-image {
  /* Add background color handling */
  
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a346128c-bc55-4c43-8517-391e1f7389e3.shogun-image {
    
    
    
    
  }


.s-a346128c-bc55-4c43-8517-391e1f7389e3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a346128c-bc55-4c43-8517-391e1f7389e3.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-a346128c-bc55-4c43-8517-391e1f7389e3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3.shogun-image {
  box-sizing: border-box;
}



.s-a346128c-bc55-4c43-8517-391e1f7389e3 img.shogun-image {
  
}


}@media (max-width: 767px){#s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  margin: 0 !important;
  overflow: visible;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a346128c-bc55-4c43-8517-391e1f7389e3 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3 img.shogun-image {
  /* Add background color handling */
  
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a346128c-bc55-4c43-8517-391e1f7389e3.shogun-image {
    
    
    
    
  }


.s-a346128c-bc55-4c43-8517-391e1f7389e3 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a346128c-bc55-4c43-8517-391e1f7389e3.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-a346128c-bc55-4c43-8517-391e1f7389e3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a346128c-bc55-4c43-8517-391e1f7389e3.shogun-image {
  box-sizing: border-box;
}



.s-a346128c-bc55-4c43-8517-391e1f7389e3 img.shogun-image {
  
}


}
#s-20112821-2e01-41ba-bc23-9eff9835ba94 {
  margin-left: 0px;
margin-bottom: 0.3em;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 12px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-20112821-2e01-41ba-bc23-9eff9835ba94 {
  padding-left: 0em;
}
}







#s-20112821-2e01-41ba-bc23-9eff9835ba94 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-20112821-2e01-41ba-bc23-9eff9835ba94.shg-box.shg-c {
  justify-content: center;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09 {
  margin-left: 0px;
margin-right: 0px;
max-width: 24px;
text-align: left;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09 {
  margin: 0 !important;
  overflow: visible;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d507a21-f818-4128-8d23-bb0536534b09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-7d507a21-f818-4128-8d23-bb0536534b09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09 img.shogun-image {
  /* Add background color handling */
  
}

#s-7d507a21-f818-4128-8d23-bb0536534b09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-7d507a21-f818-4128-8d23-bb0536534b09.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-7d507a21-f818-4128-8d23-bb0536534b09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d507a21-f818-4128-8d23-bb0536534b09.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7d507a21-f818-4128-8d23-bb0536534b09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09.shogun-image {
  box-sizing: border-box;
}



.s-7d507a21-f818-4128-8d23-bb0536534b09 img.shogun-image {
  
}


@media (min-width: 1200px){#s-7d507a21-f818-4128-8d23-bb0536534b09 {
  margin: 0 !important;
  overflow: visible;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d507a21-f818-4128-8d23-bb0536534b09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d507a21-f818-4128-8d23-bb0536534b09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09 img.shogun-image {
  /* Add background color handling */
  
}

#s-7d507a21-f818-4128-8d23-bb0536534b09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-7d507a21-f818-4128-8d23-bb0536534b09.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-7d507a21-f818-4128-8d23-bb0536534b09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d507a21-f818-4128-8d23-bb0536534b09.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7d507a21-f818-4128-8d23-bb0536534b09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09.shogun-image {
  box-sizing: border-box;
}



.s-7d507a21-f818-4128-8d23-bb0536534b09 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-7d507a21-f818-4128-8d23-bb0536534b09 {
  margin: 0 !important;
  overflow: visible;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d507a21-f818-4128-8d23-bb0536534b09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d507a21-f818-4128-8d23-bb0536534b09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09 img.shogun-image {
  /* Add background color handling */
  
}

#s-7d507a21-f818-4128-8d23-bb0536534b09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-7d507a21-f818-4128-8d23-bb0536534b09.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-7d507a21-f818-4128-8d23-bb0536534b09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d507a21-f818-4128-8d23-bb0536534b09.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7d507a21-f818-4128-8d23-bb0536534b09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09.shogun-image {
  box-sizing: border-box;
}



.s-7d507a21-f818-4128-8d23-bb0536534b09 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-7d507a21-f818-4128-8d23-bb0536534b09 {
  margin: 0 !important;
  overflow: visible;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d507a21-f818-4128-8d23-bb0536534b09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d507a21-f818-4128-8d23-bb0536534b09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09 img.shogun-image {
  /* Add background color handling */
  
}

#s-7d507a21-f818-4128-8d23-bb0536534b09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-7d507a21-f818-4128-8d23-bb0536534b09.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-7d507a21-f818-4128-8d23-bb0536534b09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d507a21-f818-4128-8d23-bb0536534b09.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7d507a21-f818-4128-8d23-bb0536534b09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09.shogun-image {
  box-sizing: border-box;
}



.s-7d507a21-f818-4128-8d23-bb0536534b09 img.shogun-image {
  
}


}@media (max-width: 767px){#s-7d507a21-f818-4128-8d23-bb0536534b09 {
  margin: 0 !important;
  overflow: visible;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d507a21-f818-4128-8d23-bb0536534b09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d507a21-f818-4128-8d23-bb0536534b09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09 img.shogun-image {
  /* Add background color handling */
  
}

#s-7d507a21-f818-4128-8d23-bb0536534b09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-7d507a21-f818-4128-8d23-bb0536534b09.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-7d507a21-f818-4128-8d23-bb0536534b09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d507a21-f818-4128-8d23-bb0536534b09.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7d507a21-f818-4128-8d23-bb0536534b09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d507a21-f818-4128-8d23-bb0536534b09.shogun-image {
  box-sizing: border-box;
}



.s-7d507a21-f818-4128-8d23-bb0536534b09 img.shogun-image {
  
}


}
#s-fbc19d36-1ad4-4af2-ae09-e7b14e1cc10c {
  margin-left: 0px;
margin-bottom: 0.3em;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 12px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-fbc19d36-1ad4-4af2-ae09-e7b14e1cc10c {
  padding-left: 0em;
}
}







#s-fbc19d36-1ad4-4af2-ae09-e7b14e1cc10c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fbc19d36-1ad4-4af2-ae09-e7b14e1cc10c.shg-box.shg-c {
  justify-content: center;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  margin-left: 0px;
margin-right: 0px;
text-align: left;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  margin: 0 !important;
  overflow: visible;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b img.shogun-image {
  /* Add background color handling */
  
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shogun-image {
    
    
    
    
  }


.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b .shogun-image-content {
  
    justify-content: center;
  
}

.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shogun-image {
  box-sizing: border-box;
}



.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b img.shogun-image {
  
}


@media (min-width: 1200px){#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  margin: 0 !important;
  overflow: visible;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b img.shogun-image {
  /* Add background color handling */
  
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shogun-image {
    
    
    
    
  }


.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b .shogun-image-content {
  
    justify-content: center;
  
}

.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shogun-image {
  box-sizing: border-box;
}



.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  margin: 0 !important;
  overflow: visible;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b img.shogun-image {
  /* Add background color handling */
  
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shogun-image {
    
    
    
    
  }


.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b .shogun-image-content {
  
    justify-content: center;
  
}

.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shogun-image {
  box-sizing: border-box;
}



.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  margin: 0 !important;
  overflow: visible;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b img.shogun-image {
  /* Add background color handling */
  
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shogun-image {
    
    
    
    
  }


.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b .shogun-image-content {
  
    justify-content: center;
  
}

.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shogun-image {
  box-sizing: border-box;
}



.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b img.shogun-image {
  
}


}@media (max-width: 767px){#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  margin: 0 !important;
  overflow: visible;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b img.shogun-image {
  /* Add background color handling */
  
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shogun-image {
    
    
    
    
  }


.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b .shogun-image-content {
  
    justify-content: center;
  
}

.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b.shogun-image {
  box-sizing: border-box;
}



.s-95fd43a6-9ea0-466d-b040-fb9db5e9f80b img.shogun-image {
  
}


}
#s-7bb047de-50de-4977-89d9-3864b6472ad8 {
  margin-left: 0px;
margin-bottom: 0.3em;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 12px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-7bb047de-50de-4977-89d9-3864b6472ad8 {
  padding-left: 0em;
}
}







#s-7bb047de-50de-4977-89d9-3864b6472ad8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7bb047de-50de-4977-89d9-3864b6472ad8.shg-box.shg-c {
  justify-content: center;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  margin-left: 0px;
margin-right: 0px;
text-align: left;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  margin: 0 !important;
  overflow: visible;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f img.shogun-image {
  /* Add background color handling */
  
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shogun-image {
    
    
    
    
  }


.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f .shogun-image-content {
  
    justify-content: center;
  
}

.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shogun-image {
  box-sizing: border-box;
}



.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f img.shogun-image {
  
}


@media (min-width: 1200px){#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  margin: 0 !important;
  overflow: visible;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f img.shogun-image {
  /* Add background color handling */
  
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shogun-image {
    
    
    
    
  }


.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f .shogun-image-content {
  
    justify-content: center;
  
}

.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shogun-image {
  box-sizing: border-box;
}



.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  margin: 0 !important;
  overflow: visible;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f img.shogun-image {
  /* Add background color handling */
  
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shogun-image {
    
    
    
    
  }


.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f .shogun-image-content {
  
    justify-content: center;
  
}

.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shogun-image {
  box-sizing: border-box;
}



.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  margin: 0 !important;
  overflow: visible;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f img.shogun-image {
  /* Add background color handling */
  
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shogun-image {
    
    
    
    
  }


.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f .shogun-image-content {
  
    justify-content: center;
  
}

.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shogun-image {
  box-sizing: border-box;
}



.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f img.shogun-image {
  
}


}@media (max-width: 767px){#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  margin: 0 !important;
  overflow: visible;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f img.shogun-image {
  /* Add background color handling */
  
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shogun-image {
    
    
    
    
  }


.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f .shogun-image-content {
  
    justify-content: center;
  
}

.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f.shogun-image {
  box-sizing: border-box;
}



.s-0610f0fa-d915-4ad1-bfa6-1a94acbb8d0f img.shogun-image {
  
}


}
#s-7068231a-ff5d-447a-8192-19ed916a8d24 {
  margin-left: 0em;
margin-bottom: 1em;
margin-right: 0em;
padding-top: 0em;
padding-left: 0em;
padding-bottom: 2em;
padding-right: 0em;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(239, 239, 239, 1);
border-style: solid;
border-radius: 25px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-7068231a-ff5d-447a-8192-19ed916a8d24 {
  margin-bottom: 0.5em;
}
}







#s-7068231a-ff5d-447a-8192-19ed916a8d24 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7068231a-ff5d-447a-8192-19ed916a8d24.shg-box.shg-c {
  justify-content: center;
}

#s-7177c07c-bdbc-4d7e-8120-2f147a683432 {
  margin-top: 0em;
margin-left: 0px;
margin-bottom: 0em;
margin-right: 0px;
padding-top: 0em;
padding-bottom: 2em;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 0px;
min-height: 50px;
background-color: rgba(224, 249, 251, 1);
}








#s-7177c07c-bdbc-4d7e-8120-2f147a683432 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7177c07c-bdbc-4d7e-8120-2f147a683432.shg-box.shg-c {
  justify-content: center;
}

#s-9825e5c7-8b85-45c4-8fae-0300b454a386 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-9825e5c7-8b85-45c4-8fae-0300b454a386 {
  margin-left: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9825e5c7-8b85-45c4-8fae-0300b454a386 {
  margin-left: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-9825e5c7-8b85-45c4-8fae-0300b454a386 {
  margin-left: 30px;
}
}@media (max-width: 767px){#s-9825e5c7-8b85-45c4-8fae-0300b454a386 {
  margin-top: 10px;
margin-left: 2em;
margin-bottom: 10px;
min-height: 0px;
}
}







#s-9825e5c7-8b85-45c4-8fae-0300b454a386 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9825e5c7-8b85-45c4-8fae-0300b454a386.shg-box.shg-c {
  justify-content: center;
}

#s-44316d62-591d-4ffd-84be-25c5a955adc9 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-44316d62-591d-4ffd-84be-25c5a955adc9 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-44316d62-591d-4ffd-84be-25c5a955adc9 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-44316d62-591d-4ffd-84be-25c5a955adc9 .shogun-heading-component h4 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-f097bcc3-3f7b-4ef9-8f3a-7ae45f7106f5 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-f097bcc3-3f7b-4ef9-8f3a-7ae45f7106f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f097bcc3-3f7b-4ef9-8f3a-7ae45f7106f5.shg-box.shg-c {
  justify-content: center;
}

#s-414b2af3-2eba-4da9-a29d-77005612af64 {
  margin-left: 2em;
}

#s-b0ea59df-f5f8-4cb7-9e26-2acc72ab3cf3 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-b0ea59df-f5f8-4cb7-9e26-2acc72ab3cf3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b0ea59df-f5f8-4cb7-9e26-2acc72ab3cf3.shg-box.shg-c {
  justify-content: center;
}

#s-bfd7289b-f1c2-4b1f-9bd7-67124ed60007 {
  margin-left: 2em;
}

#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988 {
  margin-top: 1em;
margin-left: 2em;
margin-bottom: 2em;
margin-right: 0px;
padding-top: 9px;
padding-left: 80px;
padding-bottom: 9px;
padding-right: 80px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 20px;
background-color: rgba(166, 239, 245, 1);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988:hover {background-color: rgba(166, 239, 245, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988:active {background-color: rgba(239, 239, 239, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(166, 239, 245, 1) !important;}@media (min-width: 1200px){#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988 {
  display: none;
}
#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988, #wrap-s-6e506264-cd8b-4b24-8112-eb6d1cfd5988, #wrap-content-s-6e506264-cd8b-4b24-8112-eb6d1cfd5988 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988 {
  display: none;
}
#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988, #wrap-s-6e506264-cd8b-4b24-8112-eb6d1cfd5988, #wrap-content-s-6e506264-cd8b-4b24-8112-eb6d1cfd5988 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988 {
  display: none;
}
#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988, #wrap-s-6e506264-cd8b-4b24-8112-eb6d1cfd5988, #wrap-content-s-6e506264-cd8b-4b24-8112-eb6d1cfd5988 { display: none !important; }}@media (max-width: 767px){#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988 {
  display: none;
}
#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988, #wrap-s-6e506264-cd8b-4b24-8112-eb6d1cfd5988, #wrap-content-s-6e506264-cd8b-4b24-8112-eb6d1cfd5988 { display: none !important; }}

  #s-6e506264-cd8b-4b24-8112-eb6d1cfd5988-root {
    text-align: left;
  }


#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Roobert-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6e506264-cd8b-4b24-8112-eb6d1cfd5988-root {
    text-align: left;
  }


#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Roobert-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6e506264-cd8b-4b24-8112-eb6d1cfd5988-root {
    text-align: left;
  }


#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Roobert-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6e506264-cd8b-4b24-8112-eb6d1cfd5988-root {
    text-align: left;
  }


#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Roobert-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6e506264-cd8b-4b24-8112-eb6d1cfd5988-root {
    text-align: left;
  }


#s-6e506264-cd8b-4b24-8112-eb6d1cfd5988.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Roobert-Medium;
  display:  inline-block ;
}
}
#s-1972f179-b4be-46b9-89dd-bab4aa2d8c99 {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
padding-top: 2em;
padding-left: 2em;
padding-bottom: 0em;
padding-right: 0em;
}

#s-005625b4-745f-4e6f-8b18-ee92753062a0 {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
padding-top: 0em;
padding-left: 2em;
padding-bottom: 1em;
padding-right: 0em;
}

#s-b0fd7684-ca50-470a-98c9-0e6853395a10 {
  margin-left: 2em;
margin-right: 0%;
min-height: 50px;
}








#s-b0fd7684-ca50-470a-98c9-0e6853395a10 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b0fd7684-ca50-470a-98c9-0e6853395a10.shg-box.shg-c {
  justify-content: center;
}

#s-27cd5819-ca1e-4ca1-a4d4-c03a19108daa {
  margin-left: 0px;
margin-bottom: 0.3em;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 12px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-27cd5819-ca1e-4ca1-a4d4-c03a19108daa {
  padding-left: 0em;
}
}







#s-27cd5819-ca1e-4ca1-a4d4-c03a19108daa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-27cd5819-ca1e-4ca1-a4d4-c03a19108daa.shg-box.shg-c {
  justify-content: center;
}

#s-13286368-0f4e-419e-95b7-e43258105042 {
  margin-left: 0px;
margin-right: 0px;
max-width: 24px;
text-align: left;
}

#s-13286368-0f4e-419e-95b7-e43258105042 {
  margin: 0 !important;
  overflow: visible;
}

#s-13286368-0f4e-419e-95b7-e43258105042-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13286368-0f4e-419e-95b7-e43258105042 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-13286368-0f4e-419e-95b7-e43258105042 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13286368-0f4e-419e-95b7-e43258105042 img.shogun-image {
  /* Add background color handling */
  
}

#s-13286368-0f4e-419e-95b7-e43258105042 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-13286368-0f4e-419e-95b7-e43258105042.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-13286368-0f4e-419e-95b7-e43258105042 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13286368-0f4e-419e-95b7-e43258105042.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-13286368-0f4e-419e-95b7-e43258105042.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13286368-0f4e-419e-95b7-e43258105042.shogun-image {
  box-sizing: border-box;
}



.s-13286368-0f4e-419e-95b7-e43258105042 img.shogun-image {
  
}


@media (min-width: 1200px){#s-13286368-0f4e-419e-95b7-e43258105042 {
  margin: 0 !important;
  overflow: visible;
}

#s-13286368-0f4e-419e-95b7-e43258105042-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13286368-0f4e-419e-95b7-e43258105042 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13286368-0f4e-419e-95b7-e43258105042 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13286368-0f4e-419e-95b7-e43258105042 img.shogun-image {
  /* Add background color handling */
  
}

#s-13286368-0f4e-419e-95b7-e43258105042 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-13286368-0f4e-419e-95b7-e43258105042.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-13286368-0f4e-419e-95b7-e43258105042 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13286368-0f4e-419e-95b7-e43258105042.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-13286368-0f4e-419e-95b7-e43258105042.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13286368-0f4e-419e-95b7-e43258105042.shogun-image {
  box-sizing: border-box;
}



.s-13286368-0f4e-419e-95b7-e43258105042 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-13286368-0f4e-419e-95b7-e43258105042 {
  margin: 0 !important;
  overflow: visible;
}

#s-13286368-0f4e-419e-95b7-e43258105042-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13286368-0f4e-419e-95b7-e43258105042 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13286368-0f4e-419e-95b7-e43258105042 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13286368-0f4e-419e-95b7-e43258105042 img.shogun-image {
  /* Add background color handling */
  
}

#s-13286368-0f4e-419e-95b7-e43258105042 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-13286368-0f4e-419e-95b7-e43258105042.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-13286368-0f4e-419e-95b7-e43258105042 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13286368-0f4e-419e-95b7-e43258105042.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-13286368-0f4e-419e-95b7-e43258105042.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13286368-0f4e-419e-95b7-e43258105042.shogun-image {
  box-sizing: border-box;
}



.s-13286368-0f4e-419e-95b7-e43258105042 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-13286368-0f4e-419e-95b7-e43258105042 {
  margin: 0 !important;
  overflow: visible;
}

#s-13286368-0f4e-419e-95b7-e43258105042-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13286368-0f4e-419e-95b7-e43258105042 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13286368-0f4e-419e-95b7-e43258105042 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13286368-0f4e-419e-95b7-e43258105042 img.shogun-image {
  /* Add background color handling */
  
}

#s-13286368-0f4e-419e-95b7-e43258105042 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-13286368-0f4e-419e-95b7-e43258105042.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-13286368-0f4e-419e-95b7-e43258105042 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13286368-0f4e-419e-95b7-e43258105042.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-13286368-0f4e-419e-95b7-e43258105042.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13286368-0f4e-419e-95b7-e43258105042.shogun-image {
  box-sizing: border-box;
}



.s-13286368-0f4e-419e-95b7-e43258105042 img.shogun-image {
  
}


}@media (max-width: 767px){#s-13286368-0f4e-419e-95b7-e43258105042 {
  margin: 0 !important;
  overflow: visible;
}

#s-13286368-0f4e-419e-95b7-e43258105042-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-13286368-0f4e-419e-95b7-e43258105042 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-13286368-0f4e-419e-95b7-e43258105042 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-13286368-0f4e-419e-95b7-e43258105042 img.shogun-image {
  /* Add background color handling */
  
}

#s-13286368-0f4e-419e-95b7-e43258105042 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-13286368-0f4e-419e-95b7-e43258105042.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-13286368-0f4e-419e-95b7-e43258105042 .shogun-image-content {
  
    justify-content: center;
  
}

.s-13286368-0f4e-419e-95b7-e43258105042.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-13286368-0f4e-419e-95b7-e43258105042.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13286368-0f4e-419e-95b7-e43258105042.shogun-image {
  box-sizing: border-box;
}



.s-13286368-0f4e-419e-95b7-e43258105042 img.shogun-image {
  
}


}
#s-c32c171c-aa00-4071-999a-c47ae1f779ea {
  margin-left: 0px;
margin-bottom: 0.3em;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 12px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-c32c171c-aa00-4071-999a-c47ae1f779ea {
  padding-left: 0em;
}
}







#s-c32c171c-aa00-4071-999a-c47ae1f779ea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c32c171c-aa00-4071-999a-c47ae1f779ea.shg-box.shg-c {
  justify-content: center;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  margin-left: 0px;
margin-right: 0px;
text-align: left;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  margin: 0 !important;
  overflow: visible;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf img.shogun-image {
  /* Add background color handling */
  
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shogun-image {
    
    
    
    
  }


.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf .shogun-image-content {
  
    justify-content: center;
  
}

.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shogun-image {
  box-sizing: border-box;
}



.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf img.shogun-image {
  
}


@media (min-width: 1200px){#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  margin: 0 !important;
  overflow: visible;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf img.shogun-image {
  /* Add background color handling */
  
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shogun-image {
    
    
    
    
  }


.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf .shogun-image-content {
  
    justify-content: center;
  
}

.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shogun-image {
  box-sizing: border-box;
}



.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  margin: 0 !important;
  overflow: visible;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf img.shogun-image {
  /* Add background color handling */
  
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shogun-image {
    
    
    
    
  }


.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf .shogun-image-content {
  
    justify-content: center;
  
}

.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shogun-image {
  box-sizing: border-box;
}



.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  margin: 0 !important;
  overflow: visible;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf img.shogun-image {
  /* Add background color handling */
  
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shogun-image {
    
    
    
    
  }


.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf .shogun-image-content {
  
    justify-content: center;
  
}

.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shogun-image {
  box-sizing: border-box;
}



.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf img.shogun-image {
  
}


}@media (max-width: 767px){#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  margin: 0 !important;
  overflow: visible;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf img.shogun-image {
  /* Add background color handling */
  
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shogun-image {
    
    
    
    
  }


.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf .shogun-image-content {
  
    justify-content: center;
  
}

.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf.shogun-image {
  box-sizing: border-box;
}



.s-d58e15d7-c8f6-4bbe-9fe2-f3d09e27f4cf img.shogun-image {
  
}


}
#s-690ed47f-98ea-44d9-90a4-f7da96445772 {
  margin-left: 0px;
margin-bottom: 0.3em;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 12px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-690ed47f-98ea-44d9-90a4-f7da96445772 {
  padding-left: 0em;
}
}







#s-690ed47f-98ea-44d9-90a4-f7da96445772 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-690ed47f-98ea-44d9-90a4-f7da96445772.shg-box.shg-c {
  justify-content: center;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  margin-left: 0px;
margin-right: 0px;
text-align: left;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  margin: 0 !important;
  overflow: visible;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 img.shogun-image {
  /* Add background color handling */
  
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shogun-image {
    
    
    
    
  }


.s-b6e8d637-1f93-48d3-ba6c-49b08a249306 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shogun-image {
  box-sizing: border-box;
}



.s-b6e8d637-1f93-48d3-ba6c-49b08a249306 img.shogun-image {
  
}


@media (min-width: 1200px){#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  margin: 0 !important;
  overflow: visible;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 img.shogun-image {
  /* Add background color handling */
  
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shogun-image {
    
    
    
    
  }


.s-b6e8d637-1f93-48d3-ba6c-49b08a249306 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shogun-image {
  box-sizing: border-box;
}



.s-b6e8d637-1f93-48d3-ba6c-49b08a249306 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  margin: 0 !important;
  overflow: visible;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 img.shogun-image {
  /* Add background color handling */
  
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shogun-image {
    
    
    
    
  }


.s-b6e8d637-1f93-48d3-ba6c-49b08a249306 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shogun-image {
  box-sizing: border-box;
}



.s-b6e8d637-1f93-48d3-ba6c-49b08a249306 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  margin: 0 !important;
  overflow: visible;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 img.shogun-image {
  /* Add background color handling */
  
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shogun-image {
    
    
    
    
  }


.s-b6e8d637-1f93-48d3-ba6c-49b08a249306 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shogun-image {
  box-sizing: border-box;
}



.s-b6e8d637-1f93-48d3-ba6c-49b08a249306 img.shogun-image {
  
}


}@media (max-width: 767px){#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  margin: 0 !important;
  overflow: visible;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b6e8d637-1f93-48d3-ba6c-49b08a249306 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 img.shogun-image {
  /* Add background color handling */
  
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shogun-image {
    
    
    
    
  }


.s-b6e8d637-1f93-48d3-ba6c-49b08a249306 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6e8d637-1f93-48d3-ba6c-49b08a249306.shogun-image {
  box-sizing: border-box;
}



.s-b6e8d637-1f93-48d3-ba6c-49b08a249306 img.shogun-image {
  
}


}
#s-c22baa31-2305-459f-aa52-0375e578b96e {
  margin-left: 9em;
margin-bottom: 0em;
margin-right: 9em;
padding-top: 0em;
padding-bottom: 3em;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 32px;
min-height: 50px;
background-color: rgba(249, 249, 249, 1);
}
@media (max-width: 767px){#s-c22baa31-2305-459f-aa52-0375e578b96e {
  margin-left: 1em;
margin-right: 1em;
}
}







#s-c22baa31-2305-459f-aa52-0375e578b96e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c22baa31-2305-459f-aa52-0375e578b96e.shg-box.shg-c {
  justify-content: center;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  margin-left: 0px;
margin-right: auto;
max-width: 225px;
text-align: center;
}
@media (max-width: 767px){#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  display: none;
}
#s-99a887f5-38db-4c7c-bcc7-d36580b58e68, #wrap-s-99a887f5-38db-4c7c-bcc7-d36580b58e68, #wrap-content-s-99a887f5-38db-4c7c-bcc7-d36580b58e68 { display: none !important; }}
#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  margin: 0 !important;
  overflow: visible;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  
  
  
}

.shg-image-content-margin-container-s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 img.shogun-image {
  /* Add background color handling */
  
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shogun-image {
    
    
    
    max-height: 225px;
  }


.s-99a887f5-38db-4c7c-bcc7-d36580b58e68 .shogun-image-content {
  
    justify-content: center;
  
}

.s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shogun-image {
  box-sizing: border-box;
}



.s-99a887f5-38db-4c7c-bcc7-d36580b58e68 img.shogun-image {
  
}


@media (min-width: 1200px){#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  margin: 0 !important;
  overflow: visible;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 img.shogun-image {
  /* Add background color handling */
  
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shogun-image {
    
    
    
    max-height: 225px;
  }


.s-99a887f5-38db-4c7c-bcc7-d36580b58e68 .shogun-image-content {
  
    justify-content: center;
  
}

.s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shogun-image {
  box-sizing: border-box;
}



.s-99a887f5-38db-4c7c-bcc7-d36580b58e68 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  margin: 0 !important;
  overflow: visible;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 img.shogun-image {
  /* Add background color handling */
  
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shogun-image {
    
    
    
    max-height: 225px;
  }


.s-99a887f5-38db-4c7c-bcc7-d36580b58e68 .shogun-image-content {
  
    justify-content: center;
  
}

.s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shogun-image {
  box-sizing: border-box;
}



.s-99a887f5-38db-4c7c-bcc7-d36580b58e68 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  margin: 0 !important;
  overflow: visible;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 img.shogun-image {
  /* Add background color handling */
  
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shogun-image {
    
    
    
    max-height: 225px;
  }


.s-99a887f5-38db-4c7c-bcc7-d36580b58e68 .shogun-image-content {
  
    justify-content: center;
  
}

.s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shogun-image {
  box-sizing: border-box;
}



.s-99a887f5-38db-4c7c-bcc7-d36580b58e68 img.shogun-image {
  
}


}@media (max-width: 767px){#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  margin: 0 !important;
  overflow: visible;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-99a887f5-38db-4c7c-bcc7-d36580b58e68 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 img.shogun-image {
  /* Add background color handling */
  
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shogun-image {
    
    
    
    max-height: 225px;
  }


.s-99a887f5-38db-4c7c-bcc7-d36580b58e68 .shogun-image-content {
  
    justify-content: center;
  
}

.s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99a887f5-38db-4c7c-bcc7-d36580b58e68.shogun-image {
  box-sizing: border-box;
}



.s-99a887f5-38db-4c7c-bcc7-d36580b58e68 img.shogun-image {
  
}


}
#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  margin-left: 0px;
margin-right: auto;
max-width: 225px;
aspect-ratio: 169/327;
text-align: center;
}
@media (min-width: 1200px){#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  display: none;
}
#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac, #wrap-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac, #wrap-content-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  display: none;
}
#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac, #wrap-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac, #wrap-content-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  display: none;
}
#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac, #wrap-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac, #wrap-content-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac { display: none !important; }}
#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  margin: 0 !important;
  overflow: visible;
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  
  
  
}

.shg-image-content-margin-container-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac img.shogun-image {
  /* Add background color handling */
  
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shogun-image {
    
    
    
    max-height: 225px;
  }


.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac .shogun-image-content {
  
    justify-content: center;
  
}

.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shogun-image {
  box-sizing: border-box;
}



.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac img.shogun-image {
  
}


@media (min-width: 1200px){#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  margin: 0 !important;
  overflow: visible;
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac img.shogun-image {
  /* Add background color handling */
  
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shogun-image {
    
    
    
    max-height: 225px;
  }


.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac .shogun-image-content {
  
    justify-content: center;
  
}

.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shogun-image {
  box-sizing: border-box;
}



.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  margin: 0 !important;
  overflow: visible;
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac img.shogun-image {
  /* Add background color handling */
  
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shogun-image {
    
    
    
    max-height: 225px;
  }


.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac .shogun-image-content {
  
    justify-content: center;
  
}

.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shogun-image {
  box-sizing: border-box;
}



.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  margin: 0 !important;
  overflow: visible;
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac img.shogun-image {
  /* Add background color handling */
  
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shogun-image {
    
    
    
    max-height: 225px;
  }


.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac .shogun-image-content {
  
    justify-content: center;
  
}

.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shogun-image {
  box-sizing: border-box;
}



.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac img.shogun-image {
  
}


}@media (max-width: 767px){#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  margin: 0 !important;
  overflow: visible;
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cfe5099e-9efe-4e83-ab59-7b9adead5eac {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac img.shogun-image {
  /* Add background color handling */
  
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shogun-image {
    
    
    
    max-height: 225px;
  }


.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac .shogun-image-content {
  
    justify-content: center;
  
}

.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cfe5099e-9efe-4e83-ab59-7b9adead5eac.shogun-image {
  box-sizing: border-box;
}



.s-cfe5099e-9efe-4e83-ab59-7b9adead5eac img.shogun-image {
  
}


}
#s-4ed79698-8822-43c4-b38f-cde3028f42a0 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-040788f3-5634-4186-bb55-25a2971d4276 {
  margin-top: 3em;
margin-left: 0px;
margin-right: 0px;
min-height: 50px;
}








#s-040788f3-5634-4186-bb55-25a2971d4276 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-040788f3-5634-4186-bb55-25a2971d4276.shg-box.shg-c {
  justify-content: center;
}

#s-3611cd5a-a5c3-44f2-ab16-ca2f0a535027 {
  margin-top: 0em;
margin-left: 0px;
margin-right: 0px;
min-height: 50px;
}








#s-3611cd5a-a5c3-44f2-ab16-ca2f0a535027 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3611cd5a-a5c3-44f2-ab16-ca2f0a535027.shg-box.shg-c {
  justify-content: center;
}

#s-da14b13b-479e-457d-b97d-7b9d7fb4b054 {
  margin-top: 0.5em;
margin-bottom: 1em;
padding-right: 5%;
}

#s-b172f06c-8a0d-42a7-bbcd-80562f4cf622 {
  margin-top: 1em;
margin-left: 0px;
margin-bottom: 1em;
margin-right: 0px;
}
@media (min-width: 1200px){#s-b172f06c-8a0d-42a7-bbcd-80562f4cf622 {
  margin-bottom: 0.5em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b172f06c-8a0d-42a7-bbcd-80562f4cf622 {
  margin-bottom: 0.5em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b172f06c-8a0d-42a7-bbcd-80562f4cf622 {
  margin-bottom: 0.5em;
}
}@media (max-width: 767px){#s-b172f06c-8a0d-42a7-bbcd-80562f4cf622 {
  margin-left: 2px;
margin-right: 2px;
}
}
#s-833e9ad2-9eca-4ef3-ae67-2c7893c880e7 {
  margin-left: auto;
margin-right: auto;
text-align: right;
}

#s-cd7c22f0-6784-42f9-b675-9928c9d8cd7c {
  margin-top: 1em;
margin-bottom: 1em;
text-align: right;
}
@media (min-width: 1200px){#s-cd7c22f0-6784-42f9-b675-9928c9d8cd7c {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-cd7c22f0-6784-42f9-b675-9928c9d8cd7c .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-cd7c22f0-6784-42f9-b675-9928c9d8cd7c .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-cd7c22f0-6784-42f9-b675-9928c9d8cd7c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}

#s-70076c55-056d-40ae-8dd1-52f6cc5c3611 {
  padding-top: 8px;
padding-left: 24px;
padding-bottom: 8px;
padding-right: 24px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(166, 239, 245, 1);
border-style: none;
border-radius: 10px;
background-color: rgba(166, 239, 245, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-70076c55-056d-40ae-8dd1-52f6cc5c3611:hover {border-style: solid !important;
border-color: rgba(166, 239, 245, 1) !important;
border-radius: 10px !important;
background-color: rgba(166, 239, 245, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-70076c55-056d-40ae-8dd1-52f6cc5c3611:active {border-style: solid !important;
border-color: rgba(166, 239, 245, 1) !important;
border-radius: 10px !important;
background-color: rgba(166, 239, 245, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-70076c55-056d-40ae-8dd1-52f6cc5c3611-root {
    text-align: left;
  }


#s-70076c55-056d-40ae-8dd1-52f6cc5c3611.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-70076c55-056d-40ae-8dd1-52f6cc5c3611-root {
    text-align: left;
  }


#s-70076c55-056d-40ae-8dd1-52f6cc5c3611.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-70076c55-056d-40ae-8dd1-52f6cc5c3611-root {
    text-align: left;
  }


#s-70076c55-056d-40ae-8dd1-52f6cc5c3611.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-70076c55-056d-40ae-8dd1-52f6cc5c3611-root {
    text-align: left;
  }


#s-70076c55-056d-40ae-8dd1-52f6cc5c3611.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-70076c55-056d-40ae-8dd1-52f6cc5c3611-root {
    text-align: left;
  }


#s-70076c55-056d-40ae-8dd1-52f6cc5c3611.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
#s-87cd2dac-9449-4a0a-9c72-14c0f122e36b {
  margin-top: 0em;
margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
min-height: 50px;
}
@media (max-width: 767px){#s-87cd2dac-9449-4a0a-9c72-14c0f122e36b {
  margin-top: 3em;
}
}







#s-87cd2dac-9449-4a0a-9c72-14c0f122e36b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-87cd2dac-9449-4a0a-9c72-14c0f122e36b.shg-box.shg-c {
  justify-content: center;
}

#s-de8430d9-2b07-450e-8b8a-b47e6a5367cc {
  margin-top: 0.5em;
margin-bottom: 1em;
padding-right: 5%;
}

#s-c62f4c5c-10f3-4f8e-b635-fe128b745182 {
  margin-top: 1em;
margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-c62f4c5c-10f3-4f8e-b635-fe128b745182 {
  margin-bottom: 0.5em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c62f4c5c-10f3-4f8e-b635-fe128b745182 {
  margin-bottom: 0.5em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c62f4c5c-10f3-4f8e-b635-fe128b745182 {
  margin-bottom: 0.5em;
}
}@media (max-width: 767px){#s-c62f4c5c-10f3-4f8e-b635-fe128b745182 {
  margin-left: 2px;
margin-right: 2px;
}
}
#s-c930068d-ac14-4369-9ee1-4ca0060b3e26 {
  margin-left: auto;
margin-right: auto;
text-align: right;
}

#s-1c64a53a-3300-4310-bf2a-79f8244f47b5 {
  margin-top: 1em;
margin-bottom: 1em;
text-align: right;
}
@media (min-width: 1200px){#s-1c64a53a-3300-4310-bf2a-79f8244f47b5 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-1c64a53a-3300-4310-bf2a-79f8244f47b5 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-1c64a53a-3300-4310-bf2a-79f8244f47b5 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-1c64a53a-3300-4310-bf2a-79f8244f47b5 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}

#s-7a04f722-29f2-43b4-87b0-128b424e5047 {
  padding-top: 8px;
padding-left: 24px;
padding-bottom: 8px;
padding-right: 24px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(166, 239, 245, 1);
border-style: none;
border-radius: 10px;
background-color: rgba(166, 239, 245, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-7a04f722-29f2-43b4-87b0-128b424e5047:hover {border-style: solid !important;
border-color: rgba(166, 239, 245, 1) !important;
border-radius: 10px !important;
background-color: rgba(166, 239, 245, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-7a04f722-29f2-43b4-87b0-128b424e5047:active {border-style: solid !important;
border-color: rgba(166, 239, 245, 1) !important;
border-radius: 10px !important;
background-color: rgba(166, 239, 245, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-7a04f722-29f2-43b4-87b0-128b424e5047-root {
    text-align: left;
  }


#s-7a04f722-29f2-43b4-87b0-128b424e5047.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7a04f722-29f2-43b4-87b0-128b424e5047-root {
    text-align: left;
  }


#s-7a04f722-29f2-43b4-87b0-128b424e5047.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7a04f722-29f2-43b4-87b0-128b424e5047-root {
    text-align: left;
  }


#s-7a04f722-29f2-43b4-87b0-128b424e5047.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7a04f722-29f2-43b4-87b0-128b424e5047-root {
    text-align: left;
  }


#s-7a04f722-29f2-43b4-87b0-128b424e5047.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7a04f722-29f2-43b4-87b0-128b424e5047-root {
    text-align: left;
  }


#s-7a04f722-29f2-43b4-87b0-128b424e5047.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
#s-6a1ee432-9354-4844-8466-7aee95a8a2aa {
  margin-top: 1em;
margin-left: 20em;
margin-bottom: 1em;
margin-right: 20em;
padding-top: 1em;
padding-left: 0em;
padding-bottom: 1em;
padding-right: 0em;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
background-color: rgba(239, 239, 239, 0);
}
@media (min-width: 1200px){#s-6a1ee432-9354-4844-8466-7aee95a8a2aa {
  margin-top: 4em;
margin-left: 20em;
margin-bottom: 1em;
margin-right: 20em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6a1ee432-9354-4844-8466-7aee95a8a2aa {
  margin-top: 4em;
margin-left: 20em;
margin-right: 20em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6a1ee432-9354-4844-8466-7aee95a8a2aa {
  margin-top: 4em;
margin-left: 20em;
margin-right: 20em;
padding-top: 0em;
padding-bottom: 0em;
}
}@media (max-width: 767px){#s-6a1ee432-9354-4844-8466-7aee95a8a2aa {
  margin-top: 3em;
margin-left: 1em;
margin-bottom: 0em;
margin-right: 1em;
padding-top: 0em;
padding-left: 1em;
padding-bottom: 0em;
padding-right: 1em;
}
}
@media (min-width: 0px) {
[id="s-6a1ee432-9354-4844-8466-7aee95a8a2aa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6a1ee432-9354-4844-8466-7aee95a8a2aa"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-6a1ee432-9354-4844-8466-7aee95a8a2aa"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-6a1ee432-9354-4844-8466-7aee95a8a2aa"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-a68b6448-fc35-4d1a-8fb3-f8d0fb31464d {
  margin-left: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 12px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-a68b6448-fc35-4d1a-8fb3-f8d0fb31464d {
  margin-bottom: 0.5em;
padding-left: 1em;
}
}







#s-a68b6448-fc35-4d1a-8fb3-f8d0fb31464d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a68b6448-fc35-4d1a-8fb3-f8d0fb31464d.shg-box.shg-c {
  justify-content: center;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  margin-left: 0px;
margin-right: 0px;
max-width: 24px;
aspect-ratio: 1/1;
text-align: left;
}
@media (min-width: 1200px){#s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  max-width: 60%;
text-align: center;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  max-width: 60%;
text-align: center;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  max-width: 60%;
text-align: center;
}
}
#s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  margin: 0 !important;
  overflow: visible;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292 img.shogun-image {
  /* Add background color handling */
  
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ae2f782e-899e-4a46-b2e8-c833214b8292.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-ae2f782e-899e-4a46-b2e8-c833214b8292 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ae2f782e-899e-4a46-b2e8-c833214b8292.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ae2f782e-899e-4a46-b2e8-c833214b8292.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292.shogun-image {
  box-sizing: border-box;
}



.s-ae2f782e-899e-4a46-b2e8-c833214b8292 img.shogun-image {
  
}


@media (min-width: 1200px){#s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  margin: 0 !important;
  overflow: visible;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292 img.shogun-image {
  /* Add background color handling */
  
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ae2f782e-899e-4a46-b2e8-c833214b8292.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-ae2f782e-899e-4a46-b2e8-c833214b8292 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ae2f782e-899e-4a46-b2e8-c833214b8292.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae2f782e-899e-4a46-b2e8-c833214b8292.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292.shogun-image {
  box-sizing: border-box;
}



.s-ae2f782e-899e-4a46-b2e8-c833214b8292 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  margin: 0 !important;
  overflow: visible;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292 img.shogun-image {
  /* Add background color handling */
  
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ae2f782e-899e-4a46-b2e8-c833214b8292.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-ae2f782e-899e-4a46-b2e8-c833214b8292 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ae2f782e-899e-4a46-b2e8-c833214b8292.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae2f782e-899e-4a46-b2e8-c833214b8292.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292.shogun-image {
  box-sizing: border-box;
}



.s-ae2f782e-899e-4a46-b2e8-c833214b8292 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  margin: 0 !important;
  overflow: visible;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292 img.shogun-image {
  /* Add background color handling */
  
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ae2f782e-899e-4a46-b2e8-c833214b8292.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-ae2f782e-899e-4a46-b2e8-c833214b8292 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ae2f782e-899e-4a46-b2e8-c833214b8292.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ae2f782e-899e-4a46-b2e8-c833214b8292.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292.shogun-image {
  box-sizing: border-box;
}



.s-ae2f782e-899e-4a46-b2e8-c833214b8292 img.shogun-image {
  
}


}@media (max-width: 767px){#s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  margin: 0 !important;
  overflow: visible;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ae2f782e-899e-4a46-b2e8-c833214b8292 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292 img.shogun-image {
  /* Add background color handling */
  
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ae2f782e-899e-4a46-b2e8-c833214b8292.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-ae2f782e-899e-4a46-b2e8-c833214b8292 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ae2f782e-899e-4a46-b2e8-c833214b8292.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ae2f782e-899e-4a46-b2e8-c833214b8292.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ae2f782e-899e-4a46-b2e8-c833214b8292.shogun-image {
  box-sizing: border-box;
}



.s-ae2f782e-899e-4a46-b2e8-c833214b8292 img.shogun-image {
  
}


}
#s-e32d593a-e386-4282-98fd-0e036bef726b {
  margin-left: 0px;
margin-right: 0px;
}

#s-d14e05ec-9030-4945-9d41-fff3c8e6b983 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 12px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-d14e05ec-9030-4945-9d41-fff3c8e6b983 {
  margin-bottom: 0.5em;
padding-left: 1em;
}
}







#s-d14e05ec-9030-4945-9d41-fff3c8e6b983 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d14e05ec-9030-4945-9d41-fff3c8e6b983.shg-box.shg-c {
  justify-content: center;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  margin-left: 0px;
margin-right: 0px;
max-width: 24px;
aspect-ratio: 1/1;
text-align: left;
}
@media (min-width: 1200px){#s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  max-width: 60%;
text-align: center;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  max-width: 60%;
text-align: center;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  max-width: 60px;
text-align: center;
}
}
#s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0a102366-638f-4f09-a14c-6140ef4a98f5.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-0a102366-638f-4f09-a14c-6140ef4a98f5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a102366-638f-4f09-a14c-6140ef4a98f5.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0a102366-638f-4f09-a14c-6140ef4a98f5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5.shogun-image {
  box-sizing: border-box;
}



.s-0a102366-638f-4f09-a14c-6140ef4a98f5 img.shogun-image {
  
}


@media (min-width: 1200px){#s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0a102366-638f-4f09-a14c-6140ef4a98f5.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-0a102366-638f-4f09-a14c-6140ef4a98f5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a102366-638f-4f09-a14c-6140ef4a98f5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a102366-638f-4f09-a14c-6140ef4a98f5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5.shogun-image {
  box-sizing: border-box;
}



.s-0a102366-638f-4f09-a14c-6140ef4a98f5 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0a102366-638f-4f09-a14c-6140ef4a98f5.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-0a102366-638f-4f09-a14c-6140ef4a98f5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a102366-638f-4f09-a14c-6140ef4a98f5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a102366-638f-4f09-a14c-6140ef4a98f5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5.shogun-image {
  box-sizing: border-box;
}



.s-0a102366-638f-4f09-a14c-6140ef4a98f5 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0a102366-638f-4f09-a14c-6140ef4a98f5.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-0a102366-638f-4f09-a14c-6140ef4a98f5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a102366-638f-4f09-a14c-6140ef4a98f5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a102366-638f-4f09-a14c-6140ef4a98f5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5.shogun-image {
  box-sizing: border-box;
}



.s-0a102366-638f-4f09-a14c-6140ef4a98f5 img.shogun-image {
  
}


}@media (max-width: 767px){#s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a102366-638f-4f09-a14c-6140ef4a98f5 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0a102366-638f-4f09-a14c-6140ef4a98f5.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-0a102366-638f-4f09-a14c-6140ef4a98f5 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a102366-638f-4f09-a14c-6140ef4a98f5.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0a102366-638f-4f09-a14c-6140ef4a98f5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a102366-638f-4f09-a14c-6140ef4a98f5.shogun-image {
  box-sizing: border-box;
}



.s-0a102366-638f-4f09-a14c-6140ef4a98f5 img.shogun-image {
  
}


}
#s-8a0e69b7-0885-4410-a835-0d670080cf8e {
  margin-left: 0px;
margin-right: 0px;
}

#s-9308f8dd-6b5b-4c85-9c69-9211a30b109b {
  margin-left: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 12px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-9308f8dd-6b5b-4c85-9c69-9211a30b109b {
  padding-top: 1em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9308f8dd-6b5b-4c85-9c69-9211a30b109b {
  padding-top: 1em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-9308f8dd-6b5b-4c85-9c69-9211a30b109b {
  padding-top: 1em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}@media (max-width: 767px){#s-9308f8dd-6b5b-4c85-9c69-9211a30b109b {
  padding-left: 1em;
}
}







#s-9308f8dd-6b5b-4c85-9c69-9211a30b109b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9308f8dd-6b5b-4c85-9c69-9211a30b109b.shg-box.shg-c {
  justify-content: center;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  margin-left: 0px;
margin-right: 0px;
max-width: 24px;
aspect-ratio: 1/1;
text-align: left;
}
@media (min-width: 1200px){#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  max-width: 60%;
text-align: center;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  max-width: 60%;
text-align: center;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  max-width: 60%;
text-align: center;
}
}
#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  margin: 0 !important;
  overflow: visible;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f img.shogun-image {
  /* Add background color handling */
  
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f .shogun-image-content {
  
    justify-content: center;
  
}

.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shogun-image {
  box-sizing: border-box;
}



.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f img.shogun-image {
  
}


@media (min-width: 1200px){#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  margin: 0 !important;
  overflow: visible;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f img.shogun-image {
  /* Add background color handling */
  
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f .shogun-image-content {
  
    justify-content: center;
  
}

.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shogun-image {
  box-sizing: border-box;
}



.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  margin: 0 !important;
  overflow: visible;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f img.shogun-image {
  /* Add background color handling */
  
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f .shogun-image-content {
  
    justify-content: center;
  
}

.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shogun-image {
  box-sizing: border-box;
}



.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  margin: 0 !important;
  overflow: visible;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f img.shogun-image {
  /* Add background color handling */
  
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f .shogun-image-content {
  
    justify-content: center;
  
}

.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shogun-image {
  box-sizing: border-box;
}



.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f img.shogun-image {
  
}


}@media (max-width: 767px){#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  margin: 0 !important;
  overflow: visible;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f img.shogun-image {
  /* Add background color handling */
  
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shogun-image {
    
    
    
    max-height: 24px;
  }


.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f .shogun-image-content {
  
    justify-content: center;
  
}

.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f.shogun-image {
  box-sizing: border-box;
}



.s-b217c27a-e3c7-49f0-8f82-2e7837fe7b5f img.shogun-image {
  
}


}
#s-6d30cda0-1ec2-484e-b76f-78a48c7a5b22 {
  margin-left: 0px;
margin-right: 0px;
}

#s-3af352ec-8a03-4fbe-b617-9b8d50d22801 {
  margin-left: 0em;
margin-right: 0px;
}
@media (min-width: 1200px){#s-3af352ec-8a03-4fbe-b617-9b8d50d22801 {
  display: none;
}
#s-3af352ec-8a03-4fbe-b617-9b8d50d22801, #wrap-s-3af352ec-8a03-4fbe-b617-9b8d50d22801, #wrap-content-s-3af352ec-8a03-4fbe-b617-9b8d50d22801 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3af352ec-8a03-4fbe-b617-9b8d50d22801 {
  display: none;
}
#s-3af352ec-8a03-4fbe-b617-9b8d50d22801, #wrap-s-3af352ec-8a03-4fbe-b617-9b8d50d22801, #wrap-content-s-3af352ec-8a03-4fbe-b617-9b8d50d22801 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3af352ec-8a03-4fbe-b617-9b8d50d22801 {
  display: none;
}
#s-3af352ec-8a03-4fbe-b617-9b8d50d22801, #wrap-s-3af352ec-8a03-4fbe-b617-9b8d50d22801, #wrap-content-s-3af352ec-8a03-4fbe-b617-9b8d50d22801 { display: none !important; }}@media (max-width: 767px){#s-3af352ec-8a03-4fbe-b617-9b8d50d22801 {
  margin-top: 1em;
display: none;
}
#s-3af352ec-8a03-4fbe-b617-9b8d50d22801, #wrap-s-3af352ec-8a03-4fbe-b617-9b8d50d22801, #wrap-content-s-3af352ec-8a03-4fbe-b617-9b8d50d22801 { display: none !important; }}
#s-7fb5843f-3440-4399-9b4a-1de9aa502af6 {
  margin-top: 2em;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 0px;
}








#s-7fb5843f-3440-4399-9b4a-1de9aa502af6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7fb5843f-3440-4399-9b4a-1de9aa502af6.shg-box.shg-c {
  justify-content: center;
}

#s-eb63e842-a4a9-4c87-91b5-3d346deff1d0 {
  margin-top: 0em;
margin-left: 13em;
margin-bottom: 0em;
margin-right: 13em;
min-height: 50px;
}
@media (min-width: 1200px){#s-eb63e842-a4a9-4c87-91b5-3d346deff1d0 {
  display: none;
}
#s-eb63e842-a4a9-4c87-91b5-3d346deff1d0, #wrap-s-eb63e842-a4a9-4c87-91b5-3d346deff1d0, #wrap-content-s-eb63e842-a4a9-4c87-91b5-3d346deff1d0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-eb63e842-a4a9-4c87-91b5-3d346deff1d0 {
  display: none;
}
#s-eb63e842-a4a9-4c87-91b5-3d346deff1d0, #wrap-s-eb63e842-a4a9-4c87-91b5-3d346deff1d0, #wrap-content-s-eb63e842-a4a9-4c87-91b5-3d346deff1d0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-eb63e842-a4a9-4c87-91b5-3d346deff1d0 {
  display: none;
}
#s-eb63e842-a4a9-4c87-91b5-3d346deff1d0, #wrap-s-eb63e842-a4a9-4c87-91b5-3d346deff1d0, #wrap-content-s-eb63e842-a4a9-4c87-91b5-3d346deff1d0 { display: none !important; }}@media (max-width: 767px){#s-eb63e842-a4a9-4c87-91b5-3d346deff1d0 {
  display: none;
}
#s-eb63e842-a4a9-4c87-91b5-3d346deff1d0, #wrap-s-eb63e842-a4a9-4c87-91b5-3d346deff1d0, #wrap-content-s-eb63e842-a4a9-4c87-91b5-3d346deff1d0 { display: none !important; }}







#s-eb63e842-a4a9-4c87-91b5-3d346deff1d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-eb63e842-a4a9-4c87-91b5-3d346deff1d0.shg-box.shg-c {
  justify-content: center;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
max-width: 1200px;
aspect-ratio: 1440/900;
text-align: center;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  margin: 0 !important;
  overflow: visible;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.shg-image-content-margin-container-s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b img.shogun-image {
  /* Add background color handling */
  
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-0abc7ac5-71f6-4754-8901-1dda73debb3b .shogun-image-content {
  
    justify-content: center;
  
}

.s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shogun-image {
  box-sizing: border-box;
}



.s-0abc7ac5-71f6-4754-8901-1dda73debb3b img.shogun-image {
  
}


@media (min-width: 1200px){#s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  margin: 0 !important;
  overflow: visible;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b img.shogun-image {
  /* Add background color handling */
  
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-0abc7ac5-71f6-4754-8901-1dda73debb3b .shogun-image-content {
  
    justify-content: center;
  
}

.s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shogun-image {
  box-sizing: border-box;
}



.s-0abc7ac5-71f6-4754-8901-1dda73debb3b img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  margin: 0 !important;
  overflow: visible;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b img.shogun-image {
  /* Add background color handling */
  
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-0abc7ac5-71f6-4754-8901-1dda73debb3b .shogun-image-content {
  
    justify-content: center;
  
}

.s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shogun-image {
  box-sizing: border-box;
}



.s-0abc7ac5-71f6-4754-8901-1dda73debb3b img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  margin: 0 !important;
  overflow: visible;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b img.shogun-image {
  /* Add background color handling */
  
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-0abc7ac5-71f6-4754-8901-1dda73debb3b .shogun-image-content {
  
    justify-content: center;
  
}

.s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shogun-image {
  box-sizing: border-box;
}



.s-0abc7ac5-71f6-4754-8901-1dda73debb3b img.shogun-image {
  
}


}@media (max-width: 767px){#s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  margin: 0 !important;
  overflow: visible;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0abc7ac5-71f6-4754-8901-1dda73debb3b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b img.shogun-image {
  /* Add background color handling */
  
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-0abc7ac5-71f6-4754-8901-1dda73debb3b .shogun-image-content {
  
    justify-content: center;
  
}

.s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0abc7ac5-71f6-4754-8901-1dda73debb3b.shogun-image {
  box-sizing: border-box;
}



.s-0abc7ac5-71f6-4754-8901-1dda73debb3b img.shogun-image {
  
}


}
#s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96 {
  margin-top: 0em;
margin-left: 13em;
margin-bottom: 0em;
margin-right: 13em;
min-height: 50px;
}
@media (min-width: 1200px){#s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96 {
  display: none;
}
#s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96, #wrap-s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96, #wrap-content-s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96 {
  display: none;
}
#s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96, #wrap-s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96, #wrap-content-s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96 {
  display: none;
}
#s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96, #wrap-s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96, #wrap-content-s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96 { display: none !important; }}@media (max-width: 767px){#s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96 {
  display: none;
}
#s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96, #wrap-s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96, #wrap-content-s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96 { display: none !important; }}







#s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-613b723b-0c32-4f8d-b7d8-f9d516c1fa96.shg-box.shg-c {
  justify-content: center;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  margin-top: 30px;
margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
max-width: 1200px;
aspect-ratio: 1440/900;
text-align: center;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.shg-image-content-margin-container-s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shogun-image {
  box-sizing: border-box;
}



.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 img.shogun-image {
  
}


@media (min-width: 1200px){#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shogun-image {
  box-sizing: border-box;
}



.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shogun-image {
  box-sizing: border-box;
}



.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shogun-image {
  box-sizing: border-box;
}



.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 img.shogun-image {
  
}


}@media (max-width: 767px){#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  margin: 0 !important;
  overflow: visible;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 img.shogun-image {
  /* Add background color handling */
  
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shogun-image {
    
    
    
    max-height: 1200px;
  }


.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bec13046-b3de-4bde-9700-18d7ef9cb8a7.shogun-image {
  box-sizing: border-box;
}



.s-bec13046-b3de-4bde-9700-18d7ef9cb8a7 img.shogun-image {
  
}


}
#s-fc0aa6fc-d614-417b-88d0-eec0e324d01f {
  margin-top: -40em;
margin-left: 3em;
margin-right: 3em;
min-height: 50px;
}
@media (max-width: 767px){#s-fc0aa6fc-d614-417b-88d0-eec0e324d01f {
  margin-top: -14em;
margin-left: 1em;
margin-right: 1em;
}
}







#s-fc0aa6fc-d614-417b-88d0-eec0e324d01f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fc0aa6fc-d614-417b-88d0-eec0e324d01f.shg-box.shg-c {
  justify-content: center;
}

#s-1845f3b2-3dc5-4fb0-b906-61cd5d284aef {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-1845f3b2-3dc5-4fb0-b906-61cd5d284aef {
  margin-left: 6em;
min-height: 0px;
}
}







#s-1845f3b2-3dc5-4fb0-b906-61cd5d284aef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1845f3b2-3dc5-4fb0-b906-61cd5d284aef.shg-box.shg-c {
  justify-content: center;
}

#s-4f3386ed-31f4-4631-b303-f3128d87594c {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-4f3386ed-31f4-4631-b303-f3128d87594c {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-4f3386ed-31f4-4631-b303-f3128d87594c .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-4f3386ed-31f4-4631-b303-f3128d87594c .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-72497087-4754-4780-ba2e-d298439d1625 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-72497087-4754-4780-ba2e-d298439d1625 {
  display: none;
}
#s-72497087-4754-4780-ba2e-d298439d1625, #wrap-s-72497087-4754-4780-ba2e-d298439d1625, #wrap-content-s-72497087-4754-4780-ba2e-d298439d1625 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-72497087-4754-4780-ba2e-d298439d1625 {
  display: none;
}
#s-72497087-4754-4780-ba2e-d298439d1625, #wrap-s-72497087-4754-4780-ba2e-d298439d1625, #wrap-content-s-72497087-4754-4780-ba2e-d298439d1625 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-72497087-4754-4780-ba2e-d298439d1625 {
  display: none;
}
#s-72497087-4754-4780-ba2e-d298439d1625, #wrap-s-72497087-4754-4780-ba2e-d298439d1625, #wrap-content-s-72497087-4754-4780-ba2e-d298439d1625 { display: none !important; }}@media (max-width: 767px){#s-72497087-4754-4780-ba2e-d298439d1625 {
  margin-top: 1em;
}
}
@media (min-width: 0px) {
[id="s-72497087-4754-4780-ba2e-d298439d1625"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-72497087-4754-4780-ba2e-d298439d1625"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-72497087-4754-4780-ba2e-d298439d1625"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-72497087-4754-4780-ba2e-d298439d1625"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-0ea00b12-452b-45a3-8ec7-a5f8a06cc99c {
  margin-left: 0em;
margin-right: 0em;
min-height: 50px;
}
@media (min-width: 1200px){#s-0ea00b12-452b-45a3-8ec7-a5f8a06cc99c {
  margin-top: 0em;
display: none;
}
#s-0ea00b12-452b-45a3-8ec7-a5f8a06cc99c, #wrap-s-0ea00b12-452b-45a3-8ec7-a5f8a06cc99c, #wrap-content-s-0ea00b12-452b-45a3-8ec7-a5f8a06cc99c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0ea00b12-452b-45a3-8ec7-a5f8a06cc99c {
  display: none;
}
#s-0ea00b12-452b-45a3-8ec7-a5f8a06cc99c, #wrap-s-0ea00b12-452b-45a3-8ec7-a5f8a06cc99c, #wrap-content-s-0ea00b12-452b-45a3-8ec7-a5f8a06cc99c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0ea00b12-452b-45a3-8ec7-a5f8a06cc99c {
  display: none;
}
#s-0ea00b12-452b-45a3-8ec7-a5f8a06cc99c, #wrap-s-0ea00b12-452b-45a3-8ec7-a5f8a06cc99c, #wrap-content-s-0ea00b12-452b-45a3-8ec7-a5f8a06cc99c { display: none !important; }}







#s-0ea00b12-452b-45a3-8ec7-a5f8a06cc99c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0ea00b12-452b-45a3-8ec7-a5f8a06cc99c.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-ca2d9980-30d1-4550-aaf9-227cd5faec09 {
  display: none;
}
#s-ca2d9980-30d1-4550-aaf9-227cd5faec09, #wrap-s-ca2d9980-30d1-4550-aaf9-227cd5faec09, #wrap-content-s-ca2d9980-30d1-4550-aaf9-227cd5faec09 { display: none !important; }}
#s-f30ddf7e-c2b2-4f83-a3f2-c59cbe34f237 {
  margin-left: 0em;
margin-right: 0em;
padding-top: 10px;
padding-left: 24px;
padding-bottom: 10px;
padding-right: 24px;
}
@media (max-width: 767px){#s-f30ddf7e-c2b2-4f83-a3f2-c59cbe34f237 {
  padding-left: 14px;
padding-right: 14px;
}
}
#s-30db0643-a413-43f0-8423-fddc01554c4d {
  text-align: center;
}
@media (min-width: 1200px){#s-30db0643-a413-43f0-8423-fddc01554c4d {
  display: none;
}
#s-30db0643-a413-43f0-8423-fddc01554c4d, #wrap-s-30db0643-a413-43f0-8423-fddc01554c4d, #wrap-content-s-30db0643-a413-43f0-8423-fddc01554c4d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-30db0643-a413-43f0-8423-fddc01554c4d {
  display: none;
}
#s-30db0643-a413-43f0-8423-fddc01554c4d, #wrap-s-30db0643-a413-43f0-8423-fddc01554c4d, #wrap-content-s-30db0643-a413-43f0-8423-fddc01554c4d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-30db0643-a413-43f0-8423-fddc01554c4d {
  display: none;
}
#s-30db0643-a413-43f0-8423-fddc01554c4d, #wrap-s-30db0643-a413-43f0-8423-fddc01554c4d, #wrap-content-s-30db0643-a413-43f0-8423-fddc01554c4d { display: none !important; }}
#s-4d6638a9-6625-4ecf-b2fb-ca80265210fe {
  margin-left: 0em;
margin-right: 0em;
padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
}

#s-39274460-f854-413f-9fbb-40fc68e8ed0d {
  margin-left: 0px;
margin-right: 0px;
text-align: right;
}
@media (max-width: 767px){#s-39274460-f854-413f-9fbb-40fc68e8ed0d {
  margin-top: 0.5em;
margin-left: 0em;
}
}
#s-e33fc4a0-33f3-422a-81e5-679e43484274 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 8px;
margin-right: 0px;
}
@media (max-width: 767px){#s-e33fc4a0-33f3-422a-81e5-679e43484274 {
  margin-bottom: 0px;
}
}
#s-8d54085f-4af9-4342-909b-00d150cc3e35 {
  text-align: left;
}
@media (min-width: 1200px){#s-8d54085f-4af9-4342-909b-00d150cc3e35 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-8d54085f-4af9-4342-909b-00d150cc3e35 .shg-product-sold-out {
  display: none;
  color: rgba(245, 245, 245, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-8d54085f-4af9-4342-909b-00d150cc3e35 .shg-product-price {
  color: rgba(245, 245, 245, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-8d54085f-4af9-4342-909b-00d150cc3e35 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 5px;
}

#s-e28ef717-c660-4204-9c4e-6986d2715044 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 8px;
margin-right: 0px;
}
@media (max-width: 767px){#s-e28ef717-c660-4204-9c4e-6986d2715044 {
  margin-bottom: 0px;
}
}
#s-ef1d9d5c-a7be-46af-820c-c0ecc260bbd3 {
  margin-top: 1.5em;
margin-left: 0em;
margin-right: 0em;
min-height: 50px;
}
@media (max-width: 767px){#s-ef1d9d5c-a7be-46af-820c-c0ecc260bbd3 {
  display: none;
}
#s-ef1d9d5c-a7be-46af-820c-c0ecc260bbd3, #wrap-s-ef1d9d5c-a7be-46af-820c-c0ecc260bbd3, #wrap-content-s-ef1d9d5c-a7be-46af-820c-c0ecc260bbd3 { display: none !important; }}







#s-ef1d9d5c-a7be-46af-820c-c0ecc260bbd3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ef1d9d5c-a7be-46af-820c-c0ecc260bbd3.shg-box.shg-c {
  justify-content: center;
}

#s-610e314f-5697-4ade-b9df-fb27a4c22ada {
  margin-left: 0em;
margin-right: 0em;
padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
}
@media (min-width: 1200px){#s-610e314f-5697-4ade-b9df-fb27a4c22ada {
  margin-right: 0.5em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-610e314f-5697-4ade-b9df-fb27a4c22ada {
  margin-left: 0em;
margin-right: 0.5em;
}
}
#s-864af5d4-12d0-4c9e-b9e9-2cc2d3d49497 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 8px;
margin-right: 0px;
}
@media (max-width: 767px){#s-864af5d4-12d0-4c9e-b9e9-2cc2d3d49497 {
  margin-bottom: 0px;
}
}
#s-100bfcf9-88d8-4579-b15c-4440fb894498 {
  margin-left: 0px;
margin-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-100bfcf9-88d8-4579-b15c-4440fb894498 {
  margin-top: 0.5em;
}
}
#s-14a1d368-7281-4575-9c9d-480c9496a030 {
  margin-left: 1%;
margin-right: 1%;
text-align: right;
}
@media (min-width: 1200px){#s-14a1d368-7281-4575-9c9d-480c9496a030 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-14a1d368-7281-4575-9c9d-480c9496a030 .shg-product-sold-out {
  display: none;
  color: rgba(245, 245, 245, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-14a1d368-7281-4575-9c9d-480c9496a030 .shg-product-price {
  color: rgba(245, 245, 245, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-14a1d368-7281-4575-9c9d-480c9496a030 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 5px;
}

#s-bfdf143d-6c23-4723-a59d-aa149e6a1fe4 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 8px;
margin-right: 0px;
}
@media (max-width: 767px){#s-bfdf143d-6c23-4723-a59d-aa149e6a1fe4 {
  margin-bottom: 0px;
}
}
#s-a5fa43b6-f637-4afe-99bd-e18e7844888f {
  margin-top: -4em;
margin-left: 0px;
margin-right: 0px;
min-height: 50px;
}








#s-a5fa43b6-f637-4afe-99bd-e18e7844888f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a5fa43b6-f637-4afe-99bd-e18e7844888f.shg-box.shg-c {
  justify-content: center;
}

#s-717dc72a-1d29-47b9-8439-b40944e51d25 {
  margin-left: 1em;
margin-right: auto;
}
@media (max-width: 767px){#s-717dc72a-1d29-47b9-8439-b40944e51d25 {
  margin-top: 1em;
}
}
#s-17aafdd1-7ab5-4771-9227-60186460c3f8 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-07265abc-cee3-4456-89ee-dd9716b990e0 {
  margin-top: 0em;
margin-left: 1em;
margin-bottom: 0em;
margin-right: 1em;
min-height: 50px;
}
@media (min-width: 1200px){#s-07265abc-cee3-4456-89ee-dd9716b990e0 {
  display: none;
}
#s-07265abc-cee3-4456-89ee-dd9716b990e0, #wrap-s-07265abc-cee3-4456-89ee-dd9716b990e0, #wrap-content-s-07265abc-cee3-4456-89ee-dd9716b990e0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-07265abc-cee3-4456-89ee-dd9716b990e0 {
  display: none;
}
#s-07265abc-cee3-4456-89ee-dd9716b990e0, #wrap-s-07265abc-cee3-4456-89ee-dd9716b990e0, #wrap-content-s-07265abc-cee3-4456-89ee-dd9716b990e0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-07265abc-cee3-4456-89ee-dd9716b990e0 {
  display: none;
}
#s-07265abc-cee3-4456-89ee-dd9716b990e0, #wrap-s-07265abc-cee3-4456-89ee-dd9716b990e0, #wrap-content-s-07265abc-cee3-4456-89ee-dd9716b990e0 { display: none !important; }}@media (max-width: 767px){#s-07265abc-cee3-4456-89ee-dd9716b990e0 {
  display: none;
}
#s-07265abc-cee3-4456-89ee-dd9716b990e0, #wrap-s-07265abc-cee3-4456-89ee-dd9716b990e0, #wrap-content-s-07265abc-cee3-4456-89ee-dd9716b990e0 { display: none !important; }}







#s-07265abc-cee3-4456-89ee-dd9716b990e0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-07265abc-cee3-4456-89ee-dd9716b990e0.shg-box.shg-c {
  justify-content: center;
}

#s-c92debef-07e6-4f89-8f7f-0fd1c237d00d {
  margin-top: 3em;
margin-left: 5em;
margin-bottom: 2em;
margin-right: 5em;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-c92debef-07e6-4f89-8f7f-0fd1c237d00d {
  margin-left: 2em;
margin-right: 2em;
}
}
#s-c92debef-07e6-4f89-8f7f-0fd1c237d00d .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Roobert-Medium";
  font-style:  normal ;
  font-size: 2.5em;
  
  
  
}


@media (max-width: 767px){#s-c92debef-07e6-4f89-8f7f-0fd1c237d00d .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 44px;
  line-height: 1.3em;
  
  
}


}
#s-b11c15b2-12c5-485b-a161-819dcca54a28 {
  margin-top: 0em;
margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-b11c15b2-12c5-485b-a161-819dcca54a28 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b11c15b2-12c5-485b-a161-819dcca54a28.shg-box.shg-c {
  justify-content: center;
}

#s-bebdc852-337f-4663-b284-ecba6f79cdeb {
  margin-bottom: 0px;
}

#s-66b4ca81-1d2d-4f07-940d-87a0dca7dbb3 {
  margin-top: -4em;
margin-left: 2em;
margin-right: auto;
}

#s-4c439172-53e2-45a9-bd12-ac5e178b67fa {
  margin-top: 3em;
margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-4c439172-53e2-45a9-bd12-ac5e178b67fa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4c439172-53e2-45a9-bd12-ac5e178b67fa.shg-box.shg-c {
  justify-content: center;
}

#s-41ae78c8-9a47-42b3-b5e1-03b9b059f7f6 {
  margin-bottom: 0.5em;
}

#s-c30e2da9-3e1d-474c-bb22-8d04f1ca565b {
  margin-top: -4em;
margin-left: 2em;
margin-right: auto;
}

#s-b82e3b1e-e345-4620-854f-f05070cfdcb1 {
  margin-top: -4em;
margin-left: 0px;
margin-right: 0px;
min-height: 50px;
}








#s-b82e3b1e-e345-4620-854f-f05070cfdcb1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b82e3b1e-e345-4620-854f-f05070cfdcb1.shg-box.shg-c {
  justify-content: center;
}

#s-3ab199b8-dcf7-4f8d-a1e0-4f7661f7058e {
  margin-left: 1em;
margin-right: auto;
}
@media (max-width: 767px){#s-3ab199b8-dcf7-4f8d-a1e0-4f7661f7058e {
  margin-top: 1em;
}
}
#s-d7c49bc9-8e26-4bca-8aad-a49990863d94 {
  margin-top: -40em;
margin-left: 3em;
margin-right: 3em;
min-height: 50px;
}
@media (max-width: 767px){#s-d7c49bc9-8e26-4bca-8aad-a49990863d94 {
  margin-top: -14em;
}
}







#s-d7c49bc9-8e26-4bca-8aad-a49990863d94 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d7c49bc9-8e26-4bca-8aad-a49990863d94.shg-box.shg-c {
  justify-content: center;
}

#s-674aab33-7d70-4c47-804e-d54eed06db54 {
  margin-left: 0.5em;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-674aab33-7d70-4c47-804e-d54eed06db54 {
  display: none;
}
#s-674aab33-7d70-4c47-804e-d54eed06db54, #wrap-s-674aab33-7d70-4c47-804e-d54eed06db54, #wrap-content-s-674aab33-7d70-4c47-804e-d54eed06db54 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-674aab33-7d70-4c47-804e-d54eed06db54 {
  display: none;
}
#s-674aab33-7d70-4c47-804e-d54eed06db54, #wrap-s-674aab33-7d70-4c47-804e-d54eed06db54, #wrap-content-s-674aab33-7d70-4c47-804e-d54eed06db54 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-674aab33-7d70-4c47-804e-d54eed06db54 {
  display: none;
}
#s-674aab33-7d70-4c47-804e-d54eed06db54, #wrap-s-674aab33-7d70-4c47-804e-d54eed06db54, #wrap-content-s-674aab33-7d70-4c47-804e-d54eed06db54 { display: none !important; }}@media (max-width: 767px){#s-674aab33-7d70-4c47-804e-d54eed06db54 {
  text-align: center;
display: none;
}
#s-674aab33-7d70-4c47-804e-d54eed06db54, #wrap-s-674aab33-7d70-4c47-804e-d54eed06db54, #wrap-content-s-674aab33-7d70-4c47-804e-d54eed06db54 { display: none !important; }}
#s-674aab33-7d70-4c47-804e-d54eed06db54 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 2em;
  
  
  
}



#s-6bea8ec1-8b03-47ff-a2f4-808c31f75061 {
  margin-left: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-6bea8ec1-8b03-47ff-a2f4-808c31f75061 {
  display: none;
}
#s-6bea8ec1-8b03-47ff-a2f4-808c31f75061, #wrap-s-6bea8ec1-8b03-47ff-a2f4-808c31f75061, #wrap-content-s-6bea8ec1-8b03-47ff-a2f4-808c31f75061 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6bea8ec1-8b03-47ff-a2f4-808c31f75061 {
  display: none;
}
#s-6bea8ec1-8b03-47ff-a2f4-808c31f75061, #wrap-s-6bea8ec1-8b03-47ff-a2f4-808c31f75061, #wrap-content-s-6bea8ec1-8b03-47ff-a2f4-808c31f75061 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6bea8ec1-8b03-47ff-a2f4-808c31f75061 {
  display: none;
}
#s-6bea8ec1-8b03-47ff-a2f4-808c31f75061, #wrap-s-6bea8ec1-8b03-47ff-a2f4-808c31f75061, #wrap-content-s-6bea8ec1-8b03-47ff-a2f4-808c31f75061 { display: none !important; }}@media (max-width: 767px){#s-6bea8ec1-8b03-47ff-a2f4-808c31f75061 {
  margin-top: 1em;
display: none;
}
#s-6bea8ec1-8b03-47ff-a2f4-808c31f75061, #wrap-s-6bea8ec1-8b03-47ff-a2f4-808c31f75061, #wrap-content-s-6bea8ec1-8b03-47ff-a2f4-808c31f75061 { display: none !important; }}
@media (min-width: 0px) {
[id="s-6bea8ec1-8b03-47ff-a2f4-808c31f75061"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-6bea8ec1-8b03-47ff-a2f4-808c31f75061"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6bea8ec1-8b03-47ff-a2f4-808c31f75061"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6bea8ec1-8b03-47ff-a2f4-808c31f75061"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-e656d51e-9f1a-482d-8a64-77df932fdf27 {
  margin-left: 0em;
margin-right: 0em;
min-height: 50px;
}
@media (min-width: 1200px){#s-e656d51e-9f1a-482d-8a64-77df932fdf27 {
  margin-top: 0em;
display: none;
}
#s-e656d51e-9f1a-482d-8a64-77df932fdf27, #wrap-s-e656d51e-9f1a-482d-8a64-77df932fdf27, #wrap-content-s-e656d51e-9f1a-482d-8a64-77df932fdf27 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e656d51e-9f1a-482d-8a64-77df932fdf27 {
  display: none;
}
#s-e656d51e-9f1a-482d-8a64-77df932fdf27, #wrap-s-e656d51e-9f1a-482d-8a64-77df932fdf27, #wrap-content-s-e656d51e-9f1a-482d-8a64-77df932fdf27 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e656d51e-9f1a-482d-8a64-77df932fdf27 {
  display: none;
}
#s-e656d51e-9f1a-482d-8a64-77df932fdf27, #wrap-s-e656d51e-9f1a-482d-8a64-77df932fdf27, #wrap-content-s-e656d51e-9f1a-482d-8a64-77df932fdf27 { display: none !important; }}







#s-e656d51e-9f1a-482d-8a64-77df932fdf27 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e656d51e-9f1a-482d-8a64-77df932fdf27.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-03173a65-fdfc-439f-863f-fd469b122d19 {
  display: none;
}
#s-03173a65-fdfc-439f-863f-fd469b122d19, #wrap-s-03173a65-fdfc-439f-863f-fd469b122d19, #wrap-content-s-03173a65-fdfc-439f-863f-fd469b122d19 { display: none !important; }}
#s-bede956a-203e-4e28-a56a-28d56a9941df {
  margin-left: 0em;
margin-right: 0em;
padding-top: 10px;
padding-left: 24px;
padding-bottom: 10px;
padding-right: 24px;
}
@media (max-width: 767px){#s-bede956a-203e-4e28-a56a-28d56a9941df {
  padding-left: 14px;
padding-right: 14px;
}
}
#s-25d0367e-7fe4-4a95-9791-6864ee9c3d3f {
  text-align: center;
}
@media (min-width: 1200px){#s-25d0367e-7fe4-4a95-9791-6864ee9c3d3f {
  display: none;
}
#s-25d0367e-7fe4-4a95-9791-6864ee9c3d3f, #wrap-s-25d0367e-7fe4-4a95-9791-6864ee9c3d3f, #wrap-content-s-25d0367e-7fe4-4a95-9791-6864ee9c3d3f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-25d0367e-7fe4-4a95-9791-6864ee9c3d3f {
  display: none;
}
#s-25d0367e-7fe4-4a95-9791-6864ee9c3d3f, #wrap-s-25d0367e-7fe4-4a95-9791-6864ee9c3d3f, #wrap-content-s-25d0367e-7fe4-4a95-9791-6864ee9c3d3f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-25d0367e-7fe4-4a95-9791-6864ee9c3d3f {
  display: none;
}
#s-25d0367e-7fe4-4a95-9791-6864ee9c3d3f, #wrap-s-25d0367e-7fe4-4a95-9791-6864ee9c3d3f, #wrap-content-s-25d0367e-7fe4-4a95-9791-6864ee9c3d3f { display: none !important; }}
#s-8be818d5-654a-4572-9b10-6206cc400f8a {
  margin-left: 0em;
margin-right: 0em;
padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
}

#s-d91b2e42-36ed-427d-8e51-b8f6be7a5720 {
  margin-left: 0px;
margin-right: 0px;
text-align: right;
}
@media (max-width: 767px){#s-d91b2e42-36ed-427d-8e51-b8f6be7a5720 {
  margin-top: 0.5em;
margin-left: 0em;
}
}
#s-a32a8f24-dc11-4e51-990e-99e92bc8fe56 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 8px;
margin-right: 0px;
}
@media (max-width: 767px){#s-a32a8f24-dc11-4e51-990e-99e92bc8fe56 {
  margin-bottom: 0px;
}
}
#s-acdcc302-4024-49c7-8e42-a5730eaecd1a {
  margin-left: 0%;
margin-right: 0%;
text-align: left;
}

#s-acdcc302-4024-49c7-8e42-a5730eaecd1a .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-acdcc302-4024-49c7-8e42-a5730eaecd1a .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 18px;
}

#s-acdcc302-4024-49c7-8e42-a5730eaecd1a .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(166, 163, 163, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 5px;
}

#s-f599f466-ab34-4de3-85cc-cacee59dbc93 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 8px;
margin-right: 0px;
}
@media (max-width: 767px){#s-f599f466-ab34-4de3-85cc-cacee59dbc93 {
  margin-bottom: 0px;
}
}
#s-d9f4cad4-124c-4248-a9f5-919705dfac2d {
  margin-top: 1.5em;
margin-left: 0em;
margin-right: 0em;
min-height: 50px;
}
@media (min-width: 1200px){#s-d9f4cad4-124c-4248-a9f5-919705dfac2d {
  display: none;
}
#s-d9f4cad4-124c-4248-a9f5-919705dfac2d, #wrap-s-d9f4cad4-124c-4248-a9f5-919705dfac2d, #wrap-content-s-d9f4cad4-124c-4248-a9f5-919705dfac2d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d9f4cad4-124c-4248-a9f5-919705dfac2d {
  display: none;
}
#s-d9f4cad4-124c-4248-a9f5-919705dfac2d, #wrap-s-d9f4cad4-124c-4248-a9f5-919705dfac2d, #wrap-content-s-d9f4cad4-124c-4248-a9f5-919705dfac2d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d9f4cad4-124c-4248-a9f5-919705dfac2d {
  display: none;
}
#s-d9f4cad4-124c-4248-a9f5-919705dfac2d, #wrap-s-d9f4cad4-124c-4248-a9f5-919705dfac2d, #wrap-content-s-d9f4cad4-124c-4248-a9f5-919705dfac2d { display: none !important; }}@media (max-width: 767px){#s-d9f4cad4-124c-4248-a9f5-919705dfac2d {
  display: none;
}
#s-d9f4cad4-124c-4248-a9f5-919705dfac2d, #wrap-s-d9f4cad4-124c-4248-a9f5-919705dfac2d, #wrap-content-s-d9f4cad4-124c-4248-a9f5-919705dfac2d { display: none !important; }}







#s-d9f4cad4-124c-4248-a9f5-919705dfac2d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d9f4cad4-124c-4248-a9f5-919705dfac2d.shg-box.shg-c {
  justify-content: center;
}

#s-2e49608f-bd5c-4285-b314-78ba2e8a2ec3 {
  margin-left: 0em;
margin-right: 0em;
padding-top: 8px;
padding-left: 20px;
padding-bottom: 8px;
padding-right: 20px;
}
@media (min-width: 1200px){#s-2e49608f-bd5c-4285-b314-78ba2e8a2ec3 {
  margin-right: 0.5em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2e49608f-bd5c-4285-b314-78ba2e8a2ec3 {
  margin-left: 0em;
margin-right: 0.5em;
}
}
#s-e77f91f4-97e9-4a80-a56d-fe0e2ed9c563 {
  margin-left: 0px;
margin-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-e77f91f4-97e9-4a80-a56d-fe0e2ed9c563 {
  margin-top: 0.5em;
}
}
#s-db9b09bf-1b85-4f1a-a41d-47aae8c2a190 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 8px;
margin-right: 0px;
}
@media (max-width: 767px){#s-db9b09bf-1b85-4f1a-a41d-47aae8c2a190 {
  margin-bottom: 0px;
}
}
#s-c05aef90-f36b-4549-bf33-a4d4002af6cc {
  margin-left: 0%;
margin-right: 0%;
text-align: left;
}

#s-c05aef90-f36b-4549-bf33-a4d4002af6cc .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-c05aef90-f36b-4549-bf33-a4d4002af6cc .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 18px;
}

#s-c05aef90-f36b-4549-bf33-a4d4002af6cc .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(166, 163, 163, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 5px;
}

#s-a46263f0-ef22-4e8b-b967-4623ffaf508c {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 8px;
margin-right: 0px;
}
@media (max-width: 767px){#s-a46263f0-ef22-4e8b-b967-4623ffaf508c {
  margin-bottom: 0px;
}
}
#s-5d2b4e72-e4dc-4bc1-806e-7714c53dbc3b {
  padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-5d2b4e72-e4dc-4bc1-806e-7714c53dbc3b {
  padding-top: 3em;
padding-bottom: 3em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5d2b4e72-e4dc-4bc1-806e-7714c53dbc3b {
  padding-top: 4em;
padding-bottom: 4em;
}
}@media (max-width: 767px){#s-5d2b4e72-e4dc-4bc1-806e-7714c53dbc3b {
  margin-top: 3em;
padding-top: 20px;
padding-bottom: 20px;
}
}







#s-5d2b4e72-e4dc-4bc1-806e-7714c53dbc3b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5d2b4e72-e4dc-4bc1-806e-7714c53dbc3b.shg-box.shg-c {
  justify-content: center;
}

#s-00970f3d-7fe9-4c21-85e7-b7adadb6a143 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-00970f3d-7fe9-4c21-85e7-b7adadb6a143 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}
}







#s-00970f3d-7fe9-4c21-85e7-b7adadb6a143 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-00970f3d-7fe9-4c21-85e7-b7adadb6a143.shg-box.shg-c {
  justify-content: center;
}

#s-a942955d-905a-4e08-b52c-4b25e0c61bf5 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-a942955d-905a-4e08-b52c-4b25e0c61bf5 {
  padding-left: 5em;
padding-right: 5em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a942955d-905a-4e08-b52c-4b25e0c61bf5 {
  padding-left: 5em;
padding-right: 5em;
}
}@media (max-width: 767px){#s-a942955d-905a-4e08-b52c-4b25e0c61bf5 {
  display: none;
}
#s-a942955d-905a-4e08-b52c-4b25e0c61bf5, #wrap-s-a942955d-905a-4e08-b52c-4b25e0c61bf5, #wrap-content-s-a942955d-905a-4e08-b52c-4b25e0c61bf5 { display: none !important; }}







#s-a942955d-905a-4e08-b52c-4b25e0c61bf5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a942955d-905a-4e08-b52c-4b25e0c61bf5.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-d940e606-d353-4aa3-9c1a-5218e392d16f {
  
}
}
@media (min-width: 0px) {
[id="s-d940e606-d353-4aa3-9c1a-5218e392d16f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d940e606-d353-4aa3-9c1a-5218e392d16f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 11.0px);
}

}

@media (min-width: 992px) {
[id="s-d940e606-d353-4aa3-9c1a-5218e392d16f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 11.0px);
}

}

@media (min-width: 1200px) {
[id="s-d940e606-d353-4aa3-9c1a-5218e392d16f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 11.0px);
}

}

@media (min-width: 0px) {
[id="s-eaca865e-4bb5-4ca6-b88f-51b247930024"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 11.0px);
}

}

@media (min-width: 768px) {
[id="s-eaca865e-4bb5-4ca6-b88f-51b247930024"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 17.6px);
}

}

@media (min-width: 992px) {
[id="s-eaca865e-4bb5-4ca6-b88f-51b247930024"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 17.6px);
}

}

@media (min-width: 1200px) {
[id="s-eaca865e-4bb5-4ca6-b88f-51b247930024"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 17.6px);
}

}

.iframe-img{
        text-align: center;
}
.fst-img img, .snd-img img {
    width: 80%;
}
.slider-fix, .slider-fix-mobile{
  position: relative;
  z-index: 999;
  background-color: rgb(255, 255, 255);
  margin: auto!important;
}
.slider-fix{
  padding-top: 3em;  
}
.add-boxsadow{
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}
/*.round-shandow img{*/
/* box-shadow: 0px 1px 12px 0px #00000045;*/
/* border-radius: 50%;    */
/*}*/
.spec-sub-text{
    font-size: 12px!important;
    margin: 0;
    padding-top: 10px;
    line-height: 13px;
    padding-bottom: 7px;
}
.spec-img{
    font-weight:700;
}
@media screen and (max-width: 900px) and (min-width: 60px) {
 .slider-fix-mobile{
        margin-top: 2em!important;
    }
    .fst-img img, .snd-img img {
    width: 90%;
}
}
@media (min-width: 0px) {
[id="s-5ba63c86-2954-4324-9862-f0da911c8bc0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 11.0px);
}

}

@media (min-width: 768px) {
[id="s-5ba63c86-2954-4324-9862-f0da911c8bc0"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 17.6px);
}

}

@media (min-width: 992px) {
[id="s-5ba63c86-2954-4324-9862-f0da911c8bc0"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 17.6px);
}

}

@media (min-width: 1200px) {
[id="s-5ba63c86-2954-4324-9862-f0da911c8bc0"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 17.6px);
}

}

#s-c258128e-a2e1-4521-a795-fa1c9c360628 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-c258128e-a2e1-4521-a795-fa1c9c360628 {
  padding-left: 4em;
padding-right: 4em;
display: none;
}
#s-c258128e-a2e1-4521-a795-fa1c9c360628, #wrap-s-c258128e-a2e1-4521-a795-fa1c9c360628, #wrap-content-s-c258128e-a2e1-4521-a795-fa1c9c360628 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c258128e-a2e1-4521-a795-fa1c9c360628 {
  padding-left: 4em;
padding-right: 4em;
display: none;
}
#s-c258128e-a2e1-4521-a795-fa1c9c360628, #wrap-s-c258128e-a2e1-4521-a795-fa1c9c360628, #wrap-content-s-c258128e-a2e1-4521-a795-fa1c9c360628 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c258128e-a2e1-4521-a795-fa1c9c360628 {
  display: none;
}
#s-c258128e-a2e1-4521-a795-fa1c9c360628, #wrap-s-c258128e-a2e1-4521-a795-fa1c9c360628, #wrap-content-s-c258128e-a2e1-4521-a795-fa1c9c360628 { display: none !important; }}@media (max-width: 767px){#s-c258128e-a2e1-4521-a795-fa1c9c360628 {
  padding-left: 1em;
padding-right: 1em;
}
}







#s-c258128e-a2e1-4521-a795-fa1c9c360628 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c258128e-a2e1-4521-a795-fa1c9c360628.shg-box.shg-c {
  justify-content: center;
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
  overflow-x: hidden;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-bc5685be-a422-4385-a110-15329646e0c7 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (max-width: 767px){#s-bc5685be-a422-4385-a110-15329646e0c7 {
  margin-top: 2em;
}
}
#s-bc5685be-a422-4385-a110-15329646e0c7 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-bc5685be-a422-4385-a110-15329646e0c7 .shg-sld-nav-button.shg-sld-left,
#s-bc5685be-a422-4385-a110-15329646e0c7 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

@media (max-width: 767px){#s-e0308caf-864a-49ae-8d23-1ea733dcb808 {
  padding-top: 5px;
padding-bottom: 5px;
}
}
@media (min-width: 0px) {
[id="s-e0308caf-864a-49ae-8d23-1ea733dcb808"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 768px) {
[id="s-e0308caf-864a-49ae-8d23-1ea733dcb808"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-e0308caf-864a-49ae-8d23-1ea733dcb808"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-e0308caf-864a-49ae-8d23-1ea733dcb808"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (max-width: 767px){#s-a3361f53-e5d5-4bfd-b6de-89358bdedb1e {
  padding-top: 5px;
padding-bottom: 5px;
}
}
@media (min-width: 0px) {
[id="s-a3361f53-e5d5-4bfd-b6de-89358bdedb1e"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 768px) {
[id="s-a3361f53-e5d5-4bfd-b6de-89358bdedb1e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-a3361f53-e5d5-4bfd-b6de-89358bdedb1e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-a3361f53-e5d5-4bfd-b6de-89358bdedb1e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (max-width: 767px){#s-c9cb9092-6dbd-42fd-8879-b8bf1ab32ba9 {
  padding-top: 5px;
padding-bottom: 5px;
}
}
@media (min-width: 0px) {
[id="s-c9cb9092-6dbd-42fd-8879-b8bf1ab32ba9"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 768px) {
[id="s-c9cb9092-6dbd-42fd-8879-b8bf1ab32ba9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-c9cb9092-6dbd-42fd-8879-b8bf1ab32ba9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-c9cb9092-6dbd-42fd-8879-b8bf1ab32ba9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (max-width: 767px){#s-91d05718-f763-43d6-b375-424d438133aa {
  padding-top: 5px;
padding-bottom: 5px;
}
}
@media (min-width: 0px) {
[id="s-91d05718-f763-43d6-b375-424d438133aa"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 768px) {
[id="s-91d05718-f763-43d6-b375-424d438133aa"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-91d05718-f763-43d6-b375-424d438133aa"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-91d05718-f763-43d6-b375-424d438133aa"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-6f418ee9-4374-4c81-94ae-c688bd85d7d7 {
  padding-top: 3em;
min-height: 50px;
}
@media (max-width: 767px){#s-6f418ee9-4374-4c81-94ae-c688bd85d7d7 {
  padding-top: 0em;
}
}







#s-6f418ee9-4374-4c81-94ae-c688bd85d7d7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6f418ee9-4374-4c81-94ae-c688bd85d7d7.shg-box.shg-c {
  justify-content: center;
}

.tabletext1{
    font-size:16px;
   
    text-align: right;
    padding: 0px;
    color:black;
}
.tabletext2{
    font-size:25px;
   
    text-align: center;
    line-height: 24px;
    padding: 0px;
    color:black;
    font-weight: normal;
}
.linebold{
   font-weight: 600;
   padding-bottom:10px;
   padding-top:10px;
}
.tabletext3{
    font-size:16px;
   
    text-align: left;
    padding: 0px;
    color:black;
}
@media only screen and (max-width: 600px) {
    .tabletext1{
        font-size:13px;
    }
    .tabletext2{
        font-size:13px;
    }
    .tabletext3{
        font-size:13px;
    }
}
#s-ad9a6831-a621-4330-8857-467c023c5e9d {
  margin-top: 2em;
margin-bottom: 2em;
min-height: 50px;
}
@media (max-width: 767px){#s-ad9a6831-a621-4330-8857-467c023c5e9d {
  margin-left: 1em;
margin-right: 1em;
}
}







#s-ad9a6831-a621-4330-8857-467c023c5e9d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ad9a6831-a621-4330-8857-467c023c5e9d.shg-box.shg-c {
  justify-content: center;
}

#s-2934d802-1af0-4b26-ba8e-1f4caa3c508f {
  padding-bottom: 2em;
}
@media (max-width: 767px){#s-2934d802-1af0-4b26-ba8e-1f4caa3c508f {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-bottom: 0em;
padding-right: 0px;
}
}
@media (min-width: 0px) {
[id="s-2934d802-1af0-4b26-ba8e-1f4caa3c508f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2934d802-1af0-4b26-ba8e-1f4caa3c508f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-2934d802-1af0-4b26-ba8e-1f4caa3c508f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-2934d802-1af0-4b26-ba8e-1f4caa3c508f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-2934d802-1af0-4b26-ba8e-1f4caa3c508f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-2934d802-1af0-4b26-ba8e-1f4caa3c508f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-2934d802-1af0-4b26-ba8e-1f4caa3c508f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

#s-87892ccd-9e1b-4a93-86b2-e21dfe0bebc4 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-87892ccd-9e1b-4a93-86b2-e21dfe0bebc4 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-87892ccd-9e1b-4a93-86b2-e21dfe0bebc4 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-87892ccd-9e1b-4a93-86b2-e21dfe0bebc4 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-a92b197e-cef3-4cb0-8cff-0ed0c846b864 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-a92b197e-cef3-4cb0-8cff-0ed0c846b864 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a92b197e-cef3-4cb0-8cff-0ed0c846b864.shg-box.shg-c {
  justify-content: center;
}

#s-23494d75-4aea-4445-a89c-9ceedd71c21d {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-23494d75-4aea-4445-a89c-9ceedd71c21d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-23494d75-4aea-4445-a89c-9ceedd71c21d .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-23494d75-4aea-4445-a89c-9ceedd71c21d .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-4a6c7434-85d8-4669-9d75-84db38229a11 {
  padding-top: 2em;
padding-left: 5em;
padding-bottom: 2em;
padding-right: 5em;
min-height: 50px;
}
@media (max-width: 767px){#s-4a6c7434-85d8-4669-9d75-84db38229a11 {
  padding-top: 1.5em;
padding-left: 0.7em;
padding-bottom: 0em;
padding-right: 0.7em;
}
}







#s-4a6c7434-85d8-4669-9d75-84db38229a11 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4a6c7434-85d8-4669-9d75-84db38229a11.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-664a75cc-5a85-4d2a-a5b7-091e3ddfcb59"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-664a75cc-5a85-4d2a-a5b7-091e3ddfcb59"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-664a75cc-5a85-4d2a-a5b7-091e3ddfcb59"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-664a75cc-5a85-4d2a-a5b7-091e3ddfcb59"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c2fb7170-b293-44d3-bf9f-503e889cc249 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-c2fb7170-b293-44d3-bf9f-503e889cc249 {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c2fb7170-b293-44d3-bf9f-503e889cc249 {
  padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (max-width: 767px){#s-c2fb7170-b293-44d3-bf9f-503e889cc249 {
  padding-top: 3em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}







#s-c2fb7170-b293-44d3-bf9f-503e889cc249 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c2fb7170-b293-44d3-bf9f-503e889cc249.shg-box.shg-c {
  justify-content: flex-start;
}

#s-7d163c21-9690-49d5-8c52-e07b48b36d01 {
  padding-bottom: 2em;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  max-width: 1210px;
aspect-ratio: 1210/1036;
text-align: center;
}
@media (max-width: 767px){#s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  margin-top: 1.5em;
}
}
#s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  margin: 0 !important;
  overflow: visible;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8 img.shogun-image {
  /* Add background color handling */
  
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3dbe2db4-a861-454f-86e1-deec28690ce8.shogun-image {
    
    
    
    max-height: 1210px;
  }


.s-3dbe2db4-a861-454f-86e1-deec28690ce8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3dbe2db4-a861-454f-86e1-deec28690ce8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3dbe2db4-a861-454f-86e1-deec28690ce8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8.shogun-image {
  box-sizing: border-box;
}



.s-3dbe2db4-a861-454f-86e1-deec28690ce8 img.shogun-image {
  
}


@media (min-width: 1200px){#s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  margin: 0 !important;
  overflow: visible;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8 img.shogun-image {
  /* Add background color handling */
  
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3dbe2db4-a861-454f-86e1-deec28690ce8.shogun-image {
    
    
    
    max-height: 1210px;
  }


.s-3dbe2db4-a861-454f-86e1-deec28690ce8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3dbe2db4-a861-454f-86e1-deec28690ce8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3dbe2db4-a861-454f-86e1-deec28690ce8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8.shogun-image {
  box-sizing: border-box;
}



.s-3dbe2db4-a861-454f-86e1-deec28690ce8 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  margin: 0 !important;
  overflow: visible;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8 img.shogun-image {
  /* Add background color handling */
  
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3dbe2db4-a861-454f-86e1-deec28690ce8.shogun-image {
    
    
    
    max-height: 1210px;
  }


.s-3dbe2db4-a861-454f-86e1-deec28690ce8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3dbe2db4-a861-454f-86e1-deec28690ce8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3dbe2db4-a861-454f-86e1-deec28690ce8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8.shogun-image {
  box-sizing: border-box;
}



.s-3dbe2db4-a861-454f-86e1-deec28690ce8 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  margin: 0 !important;
  overflow: visible;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8 img.shogun-image {
  /* Add background color handling */
  
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3dbe2db4-a861-454f-86e1-deec28690ce8.shogun-image {
    
    
    
    max-height: 1210px;
  }


.s-3dbe2db4-a861-454f-86e1-deec28690ce8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3dbe2db4-a861-454f-86e1-deec28690ce8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3dbe2db4-a861-454f-86e1-deec28690ce8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8.shogun-image {
  box-sizing: border-box;
}



.s-3dbe2db4-a861-454f-86e1-deec28690ce8 img.shogun-image {
  
}


}@media (max-width: 767px){#s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  margin: 0 !important;
  overflow: visible;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 1.5em;
  
}

.shg-image-content-margin-container-s-3dbe2db4-a861-454f-86e1-deec28690ce8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8 img.shogun-image {
  /* Add background color handling */
  
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3dbe2db4-a861-454f-86e1-deec28690ce8.shogun-image {
    
    
    
    max-height: 1210px;
  }


.s-3dbe2db4-a861-454f-86e1-deec28690ce8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3dbe2db4-a861-454f-86e1-deec28690ce8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3dbe2db4-a861-454f-86e1-deec28690ce8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3dbe2db4-a861-454f-86e1-deec28690ce8.shogun-image {
  box-sizing: border-box;
}



.s-3dbe2db4-a861-454f-86e1-deec28690ce8 img.shogun-image {
  
}


}
#s-bdd29995-1b55-423e-9cca-8ba491f0a6d4 {
  margin-top: 2em;
}

@media (min-width: 0px) {
[id="s-bdd29995-1b55-423e-9cca-8ba491f0a6d4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bdd29995-1b55-423e-9cca-8ba491f0a6d4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bdd29995-1b55-423e-9cca-8ba491f0a6d4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bdd29995-1b55-423e-9cca-8ba491f0a6d4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-bdd29995-1b55-423e-9cca-8ba491f0a6d4"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  text-align: left;
}
@media (max-width: 767px){#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  margin-top: 1.5em;
}
}
#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shogun-image {
    
    
    
    
  }


.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shogun-image {
  box-sizing: border-box;
}



.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 img.shogun-image {
  
}


@media (min-width: 1200px){#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shogun-image {
    
    
    
    
  }


.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shogun-image {
  box-sizing: border-box;
}



.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shogun-image {
    
    
    
    
  }


.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shogun-image {
  box-sizing: border-box;
}



.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shogun-image {
    
    
    
    
  }


.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shogun-image {
  box-sizing: border-box;
}



.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 img.shogun-image {
  
}


}@media (max-width: 767px){#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 1.5em;
  
}

.shg-image-content-margin-container-s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shogun-image {
    
    
    
    
  }


.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7.shogun-image {
  box-sizing: border-box;
}



.s-ff6eb14e-877f-416c-bab3-d4f69e7c96c7 img.shogun-image {
  
}


}
#s-0e232d6a-58fa-4247-9d1c-6d97b269cd39 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-0e232d6a-58fa-4247-9d1c-6d97b269cd39 {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0e232d6a-58fa-4247-9d1c-6d97b269cd39 {
  padding-top: 3em;
padding-left: 3em;
padding-bottom: 0em;
padding-right: 3em;
}
}@media (max-width: 767px){#s-0e232d6a-58fa-4247-9d1c-6d97b269cd39 {
  padding-top: 3em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}







#s-0e232d6a-58fa-4247-9d1c-6d97b269cd39 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0e232d6a-58fa-4247-9d1c-6d97b269cd39.shg-box.shg-c {
  justify-content: flex-start;
}

#s-2814c4ad-0ac5-41d0-bda2-f82d97159cb3 {
  padding-top: 0em;
padding-bottom: 2em;
}

#s-cae6c5e6-1c87-4398-b512-c76040910f74 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-cae6c5e6-1c87-4398-b512-c76040910f74 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-cae6c5e6-1c87-4398-b512-c76040910f74 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-cae6c5e6-1c87-4398-b512-c76040910f74 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-19e3abcc-fd9f-4a0e-95ae-441bd013e4eb {
  padding-top: 2em;
padding-left: 5em;
padding-bottom: 2em;
padding-right: 5em;
min-height: 50px;
}
@media (max-width: 767px){#s-19e3abcc-fd9f-4a0e-95ae-441bd013e4eb {
  padding-top: 1.5em;
padding-left: 0.7em;
padding-bottom: 0em;
padding-right: 0.7em;
}
}







#s-19e3abcc-fd9f-4a0e-95ae-441bd013e4eb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-19e3abcc-fd9f-4a0e-95ae-441bd013e4eb.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-d0b29302-0cd7-46b5-aedb-752b98974618"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d0b29302-0cd7-46b5-aedb-752b98974618"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d0b29302-0cd7-46b5-aedb-752b98974618"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d0b29302-0cd7-46b5-aedb-752b98974618"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-42bb679f-4e62-489b-ae07-82d26e2994d5 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-42bb679f-4e62-489b-ae07-82d26e2994d5 {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-42bb679f-4e62-489b-ae07-82d26e2994d5 {
  padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (max-width: 767px){#s-42bb679f-4e62-489b-ae07-82d26e2994d5 {
  padding-top: 3em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}







#s-42bb679f-4e62-489b-ae07-82d26e2994d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-42bb679f-4e62-489b-ae07-82d26e2994d5.shg-box.shg-c {
  justify-content: flex-start;
}

#s-74e2e13b-3f4f-44f2-b8fc-67cadfbedfb1 {
  padding-bottom: 2em;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  text-align: center;
}
@media (max-width: 767px){#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  margin-top: 1.5em;
}
}
#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  margin: 0 !important;
  overflow: visible;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a img.shogun-image {
  /* Add background color handling */
  
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shogun-image {
    
    
    
    
  }


.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shogun-image {
  box-sizing: border-box;
}



.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a img.shogun-image {
  
}


@media (min-width: 1200px){#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  margin: 0 !important;
  overflow: visible;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a img.shogun-image {
  /* Add background color handling */
  
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shogun-image {
    
    
    
    
  }


.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shogun-image {
  box-sizing: border-box;
}



.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  margin: 0 !important;
  overflow: visible;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a img.shogun-image {
  /* Add background color handling */
  
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shogun-image {
    
    
    
    
  }


.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shogun-image {
  box-sizing: border-box;
}



.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  margin: 0 !important;
  overflow: visible;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a img.shogun-image {
  /* Add background color handling */
  
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shogun-image {
    
    
    
    
  }


.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shogun-image {
  box-sizing: border-box;
}



.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a img.shogun-image {
  
}


}@media (max-width: 767px){#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  margin: 0 !important;
  overflow: visible;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 1.5em;
  
}

.shg-image-content-margin-container-s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a img.shogun-image {
  /* Add background color handling */
  
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shogun-image {
    
    
    
    
  }


.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a .shogun-image-content {
  
    justify-content: center;
  
}

.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a.shogun-image {
  box-sizing: border-box;
}



.s-7d998cdb-3de3-4fdf-8874-8c69c74eea5a img.shogun-image {
  
}


}
#s-7e57bb8b-298a-4902-bf98-8b0a736ed856 {
  margin-top: 2em;
}

@media (min-width: 0px) {
[id="s-7e57bb8b-298a-4902-bf98-8b0a736ed856"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7e57bb8b-298a-4902-bf98-8b0a736ed856"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7e57bb8b-298a-4902-bf98-8b0a736ed856"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7e57bb8b-298a-4902-bf98-8b0a736ed856"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-7e57bb8b-298a-4902-bf98-8b0a736ed856"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  text-align: center;
}
@media (max-width: 767px){#s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  margin-top: 1.5em;
}
}
#s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  margin: 0 !important;
  overflow: visible;
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb img.shogun-image {
  /* Add background color handling */
  
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a9349be1-c7c7-4ae4-af77-170248c351cb.shogun-image {
    
    
    
    
  }


.s-a9349be1-c7c7-4ae4-af77-170248c351cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-a9349be1-c7c7-4ae4-af77-170248c351cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a9349be1-c7c7-4ae4-af77-170248c351cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb.shogun-image {
  box-sizing: border-box;
}



.s-a9349be1-c7c7-4ae4-af77-170248c351cb img.shogun-image {
  
}


@media (min-width: 1200px){#s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  margin: 0 !important;
  overflow: visible;
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb img.shogun-image {
  /* Add background color handling */
  
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a9349be1-c7c7-4ae4-af77-170248c351cb.shogun-image {
    
    
    
    
  }


.s-a9349be1-c7c7-4ae4-af77-170248c351cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-a9349be1-c7c7-4ae4-af77-170248c351cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a9349be1-c7c7-4ae4-af77-170248c351cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb.shogun-image {
  box-sizing: border-box;
}



.s-a9349be1-c7c7-4ae4-af77-170248c351cb img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  margin: 0 !important;
  overflow: visible;
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb img.shogun-image {
  /* Add background color handling */
  
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a9349be1-c7c7-4ae4-af77-170248c351cb.shogun-image {
    
    
    
    
  }


.s-a9349be1-c7c7-4ae4-af77-170248c351cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-a9349be1-c7c7-4ae4-af77-170248c351cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a9349be1-c7c7-4ae4-af77-170248c351cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb.shogun-image {
  box-sizing: border-box;
}



.s-a9349be1-c7c7-4ae4-af77-170248c351cb img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  margin: 0 !important;
  overflow: visible;
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb img.shogun-image {
  /* Add background color handling */
  
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a9349be1-c7c7-4ae4-af77-170248c351cb.shogun-image {
    
    
    
    
  }


.s-a9349be1-c7c7-4ae4-af77-170248c351cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-a9349be1-c7c7-4ae4-af77-170248c351cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a9349be1-c7c7-4ae4-af77-170248c351cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb.shogun-image {
  box-sizing: border-box;
}



.s-a9349be1-c7c7-4ae4-af77-170248c351cb img.shogun-image {
  
}


}@media (max-width: 767px){#s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  margin: 0 !important;
  overflow: visible;
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 1.5em;
  
}

.shg-image-content-margin-container-s-a9349be1-c7c7-4ae4-af77-170248c351cb {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb img.shogun-image {
  /* Add background color handling */
  
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a9349be1-c7c7-4ae4-af77-170248c351cb.shogun-image {
    
    
    
    
  }


.s-a9349be1-c7c7-4ae4-af77-170248c351cb .shogun-image-content {
  
    justify-content: center;
  
}

.s-a9349be1-c7c7-4ae4-af77-170248c351cb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a9349be1-c7c7-4ae4-af77-170248c351cb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a9349be1-c7c7-4ae4-af77-170248c351cb.shogun-image {
  box-sizing: border-box;
}



.s-a9349be1-c7c7-4ae4-af77-170248c351cb img.shogun-image {
  
}


}
#s-4861828f-3926-47bc-880f-5aaa9aecd258 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-4861828f-3926-47bc-880f-5aaa9aecd258 {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4861828f-3926-47bc-880f-5aaa9aecd258 {
  padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (max-width: 767px){#s-4861828f-3926-47bc-880f-5aaa9aecd258 {
  padding-top: 3em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}







#s-4861828f-3926-47bc-880f-5aaa9aecd258 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4861828f-3926-47bc-880f-5aaa9aecd258.shg-box.shg-c {
  justify-content: flex-start;
}

#s-63024b7f-585c-4a2e-b21f-a90a0bcf9a72 {
  padding-bottom: 1em;
}
@media (max-width: 767px){#s-63024b7f-585c-4a2e-b21f-a90a0bcf9a72 {
  padding-bottom: 0em;
}
}
#s-7f02436a-7708-489e-84d1-fc3d95a86cdb {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-7f02436a-7708-489e-84d1-fc3d95a86cdb {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-7f02436a-7708-489e-84d1-fc3d95a86cdb .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-7f02436a-7708-489e-84d1-fc3d95a86cdb .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-9fe78d4e-7a7c-4d49-b228-f3392d9ff5ef {
  padding-top: 2em;
padding-left: 5em;
padding-bottom: 2em;
padding-right: 5em;
min-height: 50px;
}
@media (max-width: 767px){#s-9fe78d4e-7a7c-4d49-b228-f3392d9ff5ef {
  padding-top: 1.5em;
padding-left: 0.7em;
padding-bottom: 0em;
padding-right: 0.7em;
}
}







#s-9fe78d4e-7a7c-4d49-b228-f3392d9ff5ef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9fe78d4e-7a7c-4d49-b228-f3392d9ff5ef.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-0757b226-1295-4e7c-8f61-020d0e0b8cd8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0757b226-1295-4e7c-8f61-020d0e0b8cd8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0757b226-1295-4e7c-8f61-020d0e0b8cd8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0757b226-1295-4e7c-8f61-020d0e0b8cd8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-665cc88f-c2b3-4a97-8fdd-d1eb8b6e1f55 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-665cc88f-c2b3-4a97-8fdd-d1eb8b6e1f55 {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-665cc88f-c2b3-4a97-8fdd-d1eb8b6e1f55 {
  padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (max-width: 767px){#s-665cc88f-c2b3-4a97-8fdd-d1eb8b6e1f55 {
  padding-top: 2em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}







#s-665cc88f-c2b3-4a97-8fdd-d1eb8b6e1f55 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-665cc88f-c2b3-4a97-8fdd-d1eb8b6e1f55.shg-box.shg-c {
  justify-content: flex-start;
}

#s-c78d3403-5c3a-41c1-96e5-3a6dff633713 {
  padding-bottom: 1em;
}
@media (max-width: 767px){#s-c78d3403-5c3a-41c1-96e5-3a6dff633713 {
  padding-bottom: 0em;
}
}
#s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (max-width: 767px){#s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  margin-top: 1.5em;
}
}
#s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  margin: 0 !important;
  overflow: visible;
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512 img.shogun-image {
  /* Add background color handling */
  
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-66be7594-be7a-45bd-a6ec-286e83a4b512.shogun-image {
    
    
    
    
  }


.s-66be7594-be7a-45bd-a6ec-286e83a4b512 .shogun-image-content {
  
    justify-content: center;
  
}

.s-66be7594-be7a-45bd-a6ec-286e83a4b512.shg-align-container {
  display: flex;
  justify-content: center
}

.s-66be7594-be7a-45bd-a6ec-286e83a4b512.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512.shogun-image {
  box-sizing: border-box;
}



.s-66be7594-be7a-45bd-a6ec-286e83a4b512 img.shogun-image {
  
}


@media (min-width: 1200px){#s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  margin: 0 !important;
  overflow: visible;
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512 img.shogun-image {
  /* Add background color handling */
  
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-66be7594-be7a-45bd-a6ec-286e83a4b512.shogun-image {
    
    
    
    
  }


.s-66be7594-be7a-45bd-a6ec-286e83a4b512 .shogun-image-content {
  
    justify-content: center;
  
}

.s-66be7594-be7a-45bd-a6ec-286e83a4b512.shg-align-container {
  display: flex;
  justify-content: center
}

.s-66be7594-be7a-45bd-a6ec-286e83a4b512.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512.shogun-image {
  box-sizing: border-box;
}



.s-66be7594-be7a-45bd-a6ec-286e83a4b512 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  margin: 0 !important;
  overflow: visible;
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512 img.shogun-image {
  /* Add background color handling */
  
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-66be7594-be7a-45bd-a6ec-286e83a4b512.shogun-image {
    
    
    
    
  }


.s-66be7594-be7a-45bd-a6ec-286e83a4b512 .shogun-image-content {
  
    justify-content: center;
  
}

.s-66be7594-be7a-45bd-a6ec-286e83a4b512.shg-align-container {
  display: flex;
  justify-content: center
}

.s-66be7594-be7a-45bd-a6ec-286e83a4b512.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512.shogun-image {
  box-sizing: border-box;
}



.s-66be7594-be7a-45bd-a6ec-286e83a4b512 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  margin: 0 !important;
  overflow: visible;
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512 img.shogun-image {
  /* Add background color handling */
  
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-66be7594-be7a-45bd-a6ec-286e83a4b512.shogun-image {
    
    
    
    
  }


.s-66be7594-be7a-45bd-a6ec-286e83a4b512 .shogun-image-content {
  
    justify-content: center;
  
}

.s-66be7594-be7a-45bd-a6ec-286e83a4b512.shg-align-container {
  display: flex;
  justify-content: center
}

.s-66be7594-be7a-45bd-a6ec-286e83a4b512.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512.shogun-image {
  box-sizing: border-box;
}



.s-66be7594-be7a-45bd-a6ec-286e83a4b512 img.shogun-image {
  
}


}@media (max-width: 767px){#s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  margin: 0 !important;
  overflow: visible;
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 1.5em;
  
}

.shg-image-content-margin-container-s-66be7594-be7a-45bd-a6ec-286e83a4b512 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512 img.shogun-image {
  /* Add background color handling */
  
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-66be7594-be7a-45bd-a6ec-286e83a4b512.shogun-image {
    
    
    
    
  }


.s-66be7594-be7a-45bd-a6ec-286e83a4b512 .shogun-image-content {
  
    justify-content: center;
  
}

.s-66be7594-be7a-45bd-a6ec-286e83a4b512.shg-align-container {
  display: flex;
  justify-content: center
}

.s-66be7594-be7a-45bd-a6ec-286e83a4b512.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-66be7594-be7a-45bd-a6ec-286e83a4b512.shogun-image {
  box-sizing: border-box;
}



.s-66be7594-be7a-45bd-a6ec-286e83a4b512 img.shogun-image {
  
}


}
#s-5c1cfb43-9d58-4f11-b27c-21ad21816711 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-5c1cfb43-9d58-4f11-b27c-21ad21816711 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-5c1cfb43-9d58-4f11-b27c-21ad21816711 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-5c1cfb43-9d58-4f11-b27c-21ad21816711 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-2eee45d6-566e-4f46-9202-e043347f28c6 {
  padding-top: 2em;
padding-left: 5em;
padding-bottom: 2em;
padding-right: 5em;
min-height: 50px;
}
@media (max-width: 767px){#s-2eee45d6-566e-4f46-9202-e043347f28c6 {
  padding-top: 1.5em;
padding-left: 0.7em;
padding-bottom: 0em;
padding-right: 0.7em;
}
}







#s-2eee45d6-566e-4f46-9202-e043347f28c6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2eee45d6-566e-4f46-9202-e043347f28c6.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-7ba3fe84-8b9a-4afe-884a-26dcca128ba5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7ba3fe84-8b9a-4afe-884a-26dcca128ba5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7ba3fe84-8b9a-4afe-884a-26dcca128ba5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7ba3fe84-8b9a-4afe-884a-26dcca128ba5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-aeebecbc-f977-423a-9e1e-d538bd1ae3e9 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-aeebecbc-f977-423a-9e1e-d538bd1ae3e9 {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-aeebecbc-f977-423a-9e1e-d538bd1ae3e9 {
  padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (max-width: 767px){#s-aeebecbc-f977-423a-9e1e-d538bd1ae3e9 {
  padding-top: 2em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}







#s-aeebecbc-f977-423a-9e1e-d538bd1ae3e9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-aeebecbc-f977-423a-9e1e-d538bd1ae3e9.shg-box.shg-c {
  justify-content: flex-start;
}

#s-e68384ff-7ff3-4306-b829-b273f75ffa4c {
  padding-bottom: 1em;
}
@media (max-width: 767px){#s-e68384ff-7ff3-4306-b829-b273f75ffa4c {
  padding-bottom: 0em;
}
}
#s-7cbad499-977b-4f79-9159-826dc13f2f24 {
  padding-bottom: 1em;
}
@media (max-width: 767px){#s-7cbad499-977b-4f79-9159-826dc13f2f24 {
  padding-bottom: 0em;
}
}
#s-7008c367-8734-4498-a3e9-8ad5a00c423b {
  padding-bottom: 1em;
}
@media (min-width: 1200px){#s-7008c367-8734-4498-a3e9-8ad5a00c423b {
  padding-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7008c367-8734-4498-a3e9-8ad5a00c423b {
  padding-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-7008c367-8734-4498-a3e9-8ad5a00c423b {
  padding-bottom: 0em;
}
}@media (max-width: 767px){#s-7008c367-8734-4498-a3e9-8ad5a00c423b {
  padding-bottom: 0em;
}
}
#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  margin-left: auto;
margin-right: auto;
max-width: 2459px;
aspect-ratio: 2459/1990;
text-align: center;
}
@media (max-width: 767px){#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  margin-top: 1.5em;
}
}
#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  margin: 0 !important;
  overflow: visible;
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 img.shogun-image {
  /* Add background color handling */
  
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shogun-image {
    
    
    
    max-height: 2459px;
  }


.s-a13b42f3-3672-4311-a0a8-70c1f103aef4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shogun-image {
  box-sizing: border-box;
}



.s-a13b42f3-3672-4311-a0a8-70c1f103aef4 img.shogun-image {
  
}


@media (min-width: 1200px){#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  margin: 0 !important;
  overflow: visible;
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 img.shogun-image {
  /* Add background color handling */
  
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shogun-image {
    
    
    
    max-height: 2459px;
  }


.s-a13b42f3-3672-4311-a0a8-70c1f103aef4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shogun-image {
  box-sizing: border-box;
}



.s-a13b42f3-3672-4311-a0a8-70c1f103aef4 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  margin: 0 !important;
  overflow: visible;
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 img.shogun-image {
  /* Add background color handling */
  
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shogun-image {
    
    
    
    max-height: 2459px;
  }


.s-a13b42f3-3672-4311-a0a8-70c1f103aef4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shogun-image {
  box-sizing: border-box;
}



.s-a13b42f3-3672-4311-a0a8-70c1f103aef4 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  margin: 0 !important;
  overflow: visible;
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 img.shogun-image {
  /* Add background color handling */
  
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shogun-image {
    
    
    
    max-height: 2459px;
  }


.s-a13b42f3-3672-4311-a0a8-70c1f103aef4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shogun-image {
  box-sizing: border-box;
}



.s-a13b42f3-3672-4311-a0a8-70c1f103aef4 img.shogun-image {
  
}


}@media (max-width: 767px){#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  margin: 0 !important;
  overflow: visible;
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 1.5em;
  
}

.shg-image-content-margin-container-s-a13b42f3-3672-4311-a0a8-70c1f103aef4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 img.shogun-image {
  /* Add background color handling */
  
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shogun-image {
    
    
    
    max-height: 2459px;
  }


.s-a13b42f3-3672-4311-a0a8-70c1f103aef4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a13b42f3-3672-4311-a0a8-70c1f103aef4.shogun-image {
  box-sizing: border-box;
}



.s-a13b42f3-3672-4311-a0a8-70c1f103aef4 img.shogun-image {
  
}


}
.autoplay-video-for-iq {
    width:100%;
}
.mobile-video-slot {
    display:none;
}
.radius-right-for-video{
    border-radius: 8px 50px 50px 8px;
}
@media screen and (max-width: 900px) and (min-width: 60px) {
.desktop-video-slot {
    display:none;
}
.mobile-video-slot {
    display:block;
}
}
#s-02ef9f46-9f4a-474b-bb51-5f19e444c32e {
  margin-top: 1em;
}

#s-e836c5c2-fd53-4a93-8add-bf7c69d58b87 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-e836c5c2-fd53-4a93-8add-bf7c69d58b87 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-e836c5c2-fd53-4a93-8add-bf7c69d58b87 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-e836c5c2-fd53-4a93-8add-bf7c69d58b87 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-b7f427f2-4b74-483f-b8ce-abf0bd1d20b7 {
  padding-top: 2em;
padding-left: 5em;
padding-bottom: 2em;
padding-right: 5em;
min-height: 50px;
}
@media (max-width: 767px){#s-b7f427f2-4b74-483f-b8ce-abf0bd1d20b7 {
  padding-top: 1.5em;
padding-left: 0.7em;
padding-bottom: 0em;
padding-right: 0.7em;
}
}







#s-b7f427f2-4b74-483f-b8ce-abf0bd1d20b7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b7f427f2-4b74-483f-b8ce-abf0bd1d20b7.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-471806b1-ab0d-4554-b9ee-35bfcc7b5c3b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-471806b1-ab0d-4554-b9ee-35bfcc7b5c3b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-471806b1-ab0d-4554-b9ee-35bfcc7b5c3b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-471806b1-ab0d-4554-b9ee-35bfcc7b5c3b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c79156fc-2ec3-4582-b94e-f3b9c7284062 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-c79156fc-2ec3-4582-b94e-f3b9c7284062 {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c79156fc-2ec3-4582-b94e-f3b9c7284062 {
  padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (max-width: 767px){#s-c79156fc-2ec3-4582-b94e-f3b9c7284062 {
  padding-top: 2em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}







#s-c79156fc-2ec3-4582-b94e-f3b9c7284062 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c79156fc-2ec3-4582-b94e-f3b9c7284062.shg-box.shg-c {
  justify-content: flex-start;
}

#s-88c13a76-21e9-46c6-8d19-193f487573f3 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-88c13a76-21e9-46c6-8d19-193f487573f3 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-88c13a76-21e9-46c6-8d19-193f487573f3 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-88c13a76-21e9-46c6-8d19-193f487573f3 .shogun-heading-component h4 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-2c6efb8a-d4e8-4b10-b755-bcadc0780dd0 {
  margin-top: 3%;
padding-bottom: 1em;
}
@media (max-width: 767px){#s-2c6efb8a-d4e8-4b10-b755-bcadc0780dd0 {
  padding-bottom: 0em;
}
}
#s-a3625886-8171-44ac-8137-502b5d8426ba {
  margin-left: auto;
margin-right: auto;
max-width: 950px;
aspect-ratio: 1264/1062;
text-align: center;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba {
  margin: 0 !important;
  overflow: visible;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a3625886-8171-44ac-8137-502b5d8426ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a3625886-8171-44ac-8137-502b5d8426ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
  /* Add background color handling */
  
}

#s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a3625886-8171-44ac-8137-502b5d8426ba .shg-image-content-wrapper {
      aspect-ratio: 1264/1062;
      min-width: 100%;
      height: auto;
    }

    #s-a3625886-8171-44ac-8137-502b5d8426ba .shogun-image-link {
      aspect-ratio: 1264/1062;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a3625886-8171-44ac-8137-502b5d8426ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 950px;
  }



  img.s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image {
    
    
    
    max-height: 950px;
  }


.s-a3625886-8171-44ac-8137-502b5d8426ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-a3625886-8171-44ac-8137-502b5d8426ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image {
  box-sizing: border-box;
}



.s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a3625886-8171-44ac-8137-502b5d8426ba {
      --shg-aspect-ratio: calc(1264/1062); 
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container {
      position: relative;
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 950px;
    }
  }

@media (min-width: 1200px){#s-a3625886-8171-44ac-8137-502b5d8426ba {
  margin: 0 !important;
  overflow: visible;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a3625886-8171-44ac-8137-502b5d8426ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a3625886-8171-44ac-8137-502b5d8426ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
  /* Add background color handling */
  
}

#s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a3625886-8171-44ac-8137-502b5d8426ba .shg-image-content-wrapper {
      aspect-ratio: 1264/1062;
      min-width: 100%;
      height: auto;
    }

    #s-a3625886-8171-44ac-8137-502b5d8426ba .shogun-image-link {
      aspect-ratio: 1264/1062;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a3625886-8171-44ac-8137-502b5d8426ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 950px;
  }



  img.s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image {
    
    
    
    max-height: 950px;
  }


.s-a3625886-8171-44ac-8137-502b5d8426ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-a3625886-8171-44ac-8137-502b5d8426ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image {
  box-sizing: border-box;
}



.s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a3625886-8171-44ac-8137-502b5d8426ba {
      --shg-aspect-ratio: calc(1264/1062); 
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container {
      position: relative;
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 950px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a3625886-8171-44ac-8137-502b5d8426ba {
  margin: 0 !important;
  overflow: visible;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a3625886-8171-44ac-8137-502b5d8426ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a3625886-8171-44ac-8137-502b5d8426ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
  /* Add background color handling */
  
}

#s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a3625886-8171-44ac-8137-502b5d8426ba .shg-image-content-wrapper {
      aspect-ratio: 1264/1062;
      min-width: 100%;
      height: auto;
    }

    #s-a3625886-8171-44ac-8137-502b5d8426ba .shogun-image-link {
      aspect-ratio: 1264/1062;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a3625886-8171-44ac-8137-502b5d8426ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 950px;
  }



  img.s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image {
    
    
    
    max-height: 950px;
  }


.s-a3625886-8171-44ac-8137-502b5d8426ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-a3625886-8171-44ac-8137-502b5d8426ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image {
  box-sizing: border-box;
}



.s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a3625886-8171-44ac-8137-502b5d8426ba {
      --shg-aspect-ratio: calc(1264/1062); 
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container {
      position: relative;
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 950px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a3625886-8171-44ac-8137-502b5d8426ba {
  margin: 0 !important;
  overflow: visible;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a3625886-8171-44ac-8137-502b5d8426ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a3625886-8171-44ac-8137-502b5d8426ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
  /* Add background color handling */
  
}

#s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a3625886-8171-44ac-8137-502b5d8426ba .shg-image-content-wrapper {
      aspect-ratio: 1264/1062;
      min-width: 100%;
      height: auto;
    }

    #s-a3625886-8171-44ac-8137-502b5d8426ba .shogun-image-link {
      aspect-ratio: 1264/1062;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a3625886-8171-44ac-8137-502b5d8426ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 950px;
  }



  img.s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image {
    
    
    
    max-height: 950px;
  }


.s-a3625886-8171-44ac-8137-502b5d8426ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-a3625886-8171-44ac-8137-502b5d8426ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image {
  box-sizing: border-box;
}



.s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a3625886-8171-44ac-8137-502b5d8426ba {
      --shg-aspect-ratio: calc(1264/1062); 
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container {
      position: relative;
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 950px;
    }
  }

}@media (max-width: 767px){#s-a3625886-8171-44ac-8137-502b5d8426ba {
  margin: 0 !important;
  overflow: visible;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a3625886-8171-44ac-8137-502b5d8426ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a3625886-8171-44ac-8137-502b5d8426ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
  /* Add background color handling */
  
}

#s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a3625886-8171-44ac-8137-502b5d8426ba .shg-image-content-wrapper {
      aspect-ratio: 1264/1062;
      min-width: 100%;
      height: auto;
    }

    #s-a3625886-8171-44ac-8137-502b5d8426ba .shogun-image-link {
      aspect-ratio: 1264/1062;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a3625886-8171-44ac-8137-502b5d8426ba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 950px;
  }



  img.s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image {
    
    
    
    max-height: 950px;
  }


.s-a3625886-8171-44ac-8137-502b5d8426ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-a3625886-8171-44ac-8137-502b5d8426ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image {
  box-sizing: border-box;
}



.s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a3625886-8171-44ac-8137-502b5d8426ba {
      --shg-aspect-ratio: calc(1264/1062); 
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container {
      position: relative;
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a3625886-8171-44ac-8137-502b5d8426ba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 950px;
    }
  }

}
#s-a586ed28-e42b-4521-860a-d67bb0d592f0 {
  margin-top: 2em;
}

@media (min-width: 0px) {
[id="s-a586ed28-e42b-4521-860a-d67bb0d592f0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a586ed28-e42b-4521-860a-d67bb0d592f0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a586ed28-e42b-4521-860a-d67bb0d592f0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a586ed28-e42b-4521-860a-d67bb0d592f0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-a586ed28-e42b-4521-860a-d67bb0d592f0"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (max-width: 767px){#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  margin-top: 1.5em;
}
}
#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  margin: 0 !important;
  overflow: visible;
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 img.shogun-image {
  /* Add background color handling */
  
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shogun-image {
    
    
    
    
  }


.s-42ac87ca-9fae-46ba-a803-32de4c5386d4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shogun-image {
  box-sizing: border-box;
}



.s-42ac87ca-9fae-46ba-a803-32de4c5386d4 img.shogun-image {
  
}


@media (min-width: 1200px){#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  margin: 0 !important;
  overflow: visible;
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 img.shogun-image {
  /* Add background color handling */
  
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shogun-image {
    
    
    
    
  }


.s-42ac87ca-9fae-46ba-a803-32de4c5386d4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shogun-image {
  box-sizing: border-box;
}



.s-42ac87ca-9fae-46ba-a803-32de4c5386d4 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  margin: 0 !important;
  overflow: visible;
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 img.shogun-image {
  /* Add background color handling */
  
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shogun-image {
    
    
    
    
  }


.s-42ac87ca-9fae-46ba-a803-32de4c5386d4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shogun-image {
  box-sizing: border-box;
}



.s-42ac87ca-9fae-46ba-a803-32de4c5386d4 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  margin: 0 !important;
  overflow: visible;
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 img.shogun-image {
  /* Add background color handling */
  
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shogun-image {
    
    
    
    
  }


.s-42ac87ca-9fae-46ba-a803-32de4c5386d4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shogun-image {
  box-sizing: border-box;
}



.s-42ac87ca-9fae-46ba-a803-32de4c5386d4 img.shogun-image {
  
}


}@media (max-width: 767px){#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  margin: 0 !important;
  overflow: visible;
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 1.5em;
  
}

.shg-image-content-margin-container-s-42ac87ca-9fae-46ba-a803-32de4c5386d4 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 img.shogun-image {
  /* Add background color handling */
  
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shogun-image {
    
    
    
    
  }


.s-42ac87ca-9fae-46ba-a803-32de4c5386d4 .shogun-image-content {
  
    justify-content: center;
  
}

.s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-42ac87ca-9fae-46ba-a803-32de4c5386d4.shogun-image {
  box-sizing: border-box;
}



.s-42ac87ca-9fae-46ba-a803-32de4c5386d4 img.shogun-image {
  
}


}
#s-59ddcc57-f7ab-4f52-afc6-be02fd2657cb {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-59ddcc57-f7ab-4f52-afc6-be02fd2657cb {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-59ddcc57-f7ab-4f52-afc6-be02fd2657cb {
  padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (max-width: 767px){#s-59ddcc57-f7ab-4f52-afc6-be02fd2657cb {
  padding-top: 2em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}







#s-59ddcc57-f7ab-4f52-afc6-be02fd2657cb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-59ddcc57-f7ab-4f52-afc6-be02fd2657cb.shg-box.shg-c {
  justify-content: flex-start;
}

#s-b5fcbd38-5815-42fd-aebe-5272e5505274 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-b5fcbd38-5815-42fd-aebe-5272e5505274 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-b5fcbd38-5815-42fd-aebe-5272e5505274 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-b5fcbd38-5815-42fd-aebe-5272e5505274 .shogun-heading-component h4 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-5ccd8cf5-4b03-419c-b60f-07b78c81fb61 {
  margin-top: 3%;
padding-bottom: 1em;
}
@media (max-width: 767px){#s-5ccd8cf5-4b03-419c-b60f-07b78c81fb61 {
  padding-bottom: 0em;
}
}
#s-ce73146a-684f-427e-8c0d-82eacb9e3066 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-ce73146a-684f-427e-8c0d-82eacb9e3066 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-ce73146a-684f-427e-8c0d-82eacb9e3066 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-ce73146a-684f-427e-8c0d-82eacb9e3066 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-d616c249-7539-4936-9be5-140f9bf0b16e {
  padding-top: 2em;
padding-left: 5em;
padding-bottom: 2em;
padding-right: 5em;
min-height: 50px;
}
@media (max-width: 767px){#s-d616c249-7539-4936-9be5-140f9bf0b16e {
  padding-top: 1.5em;
padding-left: 0.7em;
padding-bottom: 0em;
padding-right: 0.7em;
}
}







#s-d616c249-7539-4936-9be5-140f9bf0b16e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d616c249-7539-4936-9be5-140f9bf0b16e.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-e7f7c03b-a66a-48fc-a565-fac459db6ab0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e7f7c03b-a66a-48fc-a565-fac459db6ab0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e7f7c03b-a66a-48fc-a565-fac459db6ab0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e7f7c03b-a66a-48fc-a565-fac459db6ab0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-5ccba9cc-d167-485e-84e9-2578d651be8d {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-5ccba9cc-d167-485e-84e9-2578d651be8d {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5ccba9cc-d167-485e-84e9-2578d651be8d {
  padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (max-width: 767px){#s-5ccba9cc-d167-485e-84e9-2578d651be8d {
  padding-top: 2em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}







#s-5ccba9cc-d167-485e-84e9-2578d651be8d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5ccba9cc-d167-485e-84e9-2578d651be8d.shg-box.shg-c {
  justify-content: flex-start;
}

#s-2b0af74b-b6a5-4f3c-b420-08fac16b26ed {
  padding-bottom: 1em;
}
@media (max-width: 767px){#s-2b0af74b-b6a5-4f3c-b420-08fac16b26ed {
  padding-bottom: 0em;
}
}
#s-201c6a82-f1d4-4a00-bf49-517f5ff26f49 {
  min-height: 50px;
}
@media (max-width: 767px){#s-201c6a82-f1d4-4a00-bf49-517f5ff26f49 {
  margin-top: 1.5em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
}
}







#s-201c6a82-f1d4-4a00-bf49-517f5ff26f49 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-201c6a82-f1d4-4a00-bf49-517f5ff26f49.shg-box.shg-c {
  justify-content: center;
}

.fa-pause{
    position: absolute;
    z-index: 10;
    right: 0;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 15px;
    background: #6317ff;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    padding: 23px 24px;
    bottom: -8px;
    border: 1px solid #4718A7;
}
.fa-play{
    position: absolute;
    z-index: 10;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 15px;
    background:#6317ff;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    padding: 23px 24px;
    top: 50%;
    border: 1px solid #4718A7;
    left: 50%;
}


.radius-right{
    border-radius: 8px 50px 50px 8px;
}
.radius-left{
    border-radius: 50px 8px 8px 50px;
}
.radius-fourside{
    border-radius: 20px 20px 20px 20px;
}

.fa-play-circle,
.fa-circle-pause {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 50px;
    background: #6317ff;
    border-radius: 50%;
}

/*.fa-widget-iq{
    visibility:hidden !important;
}
.nb-shogun-video-container:hover .fa-widget-iq{
    visibility:visible !important;
}*/
.nb-shogun-Video-section
{
     display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.fa-play-circle:hover,
.fa-circle-pause:hover {
    cursor: pointer;
}

.nb-shogun-video-container
{
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;   
}
@media only screen and (max-width: 540px) {
    .Video-Div {
        width: 100%;
    }
}
.play_button_bottom_video{
    -o-object-fit: cover;
       object-fit: cover;
}
#s-d773fb75-6580-40dd-9921-f9e013e4210c {
  margin-top: 2em;
}

@media (min-width: 0px) {
[id="s-d773fb75-6580-40dd-9921-f9e013e4210c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d773fb75-6580-40dd-9921-f9e013e4210c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d773fb75-6580-40dd-9921-f9e013e4210c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d773fb75-6580-40dd-9921-f9e013e4210c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-d773fb75-6580-40dd-9921-f9e013e4210c"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (max-width: 767px){#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  margin-top: 1.5em;
}
}
#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  margin: 0 !important;
  overflow: visible;
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 img.shogun-image {
  /* Add background color handling */
  
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shogun-image {
    
    
    
    
  }


.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shogun-image {
  box-sizing: border-box;
}



.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 img.shogun-image {
  
}


@media (min-width: 1200px){#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  margin: 0 !important;
  overflow: visible;
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 img.shogun-image {
  /* Add background color handling */
  
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shogun-image {
    
    
    
    
  }


.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shogun-image {
  box-sizing: border-box;
}



.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  margin: 0 !important;
  overflow: visible;
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 img.shogun-image {
  /* Add background color handling */
  
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shogun-image {
    
    
    
    
  }


.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shogun-image {
  box-sizing: border-box;
}



.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  margin: 0 !important;
  overflow: visible;
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 img.shogun-image {
  /* Add background color handling */
  
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shogun-image {
    
    
    
    
  }


.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shogun-image {
  box-sizing: border-box;
}



.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 img.shogun-image {
  
}


}@media (max-width: 767px){#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  margin: 0 !important;
  overflow: visible;
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 1.5em;
  
}

.shg-image-content-margin-container-s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 img.shogun-image {
  /* Add background color handling */
  
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shogun-image {
    
    
    
    
  }


.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-328105bf-91bc-49e7-bff5-cee6dc67fbe8.shogun-image {
  box-sizing: border-box;
}



.s-328105bf-91bc-49e7-bff5-cee6dc67fbe8 img.shogun-image {
  
}


}
#s-b0ccb126-1819-47e6-bacf-4a9a91b9d54f {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-b0ccb126-1819-47e6-bacf-4a9a91b9d54f {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b0ccb126-1819-47e6-bacf-4a9a91b9d54f {
  padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (max-width: 767px){#s-b0ccb126-1819-47e6-bacf-4a9a91b9d54f {
  padding-top: 2em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}







#s-b0ccb126-1819-47e6-bacf-4a9a91b9d54f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b0ccb126-1819-47e6-bacf-4a9a91b9d54f.shg-box.shg-c {
  justify-content: flex-start;
}

#s-d5cac098-fd91-4125-adc9-3ecb911dc6a9 {
  padding-bottom: 1em;
}
@media (max-width: 767px){#s-d5cac098-fd91-4125-adc9-3ecb911dc6a9 {
  padding-bottom: 0em;
}
}
#s-7563c7aa-8849-4f7e-bf99-cdc1db57c91c {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-7563c7aa-8849-4f7e-bf99-cdc1db57c91c {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-7563c7aa-8849-4f7e-bf99-cdc1db57c91c .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-7563c7aa-8849-4f7e-bf99-cdc1db57c91c .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-a5825a26-f23b-48b2-b692-ce26e05a2e44 {
  padding-top: 2em;
padding-left: 5em;
padding-bottom: 2em;
padding-right: 5em;
min-height: 50px;
}
@media (max-width: 767px){#s-a5825a26-f23b-48b2-b692-ce26e05a2e44 {
  padding-top: 1.5em;
padding-left: 0.7em;
padding-bottom: 0em;
padding-right: 0.7em;
}
}







#s-a5825a26-f23b-48b2-b692-ce26e05a2e44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a5825a26-f23b-48b2-b692-ce26e05a2e44.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-cadb14e8-66e7-4083-a056-d36d766d7896"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cadb14e8-66e7-4083-a056-d36d766d7896"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cadb14e8-66e7-4083-a056-d36d766d7896"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cadb14e8-66e7-4083-a056-d36d766d7896"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1b3fa57b-15fc-4364-9df0-cf2b89e7372e {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-1b3fa57b-15fc-4364-9df0-cf2b89e7372e {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1b3fa57b-15fc-4364-9df0-cf2b89e7372e {
  padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (max-width: 767px){#s-1b3fa57b-15fc-4364-9df0-cf2b89e7372e {
  padding-top: 2em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}







#s-1b3fa57b-15fc-4364-9df0-cf2b89e7372e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1b3fa57b-15fc-4364-9df0-cf2b89e7372e.shg-box.shg-c {
  justify-content: flex-start;
}

#s-b69d3981-58ad-4e78-921c-2f2950b381b8 {
  padding-bottom: 1em;
}
@media (max-width: 767px){#s-b69d3981-58ad-4e78-921c-2f2950b381b8 {
  padding-bottom: 0em;
}
}
#s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  max-width: 1920px;
aspect-ratio: 1920/1280;
text-align: center;
}
@media (max-width: 767px){#s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  margin-top: 1.5em;
}
}
#s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  margin: 0 !important;
  overflow: visible;
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2 img.shogun-image {
  /* Add background color handling */
  
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-6f126833-ccea-467f-97a3-b747f10b5fb2.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-6f126833-ccea-467f-97a3-b747f10b5fb2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6f126833-ccea-467f-97a3-b747f10b5fb2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f126833-ccea-467f-97a3-b747f10b5fb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2.shogun-image {
  box-sizing: border-box;
}



.s-6f126833-ccea-467f-97a3-b747f10b5fb2 img.shogun-image {
  
}


@media (min-width: 1200px){#s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  margin: 0 !important;
  overflow: visible;
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2 img.shogun-image {
  /* Add background color handling */
  
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-6f126833-ccea-467f-97a3-b747f10b5fb2.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-6f126833-ccea-467f-97a3-b747f10b5fb2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6f126833-ccea-467f-97a3-b747f10b5fb2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f126833-ccea-467f-97a3-b747f10b5fb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2.shogun-image {
  box-sizing: border-box;
}



.s-6f126833-ccea-467f-97a3-b747f10b5fb2 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  margin: 0 !important;
  overflow: visible;
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2 img.shogun-image {
  /* Add background color handling */
  
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-6f126833-ccea-467f-97a3-b747f10b5fb2.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-6f126833-ccea-467f-97a3-b747f10b5fb2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6f126833-ccea-467f-97a3-b747f10b5fb2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f126833-ccea-467f-97a3-b747f10b5fb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2.shogun-image {
  box-sizing: border-box;
}



.s-6f126833-ccea-467f-97a3-b747f10b5fb2 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  margin: 0 !important;
  overflow: visible;
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2 img.shogun-image {
  /* Add background color handling */
  
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-6f126833-ccea-467f-97a3-b747f10b5fb2.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-6f126833-ccea-467f-97a3-b747f10b5fb2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6f126833-ccea-467f-97a3-b747f10b5fb2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f126833-ccea-467f-97a3-b747f10b5fb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2.shogun-image {
  box-sizing: border-box;
}



.s-6f126833-ccea-467f-97a3-b747f10b5fb2 img.shogun-image {
  
}


}@media (max-width: 767px){#s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  margin: 0 !important;
  overflow: visible;
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 1.5em;
  
}

.shg-image-content-margin-container-s-6f126833-ccea-467f-97a3-b747f10b5fb2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2 img.shogun-image {
  /* Add background color handling */
  
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-6f126833-ccea-467f-97a3-b747f10b5fb2.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-6f126833-ccea-467f-97a3-b747f10b5fb2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6f126833-ccea-467f-97a3-b747f10b5fb2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6f126833-ccea-467f-97a3-b747f10b5fb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6f126833-ccea-467f-97a3-b747f10b5fb2.shogun-image {
  box-sizing: border-box;
}



.s-6f126833-ccea-467f-97a3-b747f10b5fb2 img.shogun-image {
  
}


}
#s-1addcf5e-ec0d-46f2-a844-38c3ea3b2418 {
  margin-top: 2em;
}

@media (min-width: 0px) {
[id="s-1addcf5e-ec0d-46f2-a844-38c3ea3b2418"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1addcf5e-ec0d-46f2-a844-38c3ea3b2418"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1addcf5e-ec0d-46f2-a844-38c3ea3b2418"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1addcf5e-ec0d-46f2-a844-38c3ea3b2418"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-1addcf5e-ec0d-46f2-a844-38c3ea3b2418"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  text-align: center;
}
@media (max-width: 767px){#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  margin-top: 1.5em;
}
}
#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  margin: 0 !important;
  overflow: visible;
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f img.shogun-image {
  /* Add background color handling */
  
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shogun-image {
    
    
    
    
  }


.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f .shogun-image-content {
  
    justify-content: center;
  
}

.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shogun-image {
  box-sizing: border-box;
}



.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f img.shogun-image {
  
}


@media (min-width: 1200px){#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  margin: 0 !important;
  overflow: visible;
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f img.shogun-image {
  /* Add background color handling */
  
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shogun-image {
    
    
    
    
  }


.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f .shogun-image-content {
  
    justify-content: center;
  
}

.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shogun-image {
  box-sizing: border-box;
}



.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  margin: 0 !important;
  overflow: visible;
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f img.shogun-image {
  /* Add background color handling */
  
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shogun-image {
    
    
    
    
  }


.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f .shogun-image-content {
  
    justify-content: center;
  
}

.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shogun-image {
  box-sizing: border-box;
}



.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  margin: 0 !important;
  overflow: visible;
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f img.shogun-image {
  /* Add background color handling */
  
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shogun-image {
    
    
    
    
  }


.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f .shogun-image-content {
  
    justify-content: center;
  
}

.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shogun-image {
  box-sizing: border-box;
}



.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f img.shogun-image {
  
}


}@media (max-width: 767px){#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  margin: 0 !important;
  overflow: visible;
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: 1.5em;
  
}

.shg-image-content-margin-container-s-80448970-7515-4ae4-ba7f-ed3b577a3c3f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f img.shogun-image {
  /* Add background color handling */
  
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shogun-image {
    
    
    
    
  }


.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f .shogun-image-content {
  
    justify-content: center;
  
}

.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80448970-7515-4ae4-ba7f-ed3b577a3c3f.shogun-image {
  box-sizing: border-box;
}



.s-80448970-7515-4ae4-ba7f-ed3b577a3c3f img.shogun-image {
  
}


}
#s-91864e9e-1b65-48bc-8ee1-78b44dfd0c47 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-91864e9e-1b65-48bc-8ee1-78b44dfd0c47 {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-91864e9e-1b65-48bc-8ee1-78b44dfd0c47 {
  padding-top: 3em;
padding-left: 3em;
padding-bottom: 0em;
padding-right: 3em;
}
}@media (max-width: 767px){#s-91864e9e-1b65-48bc-8ee1-78b44dfd0c47 {
  padding-top: 2em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}







#s-91864e9e-1b65-48bc-8ee1-78b44dfd0c47 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-91864e9e-1b65-48bc-8ee1-78b44dfd0c47.shg-box.shg-c {
  justify-content: flex-start;
}

#s-db308030-8ad0-43b0-9864-d189e7882db9 {
  padding-bottom: 1em;
}
@media (max-width: 767px){#s-db308030-8ad0-43b0-9864-d189e7882db9 {
  padding-bottom: 0em;
}
}
#s-bfe05173-8d76-4d5f-9877-0ff9a213a71e {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-bfe05173-8d76-4d5f-9877-0ff9a213a71e {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-bfe05173-8d76-4d5f-9877-0ff9a213a71e .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-bfe05173-8d76-4d5f-9877-0ff9a213a71e .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-d91dc056-77af-4fdc-b885-cdef141d8bca {
  padding-top: 2em;
padding-left: 5em;
padding-bottom: 2em;
padding-right: 5em;
min-height: 50px;
}
@media (max-width: 767px){#s-d91dc056-77af-4fdc-b885-cdef141d8bca {
  padding-top: 1.5em;
padding-left: 0.7em;
padding-bottom: 0em;
padding-right: 0.7em;
}
}







#s-d91dc056-77af-4fdc-b885-cdef141d8bca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d91dc056-77af-4fdc-b885-cdef141d8bca.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-e1da93ac-3de0-4574-ba99-5a43c68f5783"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e1da93ac-3de0-4574-ba99-5a43c68f5783"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e1da93ac-3de0-4574-ba99-5a43c68f5783"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e1da93ac-3de0-4574-ba99-5a43c68f5783"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-7fc34935-27f9-4858-9278-60fe6a04e07e {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-7fc34935-27f9-4858-9278-60fe6a04e07e {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7fc34935-27f9-4858-9278-60fe6a04e07e {
  padding-top: 4em;
padding-left: 4em;
padding-bottom: 0em;
padding-right: 4em;
}
}@media (max-width: 767px){#s-7fc34935-27f9-4858-9278-60fe6a04e07e {
  padding-top: 2em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
}
}







#s-7fc34935-27f9-4858-9278-60fe6a04e07e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7fc34935-27f9-4858-9278-60fe6a04e07e.shg-box.shg-c {
  justify-content: flex-start;
}

#s-cb835052-435d-46d6-9263-93f8ab673115 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-cb835052-435d-46d6-9263-93f8ab673115 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-cb835052-435d-46d6-9263-93f8ab673115 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-cb835052-435d-46d6-9263-93f8ab673115 .shogun-heading-component h4 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-ff4bfe8d-f9c0-4f8f-859c-0ea27cd9dccb {
  margin-top: 3%;
padding-bottom: 1em;
}
@media (max-width: 767px){#s-ff4bfe8d-f9c0-4f8f-859c-0ea27cd9dccb {
  padding-bottom: 0em;
}
}
#s-25a41457-2fd0-4514-8b59-d337cb7db4e5 {
  min-height: 50px;
}
@media (max-width: 767px){#s-25a41457-2fd0-4514-8b59-d337cb7db4e5 {
  margin-top: 1.5em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
}
}







#s-25a41457-2fd0-4514-8b59-d337cb7db4e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-25a41457-2fd0-4514-8b59-d337cb7db4e5.shg-box.shg-c {
  justify-content: center;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  text-align: center;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shogun-image {
    
    
    
    
  }


.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shogun-image {
  box-sizing: border-box;
}



.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 img.shogun-image {
  
}


@media (min-width: 1200px){#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shogun-image {
    
    
    
    
  }


.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shogun-image {
  box-sizing: border-box;
}



.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shogun-image {
    
    
    
    
  }


.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shogun-image {
  box-sizing: border-box;
}



.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shogun-image {
    
    
    
    
  }


.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shogun-image {
  box-sizing: border-box;
}



.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 img.shogun-image {
  
}


}@media (max-width: 767px){#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  margin: 0 !important;
  overflow: visible;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 img.shogun-image {
  /* Add background color handling */
  
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shogun-image {
    
    
    
    
  }


.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9.shogun-image {
  box-sizing: border-box;
}



.s-fe58af4e-e8b3-4435-9038-5fe277a3b9b9 img.shogun-image {
  
}


}
#s-2d770da4-dedf-4e62-9811-cf6efbbf45a7 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-2d770da4-dedf-4e62-9811-cf6efbbf45a7 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-2d770da4-dedf-4e62-9811-cf6efbbf45a7 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-2d770da4-dedf-4e62-9811-cf6efbbf45a7 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-39ddc33c-d7b2-4dd5-8cf1-9025d9c12b4f {
  padding-top: 2em;
padding-left: 5em;
padding-bottom: 2em;
padding-right: 5em;
min-height: 50px;
}
@media (min-width: 1200px){#s-39ddc33c-d7b2-4dd5-8cf1-9025d9c12b4f {
  padding-top: 2em;
padding-bottom: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-39ddc33c-d7b2-4dd5-8cf1-9025d9c12b4f {
  padding-top: 2em;
padding-bottom: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-39ddc33c-d7b2-4dd5-8cf1-9025d9c12b4f {
  padding-top: 1em;
}
}@media (max-width: 767px){#s-39ddc33c-d7b2-4dd5-8cf1-9025d9c12b4f {
  padding-top: 1.5em;
padding-left: 0.7em;
padding-bottom: 0em;
padding-right: 0.7em;
}
}







#s-39ddc33c-d7b2-4dd5-8cf1-9025d9c12b4f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-39ddc33c-d7b2-4dd5-8cf1-9025d9c12b4f.shg-box.shg-c {
  justify-content: center;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  max-width: 1920px;
aspect-ratio: 16/9;
text-align: center;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  margin: 0 !important;
  overflow: visible;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
  /* Add background color handling */
  
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-color: #000;
  border-style: solid;
  border-radius: 25px;

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shogun-image-content {
  
    justify-content: center;
  
}

.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image {
  box-sizing: border-box;
}



.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container {
      position: relative;
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

@media (min-width: 1200px){#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  margin: 0 !important;
  overflow: visible;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
  /* Add background color handling */
  
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shogun-image-content {
  
    justify-content: center;
  
}

.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image {
  box-sizing: border-box;
}



.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container {
      position: relative;
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  margin: 0 !important;
  overflow: visible;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
  /* Add background color handling */
  
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shogun-image-content {
  
    justify-content: center;
  
}

.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image {
  box-sizing: border-box;
}



.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container {
      position: relative;
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  margin: 0 !important;
  overflow: visible;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
  /* Add background color handling */
  
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shogun-image-content {
  
    justify-content: center;
  
}

.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image {
  box-sizing: border-box;
}



.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container {
      position: relative;
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}@media (max-width: 767px){#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  margin: 0 !important;
  overflow: visible;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
  /* Add background color handling */
  
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1920px;
  }



  img.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image {
    
    
    
    max-height: 1920px;
  }


.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c .shogun-image-content {
  
    justify-content: center;
  
}

.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image {
  box-sizing: border-box;
}



.s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container {
      position: relative;
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e092d589-917c-4bbe-b9d4-f3abd24d7d8c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1920px;
    }
  }

}
@media (min-width: 1200px){#s-1b94478a-fc84-4da1-90f3-253acb140e3c {
  padding-top: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1b94478a-fc84-4da1-90f3-253acb140e3c {
  padding-top: 2em;
}
}@media (max-width: 767px){#s-1b94478a-fc84-4da1-90f3-253acb140e3c {
  padding-top: 1em;
padding-bottom: 0em;
}
}
#s-751d6222-ef9d-4bfd-a198-81c05cadb2d1 {
  padding-left: 15em;
padding-right: 15em;
}
@media (max-width: 767px){#s-751d6222-ef9d-4bfd-a198-81c05cadb2d1 {
  padding-left: 3em;
padding-right: 3em;
}
}
#s-9325dbb1-8661-436a-964a-592ef6976c88 {
  text-align: left;
}

#s-3f3e5532-e128-44b3-a7b4-840000d1b438 {
  margin-top: 2em;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-3f3e5532-e128-44b3-a7b4-840000d1b438 {
  margin-top: 1em;
}
}







#s-3f3e5532-e128-44b3-a7b4-840000d1b438 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3f3e5532-e128-44b3-a7b4-840000d1b438.shg-box.shg-c {
  justify-content: center;
}

#s-29504862-04f2-4761-91bf-bb3ff0e04fa4 {
  padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 250px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-29504862-04f2-4761-91bf-bb3ff0e04fa4 {
  padding-left: 0%;
padding-right: 0%;
}
}@media (max-width: 767px){#s-29504862-04f2-4761-91bf-bb3ff0e04fa4 {
  margin-top: 3em;
margin-bottom: 1em;
padding-left: 0.5em;
padding-bottom: 1em;
padding-right: 0.5em;
}
}







#s-29504862-04f2-4761-91bf-bb3ff0e04fa4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-29504862-04f2-4761-91bf-bb3ff0e04fa4.shg-box.shg-c {
  justify-content: center;
}

#s-d60b4929-23eb-4291-9fd7-19877c8e5c08 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-d60b4929-23eb-4291-9fd7-19877c8e5c08 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-d60b4929-23eb-4291-9fd7-19877c8e5c08 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-d60b4929-23eb-4291-9fd7-19877c8e5c08 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-3e5f048e-aeee-477e-8af7-f1a2aeb19786 {
  margin-top: 1%;
padding-bottom: 3em;
}
@media (max-width: 767px){#s-3e5f048e-aeee-477e-8af7-f1a2aeb19786 {
  padding-bottom: 1em;
}
}
#s-6db3ebf8-256a-4fc5-9a36-e8f10e4569e9 {
  margin-left: 6em;
margin-right: 6em;
padding-left: 0em;
padding-right: 0em;
min-height: 50px;
}
@media (max-width: 767px){#s-6db3ebf8-256a-4fc5-9a36-e8f10e4569e9 {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}







#s-6db3ebf8-256a-4fc5-9a36-e8f10e4569e9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6db3ebf8-256a-4fc5-9a36-e8f10e4569e9.shg-box.shg-c {
  justify-content: center;
}

#s-77127504-c564-4f1f-8550-247f730c483b {
  margin-left: 0em;
margin-right: 0em;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 0px;
}

#s-92b77aab-c6f4-4b6f-8bec-56d365182117 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

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

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

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

/* <-- User Content Animations */

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

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

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

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{animation-duration:1s;animation-duration:var(--animate-duration);animation-fill-mode:both}.animate__animated.animate__infinite{animation-iteration-count:infinite}.animate__animated.animate__repeat-1{animation-iteration-count:1;animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{animation-iteration-count:2;animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{animation-iteration-count:3;animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{animation-delay:1s;animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{animation-delay:2s;animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{animation-delay:3s;animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{animation-delay:4s;animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{animation-delay:5s;animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{animation-duration:.5s;animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{animation-duration:.8s;animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{animation-duration:2s;animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{animation-duration:3s;animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{animation-duration:1ms!important;transition-duration:1ms!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@keyframes bounce{0%,20%,53%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0) scaleY(.95)}90%{transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{animation-name:bounce;transform-origin:center bottom}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{animation-name:flash}@keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scaleX(1)}}.animate__pulse{animation-name:pulse;animation-timing-function:ease-in-out}@keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}to{transform:scaleX(1)}}.animate__rubberBand{animation-name:rubberBand}@keyframes shakeX{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}.animate__shakeX{animation-name:shakeX}@keyframes shakeY{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(0,-10px,0)}20%,40%,60%,80%{transform:translate3d(0,10px,0)}}.animate__shakeY{animation-name:shakeY}@keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}.animate__headShake{animation-timing-function:ease-in-out;animation-name:headShake}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}.animate__swing{transform-origin:top center;animation-name:swing}@keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{transform:scaleX(1)}}.animate__tada{animation-name:tada}@keyframes wobble{0%{transform:translateZ(0)}15%{transform:translate3d(-25%,0,0) rotate(-5deg)}30%{transform:translate3d(20%,0,0) rotate(3deg)}45%{transform:translate3d(-15%,0,0) rotate(-3deg)}60%{transform:translate3d(10%,0,0) rotate(2deg)}75%{transform:translate3d(-5%,0,0) rotate(-1deg)}to{transform:translateZ(0)}}.animate__wobble{animation-name:wobble}@keyframes jello{0%,11.1%,to{transform:translateZ(0)}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{animation-name:jello;transform-origin:center}@keyframes heartBeat{0%{transform:scale(1)}14%{transform:scale(1.3)}28%{transform:scale(1)}42%{transform:scale(1.3)}70%{transform:scale(1)}}.animate__heartBeat{animation-name:heartBeat;animation-duration:1.3s;animation-duration:calc(var(--animate-duration)*1.3);animation-timing-function:ease-in-out}@keyframes backInDown{0%{transform:translateY(-1200px) scale(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInDown{animation-name:backInDown}@keyframes backInLeft{0%{transform:translateX(-2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInLeft{animation-name:backInLeft}@keyframes backInRight{0%{transform:translateX(2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInRight{animation-name:backInRight}@keyframes backInUp{0%{transform:translateY(1200px) scale(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInUp{animation-name:backInUp}@keyframes backOutDown{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(.7);opacity:.7}to{transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{animation-name:backOutDown}@keyframes backOutLeft{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{animation-name:backOutLeft}@keyframes backOutRight{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{animation-name:backOutRight}@keyframes backOutUp{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(.7);opacity:.7}to{transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{animation-name:backOutUp}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.animate__bounceIn{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceIn}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;transform:translate3d(0,25px,0) scaleY(.9)}75%{transform:translate3d(0,-10px,0) scaleY(.95)}90%{transform:translate3d(0,5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(25px,0,0) scaleX(1)}75%{transform:translate3d(-10px,0,0) scaleX(.98)}90%{transform:translate3d(5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(-25px,0,0) scaleX(1)}75%{transform:translate3d(10px,0,0) scaleX(.98)}90%{transform:translate3d(-5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInRight{animation-name:bounceInRight}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}75%{transform:translate3d(0,10px,0) scaleY(.95)}90%{transform:translate3d(0,-5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInUp{animation-name:bounceInUp}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.animate__bounceOut{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceOut}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{animation-name:bounceOutDown}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{animation-name:bounceOutLeft}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{animation-name:bounceOutRight}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{animation-name:bounceOutUp}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{animation-name:fadeIn}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDown{animation-name:fadeInDown}@keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDownBig{animation-name:fadeInDownBig}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeftBig{animation-name:fadeInLeftBig}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRight{animation-name:fadeInRight}@keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRightBig{animation-name:fadeInRightBig}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUp{animation-name:fadeInUp}@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUpBig{animation-name:fadeInUpBig}@keyframes fadeInTopLeft{0%{opacity:0;transform:translate3d(-100%,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopLeft{animation-name:fadeInTopLeft}@keyframes fadeInTopRight{0%{opacity:0;transform:translate3d(100%,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopRight{animation-name:fadeInTopRight}@keyframes fadeInBottomLeft{0%{opacity:0;transform:translate3d(-100%,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomLeft{animation-name:fadeInBottomLeft}@keyframes fadeInBottomRight{0%{opacity:0;transform:translate3d(100%,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomRight{animation-name:fadeInBottomRight}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{animation-name:fadeOut}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}.animate__fadeOutDown{animation-name:fadeOutDown}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{animation-name:fadeOutDownBig}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{animation-name:fadeOutLeft}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{animation-name:fadeOutLeftBig}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}.animate__fadeOutRight{animation-name:fadeOutRight}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{animation-name:fadeOutRightBig}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{animation-name:fadeOutUp}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{animation-name:fadeOutUpBig}@keyframes fadeOutTopLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{animation-name:fadeOutTopLeft}@keyframes fadeOutTopRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{animation-name:fadeOutTopRight}@keyframes fadeOutBottomRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{animation-name:fadeOutBottomRight}@keyframes fadeOutBottomLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{animation-name:fadeOutBottomLeft}@keyframes flip{0%{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);animation-timing-function:ease-out}40%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);animation-timing-function:ease-in}to{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);animation-timing-function:ease-in}}.animate__animated.animate__flip{backface-visibility:visible;animation-name:flip}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.animate__flipInX{backface-visibility:visible!important;animation-name:flipInX}@keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.animate__flipInY{backface-visibility:visible!important;animation-name:flipInY}@keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:flipOutX;backface-visibility:visible!important}@keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);backface-visibility:visible!important;animation-name:flipOutY}@keyframes lightSpeedInRight{0%{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInRight{animation-name:lightSpeedInRight;animation-timing-function:ease-out}@keyframes lightSpeedInLeft{0%{transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{transform:skewX(-20deg);opacity:1}80%{transform:skewX(5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInLeft{animation-name:lightSpeedInLeft;animation-timing-function:ease-out}@keyframes lightSpeedOutRight{0%{opacity:1}to{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{animation-name:lightSpeedOutRight;animation-timing-function:ease-in}@keyframes lightSpeedOutLeft{0%{opacity:1}to{transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{animation-name:lightSpeedOutLeft;animation-timing-function:ease-in}@keyframes rotateIn{0%{transform:rotate(-200deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateIn{animation-name:rotateIn;transform-origin:center}@keyframes rotateInDownLeft{0%{transform:rotate(-45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{animation-name:rotateInDownLeft;transform-origin:left bottom}@keyframes rotateInDownRight{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{animation-name:rotateInDownRight;transform-origin:right bottom}@keyframes rotateInUpLeft{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{animation-name:rotateInUpLeft;transform-origin:left bottom}@keyframes rotateInUpRight{0%{transform:rotate(-90deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{animation-name:rotateInUpRight;transform-origin:right bottom}@keyframes rotateOut{0%{opacity:1}to{transform:rotate(200deg);opacity:0}}.animate__rotateOut{animation-name:rotateOut;transform-origin:center}@keyframes rotateOutDownLeft{0%{opacity:1}to{transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{animation-name:rotateOutDownLeft;transform-origin:left bottom}@keyframes rotateOutDownRight{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{animation-name:rotateOutDownRight;transform-origin:right bottom}@keyframes rotateOutUpLeft{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{animation-name:rotateOutUpLeft;transform-origin:left bottom}@keyframes rotateOutUpRight{0%{opacity:1}to{transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{animation-name:rotateOutUpRight;transform-origin:right bottom}@keyframes hinge{0%{animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{animation-duration:2s;animation-duration:calc(var(--animate-duration)*2);animation-name:hinge;transform-origin:top left}@keyframes jackInTheBox{0%{opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}.animate__jackInTheBox{animation-name:jackInTheBox}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}.animate__rollIn{animation-name:rollIn}@keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{animation-name:rollOut}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{animation-name:zoomIn}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{animation-name:zoomInDown}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{animation-name:zoomInLeft}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{animation-name:zoomInRight}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{animation-name:zoomInUp}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{animation-name:zoomOut}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{animation-name:zoomOutDown;transform-origin:center bottom}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{animation-name:zoomOutLeft;transform-origin:left center}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{animation-name:zoomOutRight;transform-origin:right center}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{animation-name:zoomOutUp;transform-origin:center bottom}@keyframes slideInDown{0%{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInDown{animation-name:slideInDown}@keyframes slideInLeft{0%{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{0%{transform:translate3d(100%,0,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInRight{animation-name:slideInRight}@keyframes slideInUp{0%{transform:translate3d(0,100%,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInUp{animation-name:slideInUp}@keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}.animate__slideOutDown{animation-name:slideOutDown}@keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{animation-name:slideOutLeft}@keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%,0,0)}}.animate__slideOutRight{animation-name:slideOutRight}@keyframes slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-100%,0)}}.animate__slideOutUp{animation-name:slideOutUp}