.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-641da39c-c161-486f-a6ac-096b40f2b2d8 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}








#s-641da39c-c161-486f-a6ac-096b40f2b2d8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-641da39c-c161-486f-a6ac-096b40f2b2d8.shg-box.shg-c {
  justify-content: center;
}

#s-c2111f8c-4cf7-41fe-bb2b-0cf5eed72963 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
background-color: rgba(244, 244, 244, 0);
}








#s-c2111f8c-4cf7-41fe-bb2b-0cf5eed72963 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c2111f8c-4cf7-41fe-bb2b-0cf5eed72963.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-f522137b-2962-43fe-9b40-0a139b29840d {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-f522137b-2962-43fe-9b40-0a139b29840d .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-f522137b-2962-43fe-9b40-0a139b29840d .shg-sld-nav-button.shg-sld-left,
#s-f522137b-2962-43fe-9b40-0a139b29840d .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

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

.shg-inner-inline-image {
  position: relative;
  overflow: hidden;
  display: block;
}

.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-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-imageV3-content {
  text-align: initial;
}

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

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

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

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

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

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

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

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

.shg-inner-inline-image .shogun-image.hover~* {
  z-index: 1;
}
#s-48decc3c-710b-4d98-9ec1-dc05095c048b {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

.shg-image-margin-container-s-48decc3c-710b-4d98-9ec1-dc05095c048b {
  margin-left: auto;
  margin-right: auto;
  
  
  /* Add padding handling */
  
  
  
  
}

#s-48decc3c-710b-4d98-9ec1-dc05095c048b {
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  width: 100%;
  /* Remove any padding here since it's now on the container */
}

#s-48decc3c-710b-4d98-9ec1-dc05095c048b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-48decc3c-710b-4d98-9ec1-dc05095c048b .shogun-image-content {
  
    align-items: center;
  
}

.s-48decc3c-710b-4d98-9ec1-dc05095c048b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48decc3c-710b-4d98-9ec1-dc05095c048b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48decc3c-710b-4d98-9ec1-dc05095c048b.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){.shg-image-margin-container-s-48decc3c-710b-4d98-9ec1-dc05095c048b {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-48decc3c-710b-4d98-9ec1-dc05095c048b {
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  width: 100%;
  /* Remove any padding here since it's now on the container */
}

#s-48decc3c-710b-4d98-9ec1-dc05095c048b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-48decc3c-710b-4d98-9ec1-dc05095c048b .shogun-image-content {
  
    align-items: center;
  
}

.s-48decc3c-710b-4d98-9ec1-dc05095c048b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48decc3c-710b-4d98-9ec1-dc05095c048b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48decc3c-710b-4d98-9ec1-dc05095c048b.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 992px) and (max-width: 1199px){.shg-image-margin-container-s-48decc3c-710b-4d98-9ec1-dc05095c048b {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-48decc3c-710b-4d98-9ec1-dc05095c048b {
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  width: 100%;
  /* Remove any padding here since it's now on the container */
}

#s-48decc3c-710b-4d98-9ec1-dc05095c048b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-48decc3c-710b-4d98-9ec1-dc05095c048b .shogun-image-content {
  
    align-items: center;
  
}

.s-48decc3c-710b-4d98-9ec1-dc05095c048b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48decc3c-710b-4d98-9ec1-dc05095c048b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48decc3c-710b-4d98-9ec1-dc05095c048b.shogun-image {
  box-sizing: border-box;
}




}@media (min-width: 768px) and (max-width: 991px){.shg-image-margin-container-s-48decc3c-710b-4d98-9ec1-dc05095c048b {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-48decc3c-710b-4d98-9ec1-dc05095c048b {
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  width: 100%;
  /* Remove any padding here since it's now on the container */
}

#s-48decc3c-710b-4d98-9ec1-dc05095c048b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-48decc3c-710b-4d98-9ec1-dc05095c048b .shogun-image-content {
  
    align-items: center;
  
}

.s-48decc3c-710b-4d98-9ec1-dc05095c048b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48decc3c-710b-4d98-9ec1-dc05095c048b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48decc3c-710b-4d98-9ec1-dc05095c048b.shogun-image {
  box-sizing: border-box;
}




}@media (max-width: 767px){.shg-image-margin-container-s-48decc3c-710b-4d98-9ec1-dc05095c048b {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-48decc3c-710b-4d98-9ec1-dc05095c048b {
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  width: 100%;
  /* Remove any padding here since it's now on the container */
}

#s-48decc3c-710b-4d98-9ec1-dc05095c048b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-48decc3c-710b-4d98-9ec1-dc05095c048b .shogun-image-content {
  
    align-items: center;
  
}

.s-48decc3c-710b-4d98-9ec1-dc05095c048b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-48decc3c-710b-4d98-9ec1-dc05095c048b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-48decc3c-710b-4d98-9ec1-dc05095c048b.shogun-image {
  box-sizing: border-box;
}




}
.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-d9d00468-bd9b-4bc0-8a53-74e9fdb9d913 {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
max-width: 1388px;
}

@media (min-width: 0px) {
[id="s-d9d00468-bd9b-4bc0-8a53-74e9fdb9d913"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d9d00468-bd9b-4bc0-8a53-74e9fdb9d913"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d9d00468-bd9b-4bc0-8a53-74e9fdb9d913"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d9d00468-bd9b-4bc0-8a53-74e9fdb9d913"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-d9d00468-bd9b-4bc0-8a53-74e9fdb9d913"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-382bbb1a-b925-49a5-9972-8f7a489e5ff7 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-382bbb1a-b925-49a5-9972-8f7a489e5ff7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-382bbb1a-b925-49a5-9972-8f7a489e5ff7.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;
  
  
  text-transform: none;
  
  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-e7e69309-e96f-49a7-b21d-cb8c6ecb1ce0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-e7e69309-e96f-49a7-b21d-cb8c6ecb1ce0 .shogun-heading-component h2 {
  color: rgba(22, 64, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}



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

.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;
  
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  
  
}

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

.shg-theme-text-content p {
  
  
  
}

#s-483ca775-c4e5-4fb4-a132-d9560684f31b {
  margin-top: 5px;
margin-bottom: 30px;
margin-right: 15%;
padding-left: 0%;
padding-right: 15%;
}

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

.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-741d530b-ef9d-41d6-b904-d9c7bd756bc2 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-741d530b-ef9d-41d6-b904-d9c7bd756bc2:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZGEwNThlMzEtZmM0ZC00NmQxLTgxZGMtYjA0MDk4Y2Q3NGVkIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2RhMDU4ZTMxLWZjNGQtNDZkMS04MWRjLWIwNDA5OGNkNzRlZCkiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-741d530b-ef9d-41d6-b904-d9c7bd756bc2:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-741d530b-ef9d-41d6-b904-d9c7bd756bc2-root {
    text-align: left;
  }


#s-741d530b-ef9d-41d6-b904-d9c7bd756bc2.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-741d530b-ef9d-41d6-b904-d9c7bd756bc2-root {
    text-align: left;
  }


#s-741d530b-ef9d-41d6-b904-d9c7bd756bc2.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-741d530b-ef9d-41d6-b904-d9c7bd756bc2-root {
    text-align: left;
  }


#s-741d530b-ef9d-41d6-b904-d9c7bd756bc2.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-741d530b-ef9d-41d6-b904-d9c7bd756bc2-root {
    text-align: left;
  }


#s-741d530b-ef9d-41d6-b904-d9c7bd756bc2.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-741d530b-ef9d-41d6-b904-d9c7bd756bc2-root {
    text-align: left;
  }


#s-741d530b-ef9d-41d6-b904-d9c7bd756bc2.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
.shg-align-container {
  box-sizing: border-box;
}

.shg-image-content-wrapper {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-cover {
  -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;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

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

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

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

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

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

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-9ebbb687-cd51-41be-9db5-f656695c910d {
  text-align: center;
}



.shg-image-margin-container-s-9ebbb687-cd51-41be-9db5-f656695c910d {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-9ebbb687-cd51-41be-9db5-f656695c910d {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-9ebbb687-cd51-41be-9db5-f656695c910d.shogun-image {
    
    
    
    
  }


.s-9ebbb687-cd51-41be-9db5-f656695c910d .shogun-image-content {
  
    align-items: center;
  
}

.s-9ebbb687-cd51-41be-9db5-f656695c910d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ebbb687-cd51-41be-9db5-f656695c910d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ebbb687-cd51-41be-9db5-f656695c910d.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-9ebbb687-cd51-41be-9db5-f656695c910d {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-9ebbb687-cd51-41be-9db5-f656695c910d {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-9ebbb687-cd51-41be-9db5-f656695c910d.shogun-image {
    
    
    
    
  }


.s-9ebbb687-cd51-41be-9db5-f656695c910d .shogun-image-content {
  
    align-items: center;
  
}

.s-9ebbb687-cd51-41be-9db5-f656695c910d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ebbb687-cd51-41be-9db5-f656695c910d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ebbb687-cd51-41be-9db5-f656695c910d.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-9ebbb687-cd51-41be-9db5-f656695c910d {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-9ebbb687-cd51-41be-9db5-f656695c910d {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-9ebbb687-cd51-41be-9db5-f656695c910d.shogun-image {
    
    
    
    
  }


.s-9ebbb687-cd51-41be-9db5-f656695c910d .shogun-image-content {
  
    align-items: center;
  
}

.s-9ebbb687-cd51-41be-9db5-f656695c910d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ebbb687-cd51-41be-9db5-f656695c910d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ebbb687-cd51-41be-9db5-f656695c910d.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-9ebbb687-cd51-41be-9db5-f656695c910d {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-9ebbb687-cd51-41be-9db5-f656695c910d {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-9ebbb687-cd51-41be-9db5-f656695c910d.shogun-image {
    
    
    
    
  }


.s-9ebbb687-cd51-41be-9db5-f656695c910d .shogun-image-content {
  
    align-items: center;
  
}

.s-9ebbb687-cd51-41be-9db5-f656695c910d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ebbb687-cd51-41be-9db5-f656695c910d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ebbb687-cd51-41be-9db5-f656695c910d.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-9ebbb687-cd51-41be-9db5-f656695c910d {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-9ebbb687-cd51-41be-9db5-f656695c910d {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-9ebbb687-cd51-41be-9db5-f656695c910d.shogun-image {
    
    
    
    
  }


.s-9ebbb687-cd51-41be-9db5-f656695c910d .shogun-image-content {
  
    align-items: center;
  
}

.s-9ebbb687-cd51-41be-9db5-f656695c910d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9ebbb687-cd51-41be-9db5-f656695c910d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ebbb687-cd51-41be-9db5-f656695c910d.shogun-image {
  box-sizing: border-box;
}




}
#s-7945bf13-8de1-4c59-b116-14adaba6444e {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
max-width: 1388px;
}

@media (min-width: 0px) {
[id="s-7945bf13-8de1-4c59-b116-14adaba6444e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7945bf13-8de1-4c59-b116-14adaba6444e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7945bf13-8de1-4c59-b116-14adaba6444e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7945bf13-8de1-4c59-b116-14adaba6444e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-7945bf13-8de1-4c59-b116-14adaba6444e"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-dc4a3988-26a8-4720-a36a-941b581d7624 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-dc4a3988-26a8-4720-a36a-941b581d7624 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-dc4a3988-26a8-4720-a36a-941b581d7624.shg-box.shg-c {
  justify-content: center;
}

#s-f299512c-5553-48c4-9c71-ef6548d7636b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f299512c-5553-48c4-9c71-ef6548d7636b .shogun-heading-component h2 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}



#s-2c13c947-25bf-4614-8254-fca49f7e7b13 {
  margin-top: 5px;
margin-bottom: 30px;
margin-right: 15%;
padding-left: 0%;
padding-right: 15%;
}

#s-fbf027a6-1166-4dc2-be61-990b2510f740 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-fbf027a6-1166-4dc2-be61-990b2510f740:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iN2U1Y2UyNWUtYjg5NS00MTkxLWFjYTMtNzZmZGQ0MmM1MzYxIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzdlNWNlMjVlLWI4OTUtNDE5MS1hY2EzLTc2ZmRkNDJjNTM2MSkiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-fbf027a6-1166-4dc2-be61-990b2510f740:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-fbf027a6-1166-4dc2-be61-990b2510f740-root {
    text-align: left;
  }


#s-fbf027a6-1166-4dc2-be61-990b2510f740.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-fbf027a6-1166-4dc2-be61-990b2510f740-root {
    text-align: left;
  }


#s-fbf027a6-1166-4dc2-be61-990b2510f740.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fbf027a6-1166-4dc2-be61-990b2510f740-root {
    text-align: left;
  }


#s-fbf027a6-1166-4dc2-be61-990b2510f740.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fbf027a6-1166-4dc2-be61-990b2510f740-root {
    text-align: left;
  }


#s-fbf027a6-1166-4dc2-be61-990b2510f740.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-fbf027a6-1166-4dc2-be61-990b2510f740-root {
    text-align: left;
  }


#s-fbf027a6-1166-4dc2-be61-990b2510f740.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-961b18d5-157f-487c-8c29-01ea395b1cd1 {
  text-align: center;
}



.shg-image-margin-container-s-961b18d5-157f-487c-8c29-01ea395b1cd1 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-961b18d5-157f-487c-8c29-01ea395b1cd1 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-961b18d5-157f-487c-8c29-01ea395b1cd1.shogun-image {
    
    
    
    
  }


.s-961b18d5-157f-487c-8c29-01ea395b1cd1 .shogun-image-content {
  
    align-items: center;
  
}

.s-961b18d5-157f-487c-8c29-01ea395b1cd1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-961b18d5-157f-487c-8c29-01ea395b1cd1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-961b18d5-157f-487c-8c29-01ea395b1cd1.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-961b18d5-157f-487c-8c29-01ea395b1cd1 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-961b18d5-157f-487c-8c29-01ea395b1cd1 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-961b18d5-157f-487c-8c29-01ea395b1cd1.shogun-image {
    
    
    
    
  }


.s-961b18d5-157f-487c-8c29-01ea395b1cd1 .shogun-image-content {
  
    align-items: center;
  
}

.s-961b18d5-157f-487c-8c29-01ea395b1cd1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-961b18d5-157f-487c-8c29-01ea395b1cd1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-961b18d5-157f-487c-8c29-01ea395b1cd1.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-961b18d5-157f-487c-8c29-01ea395b1cd1 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-961b18d5-157f-487c-8c29-01ea395b1cd1 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-961b18d5-157f-487c-8c29-01ea395b1cd1.shogun-image {
    
    
    
    
  }


.s-961b18d5-157f-487c-8c29-01ea395b1cd1 .shogun-image-content {
  
    align-items: center;
  
}

.s-961b18d5-157f-487c-8c29-01ea395b1cd1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-961b18d5-157f-487c-8c29-01ea395b1cd1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-961b18d5-157f-487c-8c29-01ea395b1cd1.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-961b18d5-157f-487c-8c29-01ea395b1cd1 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-961b18d5-157f-487c-8c29-01ea395b1cd1 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-961b18d5-157f-487c-8c29-01ea395b1cd1.shogun-image {
    
    
    
    
  }


.s-961b18d5-157f-487c-8c29-01ea395b1cd1 .shogun-image-content {
  
    align-items: center;
  
}

.s-961b18d5-157f-487c-8c29-01ea395b1cd1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-961b18d5-157f-487c-8c29-01ea395b1cd1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-961b18d5-157f-487c-8c29-01ea395b1cd1.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-961b18d5-157f-487c-8c29-01ea395b1cd1 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-961b18d5-157f-487c-8c29-01ea395b1cd1 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-961b18d5-157f-487c-8c29-01ea395b1cd1.shogun-image {
    
    
    
    
  }


.s-961b18d5-157f-487c-8c29-01ea395b1cd1 .shogun-image-content {
  
    align-items: center;
  
}

.s-961b18d5-157f-487c-8c29-01ea395b1cd1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-961b18d5-157f-487c-8c29-01ea395b1cd1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-961b18d5-157f-487c-8c29-01ea395b1cd1.shogun-image {
  box-sizing: border-box;
}




}
#s-4c9f74d3-a4b2-43aa-a7b0-4784fb1f9bc0 {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
max-width: 1388px;
}

@media (min-width: 0px) {
[id="s-4c9f74d3-a4b2-43aa-a7b0-4784fb1f9bc0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4c9f74d3-a4b2-43aa-a7b0-4784fb1f9bc0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4c9f74d3-a4b2-43aa-a7b0-4784fb1f9bc0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4c9f74d3-a4b2-43aa-a7b0-4784fb1f9bc0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-4c9f74d3-a4b2-43aa-a7b0-4784fb1f9bc0"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-66701f61-0488-4136-932d-3201781eda96 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-66701f61-0488-4136-932d-3201781eda96 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-66701f61-0488-4136-932d-3201781eda96.shg-box.shg-c {
  justify-content: center;
}

#s-c5eb8d4f-3acb-47bc-9c11-6af70ec71926 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c5eb8d4f-3acb-47bc-9c11-6af70ec71926 .shogun-heading-component h2 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}



#s-b069e6e3-7074-410a-ba25-538b489cd962 {
  margin-top: 5px;
margin-bottom: 30px;
margin-right: 15%;
padding-left: 0%;
padding-right: 15%;
}

#s-b1045b0a-dd39-4446-bb1f-dcd971f01acf {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-b1045b0a-dd39-4446-bb1f-dcd971f01acf:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMTNjZjMwN2MtODI5MC00YmZlLWI3ODMtYThkODA1NjAyN2MwIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzEzY2YzMDdjLTgyOTAtNGJmZS1iNzgzLWE4ZDgwNTYwMjdjMCkiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-b1045b0a-dd39-4446-bb1f-dcd971f01acf:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-b1045b0a-dd39-4446-bb1f-dcd971f01acf-root {
    text-align: left;
  }


#s-b1045b0a-dd39-4446-bb1f-dcd971f01acf.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b1045b0a-dd39-4446-bb1f-dcd971f01acf-root {
    text-align: left;
  }


#s-b1045b0a-dd39-4446-bb1f-dcd971f01acf.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b1045b0a-dd39-4446-bb1f-dcd971f01acf-root {
    text-align: left;
  }


#s-b1045b0a-dd39-4446-bb1f-dcd971f01acf.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b1045b0a-dd39-4446-bb1f-dcd971f01acf-root {
    text-align: left;
  }


#s-b1045b0a-dd39-4446-bb1f-dcd971f01acf.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b1045b0a-dd39-4446-bb1f-dcd971f01acf-root {
    text-align: left;
  }


#s-b1045b0a-dd39-4446-bb1f-dcd971f01acf.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef {
  text-align: center;
}



.shg-image-margin-container-s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shogun-image {
    
    
    
    
  }


.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef .shogun-image-content {
  
    align-items: center;
  
}

.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shogun-image {
    
    
    
    
  }


.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef .shogun-image-content {
  
    align-items: center;
  
}

.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shogun-image {
    
    
    
    
  }


.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef .shogun-image-content {
  
    align-items: center;
  
}

.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shogun-image {
    
    
    
    
  }


.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef .shogun-image-content {
  
    align-items: center;
  
}

.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shogun-image {
    
    
    
    
  }


.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef .shogun-image-content {
  
    align-items: center;
  
}

.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8461ca8e-fffa-453b-969f-8b3f9c40c2ef.shogun-image {
  box-sizing: border-box;
}




}
#s-379900d2-365d-4cda-a53c-49ee3caaf7da {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
max-width: 1388px;
}

@media (min-width: 0px) {
[id="s-379900d2-365d-4cda-a53c-49ee3caaf7da"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-379900d2-365d-4cda-a53c-49ee3caaf7da"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-379900d2-365d-4cda-a53c-49ee3caaf7da"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-379900d2-365d-4cda-a53c-49ee3caaf7da"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-379900d2-365d-4cda-a53c-49ee3caaf7da"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-4978f761-f4e0-4a5f-9aac-6029357eca18 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-4978f761-f4e0-4a5f-9aac-6029357eca18 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4978f761-f4e0-4a5f-9aac-6029357eca18.shg-box.shg-c {
  justify-content: center;
}

#s-bc75aac0-d9bc-47c3-8d74-68aca6819118 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-bc75aac0-d9bc-47c3-8d74-68aca6819118 .shogun-heading-component h2 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}



#s-c12228cb-1f14-47f9-a455-81305a6af724 {
  margin-top: 5px;
margin-bottom: 30px;
margin-right: 15%;
padding-left: 0%;
padding-right: 15%;
}

#s-3aa50c0c-2e68-4d36-862e-861406d451df {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-3aa50c0c-2e68-4d36-862e-861406d451df:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMjI0MGE3YzEtYmNhZC00YjRmLTliM2ItNzQyZjc2ZjY0Y2ZmIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzIyNDBhN2MxLWJjYWQtNGI0Zi05YjNiLTc0MmY3NmY2NGNmZikiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-3aa50c0c-2e68-4d36-862e-861406d451df:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-3aa50c0c-2e68-4d36-862e-861406d451df-root {
    text-align: left;
  }


#s-3aa50c0c-2e68-4d36-862e-861406d451df.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3aa50c0c-2e68-4d36-862e-861406d451df-root {
    text-align: left;
  }


#s-3aa50c0c-2e68-4d36-862e-861406d451df.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3aa50c0c-2e68-4d36-862e-861406d451df-root {
    text-align: left;
  }


#s-3aa50c0c-2e68-4d36-862e-861406d451df.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3aa50c0c-2e68-4d36-862e-861406d451df-root {
    text-align: left;
  }


#s-3aa50c0c-2e68-4d36-862e-861406d451df.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3aa50c0c-2e68-4d36-862e-861406d451df-root {
    text-align: left;
  }


#s-3aa50c0c-2e68-4d36-862e-861406d451df.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
.shogun-image-container {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-cover {
  -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;
}

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

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

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

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

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

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

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

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

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

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

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

#s-10ca4b0d-9874-47f4-ba8c-9da142da9564 {
  text-align: center;
}







  #s-10ca4b0d-9874-47f4-ba8c-9da142da9564 img.shogun-image {
    

    
    
    
  }


#s-10ca4b0d-9874-47f4-ba8c-9da142da9564 .shogun-image-content {
  
    align-items: center;
  
}

#s-24ddb526-3a9c-491c-8629-fec2eefca674 {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
max-width: 1388px;
}

@media (min-width: 0px) {
[id="s-24ddb526-3a9c-491c-8629-fec2eefca674"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-24ddb526-3a9c-491c-8629-fec2eefca674"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-24ddb526-3a9c-491c-8629-fec2eefca674"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-24ddb526-3a9c-491c-8629-fec2eefca674"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-24ddb526-3a9c-491c-8629-fec2eefca674"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-d79aaac1-7e7d-4b12-b76e-d505e6184b7b {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-d79aaac1-7e7d-4b12-b76e-d505e6184b7b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d79aaac1-7e7d-4b12-b76e-d505e6184b7b.shg-box.shg-c {
  justify-content: center;
}

#s-8597d3f9-0b1b-4771-a992-d6972b7d515a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-8597d3f9-0b1b-4771-a992-d6972b7d515a .shogun-heading-component h2 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}



#s-505a917d-a7a9-4c98-84a2-f57e2f933501 {
  margin-top: 5px;
margin-bottom: 30px;
margin-right: 15%;
padding-left: 0%;
padding-right: 15%;
}

#s-6b403b0c-8702-4f5c-ba56-61631bdb5d0d {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-6b403b0c-8702-4f5c-ba56-61631bdb5d0d:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYmFhMTQ0N2ItYTNmNy00MTRlLWEzZDgtMWVhMGRhZTM0ODA2IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2JhYTE0NDdiLWEzZjctNDE0ZS1hM2Q4LTFlYTBkYWUzNDgwNikiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-6b403b0c-8702-4f5c-ba56-61631bdb5d0d:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-6b403b0c-8702-4f5c-ba56-61631bdb5d0d-root {
    text-align: left;
  }


#s-6b403b0c-8702-4f5c-ba56-61631bdb5d0d.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6b403b0c-8702-4f5c-ba56-61631bdb5d0d-root {
    text-align: left;
  }


#s-6b403b0c-8702-4f5c-ba56-61631bdb5d0d.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6b403b0c-8702-4f5c-ba56-61631bdb5d0d-root {
    text-align: left;
  }


#s-6b403b0c-8702-4f5c-ba56-61631bdb5d0d.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6b403b0c-8702-4f5c-ba56-61631bdb5d0d-root {
    text-align: left;
  }


#s-6b403b0c-8702-4f5c-ba56-61631bdb5d0d.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6b403b0c-8702-4f5c-ba56-61631bdb5d0d-root {
    text-align: left;
  }


#s-6b403b0c-8702-4f5c-ba56-61631bdb5d0d.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-c826923f-9948-4c92-a332-5d252d2f82a4 {
  text-align: center;
}







  #s-c826923f-9948-4c92-a332-5d252d2f82a4 img.shogun-image {
    

    
    
    
  }


#s-c826923f-9948-4c92-a332-5d252d2f82a4 .shogun-image-content {
  
    align-items: center;
  
}

#s-3bafc0e2-cb8d-4019-889c-34f5f2e7d5d8 {
  text-align: center;
}







  #s-3bafc0e2-cb8d-4019-889c-34f5f2e7d5d8 img.shogun-image {
    

    
    
    
  }


#s-3bafc0e2-cb8d-4019-889c-34f5f2e7d5d8 .shogun-image-content {
  
    align-items: center;
  
}

#s-916e7544-3438-47a6-98db-8927696668ab {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
max-width: 1388px;
}

@media (min-width: 0px) {
[id="s-916e7544-3438-47a6-98db-8927696668ab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-916e7544-3438-47a6-98db-8927696668ab"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-916e7544-3438-47a6-98db-8927696668ab"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-916e7544-3438-47a6-98db-8927696668ab"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-916e7544-3438-47a6-98db-8927696668ab"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-217a9959-2ae7-4b98-b288-1b95fe8cdc7b {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-217a9959-2ae7-4b98-b288-1b95fe8cdc7b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-217a9959-2ae7-4b98-b288-1b95fe8cdc7b.shg-box.shg-c {
  justify-content: center;
}

#s-7312f5fb-133a-46a2-bc16-8bbace007281 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-7312f5fb-133a-46a2-bc16-8bbace007281 .shogun-heading-component h2 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}



#s-cf98070c-863a-47ea-8390-ebfe6cfc6650 {
  margin-top: 5px;
margin-bottom: 30px;
margin-right: 15%;
padding-left: 0%;
padding-right: 15%;
}

#s-6ed203d1-6fcf-4065-afe4-9997c2f31c88 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-6ed203d1-6fcf-4065-afe4-9997c2f31c88:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYmFhMTQ0N2ItYTNmNy00MTRlLWEzZDgtMWVhMGRhZTM0ODA2IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2JhYTE0NDdiLWEzZjctNDE0ZS1hM2Q4LTFlYTBkYWUzNDgwNikiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-6ed203d1-6fcf-4065-afe4-9997c2f31c88:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-6ed203d1-6fcf-4065-afe4-9997c2f31c88-root {
    text-align: left;
  }


#s-6ed203d1-6fcf-4065-afe4-9997c2f31c88.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6ed203d1-6fcf-4065-afe4-9997c2f31c88-root {
    text-align: left;
  }


#s-6ed203d1-6fcf-4065-afe4-9997c2f31c88.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6ed203d1-6fcf-4065-afe4-9997c2f31c88-root {
    text-align: left;
  }


#s-6ed203d1-6fcf-4065-afe4-9997c2f31c88.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6ed203d1-6fcf-4065-afe4-9997c2f31c88-root {
    text-align: left;
  }


#s-6ed203d1-6fcf-4065-afe4-9997c2f31c88.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6ed203d1-6fcf-4065-afe4-9997c2f31c88-root {
    text-align: left;
  }


#s-6ed203d1-6fcf-4065-afe4-9997c2f31c88.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-c19cd87c-0df4-4681-b234-3c641ff052b9 {
  text-align: center;
}







  #s-c19cd87c-0df4-4681-b234-3c641ff052b9 img.shogun-image {
    

    
    
    
  }


#s-c19cd87c-0df4-4681-b234-3c641ff052b9 .shogun-image-content {
  
    align-items: center;
  
}

#s-5769f505-5140-44ef-8a40-300d134bd983 {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
max-width: 1388px;
}

@media (min-width: 0px) {
[id="s-5769f505-5140-44ef-8a40-300d134bd983"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5769f505-5140-44ef-8a40-300d134bd983"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5769f505-5140-44ef-8a40-300d134bd983"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5769f505-5140-44ef-8a40-300d134bd983"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-5769f505-5140-44ef-8a40-300d134bd983"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-bae2db08-c2cd-4894-bd8d-5fe7cd95bd2e {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-bae2db08-c2cd-4894-bd8d-5fe7cd95bd2e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bae2db08-c2cd-4894-bd8d-5fe7cd95bd2e.shg-box.shg-c {
  justify-content: center;
}

#s-54409817-8824-4e1f-8b92-df6f93ec1eea {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-54409817-8824-4e1f-8b92-df6f93ec1eea .shogun-heading-component h2 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}



#s-0e057247-2694-4837-ab22-2b3cee8c336f {
  margin-top: 5px;
margin-bottom: 30px;
margin-right: 15%;
padding-left: 0%;
padding-right: 15%;
}

#s-fd9acdee-ddc7-40eb-9ec0-98a861c9eff1 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-fd9acdee-ddc7-40eb-9ec0-98a861c9eff1:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYmFhMTQ0N2ItYTNmNy00MTRlLWEzZDgtMWVhMGRhZTM0ODA2IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2JhYTE0NDdiLWEzZjctNDE0ZS1hM2Q4LTFlYTBkYWUzNDgwNikiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-fd9acdee-ddc7-40eb-9ec0-98a861c9eff1:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-fd9acdee-ddc7-40eb-9ec0-98a861c9eff1-root {
    text-align: left;
  }


#s-fd9acdee-ddc7-40eb-9ec0-98a861c9eff1.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-fd9acdee-ddc7-40eb-9ec0-98a861c9eff1-root {
    text-align: left;
  }


#s-fd9acdee-ddc7-40eb-9ec0-98a861c9eff1.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fd9acdee-ddc7-40eb-9ec0-98a861c9eff1-root {
    text-align: left;
  }


#s-fd9acdee-ddc7-40eb-9ec0-98a861c9eff1.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fd9acdee-ddc7-40eb-9ec0-98a861c9eff1-root {
    text-align: left;
  }


#s-fd9acdee-ddc7-40eb-9ec0-98a861c9eff1.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-fd9acdee-ddc7-40eb-9ec0-98a861c9eff1-root {
    text-align: left;
  }


#s-fd9acdee-ddc7-40eb-9ec0-98a861c9eff1.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-52de32a0-0c52-40a1-b334-c98e4b536841 {
  text-align: center;
}







  #s-52de32a0-0c52-40a1-b334-c98e4b536841 img.shogun-image {
    

    
    
    
  }


#s-52de32a0-0c52-40a1-b334-c98e4b536841 .shogun-image-content {
  
    align-items: center;
  
}

#s-ad12bd9a-e200-4cba-92ab-6cf8e60dfd84 {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
max-width: 1388px;
}

@media (min-width: 0px) {
[id="s-ad12bd9a-e200-4cba-92ab-6cf8e60dfd84"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ad12bd9a-e200-4cba-92ab-6cf8e60dfd84"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ad12bd9a-e200-4cba-92ab-6cf8e60dfd84"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ad12bd9a-e200-4cba-92ab-6cf8e60dfd84"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-ad12bd9a-e200-4cba-92ab-6cf8e60dfd84"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-03c96cd7-42d5-459f-8170-b5a3aa1403f4 {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-03c96cd7-42d5-459f-8170-b5a3aa1403f4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-03c96cd7-42d5-459f-8170-b5a3aa1403f4.shg-box.shg-c {
  justify-content: center;
}

#s-0b82f007-94bc-4ea0-a604-fe9c5aeccec1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-0b82f007-94bc-4ea0-a604-fe9c5aeccec1 .shogun-heading-component h2 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}



#s-bff96ae3-7c9d-4b58-995d-95f5ea70f174 {
  margin-top: 5px;
margin-bottom: 30px;
margin-right: 15%;
padding-left: 0%;
padding-right: 15%;
}

#s-a0fb946b-7b12-4df0-baa6-607cc8994790 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-a0fb946b-7b12-4df0-baa6-607cc8994790:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYmFhMTQ0N2ItYTNmNy00MTRlLWEzZDgtMWVhMGRhZTM0ODA2IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2JhYTE0NDdiLWEzZjctNDE0ZS1hM2Q4LTFlYTBkYWUzNDgwNikiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-a0fb946b-7b12-4df0-baa6-607cc8994790:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-a0fb946b-7b12-4df0-baa6-607cc8994790-root {
    text-align: left;
  }


#s-a0fb946b-7b12-4df0-baa6-607cc8994790.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a0fb946b-7b12-4df0-baa6-607cc8994790-root {
    text-align: left;
  }


#s-a0fb946b-7b12-4df0-baa6-607cc8994790.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a0fb946b-7b12-4df0-baa6-607cc8994790-root {
    text-align: left;
  }


#s-a0fb946b-7b12-4df0-baa6-607cc8994790.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a0fb946b-7b12-4df0-baa6-607cc8994790-root {
    text-align: left;
  }


#s-a0fb946b-7b12-4df0-baa6-607cc8994790.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a0fb946b-7b12-4df0-baa6-607cc8994790-root {
    text-align: left;
  }


#s-a0fb946b-7b12-4df0-baa6-607cc8994790.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-31581635-368c-4015-b44e-c95b59b5a6b5 {
  text-align: center;
}







  #s-31581635-368c-4015-b44e-c95b59b5a6b5 img.shogun-image {
    

    
    
    
  }


#s-31581635-368c-4015-b44e-c95b59b5a6b5 .shogun-image-content {
  
    align-items: center;
  
}

#s-5f6dd24c-7ed0-453f-b2a1-4ab1a1f8c85e {
  margin-left: auto;
margin-right: auto;
padding-left: 16px;
padding-right: 16px;
max-width: 1388px;
}

@media (min-width: 0px) {
[id="s-5f6dd24c-7ed0-453f-b2a1-4ab1a1f8c85e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5f6dd24c-7ed0-453f-b2a1-4ab1a1f8c85e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5f6dd24c-7ed0-453f-b2a1-4ab1a1f8c85e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5f6dd24c-7ed0-453f-b2a1-4ab1a1f8c85e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-5f6dd24c-7ed0-453f-b2a1-4ab1a1f8c85e"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-ebbcfd03-6004-4904-965b-81efe7f3e14b {
  margin-left: auto;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-ebbcfd03-6004-4904-965b-81efe7f3e14b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ebbcfd03-6004-4904-965b-81efe7f3e14b.shg-box.shg-c {
  justify-content: center;
}

#s-52214ab5-c711-4fa2-89d2-b7cc813934bf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-52214ab5-c711-4fa2-89d2-b7cc813934bf .shogun-heading-component h2 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1em;
  
  text-align: left;
}



#s-164a88de-9581-409b-97ad-d6fc16c9aa1c {
  margin-top: 5px;
margin-bottom: 30px;
margin-right: 15%;
padding-left: 0%;
padding-right: 15%;
}

#s-540d9bc2-8707-40be-bdf0-254737c00a99 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjZjNjA5NDktNjg3OS00YTdiLWFiMjktMzBlNDc4MWVmZDUyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjRmNGY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZTFlMWUxO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiNmM2MDk0OS02ODc5LTRhN2ItYWIyOS0zMGU0NzgxZWZkNTIpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(77, 88, 88, 1);
border-radius: 10px;
text-align: left;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f4f4f4"}, {"id"=>2, "pos"=>1, "color"=>"#e1e1e1"}];
hover-type: gradient;
color: rgba(77, 88, 88, 1);
}
#s-540d9bc2-8707-40be-bdf0-254737c00a99:hover {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYWRlMmFjNTQtMzFjMC00NmMxLTg4YTYtODUzMWZlN2EzMDBiIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjlhZjZiO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcwOTA5MDkwOTA5MDkwOTEiIHN0eWxlPSJzdG9wLWNvbG9yOiNmNjg3MjI7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2FkZTJhYzU0LTMxYzAtNDZjMS04OGE2LTg1MzFmZTdhMzAwYikiLz48L3N2Zz4=) !important;
background-repeat: no-repeat !important;
border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(246, 135, 34, 1) !important;
border-radius: 10px !important;
text-decoration: none !important;
color: rgba(244, 244, 244, 1) !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f9af6b"}, {"id"=>2, "pos"=>0.7090909090909091, "color"=>"#f68722"}] !important;
hover-type: gradient !important;}#s-540d9bc2-8707-40be-bdf0-254737c00a99:active {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(22, 65, 111, 1) !important;
border-radius: 10px !important;
background-color: rgba(22, 65, 111, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-540d9bc2-8707-40be-bdf0-254737c00a99-root {
    text-align: left;
  }


#s-540d9bc2-8707-40be-bdf0-254737c00a99.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-540d9bc2-8707-40be-bdf0-254737c00a99-root {
    text-align: left;
  }


#s-540d9bc2-8707-40be-bdf0-254737c00a99.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-540d9bc2-8707-40be-bdf0-254737c00a99-root {
    text-align: left;
  }


#s-540d9bc2-8707-40be-bdf0-254737c00a99.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-540d9bc2-8707-40be-bdf0-254737c00a99-root {
    text-align: left;
  }


#s-540d9bc2-8707-40be-bdf0-254737c00a99.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-540d9bc2-8707-40be-bdf0-254737c00a99-root {
    text-align: left;
  }


#s-540d9bc2-8707-40be-bdf0-254737c00a99.shg-btn {
  color: rgba(77, 88, 88, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Open Sans;
  display:  inline-block ;
}
}
#s-11011cc5-2dac-45eb-ad5a-0457fc140679 {
  margin-top: -25px;
margin-bottom: -25px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-11011cc5-2dac-45eb-ad5a-0457fc140679 {
  display: none;
}
#s-11011cc5-2dac-45eb-ad5a-0457fc140679, #wrap-s-11011cc5-2dac-45eb-ad5a-0457fc140679 { display: none !important; }}@media (max-width: 767px){#s-11011cc5-2dac-45eb-ad5a-0457fc140679 {
  display: none;
}
#s-11011cc5-2dac-45eb-ad5a-0457fc140679, #wrap-s-11011cc5-2dac-45eb-ad5a-0457fc140679 { display: none !important; }}







#s-11011cc5-2dac-45eb-ad5a-0457fc140679 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-11011cc5-2dac-45eb-ad5a-0457fc140679.shg-box.shg-c {
  justify-content: center;
}

#s-ac1e8958-6046-48d9-819d-5a16638ab2b3 {
  margin-top: 25px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ac1e8958-6046-48d9-819d-5a16638ab2b3 {
  
}
}@media (max-width: 767px){#s-ac1e8958-6046-48d9-819d-5a16638ab2b3 {
  
}
}
@media (min-width: 0px) {
[id="s-ac1e8958-6046-48d9-819d-5a16638ab2b3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-ac1e8958-6046-48d9-819d-5a16638ab2b3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ac1e8958-6046-48d9-819d-5a16638ab2b3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ac1e8958-6046-48d9-819d-5a16638ab2b3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-60d8d4be-384b-430c-ae3c-c9d08b932e2e {
  margin-top: 15px;
margin-bottom: 15px;
padding-left: 4%;
padding-right: 4%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 105, 55, 1);
border-style: solid;
border-radius: 5px;
}

@media (min-width: 0px) {
[id="s-60d8d4be-384b-430c-ae3c-c9d08b932e2e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-60d8d4be-384b-430c-ae3c-c9d08b932e2e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-60d8d4be-384b-430c-ae3c-c9d08b932e2e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-60d8d4be-384b-430c-ae3c-c9d08b932e2e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-60d8d4be-384b-430c-ae3c-c9d08b932e2e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-60d8d4be-384b-430c-ae3c-c9d08b932e2e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-60d8d4be-384b-430c-ae3c-c9d08b932e2e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

}








#s-30ef726f-45db-4d47-b049-65db84749464 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-30ef726f-45db-4d47-b049-65db84749464 {
  cursor: pointer;
}#s-30ef726f-45db-4d47-b049-65db84749464.shg-box.shg-c {
  justify-content: center;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  min-height: 50px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-content {
  
    align-items: center;
  
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
      position: relative;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-content {
  
    align-items: center;
  
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
      position: relative;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

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

.shg-image-margin-container-s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-content {
  
    align-items: center;
  
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
      position: relative;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

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

.shg-image-margin-container-s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-content {
  
    align-items: center;
  
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
      position: relative;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

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

.shg-image-margin-container-s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 .shogun-image-content {
  
    align-items: center;
  
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container {
      position: relative;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b2b22b5-cf4a-4c03-9046-cc0c75f26511 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}
#s-c4ae7b52-661e-4590-ada9-9702e7fe57bb {
  min-height: 50px;
}








#s-c4ae7b52-661e-4590-ada9-9702e7fe57bb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c4ae7b52-661e-4590-ada9-9702e7fe57bb {
  cursor: pointer;
}#s-c4ae7b52-661e-4590-ada9-9702e7fe57bb.shg-box.shg-c {
  justify-content: center;
}

#s-77e01eea-787c-4f67-8645-2a37d077a030 {
  padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
}








#s-77e01eea-787c-4f67-8645-2a37d077a030 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-77e01eea-787c-4f67-8645-2a37d077a030 {
  cursor: pointer;
}#s-77e01eea-787c-4f67-8645-2a37d077a030.shg-box.shg-c {
  justify-content: center;
}

#s-853068a0-6317-4b83-b6f9-6b1b8dc86ab1 {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-853068a0-6317-4b83-b6f9-6b1b8dc86ab1 .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-483c79c3-40f5-43f4-9dd4-a2924fc84a9e {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-483c79c3-40f5-43f4-9dd4-a2924fc84a9e .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-df907956-44e8-49c9-b8c7-46464d6c4683 {
  margin-top: 15px;
margin-bottom: 15px;
padding-left: 4%;
padding-right: 4%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 105, 55, 1);
border-style: solid;
border-radius: 5px;
min-height: 0px;
}

@media (min-width: 0px) {
[id="s-df907956-44e8-49c9-b8c7-46464d6c4683"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-df907956-44e8-49c9-b8c7-46464d6c4683"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-df907956-44e8-49c9-b8c7-46464d6c4683"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-df907956-44e8-49c9-b8c7-46464d6c4683"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-df907956-44e8-49c9-b8c7-46464d6c4683"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-df907956-44e8-49c9-b8c7-46464d6c4683"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-df907956-44e8-49c9-b8c7-46464d6c4683"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

}








#s-cc99a55b-af30-411b-81dc-ffbb4ae3ae80 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cc99a55b-af30-411b-81dc-ffbb4ae3ae80.shg-box.shg-c {
  justify-content: center;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  min-height: 50px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-content {
  
    align-items: center;
  
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
      position: relative;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-content {
  
    align-items: center;
  
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
      position: relative;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

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

.shg-image-margin-container-s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-content {
  
    align-items: center;
  
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
      position: relative;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

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

.shg-image-margin-container-s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-content {
  
    align-items: center;
  
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
      position: relative;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

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

.shg-image-margin-container-s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 .shogun-image-content {
  
    align-items: center;
  
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container {
      position: relative;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8193da8e-3b8e-42cf-a46a-41f78ed3a4b5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}
#s-f1a560ae-1718-44cf-9e35-394436bf1cca {
  min-height: 50px;
}








#s-f1a560ae-1718-44cf-9e35-394436bf1cca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f1a560ae-1718-44cf-9e35-394436bf1cca.shg-box.shg-c {
  justify-content: center;
}

#s-cc67a61b-0fe4-45e3-b8e1-415d1949561f {
  padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
}








#s-cc67a61b-0fe4-45e3-b8e1-415d1949561f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cc67a61b-0fe4-45e3-b8e1-415d1949561f.shg-box.shg-c {
  justify-content: center;
}

#s-2608ba52-4677-48c5-af89-fe3ce727d43d {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-2608ba52-4677-48c5-af89-fe3ce727d43d .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-aac68f58-5e66-422a-81b2-bb5d80938f81 {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-aac68f58-5e66-422a-81b2-bb5d80938f81 .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-3d317139-1007-4620-8a60-31b6a728a843 {
  margin-top: 15px;
margin-bottom: 15px;
padding-left: 4%;
padding-right: 4%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 105, 55, 1);
border-style: solid;
border-radius: 5px;
min-height: 0px;
}

@media (min-width: 0px) {
[id="s-3d317139-1007-4620-8a60-31b6a728a843"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-3d317139-1007-4620-8a60-31b6a728a843"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-3d317139-1007-4620-8a60-31b6a728a843"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-3d317139-1007-4620-8a60-31b6a728a843"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-3d317139-1007-4620-8a60-31b6a728a843"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-3d317139-1007-4620-8a60-31b6a728a843"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-3d317139-1007-4620-8a60-31b6a728a843"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

}








#s-1eeb4deb-f999-4f65-ace2-8f200fc28f4b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1eeb4deb-f999-4f65-ace2-8f200fc28f4b {
  cursor: pointer;
}#s-1eeb4deb-f999-4f65-ace2-8f200fc28f4b.shg-box.shg-c {
  justify-content: center;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  min-height: 50px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-content {
  
    align-items: center;
  
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
      position: relative;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-content {
  
    align-items: center;
  
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
      position: relative;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

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

.shg-image-margin-container-s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-content {
  
    align-items: center;
  
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
      position: relative;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

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

.shg-image-margin-container-s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-content {
  
    align-items: center;
  
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
      position: relative;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

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

.shg-image-margin-container-s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 .shogun-image-content {
  
    align-items: center;
  
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container {
      position: relative;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a94dbd1e-62dc-46fd-9329-1d8c5a3e8956 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}
#s-c603b164-7a26-4814-a175-9bfc1d86b6d4 {
  min-height: 50px;
}








#s-c603b164-7a26-4814-a175-9bfc1d86b6d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c603b164-7a26-4814-a175-9bfc1d86b6d4.shg-box.shg-c {
  justify-content: center;
}

#s-85cb1a2b-04b3-48fc-9fe7-01af6c75e262 {
  padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
}








#s-85cb1a2b-04b3-48fc-9fe7-01af6c75e262 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-85cb1a2b-04b3-48fc-9fe7-01af6c75e262 {
  cursor: pointer;
}#s-85cb1a2b-04b3-48fc-9fe7-01af6c75e262.shg-box.shg-c {
  justify-content: center;
}

#s-dceb1fc4-1c34-46a2-8f8c-b965f8030c54 {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-dceb1fc4-1c34-46a2-8f8c-b965f8030c54 .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-d1c6d609-ae17-4b62-b9bb-c7fb660936da {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-d1c6d609-ae17-4b62-b9bb-c7fb660936da .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7 {
  margin-top: 15px;
margin-bottom: 15px;
padding-left: 4%;
padding-right: 4%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 105, 55, 1);
border-style: solid;
border-radius: 5px;
}

@media (min-width: 0px) {
[id="s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-db9d8eee-02a4-45d8-8aca-e2d554f5a3f7"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

}

#s-fe62e230-0d48-48fb-b885-6d01d42169a2 {
  min-height: 50px;
max-width: 50px;
}








#s-fe62e230-0d48-48fb-b885-6d01d42169a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fe62e230-0d48-48fb-b885-6d01d42169a2.shg-box.shg-c {
  justify-content: center;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  min-height: 50px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-content {
  
    align-items: center;
  
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
      position: relative;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-content {
  
    align-items: center;
  
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
      position: relative;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

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

.shg-image-margin-container-s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-content {
  
    align-items: center;
  
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
      position: relative;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

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

.shg-image-margin-container-s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-content {
  
    align-items: center;
  
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
      position: relative;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

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

.shg-image-margin-container-s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    max-height: 50px;
  }




.s-1c92142b-e096-46bd-baeb-f2c233f50e6b .shogun-image-content {
  
    align-items: center;
  
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container {
      position: relative;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1c92142b-e096-46bd-baeb-f2c233f50e6b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 50px;
      max-width: 50px;
    }
  }

}
#s-dafa03ee-09be-4d44-bd94-ea715415ffc7 {
  min-height: 50px;
}








#s-dafa03ee-09be-4d44-bd94-ea715415ffc7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-dafa03ee-09be-4d44-bd94-ea715415ffc7.shg-box.shg-c {
  justify-content: center;
}

#s-5875686a-81b9-4441-a58e-a0d2c09e669c {
  padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
}








#s-5875686a-81b9-4441-a58e-a0d2c09e669c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5875686a-81b9-4441-a58e-a0d2c09e669c.shg-box.shg-c {
  justify-content: center;
}

#s-1440690d-9496-4f68-bd42-cd32d6a05dde {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-1440690d-9496-4f68-bd42-cd32d6a05dde .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-a5c6bbcc-d098-4b57-9d04-5a392dea68b5 {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-a5c6bbcc-d098-4b57-9d04-5a392dea68b5 .shogun-heading-component h1 {
  color: rgba(22, 65, 111, 1);
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-8a8c206d-f327-4e29-8e1e-7aee9e0f4ce8 {
  margin-top: 30px;
margin-bottom: 0px;
min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}
@media (max-width: 767px){#s-8a8c206d-f327-4e29-8e1e-7aee9e0f4ce8 {
  display: none;
}
#s-8a8c206d-f327-4e29-8e1e-7aee9e0f4ce8, #wrap-s-8a8c206d-f327-4e29-8e1e-7aee9e0f4ce8 { display: none !important; }}







#s-8a8c206d-f327-4e29-8e1e-7aee9e0f4ce8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8a8c206d-f327-4e29-8e1e-7aee9e0f4ce8.shg-box.shg-c {
  justify-content: center;
}

#s-51f34535-f5d3-4b19-92e6-eee0f5e81867 {
  padding-top: 0px;
padding-bottom: 0px;
padding-right: 2%;
min-height: 150px;
}

@media (min-width: 0px) {
[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-51f34535-f5d3-4b19-92e6-eee0f5e81867"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  max-width: 730px;
aspect-ratio: 730/625;
text-align: left;
}
#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670:hover {opacity: 1 !important;}


.shg-image-margin-container-s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }

    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-link {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 730px;
  }




.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-content {
  
    align-items: center;
  
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
      --shg-aspect-ratio: calc(730/625); 
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
      position: relative;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 730px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }

    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-link {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 730px;
  }




.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-content {
  
    align-items: center;
  
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
      --shg-aspect-ratio: calc(730/625); 
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
      position: relative;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 730px;
    }
  }

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

.shg-image-margin-container-s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }

    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-link {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 730px;
  }




.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-content {
  
    align-items: center;
  
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
      --shg-aspect-ratio: calc(730/625); 
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
      position: relative;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 730px;
    }
  }

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

.shg-image-margin-container-s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }

    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-link {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 730px;
  }




.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-content {
  
    align-items: center;
  
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
      --shg-aspect-ratio: calc(730/625); 
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
      position: relative;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 730px;
    }
  }

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

.shg-image-margin-container-s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }

    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-link {
      aspect-ratio: 730/625;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 730px;
  }




.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 .shogun-image-content {
  
    align-items: center;
  
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 {
      --shg-aspect-ratio: calc(730/625); 
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container {
      position: relative;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e5b5f33f-c6ef-46cb-9cd4-2add54496670 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 730px;
    }
  }

}
#s-439cf13e-dc98-4fc0-ad56-ad4fa4fac585 {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 1%;
}

@media (min-width: 0px) {
[id="s-439cf13e-dc98-4fc0-ad56-ad4fa4fac585"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-439cf13e-dc98-4fc0-ad56-ad4fa4fac585"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-439cf13e-dc98-4fc0-ad56-ad4fa4fac585"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-439cf13e-dc98-4fc0-ad56-ad4fa4fac585"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-5a357331-ae11-4a4d-a6c2-06a7517372bd {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-5a357331-ae11-4a4d-a6c2-06a7517372bd {
  background-image: url();
}








#s-5a357331-ae11-4a4d-a6c2-06a7517372bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5a357331-ae11-4a4d-a6c2-06a7517372bd {
  cursor: pointer;
}#s-5a357331-ae11-4a4d-a6c2-06a7517372bd.shg-box.shg-c {
  justify-content: center;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}
#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0:hover {opacity: 1 !important;}


.shg-image-margin-container-s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling */
  
  
  
  
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  margin: 0 !important;
  overflow: hidden;
}






.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  margin: 0 !important;
  overflow: hidden;
}






.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  margin: 0 !important;
  overflow: hidden;
}






.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  margin: 0 !important;
  overflow: hidden;
}






.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 {
  margin: 0 !important;
  overflow: hidden;
}






.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b695ff2-3784-4de7-abf3-fe5696a8f2e0.shogun-image {
  box-sizing: border-box;
}




}
#s-200d9860-6623-4e0b-9a70-ec5e490dd0dd {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-200d9860-6623-4e0b-9a70-ec5e490dd0dd .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-10a51389-6b1d-48eb-afde-a86f23e40b81 {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-10a51389-6b1d-48eb-afde-a86f23e40b81 {
  background-image: url();
}








#s-10a51389-6b1d-48eb-afde-a86f23e40b81 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-10a51389-6b1d-48eb-afde-a86f23e40b81 {
  cursor: pointer;
}#s-10a51389-6b1d-48eb-afde-a86f23e40b81.shg-box.shg-c {
  justify-content: center;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}



.shg-image-margin-container-s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling */
  
  
  
  
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  margin: 0 !important;
  overflow: hidden;
}






.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 .shogun-image-content {
  
    align-items: center;
  
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  margin: 0 !important;
  overflow: hidden;
}






.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 .shogun-image-content {
  
    align-items: center;
  
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  margin: 0 !important;
  overflow: hidden;
}






.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 .shogun-image-content {
  
    align-items: center;
  
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  margin: 0 !important;
  overflow: hidden;
}






.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 .shogun-image-content {
  
    align-items: center;
  
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 {
  margin: 0 !important;
  overflow: hidden;
}






.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211 .shogun-image-content {
  
    align-items: center;
  
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b7efdf3-cb65-4b5a-81aa-5bc1a1a60211.shogun-image {
  box-sizing: border-box;
}




}
#s-cee119cb-4d3c-4eac-9ee8-812607012cbe {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-cee119cb-4d3c-4eac-9ee8-812607012cbe .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-620325fe-4e11-4272-be9b-21bed747a72f {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-620325fe-4e11-4272-be9b-21bed747a72f {
  background-image: url();
}








#s-620325fe-4e11-4272-be9b-21bed747a72f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-620325fe-4e11-4272-be9b-21bed747a72f {
  cursor: pointer;
}#s-620325fe-4e11-4272-be9b-21bed747a72f.shg-box.shg-c {
  justify-content: center;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}



.shg-image-margin-container-s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling */
  
  
  
  
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  margin: 0 !important;
  overflow: hidden;
}






.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac .shogun-image-content {
  
    align-items: center;
  
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  margin: 0 !important;
  overflow: hidden;
}






.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac .shogun-image-content {
  
    align-items: center;
  
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  margin: 0 !important;
  overflow: hidden;
}






.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac .shogun-image-content {
  
    align-items: center;
  
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  margin: 0 !important;
  overflow: hidden;
}






.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac .shogun-image-content {
  
    align-items: center;
  
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac {
  margin: 0 !important;
  overflow: hidden;
}






.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac .shogun-image-content {
  
    align-items: center;
  
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bed6d2e0-0696-4d93-bd28-4532282ef6ac.shogun-image {
  box-sizing: border-box;
}




}
#s-df3b9141-8b50-4b63-b009-91367beddff8 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-df3b9141-8b50-4b63-b009-91367beddff8 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-0e84eb51-b189-4e6d-a4da-749cebac3d36 {
  margin-top: 20px;
margin-bottom: 20px;
padding-right: 2%;
}

@media (min-width: 0px) {
[id="s-0e84eb51-b189-4e6d-a4da-749cebac3d36"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-0e84eb51-b189-4e6d-a4da-749cebac3d36"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0e84eb51-b189-4e6d-a4da-749cebac3d36"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0e84eb51-b189-4e6d-a4da-749cebac3d36"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-6a8360be-27ac-4ce5-84fe-2351886028a7 {
  margin-right: 0%;
padding-left: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-6a8360be-27ac-4ce5-84fe-2351886028a7 {
  background-image: url();
}








#s-6a8360be-27ac-4ce5-84fe-2351886028a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6a8360be-27ac-4ce5-84fe-2351886028a7 {
  cursor: pointer;
}#s-6a8360be-27ac-4ce5-84fe-2351886028a7.shg-box.shg-c {
  justify-content: center;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}



.shg-image-margin-container-s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling */
  
  
  
  
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  margin: 0 !important;
  overflow: hidden;
}






.s-1238919b-7717-47ff-a2b0-43594ac6b1d3 .shogun-image-content {
  
    align-items: center;
  
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  margin: 0 !important;
  overflow: hidden;
}






.s-1238919b-7717-47ff-a2b0-43594ac6b1d3 .shogun-image-content {
  
    align-items: center;
  
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  margin: 0 !important;
  overflow: hidden;
}






.s-1238919b-7717-47ff-a2b0-43594ac6b1d3 .shogun-image-content {
  
    align-items: center;
  
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  margin: 0 !important;
  overflow: hidden;
}






.s-1238919b-7717-47ff-a2b0-43594ac6b1d3 .shogun-image-content {
  
    align-items: center;
  
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3 {
  margin: 0 !important;
  overflow: hidden;
}






.s-1238919b-7717-47ff-a2b0-43594ac6b1d3 .shogun-image-content {
  
    align-items: center;
  
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1238919b-7717-47ff-a2b0-43594ac6b1d3.shogun-image {
  box-sizing: border-box;
}




}
#s-bd38e8ee-1bb7-4873-a603-0ef52682f7e5 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-bd38e8ee-1bb7-4873-a603-0ef52682f7e5 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-681a6345-d627-4613-b149-fb67a3aee033 {
  margin-right: 0%;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-681a6345-d627-4613-b149-fb67a3aee033 {
  background-image: url();
}








#s-681a6345-d627-4613-b149-fb67a3aee033 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-681a6345-d627-4613-b149-fb67a3aee033 {
  cursor: pointer;
}#s-681a6345-d627-4613-b149-fb67a3aee033.shg-box.shg-c {
  justify-content: center;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}



.shg-image-margin-container-s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling */
  
  
  
  
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  margin: 0 !important;
  overflow: hidden;
}






.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e .shogun-image-content {
  
    align-items: center;
  
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  margin: 0 !important;
  overflow: hidden;
}






.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e .shogun-image-content {
  
    align-items: center;
  
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  margin: 0 !important;
  overflow: hidden;
}






.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e .shogun-image-content {
  
    align-items: center;
  
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  margin: 0 !important;
  overflow: hidden;
}






.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e .shogun-image-content {
  
    align-items: center;
  
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e {
  margin: 0 !important;
  overflow: hidden;
}






.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e .shogun-image-content {
  
    align-items: center;
  
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cb20ceda-dd69-4cba-9313-ccc6f51c5e3e.shogun-image {
  box-sizing: border-box;
}




}
#s-34db49db-e03e-4f39-b434-b4788ae3babc {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-34db49db-e03e-4f39-b434-b4788ae3babc .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-fc4a02fd-e73c-4919-aa11-493e0308e789 {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-fc4a02fd-e73c-4919-aa11-493e0308e789 {
  background-image: url();
}








#s-fc4a02fd-e73c-4919-aa11-493e0308e789 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fc4a02fd-e73c-4919-aa11-493e0308e789 {
  cursor: pointer;
}#s-fc4a02fd-e73c-4919-aa11-493e0308e789.shg-box.shg-c {
  justify-content: center;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}



.shg-image-margin-container-s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling */
  
  
  
  
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  margin: 0 !important;
  overflow: hidden;
}






.s-da99b394-f41c-4903-b32b-4ee1584e5e8e .shogun-image-content {
  
    align-items: center;
  
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  margin: 0 !important;
  overflow: hidden;
}






.s-da99b394-f41c-4903-b32b-4ee1584e5e8e .shogun-image-content {
  
    align-items: center;
  
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  margin: 0 !important;
  overflow: hidden;
}






.s-da99b394-f41c-4903-b32b-4ee1584e5e8e .shogun-image-content {
  
    align-items: center;
  
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  margin: 0 !important;
  overflow: hidden;
}






.s-da99b394-f41c-4903-b32b-4ee1584e5e8e .shogun-image-content {
  
    align-items: center;
  
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e {
  margin: 0 !important;
  overflow: hidden;
}






.s-da99b394-f41c-4903-b32b-4ee1584e5e8e .shogun-image-content {
  
    align-items: center;
  
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da99b394-f41c-4903-b32b-4ee1584e5e8e.shogun-image {
  box-sizing: border-box;
}




}
#s-17e0d066-6f2a-48ca-9112-f19c574b9eb3 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-17e0d066-6f2a-48ca-9112-f19c574b9eb3 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-d60ee82e-2347-4ebc-bd7d-43295f546273 {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-d60ee82e-2347-4ebc-bd7d-43295f546273 {
  background-image: url();
}








#s-d60ee82e-2347-4ebc-bd7d-43295f546273 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d60ee82e-2347-4ebc-bd7d-43295f546273 {
  cursor: pointer;
}#s-d60ee82e-2347-4ebc-bd7d-43295f546273.shg-box.shg-c {
  justify-content: center;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling */
  
  
  
  
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }




.s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-content {
  
    align-items: center;
  
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
      position: relative;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }




.s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-content {
  
    align-items: center;
  
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
      position: relative;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }




.s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-content {
  
    align-items: center;
  
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
      position: relative;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }




.s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-content {
  
    align-items: center;
  
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
      position: relative;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }




.s-51e8e9c5-7782-412d-9b4c-350b6af87a63 .shogun-image-content {
  
    align-items: center;
  
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container {
      position: relative;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-51e8e9c5-7782-412d-9b4c-350b6af87a63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-cd3e8380-c1ed-47b4-90cf-0af89f362d1f {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-cd3e8380-c1ed-47b4-90cf-0af89f362d1f .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f {
  min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}
@media (min-width: 1200px){#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f {
  display: none;
}
#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f, #wrap-s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f {
  display: none;
}
#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f, #wrap-s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f {
  display: none;
}
#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f, #wrap-s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f { display: none !important; }}







#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-76dff215-ffa1-4ece-a79d-2e8fd5876b1f.shg-box.shg-c {
  justify-content: center;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  text-align: center;
}



.shg-image-margin-container-s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
    
    
    
    
  }


.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 .shogun-image-content {
  
    align-items: center;
  
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
    
    
    
    
  }


.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 .shogun-image-content {
  
    align-items: center;
  
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
    
    
    
    
  }


.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 .shogun-image-content {
  
    align-items: center;
  
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
    
    
    
    
  }


.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 .shogun-image-content {
  
    align-items: center;
  
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
    
    
    
    
  }


.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8 .shogun-image-content {
  
    align-items: center;
  
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-924e4a3f-41f7-4491-bdfb-7207eca0d8e8.shogun-image {
  box-sizing: border-box;
}




}
@media (min-width: 0px) {
[id="s-d7ac9229-480f-4f0d-ba44-9e0e9c621d5a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-d7ac9229-480f-4f0d-ba44-9e0e9c621d5a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-d7ac9229-480f-4f0d-ba44-9e0e9c621d5a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-d7ac9229-480f-4f0d-ba44-9e0e9c621d5a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-10fec128-5dfb-40a9-a04f-34708391c748 {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-10fec128-5dfb-40a9-a04f-34708391c748 {
  background-image: url();
}








#s-10fec128-5dfb-40a9-a04f-34708391c748 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-10fec128-5dfb-40a9-a04f-34708391c748 {
  cursor: pointer;
}#s-10fec128-5dfb-40a9-a04f-34708391c748.shg-box.shg-c {
  justify-content: center;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}
#s-b550c437-cc8d-418d-9559-e3c9600d92b2:hover {opacity: 1 !important;}


.shg-image-margin-container-s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling */
  
  
  
  
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  margin: 0 !important;
  overflow: hidden;
}






.s-b550c437-cc8d-418d-9559-e3c9600d92b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  margin: 0 !important;
  overflow: hidden;
}






.s-b550c437-cc8d-418d-9559-e3c9600d92b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  margin: 0 !important;
  overflow: hidden;
}






.s-b550c437-cc8d-418d-9559-e3c9600d92b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  margin: 0 !important;
  overflow: hidden;
}






.s-b550c437-cc8d-418d-9559-e3c9600d92b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2 {
  margin: 0 !important;
  overflow: hidden;
}






.s-b550c437-cc8d-418d-9559-e3c9600d92b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b550c437-cc8d-418d-9559-e3c9600d92b2.shogun-image {
  box-sizing: border-box;
}




}
#s-eeb70489-37bc-46bc-958c-fece5e81e4a8 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-eeb70489-37bc-46bc-958c-fece5e81e4a8 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-55b2c5ef-d1a0-4003-8023-bf91766dd62c {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-55b2c5ef-d1a0-4003-8023-bf91766dd62c {
  background-image: url();
}








#s-55b2c5ef-d1a0-4003-8023-bf91766dd62c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-55b2c5ef-d1a0-4003-8023-bf91766dd62c {
  cursor: pointer;
}#s-55b2c5ef-d1a0-4003-8023-bf91766dd62c.shg-box.shg-c {
  justify-content: center;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}



.shg-image-margin-container-s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling */
  
  
  
  
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  margin: 0 !important;
  overflow: hidden;
}






.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 .shogun-image-content {
  
    align-items: center;
  
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  margin: 0 !important;
  overflow: hidden;
}






.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 .shogun-image-content {
  
    align-items: center;
  
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  margin: 0 !important;
  overflow: hidden;
}






.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 .shogun-image-content {
  
    align-items: center;
  
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  margin: 0 !important;
  overflow: hidden;
}






.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 .shogun-image-content {
  
    align-items: center;
  
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 {
  margin: 0 !important;
  overflow: hidden;
}






.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41 .shogun-image-content {
  
    align-items: center;
  
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shg-align-container {
  display: flex;
  justify-content: center
}

.s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-82a7ab76-6083-4ee4-b9e6-1aa1b9a7ff41.shogun-image {
  box-sizing: border-box;
}




}
#s-cf946a7c-3cbb-4fec-ba9a-7f1424affe10 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-cf946a7c-3cbb-4fec-ba9a-7f1424affe10 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



@media (min-width: 0px) {
[id="s-657bdeaf-08d4-4253-8faa-1c827d57cb4c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-657bdeaf-08d4-4253-8faa-1c827d57cb4c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-657bdeaf-08d4-4253-8faa-1c827d57cb4c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-657bdeaf-08d4-4253-8faa-1c827d57cb4c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-cd4fdbbd-8a1e-423e-bd56-bf9da2f9332e {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-cd4fdbbd-8a1e-423e-bd56-bf9da2f9332e {
  background-image: url();
}








#s-cd4fdbbd-8a1e-423e-bd56-bf9da2f9332e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cd4fdbbd-8a1e-423e-bd56-bf9da2f9332e {
  cursor: pointer;
}#s-cd4fdbbd-8a1e-423e-bd56-bf9da2f9332e.shg-box.shg-c {
  justify-content: center;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}



.shg-image-margin-container-s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling */
  
  
  
  
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  margin: 0 !important;
  overflow: hidden;
}






.s-c589c892-c3eb-4925-a611-d5186e543fa8 .shogun-image-content {
  
    align-items: center;
  
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  margin: 0 !important;
  overflow: hidden;
}






.s-c589c892-c3eb-4925-a611-d5186e543fa8 .shogun-image-content {
  
    align-items: center;
  
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  margin: 0 !important;
  overflow: hidden;
}






.s-c589c892-c3eb-4925-a611-d5186e543fa8 .shogun-image-content {
  
    align-items: center;
  
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  margin: 0 !important;
  overflow: hidden;
}






.s-c589c892-c3eb-4925-a611-d5186e543fa8 .shogun-image-content {
  
    align-items: center;
  
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8 {
  margin: 0 !important;
  overflow: hidden;
}






.s-c589c892-c3eb-4925-a611-d5186e543fa8 .shogun-image-content {
  
    align-items: center;
  
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c589c892-c3eb-4925-a611-d5186e543fa8.shogun-image {
  box-sizing: border-box;
}




}
#s-0678b637-7ca8-4a58-96cc-2a7a91fe78d6 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-0678b637-7ca8-4a58-96cc-2a7a91fe78d6 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-0a3fd302-eb8b-4622-9511-9d773105842d {
  margin-right: 0%;
padding-left: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-0a3fd302-eb8b-4622-9511-9d773105842d {
  background-image: url();
}








#s-0a3fd302-eb8b-4622-9511-9d773105842d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0a3fd302-eb8b-4622-9511-9d773105842d {
  cursor: pointer;
}#s-0a3fd302-eb8b-4622-9511-9d773105842d.shg-box.shg-c {
  justify-content: center;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}



.shg-image-margin-container-s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling */
  
  
  
  
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  margin: 0 !important;
  overflow: hidden;
}






.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a .shogun-image-content {
  
    align-items: center;
  
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  margin: 0 !important;
  overflow: hidden;
}






.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a .shogun-image-content {
  
    align-items: center;
  
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  margin: 0 !important;
  overflow: hidden;
}






.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a .shogun-image-content {
  
    align-items: center;
  
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  margin: 0 !important;
  overflow: hidden;
}






.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a .shogun-image-content {
  
    align-items: center;
  
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a {
  margin: 0 !important;
  overflow: hidden;
}






.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a .shogun-image-content {
  
    align-items: center;
  
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-161fbde1-19ab-45d1-b8a3-68934ef53c0a.shogun-image {
  box-sizing: border-box;
}




}
#s-9a84f890-5a83-4335-bf60-3d71005704a5 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-9a84f890-5a83-4335-bf60-3d71005704a5 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



@media (min-width: 0px) {
[id="s-a5cc87d3-7cc4-4b9a-852a-4b5cf237860e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-a5cc87d3-7cc4-4b9a-852a-4b5cf237860e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-a5cc87d3-7cc4-4b9a-852a-4b5cf237860e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-a5cc87d3-7cc4-4b9a-852a-4b5cf237860e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-891cccaf-d6ca-49de-b906-1444cfab7e34 {
  margin-right: 0%;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-891cccaf-d6ca-49de-b906-1444cfab7e34 {
  background-image: url();
}








#s-891cccaf-d6ca-49de-b906-1444cfab7e34 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-891cccaf-d6ca-49de-b906-1444cfab7e34 {
  cursor: pointer;
}#s-891cccaf-d6ca-49de-b906-1444cfab7e34.shg-box.shg-c {
  justify-content: center;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}



.shg-image-margin-container-s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling */
  
  
  
  
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  margin: 0 !important;
  overflow: hidden;
}






.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e .shogun-image-content {
  
    align-items: center;
  
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  margin: 0 !important;
  overflow: hidden;
}






.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e .shogun-image-content {
  
    align-items: center;
  
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  margin: 0 !important;
  overflow: hidden;
}






.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e .shogun-image-content {
  
    align-items: center;
  
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  margin: 0 !important;
  overflow: hidden;
}






.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e .shogun-image-content {
  
    align-items: center;
  
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e {
  margin: 0 !important;
  overflow: hidden;
}






.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e .shogun-image-content {
  
    align-items: center;
  
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06d23dad-9b9f-4a33-9dd5-ec9af5ebd74e.shogun-image {
  box-sizing: border-box;
}




}
#s-655baf5b-5911-40a3-b871-c4023b1cd5c6 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-655baf5b-5911-40a3-b871-c4023b1cd5c6 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-118ecedb-9cb7-4605-ba7a-3ec118f6cde3 {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-118ecedb-9cb7-4605-ba7a-3ec118f6cde3 {
  background-image: url();
}








#s-118ecedb-9cb7-4605-ba7a-3ec118f6cde3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-118ecedb-9cb7-4605-ba7a-3ec118f6cde3 {
  cursor: pointer;
}#s-118ecedb-9cb7-4605-ba7a-3ec118f6cde3.shg-box.shg-c {
  justify-content: center;
}

#s-600349de-ae37-497b-897e-f879523b7b18 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
text-align: center;
}



.shg-image-margin-container-s-600349de-ae37-497b-897e-f879523b7b18 {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling */
  
  
  
  
}

#s-600349de-ae37-497b-897e-f879523b7b18 {
  margin: 0 !important;
  overflow: hidden;
}






.s-600349de-ae37-497b-897e-f879523b7b18 .shogun-image-content {
  
    align-items: center;
  
}

.s-600349de-ae37-497b-897e-f879523b7b18.shg-align-container {
  display: flex;
  justify-content: center
}

.s-600349de-ae37-497b-897e-f879523b7b18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-600349de-ae37-497b-897e-f879523b7b18.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-600349de-ae37-497b-897e-f879523b7b18 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-600349de-ae37-497b-897e-f879523b7b18 {
  margin: 0 !important;
  overflow: hidden;
}






.s-600349de-ae37-497b-897e-f879523b7b18 .shogun-image-content {
  
    align-items: center;
  
}

.s-600349de-ae37-497b-897e-f879523b7b18.shg-align-container {
  display: flex;
  justify-content: center
}

.s-600349de-ae37-497b-897e-f879523b7b18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-600349de-ae37-497b-897e-f879523b7b18.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-600349de-ae37-497b-897e-f879523b7b18 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-600349de-ae37-497b-897e-f879523b7b18 {
  margin: 0 !important;
  overflow: hidden;
}






.s-600349de-ae37-497b-897e-f879523b7b18 .shogun-image-content {
  
    align-items: center;
  
}

.s-600349de-ae37-497b-897e-f879523b7b18.shg-align-container {
  display: flex;
  justify-content: center
}

.s-600349de-ae37-497b-897e-f879523b7b18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-600349de-ae37-497b-897e-f879523b7b18.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-600349de-ae37-497b-897e-f879523b7b18 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-600349de-ae37-497b-897e-f879523b7b18 {
  margin: 0 !important;
  overflow: hidden;
}






.s-600349de-ae37-497b-897e-f879523b7b18 .shogun-image-content {
  
    align-items: center;
  
}

.s-600349de-ae37-497b-897e-f879523b7b18.shg-align-container {
  display: flex;
  justify-content: center
}

.s-600349de-ae37-497b-897e-f879523b7b18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-600349de-ae37-497b-897e-f879523b7b18.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-600349de-ae37-497b-897e-f879523b7b18 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-600349de-ae37-497b-897e-f879523b7b18 {
  margin: 0 !important;
  overflow: hidden;
}






.s-600349de-ae37-497b-897e-f879523b7b18 .shogun-image-content {
  
    align-items: center;
  
}

.s-600349de-ae37-497b-897e-f879523b7b18.shg-align-container {
  display: flex;
  justify-content: center
}

.s-600349de-ae37-497b-897e-f879523b7b18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-600349de-ae37-497b-897e-f879523b7b18.shogun-image {
  box-sizing: border-box;
}




}
#s-c24fd53c-9435-4643-b3ee-30392d8a50e6 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c24fd53c-9435-4643-b3ee-30392d8a50e6 .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-c31148ae-8537-4c9a-bc04-ea603b2f414d {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-c31148ae-8537-4c9a-bc04-ea603b2f414d"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 768px) {
[id="s-c31148ae-8537-4c9a-bc04-ea603b2f414d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-c31148ae-8537-4c9a-bc04-ea603b2f414d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-c31148ae-8537-4c9a-bc04-ea603b2f414d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-60d0519e-8e89-4636-9de5-c702d498884a {
  margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(77, 88, 88, 0.5);
border-style: solid;
border-radius: 0px;
min-height: 50px;
}

#s-60d0519e-8e89-4636-9de5-c702d498884a {
  background-image: url();
}








#s-60d0519e-8e89-4636-9de5-c702d498884a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-60d0519e-8e89-4636-9de5-c702d498884a {
  cursor: pointer;
}#s-60d0519e-8e89-4636-9de5-c702d498884a.shg-box.shg-c {
  justify-content: center;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}



.shg-image-margin-container-s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
  /* Add padding handling */
  
  
  
  
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }




.s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-content {
  
    align-items: center;
  
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ddc834ed-0409-4865-beb5-688d2219ab92 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
      position: relative;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }




.s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-content {
  
    align-items: center;
  
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ddc834ed-0409-4865-beb5-688d2219ab92 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
      position: relative;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }




.s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-content {
  
    align-items: center;
  
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ddc834ed-0409-4865-beb5-688d2219ab92 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
      position: relative;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }




.s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-content {
  
    align-items: center;
  
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ddc834ed-0409-4865-beb5-688d2219ab92 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
      position: relative;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ddc834ed-0409-4865-beb5-688d2219ab92 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }




.s-ddc834ed-0409-4865-beb5-688d2219ab92 .shogun-image-content {
  
    align-items: center;
  
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ddc834ed-0409-4865-beb5-688d2219ab92 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container {
      position: relative;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ddc834ed-0409-4865-beb5-688d2219ab92 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-3fa3302b-d395-47bf-ae26-f31645071d8c {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-3fa3302b-d395-47bf-ae26-f31645071d8c .shogun-heading-component h3 {
  color: rgba(77, 88, 88, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-8f45bec4-4dcd-44f0-8ff6-aa58202e31c5 {
  margin-top: 8px;
margin-bottom: 8px;
}
@media (min-width: 768px) and (max-width: 991px){#s-8f45bec4-4dcd-44f0-8ff6-aa58202e31c5 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-8f45bec4-4dcd-44f0-8ff6-aa58202e31c5 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-8f45bec4-4dcd-44f0-8ff6-aa58202e31c5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8f45bec4-4dcd-44f0-8ff6-aa58202e31c5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-8f45bec4-4dcd-44f0-8ff6-aa58202e31c5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-8f45bec4-4dcd-44f0-8ff6-aa58202e31c5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 0px) {
[id="s-5ea4bcbd-e328-4b65-a9b4-4ff22a20aba6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5ea4bcbd-e328-4b65-a9b4-4ff22a20aba6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5ea4bcbd-e328-4b65-a9b4-4ff22a20aba6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5ea4bcbd-e328-4b65-a9b4-4ff22a20aba6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-8002013d-78d4-4121-be08-78432937506b {
  text-align: center;
}







  #s-8002013d-78d4-4121-be08-78432937506b img.shogun-image {
    

    
    
    
  }


#s-8002013d-78d4-4121-be08-78432937506b .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-835e74ec-7389-4be5-a1a1-a72a0d65dd53"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-835e74ec-7389-4be5-a1a1-a72a0d65dd53"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-835e74ec-7389-4be5-a1a1-a72a0d65dd53"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-835e74ec-7389-4be5-a1a1-a72a0d65dd53"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-143379ce-112d-4419-83e9-8dc88a3c61bd {
  text-align: center;
}







  #s-143379ce-112d-4419-83e9-8dc88a3c61bd img.shogun-image {
    

    
    
    
  }


#s-143379ce-112d-4419-83e9-8dc88a3c61bd .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-8287e6d8-e4e8-40f9-8617-b77abd423509"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8287e6d8-e4e8-40f9-8617-b77abd423509"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8287e6d8-e4e8-40f9-8617-b77abd423509"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8287e6d8-e4e8-40f9-8617-b77abd423509"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-6c6eff5c-bd7d-4557-99a4-2eb5b73361e4 {
  text-align: center;
}







  #s-6c6eff5c-bd7d-4557-99a4-2eb5b73361e4 img.shogun-image {
    

    
    
    
  }


#s-6c6eff5c-bd7d-4557-99a4-2eb5b73361e4 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-3994654a-cf51-4f8b-8af5-4e076cb85372"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3994654a-cf51-4f8b-8af5-4e076cb85372"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3994654a-cf51-4f8b-8af5-4e076cb85372"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3994654a-cf51-4f8b-8af5-4e076cb85372"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-54aab332-fe8f-485b-9166-7404b74c9658 {
  text-align: center;
}







  #s-54aab332-fe8f-485b-9166-7404b74c9658 img.shogun-image {
    

    
    
    
  }


#s-54aab332-fe8f-485b-9166-7404b74c9658 .shogun-image-content {
  
    align-items: center;
  
}

#s-3ccc45e3-2691-4fa6-b45c-205787f3e195 {
  margin-top: 8px;
margin-bottom: 8px;
}
@media (min-width: 768px) and (max-width: 991px){#s-3ccc45e3-2691-4fa6-b45c-205787f3e195 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-3ccc45e3-2691-4fa6-b45c-205787f3e195 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-3ccc45e3-2691-4fa6-b45c-205787f3e195"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3ccc45e3-2691-4fa6-b45c-205787f3e195"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-3ccc45e3-2691-4fa6-b45c-205787f3e195"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-3ccc45e3-2691-4fa6-b45c-205787f3e195"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 0px) {
[id="s-89eafc98-60ed-48af-8f93-5fe7f3508cb6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-89eafc98-60ed-48af-8f93-5fe7f3508cb6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-89eafc98-60ed-48af-8f93-5fe7f3508cb6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-89eafc98-60ed-48af-8f93-5fe7f3508cb6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-6dde9edb-a282-489c-82b7-29cbe19e7c05 {
  text-align: center;
}







  #s-6dde9edb-a282-489c-82b7-29cbe19e7c05 img.shogun-image {
    

    
    
    
  }


#s-6dde9edb-a282-489c-82b7-29cbe19e7c05 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-40778175-fec2-4071-9dea-0012ca802c37"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-40778175-fec2-4071-9dea-0012ca802c37"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-40778175-fec2-4071-9dea-0012ca802c37"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-40778175-fec2-4071-9dea-0012ca802c37"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-0250587a-58f3-4805-a039-f0fd30184a19 {
  text-align: center;
}







  #s-0250587a-58f3-4805-a039-f0fd30184a19 img.shogun-image {
    

    
    
    
  }


#s-0250587a-58f3-4805-a039-f0fd30184a19 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-d774c75b-638d-424e-b425-4be875b1abf0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d774c75b-638d-424e-b425-4be875b1abf0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d774c75b-638d-424e-b425-4be875b1abf0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d774c75b-638d-424e-b425-4be875b1abf0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-8ad7fdbc-37ff-41bd-8fad-8a90ecb3c2ff {
  text-align: center;
}







  #s-8ad7fdbc-37ff-41bd-8fad-8a90ecb3c2ff img.shogun-image {
    

    
    
    
  }


#s-8ad7fdbc-37ff-41bd-8fad-8a90ecb3c2ff .shogun-image-content {
  
    align-items: center;
  
}

#s-66806b79-a332-418a-b0a6-bad6fe022462 {
  margin-top: 8px;
margin-bottom: 8px;
}
@media (min-width: 768px) and (max-width: 991px){#s-66806b79-a332-418a-b0a6-bad6fe022462 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-66806b79-a332-418a-b0a6-bad6fe022462 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-66806b79-a332-418a-b0a6-bad6fe022462"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-66806b79-a332-418a-b0a6-bad6fe022462"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-66806b79-a332-418a-b0a6-bad6fe022462"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-66806b79-a332-418a-b0a6-bad6fe022462"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 0px) {
[id="s-2e3fe98c-7a16-4de9-8d46-a68646370250"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2e3fe98c-7a16-4de9-8d46-a68646370250"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2e3fe98c-7a16-4de9-8d46-a68646370250"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2e3fe98c-7a16-4de9-8d46-a68646370250"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-51d4f2dd-54bc-4509-8b9f-45d411b8ac7d {
  text-align: center;
}







  #s-51d4f2dd-54bc-4509-8b9f-45d411b8ac7d img.shogun-image {
    

    
    
    
  }


#s-51d4f2dd-54bc-4509-8b9f-45d411b8ac7d .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-0f20d71f-53c7-4d5f-bf80-8c4e50d353ca"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0f20d71f-53c7-4d5f-bf80-8c4e50d353ca"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0f20d71f-53c7-4d5f-bf80-8c4e50d353ca"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0f20d71f-53c7-4d5f-bf80-8c4e50d353ca"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-e76efa64-c66a-4453-bed9-efcd2b4946ba {
  text-align: center;
}







  #s-e76efa64-c66a-4453-bed9-efcd2b4946ba img.shogun-image {
    

    
    
    
  }


#s-e76efa64-c66a-4453-bed9-efcd2b4946ba .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-ed0c37f0-d165-4001-b284-817627e6c53a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ed0c37f0-d165-4001-b284-817627e6c53a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ed0c37f0-d165-4001-b284-817627e6c53a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ed0c37f0-d165-4001-b284-817627e6c53a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-3c9430cc-3fc0-4d0a-8534-abdf36e5e6f2 {
  text-align: center;
}







  #s-3c9430cc-3fc0-4d0a-8534-abdf36e5e6f2 img.shogun-image {
    

    
    
    
  }


#s-3c9430cc-3fc0-4d0a-8534-abdf36e5e6f2 .shogun-image-content {
  
    align-items: center;
  
}

#s-6884e8f5-58da-440c-b29c-23b0ddc780e8 {
  margin-left: auto;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
min-height: 50px;
}








#s-6884e8f5-58da-440c-b29c-23b0ddc780e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6884e8f5-58da-440c-b29c-23b0ddc780e8.shg-box.shg-c {
  justify-content: center;
}

#s-fc0e30a0-5455-438b-9395-19f213dfed33 {
  margin-left: auto;
margin-right: auto;
padding-left: 1%;
padding-right: 1%;
min-height: 50px;
max-width: 1388px;
}








#s-fc0e30a0-5455-438b-9395-19f213dfed33 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fc0e30a0-5455-438b-9395-19f213dfed33.shg-box.shg-c {
  justify-content: center;
}

/* Duplicated Styles are also in Category base.css - keep them in sync */

.shg-swiper-container {
  --arrow-button-size: 35px;
  --pagination-height: 32px;
  --swiper-pagination-bullet-size: 14px;
  --swiper-pagination-bottom: 8px;

  position: relative;
  /*
   * In case you are wondering, why it's set to grid, please see the links below:
   * https://github.com/nolimits4web/swiper/issues/3599
   * https://github.com/nolimits4web/swiper/issues/3599#issuecomment-1290283431
   */
  display: grid;
  padding: 8px var(--arrow-button-size) var(--pagination-height)
    var(--arrow-button-size);
}

.shg-swiper:not(.swiper-initialized) {
  visibility: hidden;
  display: flex;
  overflow-x: hidden;
}

.shg-swiper-container > .shg-swiper {
  margin-left: 0;
  margin-right: 0;
}

.shg-swiper:not(.swiper-initialized) ~ .swiper-pagination,
.shg-swiper:not(.swiper-initialized) ~ .swiper-button-prev,
.shg-swiper:not(.swiper-initialized) ~ .swiper-button-next {
  visibility: hidden;
}

.shg-swiper-container > .swiper-button-prev,
.shg-swiper-container > .swiper-button-next {
  top: 0;
  height: calc(100% - var(--pagination-height));
  width: var(--arrow-button-size);
  margin: 0;
}

.shg-swiper-container > .swiper-button-prev {
  left: 0;
}

.shg-swiper-container > .swiper-button-next {
  right: 0;
}

.shg-swiper-container > .swiper-button-next:after,
.shg-swiper-container > .swiper-button-prev:after {
  /* Ditch default Swiper arrow */
  display: none;
}

.shg-swiper-container > .swiper-button-next svg,
.shg-swiper-container > .swiper-button-prev svg {
  width: var(--arrow-button-size);
  height: var(--arrow-button-size);
}

#s-715c827b-ef0e-4251-b926-c988a896b61b {
  margin-left: auto;
margin-right: auto;
padding-bottom: 10px;
}

/* Duplicated Styles are also in Category dynamic.css.liquid - keep them in sync */

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b {
  --swiper-pagination-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b > .swiper-button-prev,
#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b > .swiper-button-next {
  
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b > .swiper-button-prev svg,
#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-715c827b-ef0e-4251-b926-c988a896b61b .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-d0fbf809-4733-4529-8d06-ec0ab7a68723 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-d0fbf809-4733-4529-8d06-ec0ab7a68723"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-d0fbf809-4733-4529-8d06-ec0ab7a68723"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 41.666666666666664px);
}

}

@media (min-width: 992px) {
[id="s-d0fbf809-4733-4529-8d06-ec0ab7a68723"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 41.666666666666664px);
}

}

@media (min-width: 1200px) {
[id="s-d0fbf809-4733-4529-8d06-ec0ab7a68723"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 41.666666666666664px);
}

}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-6baf07f9-4b82-403f-b9cc-90d263663e69:hover {opacity: 0.5 !important;}


.shg-image-margin-container-s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  margin-left: auto;
  margin-right: auto;
  
  
  /* Add padding handling */
  
  
  
  
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-content {
  
    align-items: center;
  
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
      position: relative;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-content {
  
    align-items: center;
  
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
      position: relative;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-content {
  
    align-items: center;
  
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
      position: relative;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-content {
  
    align-items: center;
  
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
      position: relative;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6baf07f9-4b82-403f-b9cc-90d263663e69 .shogun-image-content {
  
    align-items: center;
  
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container {
      position: relative;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6baf07f9-4b82-403f-b9cc-90d263663e69 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2:hover {opacity: 0.5 !important;}


.shg-image-margin-container-s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  margin-left: auto;
  margin-right: auto;
  
  
  /* Add padding handling */
  
  
  
  
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-content {
  
    align-items: center;
  
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
      position: relative;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-content {
  
    align-items: center;
  
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
      position: relative;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-content {
  
    align-items: center;
  
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
      position: relative;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-content {
  
    align-items: center;
  
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
      position: relative;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 .shogun-image-content {
  
    align-items: center;
  
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container {
      position: relative;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-163e0ec0-0aa4-4a23-94c3-7f1d776bdfd2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-41bf990c-1796-4882-be6a-4d17d509c135 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-41bf990c-1796-4882-be6a-4d17d509c135:hover {opacity: 0.5 !important;}


.shg-image-margin-container-s-41bf990c-1796-4882-be6a-4d17d509c135 {
  margin-left: auto;
  margin-right: auto;
  
  
  /* Add padding handling */
  
  
  
  
}

#s-41bf990c-1796-4882-be6a-4d17d509c135 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-content {
  
    align-items: center;
  
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-41bf990c-1796-4882-be6a-4d17d509c135 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
      position: relative;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-41bf990c-1796-4882-be6a-4d17d509c135 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-41bf990c-1796-4882-be6a-4d17d509c135 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-content {
  
    align-items: center;
  
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-41bf990c-1796-4882-be6a-4d17d509c135 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
      position: relative;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-41bf990c-1796-4882-be6a-4d17d509c135 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-41bf990c-1796-4882-be6a-4d17d509c135 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-content {
  
    align-items: center;
  
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-41bf990c-1796-4882-be6a-4d17d509c135 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
      position: relative;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-41bf990c-1796-4882-be6a-4d17d509c135 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-41bf990c-1796-4882-be6a-4d17d509c135 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-content {
  
    align-items: center;
  
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-41bf990c-1796-4882-be6a-4d17d509c135 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
      position: relative;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-41bf990c-1796-4882-be6a-4d17d509c135 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-41bf990c-1796-4882-be6a-4d17d509c135 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-41bf990c-1796-4882-be6a-4d17d509c135 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-41bf990c-1796-4882-be6a-4d17d509c135 .shogun-image-content {
  
    align-items: center;
  
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shg-align-container {
  display: flex;
  justify-content: center
}

.s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-41bf990c-1796-4882-be6a-4d17d509c135 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container {
      position: relative;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-41bf990c-1796-4882-be6a-4d17d509c135 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-b9d22524-0125-40ad-8439-27774e849cb8 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-b9d22524-0125-40ad-8439-27774e849cb8:hover {opacity: 0.5 !important;}


.shg-image-margin-container-s-b9d22524-0125-40ad-8439-27774e849cb8 {
  margin-left: auto;
  margin-right: auto;
  
  
  /* Add padding handling */
  
  
  
  
}

#s-b9d22524-0125-40ad-8439-27774e849cb8 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b9d22524-0125-40ad-8439-27774e849cb8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
      position: relative;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-b9d22524-0125-40ad-8439-27774e849cb8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-b9d22524-0125-40ad-8439-27774e849cb8 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b9d22524-0125-40ad-8439-27774e849cb8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
      position: relative;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-b9d22524-0125-40ad-8439-27774e849cb8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-b9d22524-0125-40ad-8439-27774e849cb8 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b9d22524-0125-40ad-8439-27774e849cb8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
      position: relative;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-b9d22524-0125-40ad-8439-27774e849cb8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-b9d22524-0125-40ad-8439-27774e849cb8 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b9d22524-0125-40ad-8439-27774e849cb8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
      position: relative;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-b9d22524-0125-40ad-8439-27774e849cb8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-b9d22524-0125-40ad-8439-27774e849cb8 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b9d22524-0125-40ad-8439-27774e849cb8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-b9d22524-0125-40ad-8439-27774e849cb8 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b9d22524-0125-40ad-8439-27774e849cb8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container {
      position: relative;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9d22524-0125-40ad-8439-27774e849cb8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-6bd98d84-c6a8-417f-983c-59b335bf94c0:hover {opacity: 0.5 !important;}


.shg-image-margin-container-s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  margin-left: auto;
  margin-right: auto;
  
  
  /* Add padding handling */
  
  
  
  
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
      position: relative;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
      position: relative;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
      position: relative;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
      position: relative;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6bd98d84-c6a8-417f-983c-59b335bf94c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container {
      position: relative;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6bd98d84-c6a8-417f-983c-59b335bf94c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8:hover {opacity: 0.5 !important;}


.shg-image-margin-container-s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  margin-left: auto;
  margin-right: auto;
  
  
  /* Add padding handling */
  
  
  
  
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-content {
  
    align-items: center;
  
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
      position: relative;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-content {
  
    align-items: center;
  
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
      position: relative;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-content {
  
    align-items: center;
  
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
      position: relative;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-content {
  
    align-items: center;
  
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
      position: relative;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 .shogun-image-content {
  
    align-items: center;
  
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container {
      position: relative;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7ae6c6bd-911e-400a-af6e-7c0fac35abf8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-95e3e47d-f019-4fa3-aa00-c43581a245c2 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-95e3e47d-f019-4fa3-aa00-c43581a245c2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-95e3e47d-f019-4fa3-aa00-c43581a245c2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 41.666666666666664px);
}

}

@media (min-width: 992px) {
[id="s-95e3e47d-f019-4fa3-aa00-c43581a245c2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 41.666666666666664px);
}

}

@media (min-width: 1200px) {
[id="s-95e3e47d-f019-4fa3-aa00-c43581a245c2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 41.666666666666664px);
}

}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
opacity: 1;
}
#s-ef99567d-d86c-4e0d-b95f-e5796540c730:hover {opacity: 0.5 !important;}


.shg-image-margin-container-s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  margin-left: auto;
  margin-right: auto;
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
      position: relative;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
      position: relative;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
      position: relative;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
      position: relative;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ef99567d-d86c-4e0d-b95f-e5796540c730 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container {
      position: relative;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef99567d-d86c-4e0d-b95f-e5796540c730 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-6516f108-7132-4fb1-99fb-d21955904ea6:hover {opacity: 0.5 !important;}


.shg-image-margin-container-s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  margin-left: auto;
  margin-right: auto;
  
  
  /* Add padding handling */
  
  
  
  
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-content {
  
    align-items: center;
  
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6516f108-7132-4fb1-99fb-d21955904ea6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
      position: relative;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-content {
  
    align-items: center;
  
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6516f108-7132-4fb1-99fb-d21955904ea6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
      position: relative;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-content {
  
    align-items: center;
  
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6516f108-7132-4fb1-99fb-d21955904ea6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
      position: relative;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-content {
  
    align-items: center;
  
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6516f108-7132-4fb1-99fb-d21955904ea6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
      position: relative;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-6516f108-7132-4fb1-99fb-d21955904ea6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-6516f108-7132-4fb1-99fb-d21955904ea6 .shogun-image-content {
  
    align-items: center;
  
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6516f108-7132-4fb1-99fb-d21955904ea6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container {
      position: relative;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6516f108-7132-4fb1-99fb-d21955904ea6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-80352376-2bd8-4541-a64a-f2ad6d936721:hover {opacity: 0.5 !important;}


.shg-image-margin-container-s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  margin-left: auto;
  margin-right: auto;
  
  
  /* Add padding handling */
  
  
  
  
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-content {
  
    align-items: center;
  
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-80352376-2bd8-4541-a64a-f2ad6d936721 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
      position: relative;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-content {
  
    align-items: center;
  
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-80352376-2bd8-4541-a64a-f2ad6d936721 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
      position: relative;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-content {
  
    align-items: center;
  
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-80352376-2bd8-4541-a64a-f2ad6d936721 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
      position: relative;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-content {
  
    align-items: center;
  
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-80352376-2bd8-4541-a64a-f2ad6d936721 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
      position: relative;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-80352376-2bd8-4541-a64a-f2ad6d936721 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-80352376-2bd8-4541-a64a-f2ad6d936721 .shogun-image-content {
  
    align-items: center;
  
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-80352376-2bd8-4541-a64a-f2ad6d936721 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container {
      position: relative;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80352376-2bd8-4541-a64a-f2ad6d936721 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-ac697e78-9c34-4720-ad84-88c713ed21c8:hover {opacity: 0.5 !important;}


.shg-image-margin-container-s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  margin-left: auto;
  margin-right: auto;
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
      position: relative;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
      position: relative;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
      position: relative;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
      position: relative;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ac697e78-9c34-4720-ad84-88c713ed21c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container {
      position: relative;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ac697e78-9c34-4720-ad84-88c713ed21c8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-ec784063-9fbc-4221-868b-44f0b215f2fb:hover {opacity: 0.5 !important;}


.shg-image-margin-container-s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  margin-left: auto;
  margin-right: auto;
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-content {
  
    align-items: center;
  
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ec784063-9fbc-4221-868b-44f0b215f2fb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
      position: relative;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-content {
  
    align-items: center;
  
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ec784063-9fbc-4221-868b-44f0b215f2fb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
      position: relative;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-content {
  
    align-items: center;
  
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ec784063-9fbc-4221-868b-44f0b215f2fb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
      position: relative;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-content {
  
    align-items: center;
  
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ec784063-9fbc-4221-868b-44f0b215f2fb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
      position: relative;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ec784063-9fbc-4221-868b-44f0b215f2fb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-ec784063-9fbc-4221-868b-44f0b215f2fb .shogun-image-content {
  
    align-items: center;
  
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ec784063-9fbc-4221-868b-44f0b215f2fb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container {
      position: relative;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ec784063-9fbc-4221-868b-44f0b215f2fb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}
#s-597d2069-f76b-41b6-988f-759b25e0ac96:hover {opacity: 0.5 !important;}


.shg-image-margin-container-s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  margin-left: auto;
  margin-right: auto;
  
  
  /* Add padding handling */
  
  
  
  
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-content {
  
    align-items: center;
  
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-597d2069-f76b-41b6-988f-759b25e0ac96 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
      position: relative;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-content {
  
    align-items: center;
  
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-597d2069-f76b-41b6-988f-759b25e0ac96 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
      position: relative;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-content {
  
    align-items: center;
  
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-597d2069-f76b-41b6-988f-759b25e0ac96 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
      position: relative;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-content {
  
    align-items: center;
  
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-597d2069-f76b-41b6-988f-759b25e0ac96 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
      position: relative;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

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

.shg-image-margin-container-s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-597d2069-f76b-41b6-988f-759b25e0ac96 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 400px;
  }



  img.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
    
    
    
    max-height: 400px;
  }


.s-597d2069-f76b-41b6-988f-759b25e0ac96 .shogun-image-content {
  
    align-items: center;
  
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shg-align-container {
  display: flex;
  justify-content: center
}

.s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-597d2069-f76b-41b6-988f-759b25e0ac96 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container {
      position: relative;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-597d2069-f76b-41b6-988f-759b25e0ac96 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 400px;
    }
  }

}
#s-bc496eaa-83f0-4db1-989b-d5c969afd3c8 {
  background-repeat: no-repeat;
margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-bc496eaa-83f0-4db1-989b-d5c969afd3c8 {
  display: none;
}
#s-bc496eaa-83f0-4db1-989b-d5c969afd3c8, #wrap-s-bc496eaa-83f0-4db1-989b-d5c969afd3c8 { display: none !important; }}@media (max-width: 767px){#s-bc496eaa-83f0-4db1-989b-d5c969afd3c8 {
  display: none;
}
#s-bc496eaa-83f0-4db1-989b-d5c969afd3c8, #wrap-s-bc496eaa-83f0-4db1-989b-d5c969afd3c8 { display: none !important; }}
#s-bc496eaa-83f0-4db1-989b-d5c969afd3c8 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMmIwODQzYmUtNWY5Ny00OTg0LWI1MDYtMTUxMGUwMzg5ZGY0IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojNzQ4MDgwO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNGQ1ODU4O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMyYjA4NDNiZS01Zjk3LTQ5ODQtYjUwNi0xNTEwZTAzODlkZjQpIi8+PC9zdmc+);
}








#s-bc496eaa-83f0-4db1-989b-d5c969afd3c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bc496eaa-83f0-4db1-989b-d5c969afd3c8.shg-box.shg-c {
  justify-content: center;
}

#s-44a91e02-4420-4f3a-8e60-87ea1e5bca2e {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
min-height: 50px;
max-width: 1388px;
}








#s-44a91e02-4420-4f3a-8e60-87ea1e5bca2e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-44a91e02-4420-4f3a-8e60-87ea1e5bca2e.shg-box.shg-c {
  justify-content: center;
}

#s-60ee2c9e-3aa8-4ce3-a2ad-337d523b4760 {
  margin-top: 25px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-60ee2c9e-3aa8-4ce3-a2ad-337d523b4760 .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-454159ae-28a6-4b04-814c-fb962cec0eec {
  margin-top: 15px;
margin-bottom: 50px;
padding-top: 5px;
padding-bottom: 5px;
}

@media (min-width: 0px) {
[id="s-454159ae-28a6-4b04-814c-fb962cec0eec"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-454159ae-28a6-4b04-814c-fb962cec0eec"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 16.0px);
}

}

@media (min-width: 992px) {
[id="s-454159ae-28a6-4b04-814c-fb962cec0eec"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 16.0px);
}

}

@media (min-width: 1200px) {
[id="s-454159ae-28a6-4b04-814c-fb962cec0eec"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 16.0px);
}

}

#s-55be4500-035d-4e10-a040-681574931019 {
  box-shadow:2px 3px 10px 4px rgba(58, 66, 66, 0.75);
background-repeat: no-repeat;
background-size: cover;
margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(56, 64, 64, 1);
border-style: solid;
border-radius: 10px;
min-height: 300px;
background-position: center center;
opacity: 1;
}








#s-55be4500-035d-4e10-a040-681574931019 > .shg-box-overlay {
  background-color: rgba(244, 244, 244, 1);
  opacity: 0;
  display: block;
}#s-55be4500-035d-4e10-a040-681574931019 {
  cursor: pointer;
}#s-55be4500-035d-4e10-a040-681574931019.shg-box.shg-c {
  justify-content: flex-end;
}

#s-d2b7d7d2-edbe-4888-83e5-d93b45529799 {
  box-shadow:0px 0px 0px 0px ;
margin-top: 0px;
margin-left: 5%;
margin-bottom: 20px;
margin-right: 5%;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(244, 244, 244, 1);
border-style: solid;
border-radius: 0px;
text-align: left;
background-color: rgba(0, 0, 0, 0);
}

#s-d2b7d7d2-edbe-4888-83e5-d93b45529799 .shogun-heading-component h2 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-a68b7336-7189-4010-9f69-9e6f9bf75a97 {
  box-shadow:2px 3px 10px 4px rgba(58, 66, 66, 0.75);
background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
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;
min-height: 300px;
background-position: center center;
}








#s-a68b7336-7189-4010-9f69-9e6f9bf75a97 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-a68b7336-7189-4010-9f69-9e6f9bf75a97 {
  cursor: pointer;
}#s-a68b7336-7189-4010-9f69-9e6f9bf75a97.shg-box.shg-c {
  justify-content: flex-end;
}

#s-d7f9859d-6edd-456b-b3a8-8afff4e5f095 {
  margin-left: 0%;
margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-d7f9859d-6edd-456b-b3a8-8afff4e5f095 .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-e3d7444f-d20b-417d-9ddf-dfedcad895d8 {
  box-shadow:2px 3px 10px 4px rgba(58, 66, 66, 0.75);
background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
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;
min-height: 300px;
background-position: center center;
}








#s-e3d7444f-d20b-417d-9ddf-dfedcad895d8 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-e3d7444f-d20b-417d-9ddf-dfedcad895d8 {
  cursor: pointer;
}#s-e3d7444f-d20b-417d-9ddf-dfedcad895d8.shg-box.shg-c {
  justify-content: flex-end;
}

#s-a5d1ee2c-1f6a-40f5-9026-fe49ce8fbf68 {
  margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-a5d1ee2c-1f6a-40f5-9026-fe49ce8fbf68 .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-4fe51c56-39d7-4d45-8313-88cb882ed62f {
  box-shadow:2px 3px 10px 4px rgba(58, 66, 66, 0.75);
background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
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;
min-height: 300px;
background-position: center center;
}








#s-4fe51c56-39d7-4d45-8313-88cb882ed62f > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-4fe51c56-39d7-4d45-8313-88cb882ed62f {
  cursor: pointer;
}#s-4fe51c56-39d7-4d45-8313-88cb882ed62f.shg-box.shg-c {
  justify-content: flex-end;
}

#s-63dbb0c5-4477-4283-9a13-db8afc6c6497 {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-63dbb0c5-4477-4283-9a13-db8afc6c6497 .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-74e70e31-56bb-41b5-80e8-446aa4a3c691 {
  box-shadow:2px 3px 10px 4px rgba(58, 66, 66, 0.75);
background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
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;
min-height: 300px;
background-position: center center;
}








#s-74e70e31-56bb-41b5-80e8-446aa4a3c691 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-74e70e31-56bb-41b5-80e8-446aa4a3c691 {
  cursor: pointer;
}#s-74e70e31-56bb-41b5-80e8-446aa4a3c691.shg-box.shg-c {
  justify-content: flex-end;
}

#s-f8db6890-ba59-4bc9-85a8-2bcb1223dd3a {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-f8db6890-ba59-4bc9-85a8-2bcb1223dd3a .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-a4679101-0b7b-4322-81c3-7324a3ab375b {
  background-repeat: no-repeat;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-a4679101-0b7b-4322-81c3-7324a3ab375b {
  display: none;
}
#s-a4679101-0b7b-4322-81c3-7324a3ab375b, #wrap-s-a4679101-0b7b-4322-81c3-7324a3ab375b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a4679101-0b7b-4322-81c3-7324a3ab375b {
  display: none;
}
#s-a4679101-0b7b-4322-81c3-7324a3ab375b, #wrap-s-a4679101-0b7b-4322-81c3-7324a3ab375b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a4679101-0b7b-4322-81c3-7324a3ab375b {
  
}
}@media (max-width: 767px){#s-a4679101-0b7b-4322-81c3-7324a3ab375b {
  
}
}
#s-a4679101-0b7b-4322-81c3-7324a3ab375b {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYmU0OWFhNzItMDVmYS00Zjk1LTkyY2ItYWUxZWFjNjMzNzAwIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojNzQ4MDgwO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNGQ1ODU4O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiZTQ5YWE3Mi0wNWZhLTRmOTUtOTJjYi1hZTFlYWM2MzM3MDApIi8+PC9zdmc+);
}








#s-a4679101-0b7b-4322-81c3-7324a3ab375b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a4679101-0b7b-4322-81c3-7324a3ab375b.shg-box.shg-c {
  justify-content: center;
}

#s-8198ed10-19fa-4afa-af14-172162d6f6b7 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
min-height: 50px;
max-width: 1388px;
}








#s-8198ed10-19fa-4afa-af14-172162d6f6b7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8198ed10-19fa-4afa-af14-172162d6f6b7.shg-box.shg-c {
  justify-content: center;
}

#s-5547cc5c-165e-48a5-97f3-689cae93166a {
  margin-top: 25px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5547cc5c-165e-48a5-97f3-689cae93166a .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-0a9113d9-2704-4997-b64d-e40d6737b10f {
  box-shadow:2px 3px 10px 4px rgba(58, 66, 66, 0.75);
background-repeat: no-repeat;
background-size: cover;
margin-top: 2%;
margin-left: 0%;
margin-bottom: 2%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(56, 64, 64, 1);
border-style: solid;
border-radius: 0px;
min-height: 300px;
background-position: center center;
opacity: 1;
}








#s-0a9113d9-2704-4997-b64d-e40d6737b10f > .shg-box-overlay {
  background-color: rgba(244, 244, 244, 1);
  opacity: 0;
  display: block;
}#s-0a9113d9-2704-4997-b64d-e40d6737b10f {
  cursor: pointer;
}#s-0a9113d9-2704-4997-b64d-e40d6737b10f.shg-box.shg-c {
  justify-content: flex-end;
}

#s-8fc92727-82c4-4b74-816e-b5dac74d5470 {
  box-shadow:0px 0px 0px 0px ;
margin-top: 0px;
margin-left: 5%;
margin-bottom: 20px;
margin-right: 5%;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(244, 244, 244, 1);
border-style: solid;
border-radius: 0px;
text-align: left;
background-color: rgba(0, 0, 0, 0);
}

#s-8fc92727-82c4-4b74-816e-b5dac74d5470 .shogun-heading-component h2 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-a86681bb-0adb-4291-80cd-a9df7a7061e5 {
  box-shadow:2px 3px 10px 4px rgba(58, 66, 66, 0.75);
background-repeat: no-repeat;
background-size: cover;
margin-top: 2%;
margin-left: 0%;
margin-bottom: 2%;
margin-right: 0%;
padding-top: 0%;
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: 300px;
background-position: center center;
}








#s-a86681bb-0adb-4291-80cd-a9df7a7061e5 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-a86681bb-0adb-4291-80cd-a9df7a7061e5 {
  cursor: pointer;
}#s-a86681bb-0adb-4291-80cd-a9df7a7061e5.shg-box.shg-c {
  justify-content: flex-end;
}

#s-e5b0fb56-e67c-4ab0-b69e-c005883b691c {
  margin-left: 0%;
margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-e5b0fb56-e67c-4ab0-b69e-c005883b691c .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-fa87298a-7270-4b80-84e2-2da7f86f356c {
  box-shadow:2px 3px 10px 4px rgba(58, 66, 66, 0.75);
background-repeat: no-repeat;
background-size: cover;
margin-top: 2%;
margin-left: 0%;
margin-bottom: 2%;
margin-right: 0%;
padding-top: 0%;
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: 300px;
background-position: center center;
}








#s-fa87298a-7270-4b80-84e2-2da7f86f356c > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-fa87298a-7270-4b80-84e2-2da7f86f356c {
  cursor: pointer;
}#s-fa87298a-7270-4b80-84e2-2da7f86f356c.shg-box.shg-c {
  justify-content: flex-end;
}

#s-755c57cd-fec8-43a8-a3fb-de7d1f0ff30b {
  margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-755c57cd-fec8-43a8-a3fb-de7d1f0ff30b .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-f9836ee7-30f9-4046-84e7-3532cbb32df0 {
  box-shadow:2px 3px 10px 4px rgba(58, 66, 66, 0.75);
background-repeat: no-repeat;
background-size: cover;
margin-top: 2%;
margin-left: 0%;
margin-bottom: 2%;
margin-right: 0%;
padding-top: 0%;
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: 300px;
background-position: center center;
}








#s-f9836ee7-30f9-4046-84e7-3532cbb32df0 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-f9836ee7-30f9-4046-84e7-3532cbb32df0 {
  cursor: pointer;
}#s-f9836ee7-30f9-4046-84e7-3532cbb32df0.shg-box.shg-c {
  justify-content: flex-end;
}

#s-d6abc8c7-c1d1-4320-be5f-e38b46a62971 {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-d6abc8c7-c1d1-4320-be5f-e38b46a62971 .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-5843b723-583f-460a-bbf3-249b31e0790c {
  box-shadow:2px 3px 10px 4px rgba(58, 66, 66, 0.75);
background-repeat: no-repeat;
background-size: cover;
margin-top: 2%;
margin-left: 0%;
margin-bottom: 3%;
margin-right: 0%;
padding-top: 0%;
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: 300px;
background-position: center center;
}








#s-5843b723-583f-460a-bbf3-249b31e0790c > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
  display: block;
}#s-5843b723-583f-460a-bbf3-249b31e0790c {
  cursor: pointer;
}#s-5843b723-583f-460a-bbf3-249b31e0790c.shg-box.shg-c {
  justify-content: flex-end;
}

#s-a6b7a41c-398b-48b7-a697-7c5731a33c8f {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-a6b7a41c-398b-48b7-a697-7c5731a33c8f .shogun-heading-component h1 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: center;
}



#s-2bafd7a9-bb0f-46ba-802b-18a9e4914abf {
  min-height: 50px;
}








#s-2bafd7a9-bb0f-46ba-802b-18a9e4914abf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2bafd7a9-bb0f-46ba-802b-18a9e4914abf.shg-box.shg-c {
  justify-content: center;
}

#s-ef6f0e4e-7388-45f0-a32f-39555999a7fd {
  background-repeat: no-repeat;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
}

#s-ef6f0e4e-7388-45f0-a32f-39555999a7fd {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iY2M4NTMyMGYtNDNhMi00MjQ0LTk3ZjgtYzIyN2ZhYjU5NjU5IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojNzQ4MDgwO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNGQ1ODU4O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNjYzg1MzIwZi00M2EyLTQyNDQtOTdmOC1jMjI3ZmFiNTk2NTkpIi8+PC9zdmc+);
}








#s-ef6f0e4e-7388-45f0-a32f-39555999a7fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ef6f0e4e-7388-45f0-a32f-39555999a7fd.shg-box.shg-c {
  justify-content: center;
}

#s-5622de96-747d-4f22-89ac-4b8ce7d3761b {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
min-height: 50px;
max-width: 1388px;
}








#s-5622de96-747d-4f22-89ac-4b8ce7d3761b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5622de96-747d-4f22-89ac-4b8ce7d3761b.shg-box.shg-c {
  justify-content: center;
}

#s-b4123503-007d-4fd0-9cc5-bc2a56b2e19e {
  margin-top: 25px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b4123503-007d-4fd0-9cc5-bc2a56b2e19e .shogun-heading-component h3 {
  color: rgba(244, 244, 244, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 26px;
  
  
  
}



#s-e93b4d3a-29ef-4a89-9cca-f7107b9e2276 {
  margin-top: 15px;
margin-bottom: 50px;
padding-top: 5px;
padding-left: 10%;
padding-bottom: 5px;
padding-right: 10%;
}

@media (min-width: 0px) {
[id="s-e93b4d3a-29ef-4a89-9cca-f7107b9e2276"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-e93b4d3a-29ef-4a89-9cca-f7107b9e2276"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 992px) {
[id="s-e93b4d3a-29ef-4a89-9cca-f7107b9e2276"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 1200px) {
[id="s-e93b4d3a-29ef-4a89-9cca-f7107b9e2276"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 37.5px);
}

}

#s-4210a2bc-d29e-4307-994a-239a578568d7 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: none;
border-radius: 0px;
min-height: 50px;
}








#s-4210a2bc-d29e-4307-994a-239a578568d7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4210a2bc-d29e-4307-994a-239a578568d7.shg-box.shg-c {
  justify-content: center;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  margin-top: 0px;
margin-bottom: 10px;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}
#s-1e38b6c8-5589-463f-978d-4cf18e580f4b:hover {opacity: 0.85 !important;}


.shg-image-margin-container-s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  
  
  margin-top: 0px;
  margin-bottom: 10px;
  /* Add padding handling */
  
  
  
  
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-content {
  
    align-items: center;
  
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
      position: relative;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-content {
  
    align-items: center;
  
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
      position: relative;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-content {
  
    align-items: center;
  
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
      position: relative;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-content {
  
    align-items: center;
  
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
      position: relative;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-1e38b6c8-5589-463f-978d-4cf18e580f4b .shogun-image-content {
  
    align-items: center;
  
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container {
      position: relative;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e38b6c8-5589-463f-978d-4cf18e580f4b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe {
  border-style: solid;
margin-left: 15%;
margin-right: 15%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 5px;
padding-right: 0%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(244, 244, 244, 1);
border-radius: 5px;
background-color: rgba(244, 244, 244, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(244, 244, 244, 1);
}
#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(244, 244, 244, 1) !important;
border-radius: 5px !important;
background-color: rgba(244, 244, 244, 0.15) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe:active {background-color: rgba(77, 88, 88, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe-root {
    text-align: center;
  }


#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe-root {
    text-align: center;
  }


#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe-root {
    text-align: center;
  }


#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe-root {
    text-align: center;
  }


#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe-root {
    text-align: center;
  }


#s-f75dd1c9-8ee8-4771-8f5b-d74effc580fe.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-7bbc8007-0d32-4238-aeba-f5f5a5d8f37a {
  min-height: 50px;
}








#s-7bbc8007-0d32-4238-aeba-f5f5a5d8f37a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7bbc8007-0d32-4238-aeba-f5f5a5d8f37a.shg-box.shg-c {
  justify-content: center;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f {
  margin-bottom: 10px;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}
#s-88d3b206-35a6-466e-baa4-7300f793181f:hover {opacity: 0.85 !important;}


.shg-image-margin-container-s-88d3b206-35a6-466e-baa4-7300f793181f {
  
  
  
  margin-bottom: 10px;
  /* Add padding handling */
  
  
  
  
}

#s-88d3b206-35a6-466e-baa4-7300f793181f {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-content {
  
    align-items: center;
  
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-88d3b206-35a6-466e-baa4-7300f793181f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
      position: relative;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-88d3b206-35a6-466e-baa4-7300f793181f {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-88d3b206-35a6-466e-baa4-7300f793181f {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-content {
  
    align-items: center;
  
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-88d3b206-35a6-466e-baa4-7300f793181f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
      position: relative;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-88d3b206-35a6-466e-baa4-7300f793181f {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-88d3b206-35a6-466e-baa4-7300f793181f {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-content {
  
    align-items: center;
  
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-88d3b206-35a6-466e-baa4-7300f793181f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
      position: relative;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-88d3b206-35a6-466e-baa4-7300f793181f {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-88d3b206-35a6-466e-baa4-7300f793181f {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-content {
  
    align-items: center;
  
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-88d3b206-35a6-466e-baa4-7300f793181f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
      position: relative;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-88d3b206-35a6-466e-baa4-7300f793181f {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-88d3b206-35a6-466e-baa4-7300f793181f {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-88d3b206-35a6-466e-baa4-7300f793181f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-88d3b206-35a6-466e-baa4-7300f793181f .shogun-image-content {
  
    align-items: center;
  
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-88d3b206-35a6-466e-baa4-7300f793181f {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container {
      position: relative;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-88d3b206-35a6-466e-baa4-7300f793181f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-07fae983-0c2b-482f-b4aa-5c5b496c879c {
  border-style: solid;
margin-left: 15%;
margin-right: 15%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 5px;
padding-right: 0%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(244, 244, 244, 1);
border-radius: 5px;
background-color: rgba(244, 244, 244, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(244, 244, 244, 1);
}
#s-07fae983-0c2b-482f-b4aa-5c5b496c879c:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(244, 244, 244, 1) !important;
border-radius: 5px !important;
background-color: rgba(244, 244, 244, 0.15) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}#s-07fae983-0c2b-482f-b4aa-5c5b496c879c:active {background-color: rgba(77, 88, 88, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-07fae983-0c2b-482f-b4aa-5c5b496c879c-root {
    text-align: center;
  }


#s-07fae983-0c2b-482f-b4aa-5c5b496c879c.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-07fae983-0c2b-482f-b4aa-5c5b496c879c-root {
    text-align: center;
  }


#s-07fae983-0c2b-482f-b4aa-5c5b496c879c.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-07fae983-0c2b-482f-b4aa-5c5b496c879c-root {
    text-align: center;
  }


#s-07fae983-0c2b-482f-b4aa-5c5b496c879c.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-07fae983-0c2b-482f-b4aa-5c5b496c879c-root {
    text-align: center;
  }


#s-07fae983-0c2b-482f-b4aa-5c5b496c879c.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-07fae983-0c2b-482f-b4aa-5c5b496c879c-root {
    text-align: center;
  }


#s-07fae983-0c2b-482f-b4aa-5c5b496c879c.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-6b3f93c6-f574-44d3-95b6-001d7c1b5b7a {
  min-height: 50px;
}








#s-6b3f93c6-f574-44d3-95b6-001d7c1b5b7a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6b3f93c6-f574-44d3-95b6-001d7c1b5b7a.shg-box.shg-c {
  justify-content: center;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  margin-bottom: 10px;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}
#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6:hover {opacity: 0.85 !important;}


.shg-image-margin-container-s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  
  
  
  margin-bottom: 10px;
  /* Add padding handling */
  
  
  
  
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
      position: relative;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
      position: relative;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
      position: relative;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
      position: relative;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container {
      position: relative;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b98a4fc-7069-4adc-bd7e-d61ca1d90ef6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-ba8a380e-8211-44a8-9c50-d558b057cd87 {
  border-style: solid;
margin-left: 15%;
margin-right: 15%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 5px;
padding-right: 0%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(244, 244, 244, 1);
border-radius: 5px;
background-color: rgba(244, 244, 244, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(244, 244, 244, 1);
}
#s-ba8a380e-8211-44a8-9c50-d558b057cd87:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(244, 244, 244, 1) !important;
border-radius: 5px !important;
background-color: rgba(244, 244, 244, 0.15) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}#s-ba8a380e-8211-44a8-9c50-d558b057cd87:active {background-color: rgba(77, 88, 88, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-ba8a380e-8211-44a8-9c50-d558b057cd87-root {
    text-align: center;
  }


#s-ba8a380e-8211-44a8-9c50-d558b057cd87.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-ba8a380e-8211-44a8-9c50-d558b057cd87-root {
    text-align: center;
  }


#s-ba8a380e-8211-44a8-9c50-d558b057cd87.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ba8a380e-8211-44a8-9c50-d558b057cd87-root {
    text-align: center;
  }


#s-ba8a380e-8211-44a8-9c50-d558b057cd87.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ba8a380e-8211-44a8-9c50-d558b057cd87-root {
    text-align: center;
  }


#s-ba8a380e-8211-44a8-9c50-d558b057cd87.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-ba8a380e-8211-44a8-9c50-d558b057cd87-root {
    text-align: center;
  }


#s-ba8a380e-8211-44a8-9c50-d558b057cd87.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-8b757c37-f771-439e-8482-0c0cb6dc3eef {
  min-height: 50px;
}








#s-8b757c37-f771-439e-8482-0c0cb6dc3eef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8b757c37-f771-439e-8482-0c0cb6dc3eef.shg-box.shg-c {
  justify-content: center;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  margin-bottom: 10px;
max-width: 100px;
aspect-ratio: 1/1;
text-align: center;
}
#s-d15348c6-5e33-4d19-a2c3-f5580c72285d:hover {opacity: 0.85 !important;}


.shg-image-margin-container-s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  
  
  
  margin-bottom: 10px;
  /* Add padding handling */
  
  
  
  
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-content {
  
    align-items: center;
  
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
      position: relative;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-content {
  
    align-items: center;
  
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
      position: relative;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-content {
  
    align-items: center;
  
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
      position: relative;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-content {
  
    align-items: center;
  
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
      position: relative;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

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

.shg-image-margin-container-s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  
  
  
  
  /* Add padding handling */
  
  
  
  
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 100px;
  }



  img.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
    
    
    
    max-height: 100px;
  }


.s-d15348c6-5e33-4d19-a2c3-f5580c72285d .shogun-image-content {
  
    align-items: center;
  
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container {
      position: relative;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d15348c6-5e33-4d19-a2c3-f5580c72285d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 100px;
    }
  }

}
#s-4c3189ae-2447-4798-b135-f153d4deb725 {
  border-style: solid;
margin-left: 15%;
margin-right: 15%;
padding-top: 5px;
padding-left: 0%;
padding-bottom: 5px;
padding-right: 0%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(244, 244, 244, 1);
border-radius: 5px;
background-color: rgba(244, 244, 244, 0);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(244, 244, 244, 1);
}
#s-4c3189ae-2447-4798-b135-f153d4deb725:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(244, 244, 244, 1) !important;
border-radius: 5px !important;
background-color: rgba(244, 244, 244, 0.15) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}#s-4c3189ae-2447-4798-b135-f153d4deb725:active {background-color: rgba(77, 88, 88, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(244, 244, 244, 1) !important;}

  #s-4c3189ae-2447-4798-b135-f153d4deb725-root {
    text-align: center;
  }


#s-4c3189ae-2447-4798-b135-f153d4deb725.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-4c3189ae-2447-4798-b135-f153d4deb725-root {
    text-align: center;
  }


#s-4c3189ae-2447-4798-b135-f153d4deb725.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4c3189ae-2447-4798-b135-f153d4deb725-root {
    text-align: center;
  }


#s-4c3189ae-2447-4798-b135-f153d4deb725.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4c3189ae-2447-4798-b135-f153d4deb725-root {
    text-align: center;
  }


#s-4c3189ae-2447-4798-b135-f153d4deb725.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-4c3189ae-2447-4798-b135-f153d4deb725-root {
    text-align: center;
  }


#s-4c3189ae-2447-4798-b135-f153d4deb725.shg-btn {
  color: rgba(244, 244, 244, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
/*
  $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}
@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

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