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

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

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

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

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

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

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

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

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

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

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

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

#s-3e202b93-b272-4172-8ffd-412e86f4c0f9 {
  min-height: 50px;
}
@media (max-width: 767px){#s-3e202b93-b272-4172-8ffd-412e86f4c0f9 {
  display: none;
}
#s-3e202b93-b272-4172-8ffd-412e86f4c0f9, #wrap-s-3e202b93-b272-4172-8ffd-412e86f4c0f9, #wrap-content-s-3e202b93-b272-4172-8ffd-412e86f4c0f9 { display: none !important; }}







#s-3e202b93-b272-4172-8ffd-412e86f4c0f9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3e202b93-b272-4172-8ffd-412e86f4c0f9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content {
  display: flex;
  flex-direction: column;
  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-0c515510-2cfb-4118-bba5-2393d71462a0 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-0c515510-2cfb-4118-bba5-2393d71462a0 {
  display: none;
}
#s-0c515510-2cfb-4118-bba5-2393d71462a0, #wrap-s-0c515510-2cfb-4118-bba5-2393d71462a0, #wrap-content-s-0c515510-2cfb-4118-bba5-2393d71462a0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0c515510-2cfb-4118-bba5-2393d71462a0 {
  display: none;
}
#s-0c515510-2cfb-4118-bba5-2393d71462a0, #wrap-s-0c515510-2cfb-4118-bba5-2393d71462a0, #wrap-content-s-0c515510-2cfb-4118-bba5-2393d71462a0 { display: none !important; }}
#s-0c515510-2cfb-4118-bba5-2393d71462a0 {
  overflow: hidden;
  
  
}







  #s-0c515510-2cfb-4118-bba5-2393d71462a0 img.shogun-image {
    

    
    
    
  }


#s-0c515510-2cfb-4118-bba5-2393d71462a0 .shogun-image-content {
  
    justify-content: center;
  
}

#s-058e8147-4407-48d8-a718-0702eea1a956 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-058e8147-4407-48d8-a718-0702eea1a956 {
  display: none;
}
#s-058e8147-4407-48d8-a718-0702eea1a956, #wrap-s-058e8147-4407-48d8-a718-0702eea1a956, #wrap-content-s-058e8147-4407-48d8-a718-0702eea1a956 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-058e8147-4407-48d8-a718-0702eea1a956 {
  display: none;
}
#s-058e8147-4407-48d8-a718-0702eea1a956, #wrap-s-058e8147-4407-48d8-a718-0702eea1a956, #wrap-content-s-058e8147-4407-48d8-a718-0702eea1a956 { display: none !important; }}@media (max-width: 767px){#s-058e8147-4407-48d8-a718-0702eea1a956 {
  display: none;
}
#s-058e8147-4407-48d8-a718-0702eea1a956, #wrap-s-058e8147-4407-48d8-a718-0702eea1a956, #wrap-content-s-058e8147-4407-48d8-a718-0702eea1a956 { display: none !important; }}







#s-058e8147-4407-48d8-a718-0702eea1a956 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-058e8147-4407-48d8-a718-0702eea1a956.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-15543853-3119-449a-818d-874398b7a868 {
  padding-left: 50px;
padding-right: 50px;
max-width: 100%;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-15543853-3119-449a-818d-874398b7a868 {
  margin-bottom: -18px;
display: none;
}
#s-15543853-3119-449a-818d-874398b7a868, #wrap-s-15543853-3119-449a-818d-874398b7a868, #wrap-content-s-15543853-3119-449a-818d-874398b7a868 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-15543853-3119-449a-818d-874398b7a868 {
  display: none;
}
#s-15543853-3119-449a-818d-874398b7a868, #wrap-s-15543853-3119-449a-818d-874398b7a868, #wrap-content-s-15543853-3119-449a-818d-874398b7a868 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-15543853-3119-449a-818d-874398b7a868 {
  padding-left: 75px;
padding-right: 75px;
}
}
#s-84e9b3fa-cf4f-4a99-82b9-8d5e5864ca3b {
  padding-left: 50px;
padding-right: 50px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-84e9b3fa-cf4f-4a99-82b9-8d5e5864ca3b {
  margin-bottom: -20px;
display: none;
}
#s-84e9b3fa-cf4f-4a99-82b9-8d5e5864ca3b, #wrap-s-84e9b3fa-cf4f-4a99-82b9-8d5e5864ca3b, #wrap-content-s-84e9b3fa-cf4f-4a99-82b9-8d5e5864ca3b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-84e9b3fa-cf4f-4a99-82b9-8d5e5864ca3b {
  margin-top: -20px;
margin-bottom: -20px;
display: none;
}
#s-84e9b3fa-cf4f-4a99-82b9-8d5e5864ca3b, #wrap-s-84e9b3fa-cf4f-4a99-82b9-8d5e5864ca3b, #wrap-content-s-84e9b3fa-cf4f-4a99-82b9-8d5e5864ca3b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-84e9b3fa-cf4f-4a99-82b9-8d5e5864ca3b {
  padding-left: 75px;
padding-right: 75px;
}
}
#s-34cd6ae1-1f12-4ed0-b3e5-f20fb83a02c5 {
  padding-left: 50px;
padding-bottom: 20px;
padding-right: 50px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-34cd6ae1-1f12-4ed0-b3e5-f20fb83a02c5 {
  margin-left: -23px;
margin-right: -23px;
display: none;
}
#s-34cd6ae1-1f12-4ed0-b3e5-f20fb83a02c5, #wrap-s-34cd6ae1-1f12-4ed0-b3e5-f20fb83a02c5, #wrap-content-s-34cd6ae1-1f12-4ed0-b3e5-f20fb83a02c5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-34cd6ae1-1f12-4ed0-b3e5-f20fb83a02c5 {
  display: none;
}
#s-34cd6ae1-1f12-4ed0-b3e5-f20fb83a02c5, #wrap-s-34cd6ae1-1f12-4ed0-b3e5-f20fb83a02c5, #wrap-content-s-34cd6ae1-1f12-4ed0-b3e5-f20fb83a02c5 { display: none !important; }}@media (max-width: 767px){#s-34cd6ae1-1f12-4ed0-b3e5-f20fb83a02c5 {
  padding-right: 50px;
}
}
#s-dd1f56f5-cd21-48f9-ba82-823649adcb8d {
  background-repeat: no-repeat;
background-size: cover;
min-height: 800px;
background-position: center center;
}
@media (min-width: 1200px){#s-dd1f56f5-cd21-48f9-ba82-823649adcb8d {
  display: none;
}
#s-dd1f56f5-cd21-48f9-ba82-823649adcb8d, #wrap-s-dd1f56f5-cd21-48f9-ba82-823649adcb8d, #wrap-content-s-dd1f56f5-cd21-48f9-ba82-823649adcb8d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dd1f56f5-cd21-48f9-ba82-823649adcb8d {
  display: none;
}
#s-dd1f56f5-cd21-48f9-ba82-823649adcb8d, #wrap-s-dd1f56f5-cd21-48f9-ba82-823649adcb8d, #wrap-content-s-dd1f56f5-cd21-48f9-ba82-823649adcb8d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-dd1f56f5-cd21-48f9-ba82-823649adcb8d {
  display: none;
}
#s-dd1f56f5-cd21-48f9-ba82-823649adcb8d, #wrap-s-dd1f56f5-cd21-48f9-ba82-823649adcb8d, #wrap-content-s-dd1f56f5-cd21-48f9-ba82-823649adcb8d { display: none !important; }}
#s-dd1f56f5-cd21-48f9-ba82-823649adcb8d {
  background-image: url(https://i.shgcdn.com/82fdf35c-5fd6-48c4-99c4-373abd78303c/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-dd1f56f5-cd21-48f9-ba82-823649adcb8d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-dd1f56f5-cd21-48f9-ba82-823649adcb8d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

/* 
  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-f19ff1f1-a823-4bd3-924e-d0c7864631f6 {
  margin-top: -150px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-f19ff1f1-a823-4bd3-924e-d0c7864631f6"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-f19ff1f1-a823-4bd3-924e-d0c7864631f6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f19ff1f1-a823-4bd3-924e-d0c7864631f6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f19ff1f1-a823-4bd3-924e-d0c7864631f6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-537c9835-4446-417d-8837-54bf43663c09 {
  text-align: center;
}

#s-537c9835-4446-417d-8837-54bf43663c09 {
  margin: 0 !important;
  overflow: visible;
}

#s-537c9835-4446-417d-8837-54bf43663c09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-537c9835-4446-417d-8837-54bf43663c09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-537c9835-4446-417d-8837-54bf43663c09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-537c9835-4446-417d-8837-54bf43663c09 img.shogun-image {
  /* Add background color handling */
  
}

#s-537c9835-4446-417d-8837-54bf43663c09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-537c9835-4446-417d-8837-54bf43663c09.shogun-image {
    
    
    
    
  }


.s-537c9835-4446-417d-8837-54bf43663c09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-537c9835-4446-417d-8837-54bf43663c09.shg-align-container {
  display: flex;
  justify-content: center
}

.s-537c9835-4446-417d-8837-54bf43663c09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-537c9835-4446-417d-8837-54bf43663c09.shogun-image {
  box-sizing: border-box;
}



.s-537c9835-4446-417d-8837-54bf43663c09 img.shogun-image {
  
}


@media (min-width: 1200px){#s-537c9835-4446-417d-8837-54bf43663c09 {
  margin: 0 !important;
  overflow: visible;
}

#s-537c9835-4446-417d-8837-54bf43663c09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-537c9835-4446-417d-8837-54bf43663c09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-537c9835-4446-417d-8837-54bf43663c09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-537c9835-4446-417d-8837-54bf43663c09 img.shogun-image {
  /* Add background color handling */
  
}

#s-537c9835-4446-417d-8837-54bf43663c09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-537c9835-4446-417d-8837-54bf43663c09.shogun-image {
    
    
    
    
  }


.s-537c9835-4446-417d-8837-54bf43663c09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-537c9835-4446-417d-8837-54bf43663c09.shg-align-container {
  display: flex;
  justify-content: center
}

.s-537c9835-4446-417d-8837-54bf43663c09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-537c9835-4446-417d-8837-54bf43663c09.shogun-image {
  box-sizing: border-box;
}



.s-537c9835-4446-417d-8837-54bf43663c09 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-537c9835-4446-417d-8837-54bf43663c09 {
  margin: 0 !important;
  overflow: visible;
}

#s-537c9835-4446-417d-8837-54bf43663c09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-537c9835-4446-417d-8837-54bf43663c09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-537c9835-4446-417d-8837-54bf43663c09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-537c9835-4446-417d-8837-54bf43663c09 img.shogun-image {
  /* Add background color handling */
  
}

#s-537c9835-4446-417d-8837-54bf43663c09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-537c9835-4446-417d-8837-54bf43663c09.shogun-image {
    
    
    
    
  }


.s-537c9835-4446-417d-8837-54bf43663c09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-537c9835-4446-417d-8837-54bf43663c09.shg-align-container {
  display: flex;
  justify-content: center
}

.s-537c9835-4446-417d-8837-54bf43663c09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-537c9835-4446-417d-8837-54bf43663c09.shogun-image {
  box-sizing: border-box;
}



.s-537c9835-4446-417d-8837-54bf43663c09 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-537c9835-4446-417d-8837-54bf43663c09 {
  margin: 0 !important;
  overflow: visible;
}

#s-537c9835-4446-417d-8837-54bf43663c09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-537c9835-4446-417d-8837-54bf43663c09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-537c9835-4446-417d-8837-54bf43663c09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-537c9835-4446-417d-8837-54bf43663c09 img.shogun-image {
  /* Add background color handling */
  
}

#s-537c9835-4446-417d-8837-54bf43663c09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-537c9835-4446-417d-8837-54bf43663c09.shogun-image {
    
    
    
    
  }


.s-537c9835-4446-417d-8837-54bf43663c09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-537c9835-4446-417d-8837-54bf43663c09.shg-align-container {
  display: flex;
  justify-content: center
}

.s-537c9835-4446-417d-8837-54bf43663c09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-537c9835-4446-417d-8837-54bf43663c09.shogun-image {
  box-sizing: border-box;
}



.s-537c9835-4446-417d-8837-54bf43663c09 img.shogun-image {
  
}


}@media (max-width: 767px){#s-537c9835-4446-417d-8837-54bf43663c09 {
  margin: 0 !important;
  overflow: visible;
}

#s-537c9835-4446-417d-8837-54bf43663c09-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-537c9835-4446-417d-8837-54bf43663c09 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-537c9835-4446-417d-8837-54bf43663c09 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-537c9835-4446-417d-8837-54bf43663c09 img.shogun-image {
  /* Add background color handling */
  
}

#s-537c9835-4446-417d-8837-54bf43663c09 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-537c9835-4446-417d-8837-54bf43663c09.shogun-image {
    
    
    
    
  }


.s-537c9835-4446-417d-8837-54bf43663c09 .shogun-image-content {
  
    justify-content: center;
  
}

.s-537c9835-4446-417d-8837-54bf43663c09.shg-align-container {
  display: flex;
  justify-content: center
}

.s-537c9835-4446-417d-8837-54bf43663c09.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-537c9835-4446-417d-8837-54bf43663c09.shogun-image {
  box-sizing: border-box;
}



.s-537c9835-4446-417d-8837-54bf43663c09 img.shogun-image {
  
}


}
#s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  text-align: center;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  margin: 0 !important;
  overflow: visible;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082 img.shogun-image {
  /* Add background color handling */
  
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-aac0d346-d0b4-415d-833c-ff0107b90082.shogun-image {
    
    
    
    
  }


.s-aac0d346-d0b4-415d-833c-ff0107b90082 .shogun-image-content {
  
    justify-content: center;
  
}

.s-aac0d346-d0b4-415d-833c-ff0107b90082.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aac0d346-d0b4-415d-833c-ff0107b90082.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082.shogun-image {
  box-sizing: border-box;
}



.s-aac0d346-d0b4-415d-833c-ff0107b90082 img.shogun-image {
  
}


@media (min-width: 1200px){#s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  margin: 0 !important;
  overflow: visible;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082 img.shogun-image {
  /* Add background color handling */
  
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-aac0d346-d0b4-415d-833c-ff0107b90082.shogun-image {
    
    
    
    
  }


.s-aac0d346-d0b4-415d-833c-ff0107b90082 .shogun-image-content {
  
    justify-content: center;
  
}

.s-aac0d346-d0b4-415d-833c-ff0107b90082.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aac0d346-d0b4-415d-833c-ff0107b90082.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082.shogun-image {
  box-sizing: border-box;
}



.s-aac0d346-d0b4-415d-833c-ff0107b90082 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  margin: 0 !important;
  overflow: visible;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082 img.shogun-image {
  /* Add background color handling */
  
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-aac0d346-d0b4-415d-833c-ff0107b90082.shogun-image {
    
    
    
    
  }


.s-aac0d346-d0b4-415d-833c-ff0107b90082 .shogun-image-content {
  
    justify-content: center;
  
}

.s-aac0d346-d0b4-415d-833c-ff0107b90082.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aac0d346-d0b4-415d-833c-ff0107b90082.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082.shogun-image {
  box-sizing: border-box;
}



.s-aac0d346-d0b4-415d-833c-ff0107b90082 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  margin: 0 !important;
  overflow: visible;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082 img.shogun-image {
  /* Add background color handling */
  
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-aac0d346-d0b4-415d-833c-ff0107b90082.shogun-image {
    
    
    
    
  }


.s-aac0d346-d0b4-415d-833c-ff0107b90082 .shogun-image-content {
  
    justify-content: center;
  
}

.s-aac0d346-d0b4-415d-833c-ff0107b90082.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aac0d346-d0b4-415d-833c-ff0107b90082.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082.shogun-image {
  box-sizing: border-box;
}



.s-aac0d346-d0b4-415d-833c-ff0107b90082 img.shogun-image {
  
}


}@media (max-width: 767px){#s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  margin: 0 !important;
  overflow: visible;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-aac0d346-d0b4-415d-833c-ff0107b90082 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082 img.shogun-image {
  /* Add background color handling */
  
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-aac0d346-d0b4-415d-833c-ff0107b90082.shogun-image {
    
    
    
    
  }


.s-aac0d346-d0b4-415d-833c-ff0107b90082 .shogun-image-content {
  
    justify-content: center;
  
}

.s-aac0d346-d0b4-415d-833c-ff0107b90082.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aac0d346-d0b4-415d-833c-ff0107b90082.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aac0d346-d0b4-415d-833c-ff0107b90082.shogun-image {
  box-sizing: border-box;
}



.s-aac0d346-d0b4-415d-833c-ff0107b90082 img.shogun-image {
  
}


}
#s-33423a7e-87ee-4566-85b3-703eee98e793 {
  text-align: center;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793 {
  margin: 0 !important;
  overflow: visible;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33423a7e-87ee-4566-85b3-703eee98e793 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33423a7e-87ee-4566-85b3-703eee98e793 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793 img.shogun-image {
  /* Add background color handling */
  
}

#s-33423a7e-87ee-4566-85b3-703eee98e793 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-33423a7e-87ee-4566-85b3-703eee98e793.shogun-image {
    
    
    
    
  }


.s-33423a7e-87ee-4566-85b3-703eee98e793 .shogun-image-content {
  
    justify-content: center;
  
}

.s-33423a7e-87ee-4566-85b3-703eee98e793.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33423a7e-87ee-4566-85b3-703eee98e793.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793.shogun-image {
  box-sizing: border-box;
}



.s-33423a7e-87ee-4566-85b3-703eee98e793 img.shogun-image {
  
}


@media (min-width: 1200px){#s-33423a7e-87ee-4566-85b3-703eee98e793 {
  margin: 0 !important;
  overflow: visible;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33423a7e-87ee-4566-85b3-703eee98e793 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33423a7e-87ee-4566-85b3-703eee98e793 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793 img.shogun-image {
  /* Add background color handling */
  
}

#s-33423a7e-87ee-4566-85b3-703eee98e793 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-33423a7e-87ee-4566-85b3-703eee98e793.shogun-image {
    
    
    
    
  }


.s-33423a7e-87ee-4566-85b3-703eee98e793 .shogun-image-content {
  
    justify-content: center;
  
}

.s-33423a7e-87ee-4566-85b3-703eee98e793.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33423a7e-87ee-4566-85b3-703eee98e793.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793.shogun-image {
  box-sizing: border-box;
}



.s-33423a7e-87ee-4566-85b3-703eee98e793 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-33423a7e-87ee-4566-85b3-703eee98e793 {
  margin: 0 !important;
  overflow: visible;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33423a7e-87ee-4566-85b3-703eee98e793 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33423a7e-87ee-4566-85b3-703eee98e793 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793 img.shogun-image {
  /* Add background color handling */
  
}

#s-33423a7e-87ee-4566-85b3-703eee98e793 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-33423a7e-87ee-4566-85b3-703eee98e793.shogun-image {
    
    
    
    
  }


.s-33423a7e-87ee-4566-85b3-703eee98e793 .shogun-image-content {
  
    justify-content: center;
  
}

.s-33423a7e-87ee-4566-85b3-703eee98e793.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33423a7e-87ee-4566-85b3-703eee98e793.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793.shogun-image {
  box-sizing: border-box;
}



.s-33423a7e-87ee-4566-85b3-703eee98e793 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-33423a7e-87ee-4566-85b3-703eee98e793 {
  margin: 0 !important;
  overflow: visible;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33423a7e-87ee-4566-85b3-703eee98e793 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33423a7e-87ee-4566-85b3-703eee98e793 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793 img.shogun-image {
  /* Add background color handling */
  
}

#s-33423a7e-87ee-4566-85b3-703eee98e793 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-33423a7e-87ee-4566-85b3-703eee98e793.shogun-image {
    
    
    
    
  }


.s-33423a7e-87ee-4566-85b3-703eee98e793 .shogun-image-content {
  
    justify-content: center;
  
}

.s-33423a7e-87ee-4566-85b3-703eee98e793.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33423a7e-87ee-4566-85b3-703eee98e793.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793.shogun-image {
  box-sizing: border-box;
}



.s-33423a7e-87ee-4566-85b3-703eee98e793 img.shogun-image {
  
}


}@media (max-width: 767px){#s-33423a7e-87ee-4566-85b3-703eee98e793 {
  margin: 0 !important;
  overflow: visible;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-33423a7e-87ee-4566-85b3-703eee98e793 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-33423a7e-87ee-4566-85b3-703eee98e793 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793 img.shogun-image {
  /* Add background color handling */
  
}

#s-33423a7e-87ee-4566-85b3-703eee98e793 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-33423a7e-87ee-4566-85b3-703eee98e793.shogun-image {
    
    
    
    
  }


.s-33423a7e-87ee-4566-85b3-703eee98e793 .shogun-image-content {
  
    justify-content: center;
  
}

.s-33423a7e-87ee-4566-85b3-703eee98e793.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33423a7e-87ee-4566-85b3-703eee98e793.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33423a7e-87ee-4566-85b3-703eee98e793.shogun-image {
  box-sizing: border-box;
}



.s-33423a7e-87ee-4566-85b3-703eee98e793 img.shogun-image {
  
}


}
@media (min-width: 0px) {
[id="s-2909d422-0c8e-4625-b5b7-ed1c738f0d62"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2909d422-0c8e-4625-b5b7-ed1c738f0d62"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2909d422-0c8e-4625-b5b7-ed1c738f0d62"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2909d422-0c8e-4625-b5b7-ed1c738f0d62"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  margin-left: 4%;
margin-bottom: 16px;
margin-right: 4%;
text-align: center;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  margin: 0 !important;
  overflow: visible;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 4%;
  margin-right: 4%;
  
  margin-bottom: 16px;
}

.shg-image-content-margin-container-s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9 img.shogun-image {
  /* Add background color handling */
  
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-5d8c9f20-c744-438d-a41e-fb01965899f9.shogun-image {
    
    
    
    
  }


.s-5d8c9f20-c744-438d-a41e-fb01965899f9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5d8c9f20-c744-438d-a41e-fb01965899f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d8c9f20-c744-438d-a41e-fb01965899f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9.shogun-image {
  box-sizing: border-box;
}



.s-5d8c9f20-c744-438d-a41e-fb01965899f9 img.shogun-image {
  
}


@media (min-width: 1200px){#s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  margin: 0 !important;
  overflow: visible;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9 img.shogun-image {
  /* Add background color handling */
  
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-5d8c9f20-c744-438d-a41e-fb01965899f9.shogun-image {
    
    
    
    
  }


.s-5d8c9f20-c744-438d-a41e-fb01965899f9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5d8c9f20-c744-438d-a41e-fb01965899f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d8c9f20-c744-438d-a41e-fb01965899f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9.shogun-image {
  box-sizing: border-box;
}



.s-5d8c9f20-c744-438d-a41e-fb01965899f9 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  margin: 0 !important;
  overflow: visible;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9 img.shogun-image {
  /* Add background color handling */
  
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-5d8c9f20-c744-438d-a41e-fb01965899f9.shogun-image {
    
    
    
    
  }


.s-5d8c9f20-c744-438d-a41e-fb01965899f9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5d8c9f20-c744-438d-a41e-fb01965899f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d8c9f20-c744-438d-a41e-fb01965899f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9.shogun-image {
  box-sizing: border-box;
}



.s-5d8c9f20-c744-438d-a41e-fb01965899f9 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  margin: 0 !important;
  overflow: visible;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9 img.shogun-image {
  /* Add background color handling */
  
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-5d8c9f20-c744-438d-a41e-fb01965899f9.shogun-image {
    
    
    
    
  }


.s-5d8c9f20-c744-438d-a41e-fb01965899f9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5d8c9f20-c744-438d-a41e-fb01965899f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d8c9f20-c744-438d-a41e-fb01965899f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9.shogun-image {
  box-sizing: border-box;
}



.s-5d8c9f20-c744-438d-a41e-fb01965899f9 img.shogun-image {
  
}


}@media (max-width: 767px){#s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  margin: 0 !important;
  overflow: visible;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5d8c9f20-c744-438d-a41e-fb01965899f9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9 img.shogun-image {
  /* Add background color handling */
  
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-5d8c9f20-c744-438d-a41e-fb01965899f9.shogun-image {
    
    
    
    
  }


.s-5d8c9f20-c744-438d-a41e-fb01965899f9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5d8c9f20-c744-438d-a41e-fb01965899f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d8c9f20-c744-438d-a41e-fb01965899f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d8c9f20-c744-438d-a41e-fb01965899f9.shogun-image {
  box-sizing: border-box;
}



.s-5d8c9f20-c744-438d-a41e-fb01965899f9 img.shogun-image {
  
}


}
#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  margin-top: 50px;
margin-left: 0%;
margin-right: 0%;
max-width: 200px;
text-align: center;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  margin: 0 !important;
  overflow: visible;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 50px;
  
}

.shg-image-content-margin-container-s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 img.shogun-image {
  /* Add background color handling */
  
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shogun-image {
  box-sizing: border-box;
}



.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 img.shogun-image {
  
}


@media (min-width: 1200px){#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  margin: 0 !important;
  overflow: visible;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 img.shogun-image {
  /* Add background color handling */
  
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shogun-image {
  box-sizing: border-box;
}



.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  margin: 0 !important;
  overflow: visible;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 img.shogun-image {
  /* Add background color handling */
  
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shogun-image {
  box-sizing: border-box;
}



.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  margin: 0 !important;
  overflow: visible;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 img.shogun-image {
  /* Add background color handling */
  
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shogun-image {
  box-sizing: border-box;
}



.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 img.shogun-image {
  
}


}@media (max-width: 767px){#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  margin: 0 !important;
  overflow: visible;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 img.shogun-image {
  /* Add background color handling */
  
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shogun-image {
    
    
    
    max-height: 200px;
  }


.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d20176b-1be5-47f4-a57e-33b4f68b5a85.shogun-image {
  box-sizing: border-box;
}



.s-9d20176b-1be5-47f4-a57e-33b4f68b5a85 img.shogun-image {
  
}


}
#s-8ed2240e-e003-417a-a0f0-e5c0e9528e9d {
  margin-left: 3%;
margin-right: 3%;
min-height: 300px;
}
@media (min-width: 1200px){#s-8ed2240e-e003-417a-a0f0-e5c0e9528e9d {
  display: none;
}
#s-8ed2240e-e003-417a-a0f0-e5c0e9528e9d, #wrap-s-8ed2240e-e003-417a-a0f0-e5c0e9528e9d, #wrap-content-s-8ed2240e-e003-417a-a0f0-e5c0e9528e9d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8ed2240e-e003-417a-a0f0-e5c0e9528e9d {
  display: none;
}
#s-8ed2240e-e003-417a-a0f0-e5c0e9528e9d, #wrap-s-8ed2240e-e003-417a-a0f0-e5c0e9528e9d, #wrap-content-s-8ed2240e-e003-417a-a0f0-e5c0e9528e9d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8ed2240e-e003-417a-a0f0-e5c0e9528e9d {
  display: none;
}
#s-8ed2240e-e003-417a-a0f0-e5c0e9528e9d, #wrap-s-8ed2240e-e003-417a-a0f0-e5c0e9528e9d, #wrap-content-s-8ed2240e-e003-417a-a0f0-e5c0e9528e9d { display: none !important; }}







#s-8ed2240e-e003-417a-a0f0-e5c0e9528e9d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8ed2240e-e003-417a-a0f0-e5c0e9528e9d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-ede05c1e-95b9-4ee1-adb3-ca1df27e4784 {
  margin-top: -20px;
padding-top: 10px;
padding-bottom: 21px;
text-align: center;
}

#s-ede05c1e-95b9-4ee1-adb3-ca1df27e4784 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  800 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 3.5em;
  
  
}



@media (min-width: 0px) {
[id="s-dffc789c-ae75-44b2-b0cb-46b1c247d159"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-dffc789c-ae75-44b2-b0cb-46b1c247d159"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-dffc789c-ae75-44b2-b0cb-46b1c247d159"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-dffc789c-ae75-44b2-b0cb-46b1c247d159"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-364dde45-8590-47ee-8a44-6757a0472e9e {
  text-align: center;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e {
  margin: 0 !important;
  overflow: visible;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-364dde45-8590-47ee-8a44-6757a0472e9e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-364dde45-8590-47ee-8a44-6757a0472e9e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e img.shogun-image {
  /* Add background color handling */
  
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-364dde45-8590-47ee-8a44-6757a0472e9e.shogun-image {
    
    
    
    
  }


.s-364dde45-8590-47ee-8a44-6757a0472e9e .shogun-image-content {
  
    justify-content: center;
  
}

.s-364dde45-8590-47ee-8a44-6757a0472e9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-364dde45-8590-47ee-8a44-6757a0472e9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e.shogun-image {
  box-sizing: border-box;
}



.s-364dde45-8590-47ee-8a44-6757a0472e9e img.shogun-image {
  
}


@media (min-width: 1200px){#s-364dde45-8590-47ee-8a44-6757a0472e9e {
  margin: 0 !important;
  overflow: visible;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-364dde45-8590-47ee-8a44-6757a0472e9e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-364dde45-8590-47ee-8a44-6757a0472e9e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e img.shogun-image {
  /* Add background color handling */
  
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-364dde45-8590-47ee-8a44-6757a0472e9e.shogun-image {
    
    
    
    
  }


.s-364dde45-8590-47ee-8a44-6757a0472e9e .shogun-image-content {
  
    justify-content: center;
  
}

.s-364dde45-8590-47ee-8a44-6757a0472e9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-364dde45-8590-47ee-8a44-6757a0472e9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e.shogun-image {
  box-sizing: border-box;
}



.s-364dde45-8590-47ee-8a44-6757a0472e9e img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-364dde45-8590-47ee-8a44-6757a0472e9e {
  margin: 0 !important;
  overflow: visible;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-364dde45-8590-47ee-8a44-6757a0472e9e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-364dde45-8590-47ee-8a44-6757a0472e9e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e img.shogun-image {
  /* Add background color handling */
  
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-364dde45-8590-47ee-8a44-6757a0472e9e.shogun-image {
    
    
    
    
  }


.s-364dde45-8590-47ee-8a44-6757a0472e9e .shogun-image-content {
  
    justify-content: center;
  
}

.s-364dde45-8590-47ee-8a44-6757a0472e9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-364dde45-8590-47ee-8a44-6757a0472e9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e.shogun-image {
  box-sizing: border-box;
}



.s-364dde45-8590-47ee-8a44-6757a0472e9e img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-364dde45-8590-47ee-8a44-6757a0472e9e {
  margin: 0 !important;
  overflow: visible;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-364dde45-8590-47ee-8a44-6757a0472e9e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-364dde45-8590-47ee-8a44-6757a0472e9e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e img.shogun-image {
  /* Add background color handling */
  
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-364dde45-8590-47ee-8a44-6757a0472e9e.shogun-image {
    
    
    
    
  }


.s-364dde45-8590-47ee-8a44-6757a0472e9e .shogun-image-content {
  
    justify-content: center;
  
}

.s-364dde45-8590-47ee-8a44-6757a0472e9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-364dde45-8590-47ee-8a44-6757a0472e9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e.shogun-image {
  box-sizing: border-box;
}



.s-364dde45-8590-47ee-8a44-6757a0472e9e img.shogun-image {
  
}


}@media (max-width: 767px){#s-364dde45-8590-47ee-8a44-6757a0472e9e {
  margin: 0 !important;
  overflow: visible;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-364dde45-8590-47ee-8a44-6757a0472e9e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-364dde45-8590-47ee-8a44-6757a0472e9e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e img.shogun-image {
  /* Add background color handling */
  
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-364dde45-8590-47ee-8a44-6757a0472e9e.shogun-image {
    
    
    
    
  }


.s-364dde45-8590-47ee-8a44-6757a0472e9e .shogun-image-content {
  
    justify-content: center;
  
}

.s-364dde45-8590-47ee-8a44-6757a0472e9e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-364dde45-8590-47ee-8a44-6757a0472e9e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-364dde45-8590-47ee-8a44-6757a0472e9e.shogun-image {
  box-sizing: border-box;
}



.s-364dde45-8590-47ee-8a44-6757a0472e9e img.shogun-image {
  
}


}
#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  margin-top: -13px;
margin-bottom: 4em;
text-align: center;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  margin-top: -13px;
  margin-bottom: 4em;
}

.shg-image-content-margin-container-s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shogun-image {
    
    
    
    
  }


.s-193e8a28-71e9-40c2-8459-6a12ba9011c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shogun-image {
  box-sizing: border-box;
}



.s-193e8a28-71e9-40c2-8459-6a12ba9011c7 img.shogun-image {
  
}


@media (min-width: 1200px){#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shogun-image {
    
    
    
    
  }


.s-193e8a28-71e9-40c2-8459-6a12ba9011c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shogun-image {
  box-sizing: border-box;
}



.s-193e8a28-71e9-40c2-8459-6a12ba9011c7 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shogun-image {
    
    
    
    
  }


.s-193e8a28-71e9-40c2-8459-6a12ba9011c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shogun-image {
  box-sizing: border-box;
}



.s-193e8a28-71e9-40c2-8459-6a12ba9011c7 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shogun-image {
    
    
    
    
  }


.s-193e8a28-71e9-40c2-8459-6a12ba9011c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shogun-image {
  box-sizing: border-box;
}



.s-193e8a28-71e9-40c2-8459-6a12ba9011c7 img.shogun-image {
  
}


}@media (max-width: 767px){#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  margin: 0 !important;
  overflow: visible;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-193e8a28-71e9-40c2-8459-6a12ba9011c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 img.shogun-image {
  /* Add background color handling */
  
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shogun-image {
    
    
    
    
  }


.s-193e8a28-71e9-40c2-8459-6a12ba9011c7 .shogun-image-content {
  
    justify-content: center;
  
}

.s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-193e8a28-71e9-40c2-8459-6a12ba9011c7.shogun-image {
  box-sizing: border-box;
}



.s-193e8a28-71e9-40c2-8459-6a12ba9011c7 img.shogun-image {
  
}


}
#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  text-align: center;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  margin: 0 !important;
  overflow: visible;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 img.shogun-image {
  /* Add background color handling */
  
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shogun-image {
    
    
    
    
  }


.s-2422af88-e751-4d66-8dad-1f8aaa9666d1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shogun-image {
  box-sizing: border-box;
}



.s-2422af88-e751-4d66-8dad-1f8aaa9666d1 img.shogun-image {
  
}


@media (min-width: 1200px){#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  margin: 0 !important;
  overflow: visible;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 img.shogun-image {
  /* Add background color handling */
  
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shogun-image {
    
    
    
    
  }


.s-2422af88-e751-4d66-8dad-1f8aaa9666d1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shogun-image {
  box-sizing: border-box;
}



.s-2422af88-e751-4d66-8dad-1f8aaa9666d1 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  margin: 0 !important;
  overflow: visible;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 img.shogun-image {
  /* Add background color handling */
  
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shogun-image {
    
    
    
    
  }


.s-2422af88-e751-4d66-8dad-1f8aaa9666d1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shogun-image {
  box-sizing: border-box;
}



.s-2422af88-e751-4d66-8dad-1f8aaa9666d1 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  margin: 0 !important;
  overflow: visible;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 img.shogun-image {
  /* Add background color handling */
  
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shogun-image {
    
    
    
    
  }


.s-2422af88-e751-4d66-8dad-1f8aaa9666d1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shogun-image {
  box-sizing: border-box;
}



.s-2422af88-e751-4d66-8dad-1f8aaa9666d1 img.shogun-image {
  
}


}@media (max-width: 767px){#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  margin: 0 !important;
  overflow: visible;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-2422af88-e751-4d66-8dad-1f8aaa9666d1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 img.shogun-image {
  /* Add background color handling */
  
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shogun-image {
    
    
    
    
  }


.s-2422af88-e751-4d66-8dad-1f8aaa9666d1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2422af88-e751-4d66-8dad-1f8aaa9666d1.shogun-image {
  box-sizing: border-box;
}



.s-2422af88-e751-4d66-8dad-1f8aaa9666d1 img.shogun-image {
  
}


}
#s-c7664cde-9413-4a5a-b552-939bebb4a525 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-c7664cde-9413-4a5a-b552-939bebb4a525 {
  display: none;
}
#s-c7664cde-9413-4a5a-b552-939bebb4a525, #wrap-s-c7664cde-9413-4a5a-b552-939bebb4a525, #wrap-content-s-c7664cde-9413-4a5a-b552-939bebb4a525 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c7664cde-9413-4a5a-b552-939bebb4a525 {
  display: none;
}
#s-c7664cde-9413-4a5a-b552-939bebb4a525, #wrap-s-c7664cde-9413-4a5a-b552-939bebb4a525, #wrap-content-s-c7664cde-9413-4a5a-b552-939bebb4a525 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c7664cde-9413-4a5a-b552-939bebb4a525 {
  display: none;
}
#s-c7664cde-9413-4a5a-b552-939bebb4a525, #wrap-s-c7664cde-9413-4a5a-b552-939bebb4a525, #wrap-content-s-c7664cde-9413-4a5a-b552-939bebb4a525 { display: none !important; }}







#s-c7664cde-9413-4a5a-b552-939bebb4a525 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c7664cde-9413-4a5a-b552-939bebb4a525.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-5dce235e-b20f-43f6-a2d8-6cd5edf5989e {
  margin-left: 10%;
margin-bottom: 3em;
margin-right: 10%;
}

#s-5dce235e-b20f-43f6-a2d8-6cd5edf5989e > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(236, 149, 50, 1);
}

#s-5dce235e-b20f-43f6-a2d8-6cd5edf5989e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 13px;
}

#s-5dce235e-b20f-43f6-a2d8-6cd5edf5989e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(236, 149, 50, 1);
}

#s-5dce235e-b20f-43f6-a2d8-6cd5edf5989e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(236, 149, 50, 1);
}

#s-5dce235e-b20f-43f6-a2d8-6cd5edf5989e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(236, 149, 50, 1);
  text-align: center;
  font-family: Poppins;
  font-weight: 500;
  font-style: ;
  font-size: 18px;
}

#s-5dce235e-b20f-43f6-a2d8-6cd5edf5989e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  text-align: center;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  margin: 0 !important;
  overflow: visible;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 img.shogun-image {
  /* Add background color handling */
  
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shogun-image {
    
    
    
    
  }


.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shogun-image {
  box-sizing: border-box;
}



.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 img.shogun-image {
  
}


@media (min-width: 1200px){#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  margin: 0 !important;
  overflow: visible;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 img.shogun-image {
  /* Add background color handling */
  
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shogun-image {
    
    
    
    
  }


.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shogun-image {
  box-sizing: border-box;
}



.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  margin: 0 !important;
  overflow: visible;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 img.shogun-image {
  /* Add background color handling */
  
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shogun-image {
    
    
    
    
  }


.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shogun-image {
  box-sizing: border-box;
}



.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  margin: 0 !important;
  overflow: visible;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 img.shogun-image {
  /* Add background color handling */
  
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shogun-image {
    
    
    
    
  }


.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shogun-image {
  box-sizing: border-box;
}



.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 img.shogun-image {
  
}


}@media (max-width: 767px){#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  margin: 0 !important;
  overflow: visible;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 img.shogun-image {
  /* Add background color handling */
  
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shogun-image {
    
    
    
    
  }


.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95.shogun-image {
  box-sizing: border-box;
}



.s-5a75c112-fd6c-45bc-9784-f60dbd1d8c95 img.shogun-image {
  
}


}
#s-3b506952-04be-473d-8d76-84786cf0b099 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-3b506952-04be-473d-8d76-84786cf0b099 {
  display: none;
}
#s-3b506952-04be-473d-8d76-84786cf0b099, #wrap-s-3b506952-04be-473d-8d76-84786cf0b099, #wrap-content-s-3b506952-04be-473d-8d76-84786cf0b099 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3b506952-04be-473d-8d76-84786cf0b099 {
  display: none;
}
#s-3b506952-04be-473d-8d76-84786cf0b099, #wrap-s-3b506952-04be-473d-8d76-84786cf0b099, #wrap-content-s-3b506952-04be-473d-8d76-84786cf0b099 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3b506952-04be-473d-8d76-84786cf0b099 {
  display: none;
}
#s-3b506952-04be-473d-8d76-84786cf0b099, #wrap-s-3b506952-04be-473d-8d76-84786cf0b099, #wrap-content-s-3b506952-04be-473d-8d76-84786cf0b099 { display: none !important; }}







#s-3b506952-04be-473d-8d76-84786cf0b099 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3b506952-04be-473d-8d76-84786cf0b099.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
max-width: 2000px;
text-align: center;
}
@media (min-width: 1200px){#s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6 {
  display: none;
}
#s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6, #wrap-s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6, #wrap-content-s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6 {
  display: none;
}
#s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6, #wrap-s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6, #wrap-content-s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6 {
  display: none;
}
#s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6, #wrap-s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6, #wrap-content-s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6 { display: none !important; }}@media (max-width: 767px){#s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6 {
  background-color: rgba(255, 248, 242, 1);
}
}
#s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6 {
  overflow: hidden;
  
  
      max-width: 2000px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-022dd431-3aad-41dd-8e22-6cc4c14f2ba6 .shogun-image-content {
  
    justify-content: center;
  
}

#s-88503eee-7d1c-4156-9c30-4b1948593b47 {
  padding-left: 25px;
padding-right: 25px;
max-width: 100%;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-88503eee-7d1c-4156-9c30-4b1948593b47 {
  margin-bottom: -18px;
display: none;
}
#s-88503eee-7d1c-4156-9c30-4b1948593b47, #wrap-s-88503eee-7d1c-4156-9c30-4b1948593b47, #wrap-content-s-88503eee-7d1c-4156-9c30-4b1948593b47 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-88503eee-7d1c-4156-9c30-4b1948593b47 {
  display: none;
}
#s-88503eee-7d1c-4156-9c30-4b1948593b47, #wrap-s-88503eee-7d1c-4156-9c30-4b1948593b47, #wrap-content-s-88503eee-7d1c-4156-9c30-4b1948593b47 { display: none !important; }}
#s-f8c0eed1-2bc8-47d0-ac2c-6547e446e3a9 {
  padding-left: 25px;
padding-right: 25px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-f8c0eed1-2bc8-47d0-ac2c-6547e446e3a9 {
  margin-bottom: -20px;
display: none;
}
#s-f8c0eed1-2bc8-47d0-ac2c-6547e446e3a9, #wrap-s-f8c0eed1-2bc8-47d0-ac2c-6547e446e3a9, #wrap-content-s-f8c0eed1-2bc8-47d0-ac2c-6547e446e3a9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f8c0eed1-2bc8-47d0-ac2c-6547e446e3a9 {
  margin-top: -20px;
margin-bottom: -20px;
display: none;
}
#s-f8c0eed1-2bc8-47d0-ac2c-6547e446e3a9, #wrap-s-f8c0eed1-2bc8-47d0-ac2c-6547e446e3a9, #wrap-content-s-f8c0eed1-2bc8-47d0-ac2c-6547e446e3a9 { display: none !important; }}
#s-ff58dbd2-4c97-4608-9950-9071d8ce8793 {
  padding-left: 9px;
padding-bottom: 20px;
padding-right: 9px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-ff58dbd2-4c97-4608-9950-9071d8ce8793 {
  margin-left: -23px;
margin-right: -23px;
display: none;
}
#s-ff58dbd2-4c97-4608-9950-9071d8ce8793, #wrap-s-ff58dbd2-4c97-4608-9950-9071d8ce8793, #wrap-content-s-ff58dbd2-4c97-4608-9950-9071d8ce8793 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ff58dbd2-4c97-4608-9950-9071d8ce8793 {
  display: none;
}
#s-ff58dbd2-4c97-4608-9950-9071d8ce8793, #wrap-s-ff58dbd2-4c97-4608-9950-9071d8ce8793, #wrap-content-s-ff58dbd2-4c97-4608-9950-9071d8ce8793 { display: none !important; }}
#s-568be64b-9f16-4454-a467-41017c908887 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-568be64b-9f16-4454-a467-41017c908887 {
  display: none;
}
#s-568be64b-9f16-4454-a467-41017c908887, #wrap-s-568be64b-9f16-4454-a467-41017c908887, #wrap-content-s-568be64b-9f16-4454-a467-41017c908887 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-568be64b-9f16-4454-a467-41017c908887 {
  display: none;
}
#s-568be64b-9f16-4454-a467-41017c908887, #wrap-s-568be64b-9f16-4454-a467-41017c908887, #wrap-content-s-568be64b-9f16-4454-a467-41017c908887 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-568be64b-9f16-4454-a467-41017c908887 {
  display: none;
}
#s-568be64b-9f16-4454-a467-41017c908887, #wrap-s-568be64b-9f16-4454-a467-41017c908887, #wrap-content-s-568be64b-9f16-4454-a467-41017c908887 { display: none !important; }}







#s-568be64b-9f16-4454-a467-41017c908887 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-568be64b-9f16-4454-a467-41017c908887.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b248d05b-737b-485a-a776-0ab035c55d6e {
  padding-top: 50px;
padding-left: 50px;
padding-bottom: 20px;
padding-right: 50px;
background-color: rgba(249, 232, 212, 1);
}
@media (min-width: 1200px){#s-b248d05b-737b-485a-a776-0ab035c55d6e {
  display: none;
}
#s-b248d05b-737b-485a-a776-0ab035c55d6e, #wrap-s-b248d05b-737b-485a-a776-0ab035c55d6e, #wrap-content-s-b248d05b-737b-485a-a776-0ab035c55d6e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b248d05b-737b-485a-a776-0ab035c55d6e {
  display: none;
}
#s-b248d05b-737b-485a-a776-0ab035c55d6e, #wrap-s-b248d05b-737b-485a-a776-0ab035c55d6e, #wrap-content-s-b248d05b-737b-485a-a776-0ab035c55d6e { display: none !important; }}
#s-b5b2f784-0299-4470-9f89-f5b09dca29be {
  padding-left: 50px;
padding-bottom: 25px;
padding-right: 50px;
min-height: 100%;
max-width: 100%;
background-color: rgba(249, 232, 212, 1);
}
@media (min-width: 1200px){#s-b5b2f784-0299-4470-9f89-f5b09dca29be {
  display: none;
}
#s-b5b2f784-0299-4470-9f89-f5b09dca29be, #wrap-s-b5b2f784-0299-4470-9f89-f5b09dca29be, #wrap-content-s-b5b2f784-0299-4470-9f89-f5b09dca29be { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b5b2f784-0299-4470-9f89-f5b09dca29be {
  display: none;
}
#s-b5b2f784-0299-4470-9f89-f5b09dca29be, #wrap-s-b5b2f784-0299-4470-9f89-f5b09dca29be, #wrap-content-s-b5b2f784-0299-4470-9f89-f5b09dca29be { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b5b2f784-0299-4470-9f89-f5b09dca29be {
  display: none;
}
#s-b5b2f784-0299-4470-9f89-f5b09dca29be, #wrap-s-b5b2f784-0299-4470-9f89-f5b09dca29be, #wrap-content-s-b5b2f784-0299-4470-9f89-f5b09dca29be { display: none !important; }}
@media (min-width: 0px) {
[id="s-b5b2f784-0299-4470-9f89-f5b09dca29be"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-b5b2f784-0299-4470-9f89-f5b09dca29be"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-b5b2f784-0299-4470-9f89-f5b09dca29be"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-b5b2f784-0299-4470-9f89-f5b09dca29be"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

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

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

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

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

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

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

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

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

#s-edfab8ae-c28e-4d6a-b4ed-c64c1fe81092 {
  border-style: solid;
padding-top: 15px;
padding-left: 1px;
padding-bottom: 15px;
padding-right: 1px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(227, 161, 83, 1);
border-radius: 1px;
min-height: 100%;
max-width: 100%;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
color: rgba(38, 38, 38, 1);
background-image: none;
hover-type: color;
}
#s-edfab8ae-c28e-4d6a-b4ed-c64c1fe81092:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-edfab8ae-c28e-4d6a-b4ed-c64c1fe81092:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-edfab8ae-c28e-4d6a-b4ed-c64c1fe81092 {
  margin-left: 50px;
margin-right: 50px;
}
}

  #s-edfab8ae-c28e-4d6a-b4ed-c64c1fe81092-root {
    text-align: center;
  }


#s-edfab8ae-c28e-4d6a-b4ed-c64c1fe81092.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-edfab8ae-c28e-4d6a-b4ed-c64c1fe81092-root {
    text-align: center;
  }


#s-edfab8ae-c28e-4d6a-b4ed-c64c1fe81092.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-edfab8ae-c28e-4d6a-b4ed-c64c1fe81092-root {
    text-align: center;
  }


#s-edfab8ae-c28e-4d6a-b4ed-c64c1fe81092.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-edfab8ae-c28e-4d6a-b4ed-c64c1fe81092-root {
    text-align: center;
  }


#s-edfab8ae-c28e-4d6a-b4ed-c64c1fe81092.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-edfab8ae-c28e-4d6a-b4ed-c64c1fe81092-root {
    text-align: center;
  }


#s-edfab8ae-c28e-4d6a-b4ed-c64c1fe81092.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-a8510341-9512-4b76-8000-d47edfeb779e {
  border-style: solid;
padding-top: 15px;
padding-left: 1px;
padding-bottom: 15px;
padding-right: 1px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(227, 161, 83, 1);
border-radius: 1px;
min-height: 100%;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
background-image: none;
hover-type: color;
color: rgba(38, 38, 38, 1);
}
#s-a8510341-9512-4b76-8000-d47edfeb779e:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-a8510341-9512-4b76-8000-d47edfeb779e:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-a8510341-9512-4b76-8000-d47edfeb779e {
  margin-left: 50px;
margin-right: 50px;
}
}@media (max-width: 767px){#s-a8510341-9512-4b76-8000-d47edfeb779e {
  margin-left: 0px;
margin-right: 0px;
max-width: 100%;
}
}

  #s-a8510341-9512-4b76-8000-d47edfeb779e-root {
    text-align: center;
  }


#s-a8510341-9512-4b76-8000-d47edfeb779e.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a8510341-9512-4b76-8000-d47edfeb779e-root {
    text-align: center;
  }


#s-a8510341-9512-4b76-8000-d47edfeb779e.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a8510341-9512-4b76-8000-d47edfeb779e-root {
    text-align: center;
  }


#s-a8510341-9512-4b76-8000-d47edfeb779e.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a8510341-9512-4b76-8000-d47edfeb779e-root {
    text-align: center;
  }


#s-a8510341-9512-4b76-8000-d47edfeb779e.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a8510341-9512-4b76-8000-d47edfeb779e-root {
    text-align: center;
  }


#s-a8510341-9512-4b76-8000-d47edfeb779e.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-cd63d988-1a47-4888-9c84-326af0847246 {
  border-style: solid;
padding-top: 15px;
padding-left: 1px;
padding-bottom: 15px;
padding-right: 1px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(227, 161, 83, 1);
border-radius: 1px;
min-height: 100%;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(38, 38, 38, 1);
background-image: none;
hover-type: color;
line-height: 1.5em;
}
#s-cd63d988-1a47-4888-9c84-326af0847246:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-cd63d988-1a47-4888-9c84-326af0847246:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-cd63d988-1a47-4888-9c84-326af0847246 {
  margin-left: 50px;
margin-right: 50px;
}
}@media (max-width: 767px){#s-cd63d988-1a47-4888-9c84-326af0847246 {
  max-width: 100%;
}
}

  #s-cd63d988-1a47-4888-9c84-326af0847246-root {
    text-align: center;
  }


#s-cd63d988-1a47-4888-9c84-326af0847246.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-cd63d988-1a47-4888-9c84-326af0847246-root {
    text-align: center;
  }


#s-cd63d988-1a47-4888-9c84-326af0847246.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cd63d988-1a47-4888-9c84-326af0847246-root {
    text-align: center;
  }


#s-cd63d988-1a47-4888-9c84-326af0847246.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cd63d988-1a47-4888-9c84-326af0847246-root {
    text-align: center;
  }


#s-cd63d988-1a47-4888-9c84-326af0847246.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-cd63d988-1a47-4888-9c84-326af0847246-root {
    text-align: center;
  }


#s-cd63d988-1a47-4888-9c84-326af0847246.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-85d4c9e9-16c7-4dcf-9ed5-b0d08f362c79 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-85d4c9e9-16c7-4dcf-9ed5-b0d08f362c79 {
  display: none;
}
#s-85d4c9e9-16c7-4dcf-9ed5-b0d08f362c79, #wrap-s-85d4c9e9-16c7-4dcf-9ed5-b0d08f362c79, #wrap-content-s-85d4c9e9-16c7-4dcf-9ed5-b0d08f362c79 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-85d4c9e9-16c7-4dcf-9ed5-b0d08f362c79 {
  display: none;
}
#s-85d4c9e9-16c7-4dcf-9ed5-b0d08f362c79, #wrap-s-85d4c9e9-16c7-4dcf-9ed5-b0d08f362c79, #wrap-content-s-85d4c9e9-16c7-4dcf-9ed5-b0d08f362c79 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-85d4c9e9-16c7-4dcf-9ed5-b0d08f362c79 {
  display: none;
}
#s-85d4c9e9-16c7-4dcf-9ed5-b0d08f362c79, #wrap-s-85d4c9e9-16c7-4dcf-9ed5-b0d08f362c79, #wrap-content-s-85d4c9e9-16c7-4dcf-9ed5-b0d08f362c79 { display: none !important; }}







#s-85d4c9e9-16c7-4dcf-9ed5-b0d08f362c79 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-85d4c9e9-16c7-4dcf-9ed5-b0d08f362c79.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ef10683f-e601-4846-8126-2ac734a085ea {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
background-color: rgba(249, 232, 212, 1);
}
@media (min-width: 1200px){#s-ef10683f-e601-4846-8126-2ac734a085ea {
  display: none;
}
#s-ef10683f-e601-4846-8126-2ac734a085ea, #wrap-s-ef10683f-e601-4846-8126-2ac734a085ea, #wrap-content-s-ef10683f-e601-4846-8126-2ac734a085ea { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ef10683f-e601-4846-8126-2ac734a085ea {
  display: none;
}
#s-ef10683f-e601-4846-8126-2ac734a085ea, #wrap-s-ef10683f-e601-4846-8126-2ac734a085ea, #wrap-content-s-ef10683f-e601-4846-8126-2ac734a085ea { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ef10683f-e601-4846-8126-2ac734a085ea {
  padding-left: 75px;
padding-right: 75px;
}
}
#s-2f941da2-2037-4dc0-b05c-e96fe961faa0 {
  min-height: 50px;
}








#s-2f941da2-2037-4dc0-b05c-e96fe961faa0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2f941da2-2037-4dc0-b05c-e96fe961faa0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2f677fdf-8712-43f1-807d-5d458b42e2c7 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-2f677fdf-8712-43f1-807d-5d458b42e2c7 {
  display: none;
}
#s-2f677fdf-8712-43f1-807d-5d458b42e2c7, #wrap-s-2f677fdf-8712-43f1-807d-5d458b42e2c7, #wrap-content-s-2f677fdf-8712-43f1-807d-5d458b42e2c7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2f677fdf-8712-43f1-807d-5d458b42e2c7 {
  display: none;
}
#s-2f677fdf-8712-43f1-807d-5d458b42e2c7, #wrap-s-2f677fdf-8712-43f1-807d-5d458b42e2c7, #wrap-content-s-2f677fdf-8712-43f1-807d-5d458b42e2c7 { display: none !important; }}







#s-2f677fdf-8712-43f1-807d-5d458b42e2c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2f677fdf-8712-43f1-807d-5d458b42e2c7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-279e8a7e-9c0a-450f-b603-20f8675a8e89 {
  padding-top: 51px;
padding-left: 50px;
padding-right: 50px;
}
@media (min-width: 1200px){#s-279e8a7e-9c0a-450f-b603-20f8675a8e89 {
  display: none;
}
#s-279e8a7e-9c0a-450f-b603-20f8675a8e89, #wrap-s-279e8a7e-9c0a-450f-b603-20f8675a8e89, #wrap-content-s-279e8a7e-9c0a-450f-b603-20f8675a8e89 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-279e8a7e-9c0a-450f-b603-20f8675a8e89 {
  display: none;
}
#s-279e8a7e-9c0a-450f-b603-20f8675a8e89, #wrap-s-279e8a7e-9c0a-450f-b603-20f8675a8e89, #wrap-content-s-279e8a7e-9c0a-450f-b603-20f8675a8e89 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-279e8a7e-9c0a-450f-b603-20f8675a8e89 {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-d8a8ad55-e4a9-4013-9ba8-5d366b82d12b {
  min-height: 50px;
}
@media (min-width: 1200px){#s-d8a8ad55-e4a9-4013-9ba8-5d366b82d12b {
  display: none;
}
#s-d8a8ad55-e4a9-4013-9ba8-5d366b82d12b, #wrap-s-d8a8ad55-e4a9-4013-9ba8-5d366b82d12b, #wrap-content-s-d8a8ad55-e4a9-4013-9ba8-5d366b82d12b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d8a8ad55-e4a9-4013-9ba8-5d366b82d12b {
  display: none;
}
#s-d8a8ad55-e4a9-4013-9ba8-5d366b82d12b, #wrap-s-d8a8ad55-e4a9-4013-9ba8-5d366b82d12b, #wrap-content-s-d8a8ad55-e4a9-4013-9ba8-5d366b82d12b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d8a8ad55-e4a9-4013-9ba8-5d366b82d12b {
  display: none;
}
#s-d8a8ad55-e4a9-4013-9ba8-5d366b82d12b, #wrap-s-d8a8ad55-e4a9-4013-9ba8-5d366b82d12b, #wrap-content-s-d8a8ad55-e4a9-4013-9ba8-5d366b82d12b { display: none !important; }}







#s-d8a8ad55-e4a9-4013-9ba8-5d366b82d12b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d8a8ad55-e4a9-4013-9ba8-5d366b82d12b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c9f348ac-a257-47b6-b9c1-f3df52f23056 {
  margin-top: 8px;
min-height: 50px;
}
@media (min-width: 1200px){#s-c9f348ac-a257-47b6-b9c1-f3df52f23056 {
  display: none;
}
#s-c9f348ac-a257-47b6-b9c1-f3df52f23056, #wrap-s-c9f348ac-a257-47b6-b9c1-f3df52f23056, #wrap-content-s-c9f348ac-a257-47b6-b9c1-f3df52f23056 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c9f348ac-a257-47b6-b9c1-f3df52f23056 {
  display: none;
}
#s-c9f348ac-a257-47b6-b9c1-f3df52f23056, #wrap-s-c9f348ac-a257-47b6-b9c1-f3df52f23056, #wrap-content-s-c9f348ac-a257-47b6-b9c1-f3df52f23056 { display: none !important; }}







#s-c9f348ac-a257-47b6-b9c1-f3df52f23056 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c9f348ac-a257-47b6-b9c1-f3df52f23056.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-581219e2-ec77-46e8-ab94-3ed35d666c89 {
  margin-left: 50px;
margin-right: 50px;
}
@media (min-width: 1200px){#s-581219e2-ec77-46e8-ab94-3ed35d666c89 {
  display: none;
}
#s-581219e2-ec77-46e8-ab94-3ed35d666c89, #wrap-s-581219e2-ec77-46e8-ab94-3ed35d666c89, #wrap-content-s-581219e2-ec77-46e8-ab94-3ed35d666c89 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-581219e2-ec77-46e8-ab94-3ed35d666c89 {
  display: none;
}
#s-581219e2-ec77-46e8-ab94-3ed35d666c89, #wrap-s-581219e2-ec77-46e8-ab94-3ed35d666c89, #wrap-content-s-581219e2-ec77-46e8-ab94-3ed35d666c89 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-581219e2-ec77-46e8-ab94-3ed35d666c89 {
  padding-left: 75px;
padding-right: 75px;
}
}
#s-454580c0-f255-470c-b74f-f4dd737e996b {
  min-height: 50px;
}
@media (min-width: 1200px){#s-454580c0-f255-470c-b74f-f4dd737e996b {
  display: none;
}
#s-454580c0-f255-470c-b74f-f4dd737e996b, #wrap-s-454580c0-f255-470c-b74f-f4dd737e996b, #wrap-content-s-454580c0-f255-470c-b74f-f4dd737e996b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-454580c0-f255-470c-b74f-f4dd737e996b {
  display: none;
}
#s-454580c0-f255-470c-b74f-f4dd737e996b, #wrap-s-454580c0-f255-470c-b74f-f4dd737e996b, #wrap-content-s-454580c0-f255-470c-b74f-f4dd737e996b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-454580c0-f255-470c-b74f-f4dd737e996b {
  display: none;
}
#s-454580c0-f255-470c-b74f-f4dd737e996b, #wrap-s-454580c0-f255-470c-b74f-f4dd737e996b, #wrap-content-s-454580c0-f255-470c-b74f-f4dd737e996b { display: none !important; }}







#s-454580c0-f255-470c-b74f-f4dd737e996b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-454580c0-f255-470c-b74f-f4dd737e996b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-86908b6c-93fc-4ab5-96e2-9ea04264ee7f {
  padding-top: 50px;
padding-left: 50px;
padding-right: 50px;
text-align: center;
}
@media (min-width: 1200px){#s-86908b6c-93fc-4ab5-96e2-9ea04264ee7f {
  display: none;
}
#s-86908b6c-93fc-4ab5-96e2-9ea04264ee7f, #wrap-s-86908b6c-93fc-4ab5-96e2-9ea04264ee7f, #wrap-content-s-86908b6c-93fc-4ab5-96e2-9ea04264ee7f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-86908b6c-93fc-4ab5-96e2-9ea04264ee7f {
  display: none;
}
#s-86908b6c-93fc-4ab5-96e2-9ea04264ee7f, #wrap-s-86908b6c-93fc-4ab5-96e2-9ea04264ee7f, #wrap-content-s-86908b6c-93fc-4ab5-96e2-9ea04264ee7f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-86908b6c-93fc-4ab5-96e2-9ea04264ee7f {
  padding-top: 50px;
padding-left: 125px;
padding-right: 125px;
}
}
#s-86908b6c-93fc-4ab5-96e2-9ea04264ee7f {
  overflow: hidden;
  
  
}







  #s-86908b6c-93fc-4ab5-96e2-9ea04264ee7f img.shogun-image {
    

    
    
    
  }


#s-86908b6c-93fc-4ab5-96e2-9ea04264ee7f .shogun-image-content {
  
    justify-content: center;
  
}

#s-31075be5-6c99-4d1c-9900-958e390e34c2 {
  padding-top: 50px;
padding-left: 50px;
padding-right: 50px;
text-align: center;
}
@media (min-width: 1200px){#s-31075be5-6c99-4d1c-9900-958e390e34c2 {
  display: none;
}
#s-31075be5-6c99-4d1c-9900-958e390e34c2, #wrap-s-31075be5-6c99-4d1c-9900-958e390e34c2, #wrap-content-s-31075be5-6c99-4d1c-9900-958e390e34c2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-31075be5-6c99-4d1c-9900-958e390e34c2 {
  display: none;
}
#s-31075be5-6c99-4d1c-9900-958e390e34c2, #wrap-s-31075be5-6c99-4d1c-9900-958e390e34c2, #wrap-content-s-31075be5-6c99-4d1c-9900-958e390e34c2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-31075be5-6c99-4d1c-9900-958e390e34c2 {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-31075be5-6c99-4d1c-9900-958e390e34c2 {
  overflow: hidden;
  
  
}







  #s-31075be5-6c99-4d1c-9900-958e390e34c2 img.shogun-image {
    

    
    
    
  }


#s-31075be5-6c99-4d1c-9900-958e390e34c2 .shogun-image-content {
  
    justify-content: center;
  
}

#s-1f066f94-c6b8-4e3f-b9ab-81ca2cb05d52 {
  padding-top: 50px;
padding-left: 50px;
padding-right: 50px;
text-align: center;
}
@media (min-width: 1200px){#s-1f066f94-c6b8-4e3f-b9ab-81ca2cb05d52 {
  display: none;
}
#s-1f066f94-c6b8-4e3f-b9ab-81ca2cb05d52, #wrap-s-1f066f94-c6b8-4e3f-b9ab-81ca2cb05d52, #wrap-content-s-1f066f94-c6b8-4e3f-b9ab-81ca2cb05d52 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1f066f94-c6b8-4e3f-b9ab-81ca2cb05d52 {
  display: none;
}
#s-1f066f94-c6b8-4e3f-b9ab-81ca2cb05d52, #wrap-s-1f066f94-c6b8-4e3f-b9ab-81ca2cb05d52, #wrap-content-s-1f066f94-c6b8-4e3f-b9ab-81ca2cb05d52 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1f066f94-c6b8-4e3f-b9ab-81ca2cb05d52 {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-1f066f94-c6b8-4e3f-b9ab-81ca2cb05d52 {
  overflow: hidden;
  
  
}







  #s-1f066f94-c6b8-4e3f-b9ab-81ca2cb05d52 img.shogun-image {
    

    
    
    
  }


#s-1f066f94-c6b8-4e3f-b9ab-81ca2cb05d52 .shogun-image-content {
  
    justify-content: center;
  
}

#s-cb0b1d0a-fe8e-4a0a-bc34-c88695aff310 {
  padding-top: 50px;
padding-left: 50px;
padding-right: 50px;
text-align: center;
}
@media (min-width: 1200px){#s-cb0b1d0a-fe8e-4a0a-bc34-c88695aff310 {
  display: none;
}
#s-cb0b1d0a-fe8e-4a0a-bc34-c88695aff310, #wrap-s-cb0b1d0a-fe8e-4a0a-bc34-c88695aff310, #wrap-content-s-cb0b1d0a-fe8e-4a0a-bc34-c88695aff310 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cb0b1d0a-fe8e-4a0a-bc34-c88695aff310 {
  display: none;
}
#s-cb0b1d0a-fe8e-4a0a-bc34-c88695aff310, #wrap-s-cb0b1d0a-fe8e-4a0a-bc34-c88695aff310, #wrap-content-s-cb0b1d0a-fe8e-4a0a-bc34-c88695aff310 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-cb0b1d0a-fe8e-4a0a-bc34-c88695aff310 {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-cb0b1d0a-fe8e-4a0a-bc34-c88695aff310 {
  overflow: hidden;
  
  
}







  #s-cb0b1d0a-fe8e-4a0a-bc34-c88695aff310 img.shogun-image {
    

    
    
    
  }


#s-cb0b1d0a-fe8e-4a0a-bc34-c88695aff310 .shogun-image-content {
  
    justify-content: center;
  
}

#s-6fe01fc7-44af-4858-8786-63557c3edccc {
  min-height: 50px;
}
@media (min-width: 1200px){#s-6fe01fc7-44af-4858-8786-63557c3edccc {
  display: none;
}
#s-6fe01fc7-44af-4858-8786-63557c3edccc, #wrap-s-6fe01fc7-44af-4858-8786-63557c3edccc, #wrap-content-s-6fe01fc7-44af-4858-8786-63557c3edccc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6fe01fc7-44af-4858-8786-63557c3edccc {
  display: none;
}
#s-6fe01fc7-44af-4858-8786-63557c3edccc, #wrap-s-6fe01fc7-44af-4858-8786-63557c3edccc, #wrap-content-s-6fe01fc7-44af-4858-8786-63557c3edccc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6fe01fc7-44af-4858-8786-63557c3edccc {
  display: none;
}
#s-6fe01fc7-44af-4858-8786-63557c3edccc, #wrap-s-6fe01fc7-44af-4858-8786-63557c3edccc, #wrap-content-s-6fe01fc7-44af-4858-8786-63557c3edccc { display: none !important; }}







#s-6fe01fc7-44af-4858-8786-63557c3edccc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6fe01fc7-44af-4858-8786-63557c3edccc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-da10ca52-2d92-4e63-b594-147a42741385 {
  padding-top: 100px;
padding-left: 50px;
padding-bottom: 0px;
padding-right: 50px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-da10ca52-2d92-4e63-b594-147a42741385 {
  display: none;
}
#s-da10ca52-2d92-4e63-b594-147a42741385, #wrap-s-da10ca52-2d92-4e63-b594-147a42741385, #wrap-content-s-da10ca52-2d92-4e63-b594-147a42741385 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-da10ca52-2d92-4e63-b594-147a42741385 {
  display: none;
}
#s-da10ca52-2d92-4e63-b594-147a42741385, #wrap-s-da10ca52-2d92-4e63-b594-147a42741385, #wrap-content-s-da10ca52-2d92-4e63-b594-147a42741385 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-da10ca52-2d92-4e63-b594-147a42741385 {
  display: none;
}
#s-da10ca52-2d92-4e63-b594-147a42741385, #wrap-s-da10ca52-2d92-4e63-b594-147a42741385, #wrap-content-s-da10ca52-2d92-4e63-b594-147a42741385 { display: none !important; }}
#s-cb29c0bd-7936-40e0-9c0a-e6ed8b52c52f {
  min-height: 50px;
}








#s-cb29c0bd-7936-40e0-9c0a-e6ed8b52c52f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cb29c0bd-7936-40e0-9c0a-e6ed8b52c52f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9f8dc200-8893-4dfa-8541-4348ff63fc5d {
  padding-left: 50px;
padding-bottom: 20px;
padding-right: 25px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-9f8dc200-8893-4dfa-8541-4348ff63fc5d {
  display: none;
}
#s-9f8dc200-8893-4dfa-8541-4348ff63fc5d, #wrap-s-9f8dc200-8893-4dfa-8541-4348ff63fc5d, #wrap-content-s-9f8dc200-8893-4dfa-8541-4348ff63fc5d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9f8dc200-8893-4dfa-8541-4348ff63fc5d {
  display: none;
}
#s-9f8dc200-8893-4dfa-8541-4348ff63fc5d, #wrap-s-9f8dc200-8893-4dfa-8541-4348ff63fc5d, #wrap-content-s-9f8dc200-8893-4dfa-8541-4348ff63fc5d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9f8dc200-8893-4dfa-8541-4348ff63fc5d {
  display: none;
}
#s-9f8dc200-8893-4dfa-8541-4348ff63fc5d, #wrap-s-9f8dc200-8893-4dfa-8541-4348ff63fc5d, #wrap-content-s-9f8dc200-8893-4dfa-8541-4348ff63fc5d { display: none !important; }}
#s-70964293-eb86-485c-9954-940e8e0f45c8 {
  background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-70964293-eb86-485c-9954-940e8e0f45c8 {
  display: none;
}
#s-70964293-eb86-485c-9954-940e8e0f45c8, #wrap-s-70964293-eb86-485c-9954-940e8e0f45c8, #wrap-content-s-70964293-eb86-485c-9954-940e8e0f45c8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-70964293-eb86-485c-9954-940e8e0f45c8 {
  display: none;
}
#s-70964293-eb86-485c-9954-940e8e0f45c8, #wrap-s-70964293-eb86-485c-9954-940e8e0f45c8, #wrap-content-s-70964293-eb86-485c-9954-940e8e0f45c8 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-70964293-eb86-485c-9954-940e8e0f45c8 {
  display: none;
}
#s-70964293-eb86-485c-9954-940e8e0f45c8, #wrap-s-70964293-eb86-485c-9954-940e8e0f45c8, #wrap-content-s-70964293-eb86-485c-9954-940e8e0f45c8 { display: none !important; }}
@media (min-width: 0px) {
[id="s-70964293-eb86-485c-9954-940e8e0f45c8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-70964293-eb86-485c-9954-940e8e0f45c8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-70964293-eb86-485c-9954-940e8e0f45c8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-70964293-eb86-485c-9954-940e8e0f45c8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-17e7ad74-548d-4c6e-ae56-bead6bd6b30a {
  max-width: 2727px;
text-align: center;
}
@media (min-width: 1200px){#s-17e7ad74-548d-4c6e-ae56-bead6bd6b30a {
  display: none;
}
#s-17e7ad74-548d-4c6e-ae56-bead6bd6b30a, #wrap-s-17e7ad74-548d-4c6e-ae56-bead6bd6b30a, #wrap-content-s-17e7ad74-548d-4c6e-ae56-bead6bd6b30a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-17e7ad74-548d-4c6e-ae56-bead6bd6b30a {
  display: none;
}
#s-17e7ad74-548d-4c6e-ae56-bead6bd6b30a, #wrap-s-17e7ad74-548d-4c6e-ae56-bead6bd6b30a, #wrap-content-s-17e7ad74-548d-4c6e-ae56-bead6bd6b30a { display: none !important; }}@media (max-width: 767px){#s-17e7ad74-548d-4c6e-ae56-bead6bd6b30a {
  margin-left: -28%;
margin-right: -28%;
}
}
#s-17e7ad74-548d-4c6e-ae56-bead6bd6b30a {
  overflow: hidden;
  
  
      max-width: 2727px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-17e7ad74-548d-4c6e-ae56-bead6bd6b30a .shogun-image-content {
  
    justify-content: center;
  
}

#s-7b5f0a77-0df9-4352-a0cd-049e4f23d19a {
  min-height: 50px;
}
@media (min-width: 1200px){#s-7b5f0a77-0df9-4352-a0cd-049e4f23d19a {
  display: none;
}
#s-7b5f0a77-0df9-4352-a0cd-049e4f23d19a, #wrap-s-7b5f0a77-0df9-4352-a0cd-049e4f23d19a, #wrap-content-s-7b5f0a77-0df9-4352-a0cd-049e4f23d19a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7b5f0a77-0df9-4352-a0cd-049e4f23d19a {
  display: none;
}
#s-7b5f0a77-0df9-4352-a0cd-049e4f23d19a, #wrap-s-7b5f0a77-0df9-4352-a0cd-049e4f23d19a, #wrap-content-s-7b5f0a77-0df9-4352-a0cd-049e4f23d19a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7b5f0a77-0df9-4352-a0cd-049e4f23d19a {
  display: none;
}
#s-7b5f0a77-0df9-4352-a0cd-049e4f23d19a, #wrap-s-7b5f0a77-0df9-4352-a0cd-049e4f23d19a, #wrap-content-s-7b5f0a77-0df9-4352-a0cd-049e4f23d19a { display: none !important; }}







#s-7b5f0a77-0df9-4352-a0cd-049e4f23d19a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7b5f0a77-0df9-4352-a0cd-049e4f23d19a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6bbd1a2a-d0fc-452e-b047-f61e0e51b497 {
  padding-top: 100px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
text-align: center;
}
@media (min-width: 1200px){#s-6bbd1a2a-d0fc-452e-b047-f61e0e51b497 {
  display: none;
}
#s-6bbd1a2a-d0fc-452e-b047-f61e0e51b497, #wrap-s-6bbd1a2a-d0fc-452e-b047-f61e0e51b497, #wrap-content-s-6bbd1a2a-d0fc-452e-b047-f61e0e51b497 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6bbd1a2a-d0fc-452e-b047-f61e0e51b497 {
  display: none;
}
#s-6bbd1a2a-d0fc-452e-b047-f61e0e51b497, #wrap-s-6bbd1a2a-d0fc-452e-b047-f61e0e51b497, #wrap-content-s-6bbd1a2a-d0fc-452e-b047-f61e0e51b497 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6bbd1a2a-d0fc-452e-b047-f61e0e51b497 {
  padding-left: 100px;
padding-right: 100px;
}
}
#s-6bbd1a2a-d0fc-452e-b047-f61e0e51b497 {
  overflow: hidden;
  
  
}







  #s-6bbd1a2a-d0fc-452e-b047-f61e0e51b497 img.shogun-image {
    

    
    
    
  }


#s-6bbd1a2a-d0fc-452e-b047-f61e0e51b497 .shogun-image-content {
  
    justify-content: center;
  
}

#s-20ac4799-8bbf-4728-8677-1baa9837cb76 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-20ac4799-8bbf-4728-8677-1baa9837cb76 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-20ac4799-8bbf-4728-8677-1baa9837cb76.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ecf9ff77-b20b-4376-a2cd-052d8b5b7a11 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-ecf9ff77-b20b-4376-a2cd-052d8b5b7a11 {
  display: none;
}
#s-ecf9ff77-b20b-4376-a2cd-052d8b5b7a11, #wrap-s-ecf9ff77-b20b-4376-a2cd-052d8b5b7a11, #wrap-content-s-ecf9ff77-b20b-4376-a2cd-052d8b5b7a11 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ecf9ff77-b20b-4376-a2cd-052d8b5b7a11 {
  display: none;
}
#s-ecf9ff77-b20b-4376-a2cd-052d8b5b7a11, #wrap-s-ecf9ff77-b20b-4376-a2cd-052d8b5b7a11, #wrap-content-s-ecf9ff77-b20b-4376-a2cd-052d8b5b7a11 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ecf9ff77-b20b-4376-a2cd-052d8b5b7a11 {
  display: none;
}
#s-ecf9ff77-b20b-4376-a2cd-052d8b5b7a11, #wrap-s-ecf9ff77-b20b-4376-a2cd-052d8b5b7a11, #wrap-content-s-ecf9ff77-b20b-4376-a2cd-052d8b5b7a11 { display: none !important; }}







#s-ecf9ff77-b20b-4376-a2cd-052d8b5b7a11 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ecf9ff77-b20b-4376-a2cd-052d8b5b7a11.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2afec3cd-183c-4a1a-9c4f-89a16fa90878 {
  padding-left: 25px;
padding-right: 25px;
}
@media (min-width: 1200px){#s-2afec3cd-183c-4a1a-9c4f-89a16fa90878 {
  display: none;
}
#s-2afec3cd-183c-4a1a-9c4f-89a16fa90878, #wrap-s-2afec3cd-183c-4a1a-9c4f-89a16fa90878, #wrap-content-s-2afec3cd-183c-4a1a-9c4f-89a16fa90878 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2afec3cd-183c-4a1a-9c4f-89a16fa90878 {
  display: none;
}
#s-2afec3cd-183c-4a1a-9c4f-89a16fa90878, #wrap-s-2afec3cd-183c-4a1a-9c4f-89a16fa90878, #wrap-content-s-2afec3cd-183c-4a1a-9c4f-89a16fa90878 { display: none !important; }}
#s-1cc21d17-684a-4a4c-b8eb-591a9979598d {
  min-height: 50px;
}
@media (min-width: 1200px){#s-1cc21d17-684a-4a4c-b8eb-591a9979598d {
  display: none;
}
#s-1cc21d17-684a-4a4c-b8eb-591a9979598d, #wrap-s-1cc21d17-684a-4a4c-b8eb-591a9979598d, #wrap-content-s-1cc21d17-684a-4a4c-b8eb-591a9979598d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1cc21d17-684a-4a4c-b8eb-591a9979598d {
  display: none;
}
#s-1cc21d17-684a-4a4c-b8eb-591a9979598d, #wrap-s-1cc21d17-684a-4a4c-b8eb-591a9979598d, #wrap-content-s-1cc21d17-684a-4a4c-b8eb-591a9979598d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1cc21d17-684a-4a4c-b8eb-591a9979598d {
  display: none;
}
#s-1cc21d17-684a-4a4c-b8eb-591a9979598d, #wrap-s-1cc21d17-684a-4a4c-b8eb-591a9979598d, #wrap-content-s-1cc21d17-684a-4a4c-b8eb-591a9979598d { display: none !important; }}







#s-1cc21d17-684a-4a4c-b8eb-591a9979598d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1cc21d17-684a-4a4c-b8eb-591a9979598d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cb0af4d9-dd2a-446a-aed3-3c86204e6950 {
  padding-left: 25px;
padding-right: 25px;
}
@media (min-width: 1200px){#s-cb0af4d9-dd2a-446a-aed3-3c86204e6950 {
  display: none;
}
#s-cb0af4d9-dd2a-446a-aed3-3c86204e6950, #wrap-s-cb0af4d9-dd2a-446a-aed3-3c86204e6950, #wrap-content-s-cb0af4d9-dd2a-446a-aed3-3c86204e6950 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cb0af4d9-dd2a-446a-aed3-3c86204e6950 {
  display: none;
}
#s-cb0af4d9-dd2a-446a-aed3-3c86204e6950, #wrap-s-cb0af4d9-dd2a-446a-aed3-3c86204e6950, #wrap-content-s-cb0af4d9-dd2a-446a-aed3-3c86204e6950 { display: none !important; }}
#s-e0f24aef-34a8-4e9c-a731-3a1791e4d650 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-e0f24aef-34a8-4e9c-a731-3a1791e4d650 {
  display: none;
}
#s-e0f24aef-34a8-4e9c-a731-3a1791e4d650, #wrap-s-e0f24aef-34a8-4e9c-a731-3a1791e4d650, #wrap-content-s-e0f24aef-34a8-4e9c-a731-3a1791e4d650 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e0f24aef-34a8-4e9c-a731-3a1791e4d650 {
  display: none;
}
#s-e0f24aef-34a8-4e9c-a731-3a1791e4d650, #wrap-s-e0f24aef-34a8-4e9c-a731-3a1791e4d650, #wrap-content-s-e0f24aef-34a8-4e9c-a731-3a1791e4d650 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e0f24aef-34a8-4e9c-a731-3a1791e4d650 {
  display: none;
}
#s-e0f24aef-34a8-4e9c-a731-3a1791e4d650, #wrap-s-e0f24aef-34a8-4e9c-a731-3a1791e4d650, #wrap-content-s-e0f24aef-34a8-4e9c-a731-3a1791e4d650 { display: none !important; }}







#s-e0f24aef-34a8-4e9c-a731-3a1791e4d650 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e0f24aef-34a8-4e9c-a731-3a1791e4d650.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d5d60d12-e4de-45ae-8f02-3ab6160adc24 {
  padding-top: 36px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
}
@media (min-width: 1200px){#s-d5d60d12-e4de-45ae-8f02-3ab6160adc24 {
  display: none;
}
#s-d5d60d12-e4de-45ae-8f02-3ab6160adc24, #wrap-s-d5d60d12-e4de-45ae-8f02-3ab6160adc24, #wrap-content-s-d5d60d12-e4de-45ae-8f02-3ab6160adc24 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d5d60d12-e4de-45ae-8f02-3ab6160adc24 {
  display: none;
}
#s-d5d60d12-e4de-45ae-8f02-3ab6160adc24, #wrap-s-d5d60d12-e4de-45ae-8f02-3ab6160adc24, #wrap-content-s-d5d60d12-e4de-45ae-8f02-3ab6160adc24 { display: none !important; }}
#s-483433fc-9a57-4e42-ba2c-14337d11c6c8 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-483433fc-9a57-4e42-ba2c-14337d11c6c8 {
  display: none;
}
#s-483433fc-9a57-4e42-ba2c-14337d11c6c8, #wrap-s-483433fc-9a57-4e42-ba2c-14337d11c6c8, #wrap-content-s-483433fc-9a57-4e42-ba2c-14337d11c6c8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-483433fc-9a57-4e42-ba2c-14337d11c6c8 {
  display: none;
}
#s-483433fc-9a57-4e42-ba2c-14337d11c6c8, #wrap-s-483433fc-9a57-4e42-ba2c-14337d11c6c8, #wrap-content-s-483433fc-9a57-4e42-ba2c-14337d11c6c8 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-483433fc-9a57-4e42-ba2c-14337d11c6c8 {
  display: none;
}
#s-483433fc-9a57-4e42-ba2c-14337d11c6c8, #wrap-s-483433fc-9a57-4e42-ba2c-14337d11c6c8, #wrap-content-s-483433fc-9a57-4e42-ba2c-14337d11c6c8 { display: none !important; }}







#s-483433fc-9a57-4e42-ba2c-14337d11c6c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-483433fc-9a57-4e42-ba2c-14337d11c6c8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-27f50ffe-1997-42f9-8ff3-e2e28125c93d {
  padding-top: 20px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
}
@media (min-width: 1200px){#s-27f50ffe-1997-42f9-8ff3-e2e28125c93d {
  display: none;
}
#s-27f50ffe-1997-42f9-8ff3-e2e28125c93d, #wrap-s-27f50ffe-1997-42f9-8ff3-e2e28125c93d, #wrap-content-s-27f50ffe-1997-42f9-8ff3-e2e28125c93d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-27f50ffe-1997-42f9-8ff3-e2e28125c93d {
  display: none;
}
#s-27f50ffe-1997-42f9-8ff3-e2e28125c93d, #wrap-s-27f50ffe-1997-42f9-8ff3-e2e28125c93d, #wrap-content-s-27f50ffe-1997-42f9-8ff3-e2e28125c93d { display: none !important; }}
#s-b35ac16b-4479-4eaf-ac44-01a78684a84a {
  min-height: 50px;
}
@media (min-width: 1200px){#s-b35ac16b-4479-4eaf-ac44-01a78684a84a {
  display: none;
}
#s-b35ac16b-4479-4eaf-ac44-01a78684a84a, #wrap-s-b35ac16b-4479-4eaf-ac44-01a78684a84a, #wrap-content-s-b35ac16b-4479-4eaf-ac44-01a78684a84a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b35ac16b-4479-4eaf-ac44-01a78684a84a {
  display: none;
}
#s-b35ac16b-4479-4eaf-ac44-01a78684a84a, #wrap-s-b35ac16b-4479-4eaf-ac44-01a78684a84a, #wrap-content-s-b35ac16b-4479-4eaf-ac44-01a78684a84a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b35ac16b-4479-4eaf-ac44-01a78684a84a {
  display: none;
}
#s-b35ac16b-4479-4eaf-ac44-01a78684a84a, #wrap-s-b35ac16b-4479-4eaf-ac44-01a78684a84a, #wrap-content-s-b35ac16b-4479-4eaf-ac44-01a78684a84a { display: none !important; }}







#s-b35ac16b-4479-4eaf-ac44-01a78684a84a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b35ac16b-4479-4eaf-ac44-01a78684a84a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7ce062b0-e596-40b7-8da6-2899d7abbfd4 {
  padding-top: 20px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
}
@media (min-width: 1200px){#s-7ce062b0-e596-40b7-8da6-2899d7abbfd4 {
  display: none;
}
#s-7ce062b0-e596-40b7-8da6-2899d7abbfd4, #wrap-s-7ce062b0-e596-40b7-8da6-2899d7abbfd4, #wrap-content-s-7ce062b0-e596-40b7-8da6-2899d7abbfd4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7ce062b0-e596-40b7-8da6-2899d7abbfd4 {
  display: none;
}
#s-7ce062b0-e596-40b7-8da6-2899d7abbfd4, #wrap-s-7ce062b0-e596-40b7-8da6-2899d7abbfd4, #wrap-content-s-7ce062b0-e596-40b7-8da6-2899d7abbfd4 { display: none !important; }}
#s-db9bc7fd-eccf-4319-bbfe-288d92784d90 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-db9bc7fd-eccf-4319-bbfe-288d92784d90 {
  display: none;
}
#s-db9bc7fd-eccf-4319-bbfe-288d92784d90, #wrap-s-db9bc7fd-eccf-4319-bbfe-288d92784d90, #wrap-content-s-db9bc7fd-eccf-4319-bbfe-288d92784d90 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-db9bc7fd-eccf-4319-bbfe-288d92784d90 {
  display: none;
}
#s-db9bc7fd-eccf-4319-bbfe-288d92784d90, #wrap-s-db9bc7fd-eccf-4319-bbfe-288d92784d90, #wrap-content-s-db9bc7fd-eccf-4319-bbfe-288d92784d90 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-db9bc7fd-eccf-4319-bbfe-288d92784d90 {
  display: none;
}
#s-db9bc7fd-eccf-4319-bbfe-288d92784d90, #wrap-s-db9bc7fd-eccf-4319-bbfe-288d92784d90, #wrap-content-s-db9bc7fd-eccf-4319-bbfe-288d92784d90 { display: none !important; }}







#s-db9bc7fd-eccf-4319-bbfe-288d92784d90 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-db9bc7fd-eccf-4319-bbfe-288d92784d90.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-614ba2b3-cd3a-4508-ac3d-09673d789c35 {
  padding-top: 20px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
}
@media (min-width: 1200px){#s-614ba2b3-cd3a-4508-ac3d-09673d789c35 {
  display: none;
}
#s-614ba2b3-cd3a-4508-ac3d-09673d789c35, #wrap-s-614ba2b3-cd3a-4508-ac3d-09673d789c35, #wrap-content-s-614ba2b3-cd3a-4508-ac3d-09673d789c35 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-614ba2b3-cd3a-4508-ac3d-09673d789c35 {
  display: none;
}
#s-614ba2b3-cd3a-4508-ac3d-09673d789c35, #wrap-s-614ba2b3-cd3a-4508-ac3d-09673d789c35, #wrap-content-s-614ba2b3-cd3a-4508-ac3d-09673d789c35 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-614ba2b3-cd3a-4508-ac3d-09673d789c35 {
  padding-bottom: 100px;
}
}
#s-1321e249-7061-4480-82d6-266a3836e659 {
  min-height: 50px;
}
@media (max-width: 767px){#s-1321e249-7061-4480-82d6-266a3836e659 {
  display: none;
}
#s-1321e249-7061-4480-82d6-266a3836e659, #wrap-s-1321e249-7061-4480-82d6-266a3836e659, #wrap-content-s-1321e249-7061-4480-82d6-266a3836e659 { display: none !important; }}







#s-1321e249-7061-4480-82d6-266a3836e659 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1321e249-7061-4480-82d6-266a3836e659.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-83c88daa-f989-4d4d-8be9-67ec29c16450 {
  padding-top: 50px;
padding-left: 50px;
padding-bottom: 20px;
padding-right: 50px;
background-color: rgba(249, 232, 212, 1);
}
@media (min-width: 1200px){#s-83c88daa-f989-4d4d-8be9-67ec29c16450 {
  display: none;
}
#s-83c88daa-f989-4d4d-8be9-67ec29c16450, #wrap-s-83c88daa-f989-4d4d-8be9-67ec29c16450, #wrap-content-s-83c88daa-f989-4d4d-8be9-67ec29c16450 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-83c88daa-f989-4d4d-8be9-67ec29c16450 {
  display: none;
}
#s-83c88daa-f989-4d4d-8be9-67ec29c16450, #wrap-s-83c88daa-f989-4d4d-8be9-67ec29c16450, #wrap-content-s-83c88daa-f989-4d4d-8be9-67ec29c16450 { display: none !important; }}
#s-2b9dd35c-8b55-4591-8ca9-d2033dda748b {
  padding-top: 150px;
padding-left: 0px;
padding-bottom: 100px;
padding-right: 0px;
max-width: 100%;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-2b9dd35c-8b55-4591-8ca9-d2033dda748b {
  padding-left: 80px;
padding-right: 80px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2b9dd35c-8b55-4591-8ca9-d2033dda748b {
  padding-left: 80px;
padding-right: 80px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-2b9dd35c-8b55-4591-8ca9-d2033dda748b {
  display: none;
}
#s-2b9dd35c-8b55-4591-8ca9-d2033dda748b, #wrap-s-2b9dd35c-8b55-4591-8ca9-d2033dda748b, #wrap-content-s-2b9dd35c-8b55-4591-8ca9-d2033dda748b { display: none !important; }}@media (max-width: 767px){#s-2b9dd35c-8b55-4591-8ca9-d2033dda748b {
  display: none;
}
#s-2b9dd35c-8b55-4591-8ca9-d2033dda748b, #wrap-s-2b9dd35c-8b55-4591-8ca9-d2033dda748b, #wrap-content-s-2b9dd35c-8b55-4591-8ca9-d2033dda748b { display: none !important; }}
@media (min-width: 0px) {
[id="s-2b9dd35c-8b55-4591-8ca9-d2033dda748b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2b9dd35c-8b55-4591-8ca9-d2033dda748b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-2b9dd35c-8b55-4591-8ca9-d2033dda748b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-2b9dd35c-8b55-4591-8ca9-d2033dda748b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-2b9dd35c-8b55-4591-8ca9-d2033dda748b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-2b9dd35c-8b55-4591-8ca9-d2033dda748b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-2b9dd35c-8b55-4591-8ca9-d2033dda748b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

#s-9df39876-de08-4be6-93bb-30ceaba7950a {
  padding-left: 50px;
padding-right: 50px;
max-width: 100%;
}
@media (min-width: 1200px){#s-9df39876-de08-4be6-93bb-30ceaba7950a {
  margin-bottom: -18px;
}
}
#s-3cda06c6-363c-42a0-a036-6a689f6dd432 {
  padding-left: 50px;
padding-right: 50px;
}
@media (min-width: 1200px){#s-3cda06c6-363c-42a0-a036-6a689f6dd432 {
  margin-bottom: -20px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3cda06c6-363c-42a0-a036-6a689f6dd432 {
  margin-top: -20px;
margin-bottom: -20px;
}
}
#s-436784c5-f243-4996-80ab-2c5f19755e53 {
  padding-left: 50px;
padding-right: 50px;
}
@media (min-width: 1200px){#s-436784c5-f243-4996-80ab-2c5f19755e53 {
  margin-left: -23px;
margin-right: -23px;
}
}
#s-a9ba32d6-5907-4d62-93c8-7b14e14b4d4c {
  padding-left: 50px;
padding-right: 50px;
}

#s-1359486f-65e9-4519-8c2f-6ddc6e8eca6b {
  padding-left: 50px;
padding-right: 50px;
}

@media (min-width: 0px) {
[id="s-1359486f-65e9-4519-8c2f-6ddc6e8eca6b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1359486f-65e9-4519-8c2f-6ddc6e8eca6b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1359486f-65e9-4519-8c2f-6ddc6e8eca6b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1359486f-65e9-4519-8c2f-6ddc6e8eca6b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-a6118e10-9332-4c3a-95ca-1de14a85a3fd {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(227, 161, 83, 1);
border-radius: 1px;
min-height: 100%;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
color: rgba(38, 38, 38, 1);
background-image: none;
hover-type: color;
}
#s-a6118e10-9332-4c3a-95ca-1de14a85a3fd:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-a6118e10-9332-4c3a-95ca-1de14a85a3fd:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a6118e10-9332-4c3a-95ca-1de14a85a3fd-root {
    text-align: center;
  }


#s-a6118e10-9332-4c3a-95ca-1de14a85a3fd.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a6118e10-9332-4c3a-95ca-1de14a85a3fd-root {
    text-align: center;
  }


#s-a6118e10-9332-4c3a-95ca-1de14a85a3fd.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a6118e10-9332-4c3a-95ca-1de14a85a3fd-root {
    text-align: center;
  }


#s-a6118e10-9332-4c3a-95ca-1de14a85a3fd.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a6118e10-9332-4c3a-95ca-1de14a85a3fd-root {
    text-align: center;
  }


#s-a6118e10-9332-4c3a-95ca-1de14a85a3fd.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a6118e10-9332-4c3a-95ca-1de14a85a3fd-root {
    text-align: center;
  }


#s-a6118e10-9332-4c3a-95ca-1de14a85a3fd.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-57e27e4c-bf57-4909-a407-92964a38cca0 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(227, 161, 83, 1);
border-radius: 1px;
min-height: 100%;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
background-image: none;
hover-type: color;
color: rgba(38, 38, 38, 1);
}
#s-57e27e4c-bf57-4909-a407-92964a38cca0:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-57e27e4c-bf57-4909-a407-92964a38cca0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-57e27e4c-bf57-4909-a407-92964a38cca0-root {
    text-align: center;
  }


#s-57e27e4c-bf57-4909-a407-92964a38cca0.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-57e27e4c-bf57-4909-a407-92964a38cca0-root {
    text-align: center;
  }


#s-57e27e4c-bf57-4909-a407-92964a38cca0.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-57e27e4c-bf57-4909-a407-92964a38cca0-root {
    text-align: center;
  }


#s-57e27e4c-bf57-4909-a407-92964a38cca0.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-57e27e4c-bf57-4909-a407-92964a38cca0-root {
    text-align: center;
  }


#s-57e27e4c-bf57-4909-a407-92964a38cca0.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-57e27e4c-bf57-4909-a407-92964a38cca0-root {
    text-align: center;
  }


#s-57e27e4c-bf57-4909-a407-92964a38cca0.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-d96cbe06-a975-4297-8ce5-500f1957ea13 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(227, 161, 83, 1);
border-radius: 1px;
min-height: 100%;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(38, 38, 38, 1);
background-image: none;
hover-type: color;
line-height: 1.5em;
}
#s-d96cbe06-a975-4297-8ce5-500f1957ea13:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-d96cbe06-a975-4297-8ce5-500f1957ea13:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d96cbe06-a975-4297-8ce5-500f1957ea13-root {
    text-align: center;
  }


#s-d96cbe06-a975-4297-8ce5-500f1957ea13.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 800;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d96cbe06-a975-4297-8ce5-500f1957ea13-root {
    text-align: center;
  }


#s-d96cbe06-a975-4297-8ce5-500f1957ea13.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 800;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d96cbe06-a975-4297-8ce5-500f1957ea13-root {
    text-align: center;
  }


#s-d96cbe06-a975-4297-8ce5-500f1957ea13.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 800;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d96cbe06-a975-4297-8ce5-500f1957ea13-root {
    text-align: center;
  }


#s-d96cbe06-a975-4297-8ce5-500f1957ea13.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 800;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d96cbe06-a975-4297-8ce5-500f1957ea13-root {
    text-align: center;
  }


#s-d96cbe06-a975-4297-8ce5-500f1957ea13.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 800;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-2086a086-bdbd-4e49-b823-aeb8f0ad4c8c {
  margin-top: -44px;
margin-bottom: -44px;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1953px;
text-align: center;
}

#s-2086a086-bdbd-4e49-b823-aeb8f0ad4c8c {
  overflow: hidden;
  
  
      max-width: 1953px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-2086a086-bdbd-4e49-b823-aeb8f0ad4c8c .shogun-image-content {
  
    justify-content: center;
  
}

#s-6f41a6e1-73a3-43b1-8dcc-3b05db5d8d0b {
  padding-left: 50px;
padding-right: 50px;
}
@media (min-width: 1200px){#s-6f41a6e1-73a3-43b1-8dcc-3b05db5d8d0b {
  padding-top: 40px;
padding-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6f41a6e1-73a3-43b1-8dcc-3b05db5d8d0b {
  padding-top: 25px;
padding-bottom: 10px;
}
}
#s-6e0a65f0-5de3-4e7b-aa52-5af42f915023 {
  margin-top: -32px;
padding-left: 25px;
padding-right: 25px;
}
@media (min-width: 1200px){#s-6e0a65f0-5de3-4e7b-aa52-5af42f915023 {
  padding-top: 40px;
padding-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6e0a65f0-5de3-4e7b-aa52-5af42f915023 {
  padding-top: 25px;
padding-bottom: 10px;
}
}
#s-b717ba18-f6db-420c-b5ea-0a4f7b092403 {
  padding-left: 50px;
padding-bottom: 25px;
padding-right: 50px;
min-height: 100%;
max-width: 100%;
background-color: rgba(249, 232, 212, 1);
}
@media (min-width: 1200px){#s-b717ba18-f6db-420c-b5ea-0a4f7b092403 {
  display: none;
}
#s-b717ba18-f6db-420c-b5ea-0a4f7b092403, #wrap-s-b717ba18-f6db-420c-b5ea-0a4f7b092403, #wrap-content-s-b717ba18-f6db-420c-b5ea-0a4f7b092403 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b717ba18-f6db-420c-b5ea-0a4f7b092403 {
  display: none;
}
#s-b717ba18-f6db-420c-b5ea-0a4f7b092403, #wrap-s-b717ba18-f6db-420c-b5ea-0a4f7b092403, #wrap-content-s-b717ba18-f6db-420c-b5ea-0a4f7b092403 { display: none !important; }}@media (max-width: 767px){#s-b717ba18-f6db-420c-b5ea-0a4f7b092403 {
  display: none;
}
#s-b717ba18-f6db-420c-b5ea-0a4f7b092403, #wrap-s-b717ba18-f6db-420c-b5ea-0a4f7b092403, #wrap-content-s-b717ba18-f6db-420c-b5ea-0a4f7b092403 { display: none !important; }}
@media (min-width: 0px) {
[id="s-b717ba18-f6db-420c-b5ea-0a4f7b092403"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-b717ba18-f6db-420c-b5ea-0a4f7b092403"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-b717ba18-f6db-420c-b5ea-0a4f7b092403"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-b717ba18-f6db-420c-b5ea-0a4f7b092403"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-ad400175-a76e-4ec0-bc48-e7cf14eb6a5b {
  border-style: solid;
padding-top: 15px;
padding-left: 1px;
padding-bottom: 15px;
padding-right: 1px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(227, 161, 83, 1);
border-radius: 1px;
min-height: 100%;
max-width: 100%;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
color: rgba(38, 38, 38, 1);
background-image: none;
hover-type: color;
}
#s-ad400175-a76e-4ec0-bc48-e7cf14eb6a5b:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-ad400175-a76e-4ec0-bc48-e7cf14eb6a5b:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-ad400175-a76e-4ec0-bc48-e7cf14eb6a5b {
  margin-left: 50px;
margin-right: 50px;
}
}

  #s-ad400175-a76e-4ec0-bc48-e7cf14eb6a5b-root {
    text-align: center;
  }


#s-ad400175-a76e-4ec0-bc48-e7cf14eb6a5b.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ad400175-a76e-4ec0-bc48-e7cf14eb6a5b-root {
    text-align: center;
  }


#s-ad400175-a76e-4ec0-bc48-e7cf14eb6a5b.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ad400175-a76e-4ec0-bc48-e7cf14eb6a5b-root {
    text-align: center;
  }


#s-ad400175-a76e-4ec0-bc48-e7cf14eb6a5b.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ad400175-a76e-4ec0-bc48-e7cf14eb6a5b-root {
    text-align: center;
  }


#s-ad400175-a76e-4ec0-bc48-e7cf14eb6a5b.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ad400175-a76e-4ec0-bc48-e7cf14eb6a5b-root {
    text-align: center;
  }


#s-ad400175-a76e-4ec0-bc48-e7cf14eb6a5b.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-e6c7e80c-3521-4324-8b81-e93fb05c2660 {
  border-style: solid;
padding-top: 15px;
padding-left: 1px;
padding-bottom: 15px;
padding-right: 1px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(227, 161, 83, 1);
border-radius: 1px;
min-height: 100%;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
background-image: none;
hover-type: color;
color: rgba(38, 38, 38, 1);
}
#s-e6c7e80c-3521-4324-8b81-e93fb05c2660:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-e6c7e80c-3521-4324-8b81-e93fb05c2660:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-e6c7e80c-3521-4324-8b81-e93fb05c2660 {
  margin-left: 50px;
margin-right: 50px;
}
}@media (max-width: 767px){#s-e6c7e80c-3521-4324-8b81-e93fb05c2660 {
  margin-left: 0px;
margin-right: 0px;
max-width: 100%;
}
}

  #s-e6c7e80c-3521-4324-8b81-e93fb05c2660-root {
    text-align: center;
  }


#s-e6c7e80c-3521-4324-8b81-e93fb05c2660.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e6c7e80c-3521-4324-8b81-e93fb05c2660-root {
    text-align: center;
  }


#s-e6c7e80c-3521-4324-8b81-e93fb05c2660.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e6c7e80c-3521-4324-8b81-e93fb05c2660-root {
    text-align: center;
  }


#s-e6c7e80c-3521-4324-8b81-e93fb05c2660.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e6c7e80c-3521-4324-8b81-e93fb05c2660-root {
    text-align: center;
  }


#s-e6c7e80c-3521-4324-8b81-e93fb05c2660.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e6c7e80c-3521-4324-8b81-e93fb05c2660-root {
    text-align: center;
  }


#s-e6c7e80c-3521-4324-8b81-e93fb05c2660.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-b0e89deb-464b-44be-a90f-11723fca178f {
  border-style: solid;
padding-top: 15px;
padding-left: 1px;
padding-bottom: 15px;
padding-right: 1px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(227, 161, 83, 1);
border-radius: 1px;
min-height: 100%;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(38, 38, 38, 1);
background-image: none;
hover-type: color;
line-height: 1.5em;
}
#s-b0e89deb-464b-44be-a90f-11723fca178f:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-b0e89deb-464b-44be-a90f-11723fca178f:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-b0e89deb-464b-44be-a90f-11723fca178f {
  margin-left: 50px;
margin-right: 50px;
}
}@media (max-width: 767px){#s-b0e89deb-464b-44be-a90f-11723fca178f {
  max-width: 100%;
}
}

  #s-b0e89deb-464b-44be-a90f-11723fca178f-root {
    text-align: center;
  }


#s-b0e89deb-464b-44be-a90f-11723fca178f.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b0e89deb-464b-44be-a90f-11723fca178f-root {
    text-align: center;
  }


#s-b0e89deb-464b-44be-a90f-11723fca178f.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b0e89deb-464b-44be-a90f-11723fca178f-root {
    text-align: center;
  }


#s-b0e89deb-464b-44be-a90f-11723fca178f.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b0e89deb-464b-44be-a90f-11723fca178f-root {
    text-align: center;
  }


#s-b0e89deb-464b-44be-a90f-11723fca178f.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b0e89deb-464b-44be-a90f-11723fca178f-root {
    text-align: center;
  }


#s-b0e89deb-464b-44be-a90f-11723fca178f.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-f4e97ed3-2096-4f0b-bba1-5c1f31e836d4 {
  min-height: 50px;
}
@media (max-width: 767px){#s-f4e97ed3-2096-4f0b-bba1-5c1f31e836d4 {
  display: none;
}
#s-f4e97ed3-2096-4f0b-bba1-5c1f31e836d4, #wrap-s-f4e97ed3-2096-4f0b-bba1-5c1f31e836d4, #wrap-content-s-f4e97ed3-2096-4f0b-bba1-5c1f31e836d4 { display: none !important; }}







#s-f4e97ed3-2096-4f0b-bba1-5c1f31e836d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f4e97ed3-2096-4f0b-bba1-5c1f31e836d4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f211f067-03d4-463d-99c0-58299bfa0273 {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
background-color: rgba(249, 232, 212, 1);
}
@media (min-width: 1200px){#s-f211f067-03d4-463d-99c0-58299bfa0273 {
  display: none;
}
#s-f211f067-03d4-463d-99c0-58299bfa0273, #wrap-s-f211f067-03d4-463d-99c0-58299bfa0273, #wrap-content-s-f211f067-03d4-463d-99c0-58299bfa0273 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f211f067-03d4-463d-99c0-58299bfa0273 {
  display: none;
}
#s-f211f067-03d4-463d-99c0-58299bfa0273, #wrap-s-f211f067-03d4-463d-99c0-58299bfa0273, #wrap-content-s-f211f067-03d4-463d-99c0-58299bfa0273 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f211f067-03d4-463d-99c0-58299bfa0273 {
  padding-left: 75px;
padding-right: 75px;
}
}
#s-96d288e8-a6d5-4ca4-b710-dceb63e01d26 {
  min-height: 50px;
}








#s-96d288e8-a6d5-4ca4-b710-dceb63e01d26 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-96d288e8-a6d5-4ca4-b710-dceb63e01d26.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-df147ccf-18e9-4221-a0db-cd64c9b0cf4c {
  margin-top: -32px;
padding-top: 20px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
background-color: rgba(249, 232, 212, 1);
}
@media (min-width: 1200px){#s-df147ccf-18e9-4221-a0db-cd64c9b0cf4c {
  display: none;
}
#s-df147ccf-18e9-4221-a0db-cd64c9b0cf4c, #wrap-s-df147ccf-18e9-4221-a0db-cd64c9b0cf4c, #wrap-content-s-df147ccf-18e9-4221-a0db-cd64c9b0cf4c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-df147ccf-18e9-4221-a0db-cd64c9b0cf4c {
  display: none;
}
#s-df147ccf-18e9-4221-a0db-cd64c9b0cf4c, #wrap-s-df147ccf-18e9-4221-a0db-cd64c9b0cf4c, #wrap-content-s-df147ccf-18e9-4221-a0db-cd64c9b0cf4c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-df147ccf-18e9-4221-a0db-cd64c9b0cf4c {
  padding-right: 75px;
}
}
#s-7be70724-822a-4a71-96e1-61dbb393ed87 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-7be70724-822a-4a71-96e1-61dbb393ed87 {
  display: none;
}
#s-7be70724-822a-4a71-96e1-61dbb393ed87, #wrap-s-7be70724-822a-4a71-96e1-61dbb393ed87, #wrap-content-s-7be70724-822a-4a71-96e1-61dbb393ed87 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7be70724-822a-4a71-96e1-61dbb393ed87 {
  display: none;
}
#s-7be70724-822a-4a71-96e1-61dbb393ed87, #wrap-s-7be70724-822a-4a71-96e1-61dbb393ed87, #wrap-content-s-7be70724-822a-4a71-96e1-61dbb393ed87 { display: none !important; }}







#s-7be70724-822a-4a71-96e1-61dbb393ed87 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7be70724-822a-4a71-96e1-61dbb393ed87.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-28caae4e-020b-482e-8c01-78e8da6a7b84 {
  padding-top: 100px;
padding-left: 50px;
padding-right: 50px;
}
@media (min-width: 1200px){#s-28caae4e-020b-482e-8c01-78e8da6a7b84 {
  display: none;
}
#s-28caae4e-020b-482e-8c01-78e8da6a7b84, #wrap-s-28caae4e-020b-482e-8c01-78e8da6a7b84, #wrap-content-s-28caae4e-020b-482e-8c01-78e8da6a7b84 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-28caae4e-020b-482e-8c01-78e8da6a7b84 {
  display: none;
}
#s-28caae4e-020b-482e-8c01-78e8da6a7b84, #wrap-s-28caae4e-020b-482e-8c01-78e8da6a7b84, #wrap-content-s-28caae4e-020b-482e-8c01-78e8da6a7b84 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-28caae4e-020b-482e-8c01-78e8da6a7b84 {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-7858c055-5fe8-4ede-a9b6-ff96407dd7f2 {
  min-height: 50px;
}
@media (max-width: 767px){#s-7858c055-5fe8-4ede-a9b6-ff96407dd7f2 {
  display: none;
}
#s-7858c055-5fe8-4ede-a9b6-ff96407dd7f2, #wrap-s-7858c055-5fe8-4ede-a9b6-ff96407dd7f2, #wrap-content-s-7858c055-5fe8-4ede-a9b6-ff96407dd7f2 { display: none !important; }}







#s-7858c055-5fe8-4ede-a9b6-ff96407dd7f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7858c055-5fe8-4ede-a9b6-ff96407dd7f2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4c0ace1b-77db-4247-8dc2-8f232bcb390d {
  min-height: 50px;
}
@media (min-width: 1200px){#s-4c0ace1b-77db-4247-8dc2-8f232bcb390d {
  display: none;
}
#s-4c0ace1b-77db-4247-8dc2-8f232bcb390d, #wrap-s-4c0ace1b-77db-4247-8dc2-8f232bcb390d, #wrap-content-s-4c0ace1b-77db-4247-8dc2-8f232bcb390d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4c0ace1b-77db-4247-8dc2-8f232bcb390d {
  display: none;
}
#s-4c0ace1b-77db-4247-8dc2-8f232bcb390d, #wrap-s-4c0ace1b-77db-4247-8dc2-8f232bcb390d, #wrap-content-s-4c0ace1b-77db-4247-8dc2-8f232bcb390d { display: none !important; }}







#s-4c0ace1b-77db-4247-8dc2-8f232bcb390d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4c0ace1b-77db-4247-8dc2-8f232bcb390d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1f8b7441-89ce-4b42-82df-784356650c35 {
  margin-left: 50px;
margin-right: 50px;
}
@media (min-width: 1200px){#s-1f8b7441-89ce-4b42-82df-784356650c35 {
  display: none;
}
#s-1f8b7441-89ce-4b42-82df-784356650c35, #wrap-s-1f8b7441-89ce-4b42-82df-784356650c35, #wrap-content-s-1f8b7441-89ce-4b42-82df-784356650c35 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1f8b7441-89ce-4b42-82df-784356650c35 {
  display: none;
}
#s-1f8b7441-89ce-4b42-82df-784356650c35, #wrap-s-1f8b7441-89ce-4b42-82df-784356650c35, #wrap-content-s-1f8b7441-89ce-4b42-82df-784356650c35 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1f8b7441-89ce-4b42-82df-784356650c35 {
  padding-left: 75px;
padding-right: 75px;
}
}
#s-c0090e5b-9517-450d-bf1d-1e36859de574 {
  min-height: 50px;
}
@media (max-width: 767px){#s-c0090e5b-9517-450d-bf1d-1e36859de574 {
  display: none;
}
#s-c0090e5b-9517-450d-bf1d-1e36859de574, #wrap-s-c0090e5b-9517-450d-bf1d-1e36859de574, #wrap-content-s-c0090e5b-9517-450d-bf1d-1e36859de574 { display: none !important; }}







#s-c0090e5b-9517-450d-bf1d-1e36859de574 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c0090e5b-9517-450d-bf1d-1e36859de574.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-43a67c3e-7485-4e8a-a199-cfacf693b4fd {
  padding-top: 50px;
padding-left: 50px;
padding-right: 50px;
text-align: center;
}
@media (min-width: 1200px){#s-43a67c3e-7485-4e8a-a199-cfacf693b4fd {
  display: none;
}
#s-43a67c3e-7485-4e8a-a199-cfacf693b4fd, #wrap-s-43a67c3e-7485-4e8a-a199-cfacf693b4fd, #wrap-content-s-43a67c3e-7485-4e8a-a199-cfacf693b4fd { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-43a67c3e-7485-4e8a-a199-cfacf693b4fd {
  display: none;
}
#s-43a67c3e-7485-4e8a-a199-cfacf693b4fd, #wrap-s-43a67c3e-7485-4e8a-a199-cfacf693b4fd, #wrap-content-s-43a67c3e-7485-4e8a-a199-cfacf693b4fd { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-43a67c3e-7485-4e8a-a199-cfacf693b4fd {
  padding-top: 50px;
padding-left: 125px;
padding-right: 125px;
}
}
#s-43a67c3e-7485-4e8a-a199-cfacf693b4fd {
  overflow: hidden;
  
  
}







  #s-43a67c3e-7485-4e8a-a199-cfacf693b4fd img.shogun-image {
    

    
    
    
  }


#s-43a67c3e-7485-4e8a-a199-cfacf693b4fd .shogun-image-content {
  
    justify-content: center;
  
}

#s-31f0ba66-2112-469f-ba1e-440160c2de42 {
  padding-top: 50px;
padding-left: 50px;
padding-right: 50px;
text-align: center;
}
@media (min-width: 1200px){#s-31f0ba66-2112-469f-ba1e-440160c2de42 {
  display: none;
}
#s-31f0ba66-2112-469f-ba1e-440160c2de42, #wrap-s-31f0ba66-2112-469f-ba1e-440160c2de42, #wrap-content-s-31f0ba66-2112-469f-ba1e-440160c2de42 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-31f0ba66-2112-469f-ba1e-440160c2de42 {
  display: none;
}
#s-31f0ba66-2112-469f-ba1e-440160c2de42, #wrap-s-31f0ba66-2112-469f-ba1e-440160c2de42, #wrap-content-s-31f0ba66-2112-469f-ba1e-440160c2de42 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-31f0ba66-2112-469f-ba1e-440160c2de42 {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-31f0ba66-2112-469f-ba1e-440160c2de42 {
  overflow: hidden;
  
  
}







  #s-31f0ba66-2112-469f-ba1e-440160c2de42 img.shogun-image {
    

    
    
    
  }


#s-31f0ba66-2112-469f-ba1e-440160c2de42 .shogun-image-content {
  
    justify-content: center;
  
}

#s-3e519b60-5d49-4518-8628-a9a143467bcc {
  padding-top: 50px;
padding-left: 50px;
padding-right: 50px;
text-align: center;
}
@media (min-width: 1200px){#s-3e519b60-5d49-4518-8628-a9a143467bcc {
  display: none;
}
#s-3e519b60-5d49-4518-8628-a9a143467bcc, #wrap-s-3e519b60-5d49-4518-8628-a9a143467bcc, #wrap-content-s-3e519b60-5d49-4518-8628-a9a143467bcc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3e519b60-5d49-4518-8628-a9a143467bcc {
  display: none;
}
#s-3e519b60-5d49-4518-8628-a9a143467bcc, #wrap-s-3e519b60-5d49-4518-8628-a9a143467bcc, #wrap-content-s-3e519b60-5d49-4518-8628-a9a143467bcc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3e519b60-5d49-4518-8628-a9a143467bcc {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-3e519b60-5d49-4518-8628-a9a143467bcc {
  overflow: hidden;
  
  
}







  #s-3e519b60-5d49-4518-8628-a9a143467bcc img.shogun-image {
    

    
    
    
  }


#s-3e519b60-5d49-4518-8628-a9a143467bcc .shogun-image-content {
  
    justify-content: center;
  
}

#s-d64801cc-983f-4649-b3f3-dad587db004f {
  padding-top: 50px;
padding-left: 50px;
padding-right: 50px;
text-align: center;
}
@media (min-width: 1200px){#s-d64801cc-983f-4649-b3f3-dad587db004f {
  display: none;
}
#s-d64801cc-983f-4649-b3f3-dad587db004f, #wrap-s-d64801cc-983f-4649-b3f3-dad587db004f, #wrap-content-s-d64801cc-983f-4649-b3f3-dad587db004f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d64801cc-983f-4649-b3f3-dad587db004f {
  display: none;
}
#s-d64801cc-983f-4649-b3f3-dad587db004f, #wrap-s-d64801cc-983f-4649-b3f3-dad587db004f, #wrap-content-s-d64801cc-983f-4649-b3f3-dad587db004f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d64801cc-983f-4649-b3f3-dad587db004f {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-d64801cc-983f-4649-b3f3-dad587db004f {
  overflow: hidden;
  
  
}







  #s-d64801cc-983f-4649-b3f3-dad587db004f img.shogun-image {
    

    
    
    
  }


#s-d64801cc-983f-4649-b3f3-dad587db004f .shogun-image-content {
  
    justify-content: center;
  
}

#s-4144cc3f-6b84-494a-91ac-5f0643d9b56c {
  min-height: 50px;
}
@media (min-width: 1200px){#s-4144cc3f-6b84-494a-91ac-5f0643d9b56c {
  display: none;
}
#s-4144cc3f-6b84-494a-91ac-5f0643d9b56c, #wrap-s-4144cc3f-6b84-494a-91ac-5f0643d9b56c, #wrap-content-s-4144cc3f-6b84-494a-91ac-5f0643d9b56c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4144cc3f-6b84-494a-91ac-5f0643d9b56c {
  display: none;
}
#s-4144cc3f-6b84-494a-91ac-5f0643d9b56c, #wrap-s-4144cc3f-6b84-494a-91ac-5f0643d9b56c, #wrap-content-s-4144cc3f-6b84-494a-91ac-5f0643d9b56c { display: none !important; }}@media (max-width: 767px){#s-4144cc3f-6b84-494a-91ac-5f0643d9b56c {
  display: none;
}
#s-4144cc3f-6b84-494a-91ac-5f0643d9b56c, #wrap-s-4144cc3f-6b84-494a-91ac-5f0643d9b56c, #wrap-content-s-4144cc3f-6b84-494a-91ac-5f0643d9b56c { display: none !important; }}







#s-4144cc3f-6b84-494a-91ac-5f0643d9b56c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4144cc3f-6b84-494a-91ac-5f0643d9b56c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-acc3d74a-9672-4e3e-94cc-0e1da5324c23 {
  padding-top: 130px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-acc3d74a-9672-4e3e-94cc-0e1da5324c23 {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-acc3d74a-9672-4e3e-94cc-0e1da5324c23 {
  overflow: hidden;
  
  
}







  #s-acc3d74a-9672-4e3e-94cc-0e1da5324c23 img.shogun-image {
    

    
    
    
  }


#s-acc3d74a-9672-4e3e-94cc-0e1da5324c23 .shogun-image-content {
  
    justify-content: center;
  
}

#s-d882dbfe-04d2-4b52-a963-b837bb09a811 {
  padding-top: 0px;
padding-left: 50px;
padding-right: 50px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d882dbfe-04d2-4b52-a963-b837bb09a811 {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-d882dbfe-04d2-4b52-a963-b837bb09a811 {
  overflow: hidden;
  
  
}







  #s-d882dbfe-04d2-4b52-a963-b837bb09a811 img.shogun-image {
    

    
    
    
  }


#s-d882dbfe-04d2-4b52-a963-b837bb09a811 .shogun-image-content {
  
    justify-content: center;
  
}

#s-2e3f51e4-4e34-4f38-b9cf-93184d8f6617 {
  min-height: 50px;
}
@media (max-width: 767px){#s-2e3f51e4-4e34-4f38-b9cf-93184d8f6617 {
  display: none;
}
#s-2e3f51e4-4e34-4f38-b9cf-93184d8f6617, #wrap-s-2e3f51e4-4e34-4f38-b9cf-93184d8f6617, #wrap-content-s-2e3f51e4-4e34-4f38-b9cf-93184d8f6617 { display: none !important; }}







#s-2e3f51e4-4e34-4f38-b9cf-93184d8f6617 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2e3f51e4-4e34-4f38-b9cf-93184d8f6617.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7af93db5-f7e5-40bb-ba9a-a5513de99b10 {
  min-height: 50px;
}








#s-7af93db5-f7e5-40bb-ba9a-a5513de99b10 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7af93db5-f7e5-40bb-ba9a-a5513de99b10.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8cf22243-49ce-4400-9b2e-6b92077cbba5 {
  padding-top: 100px;
padding-left: 50px;
padding-right: 50px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-8cf22243-49ce-4400-9b2e-6b92077cbba5 {
  display: none;
}
#s-8cf22243-49ce-4400-9b2e-6b92077cbba5, #wrap-s-8cf22243-49ce-4400-9b2e-6b92077cbba5, #wrap-content-s-8cf22243-49ce-4400-9b2e-6b92077cbba5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8cf22243-49ce-4400-9b2e-6b92077cbba5 {
  display: none;
}
#s-8cf22243-49ce-4400-9b2e-6b92077cbba5, #wrap-s-8cf22243-49ce-4400-9b2e-6b92077cbba5, #wrap-content-s-8cf22243-49ce-4400-9b2e-6b92077cbba5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8cf22243-49ce-4400-9b2e-6b92077cbba5 {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-35fa1f51-a492-4013-b197-c7981d5667e6 {
  min-height: 50px;
}








#s-35fa1f51-a492-4013-b197-c7981d5667e6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-35fa1f51-a492-4013-b197-c7981d5667e6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9e4b491f-772e-4247-92af-a15fd0ef905d {
  padding-left: 50px;
padding-right: 50px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-9e4b491f-772e-4247-92af-a15fd0ef905d {
  display: none;
}
#s-9e4b491f-772e-4247-92af-a15fd0ef905d, #wrap-s-9e4b491f-772e-4247-92af-a15fd0ef905d, #wrap-content-s-9e4b491f-772e-4247-92af-a15fd0ef905d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9e4b491f-772e-4247-92af-a15fd0ef905d {
  display: none;
}
#s-9e4b491f-772e-4247-92af-a15fd0ef905d, #wrap-s-9e4b491f-772e-4247-92af-a15fd0ef905d, #wrap-content-s-9e4b491f-772e-4247-92af-a15fd0ef905d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9e4b491f-772e-4247-92af-a15fd0ef905d {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-67f4c909-189a-4802-b02b-a8d3b22adea8 {
  padding-top: 50px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
}
@media (min-width: 1200px){#s-67f4c909-189a-4802-b02b-a8d3b22adea8 {
  display: none;
}
#s-67f4c909-189a-4802-b02b-a8d3b22adea8, #wrap-s-67f4c909-189a-4802-b02b-a8d3b22adea8, #wrap-content-s-67f4c909-189a-4802-b02b-a8d3b22adea8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-67f4c909-189a-4802-b02b-a8d3b22adea8 {
  display: none;
}
#s-67f4c909-189a-4802-b02b-a8d3b22adea8, #wrap-s-67f4c909-189a-4802-b02b-a8d3b22adea8, #wrap-content-s-67f4c909-189a-4802-b02b-a8d3b22adea8 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-67f4c909-189a-4802-b02b-a8d3b22adea8 {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-67f4c909-189a-4802-b02b-a8d3b22adea8 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-67f4c909-189a-4802-b02b-a8d3b22adea8 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(227, 161, 83, 1);
  padding: 17px;
}

#s-67f4c909-189a-4802-b02b-a8d3b22adea8 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(38, 38, 38, 1);
}

#s-67f4c909-189a-4802-b02b-a8d3b22adea8 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 1);
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-67f4c909-189a-4802-b02b-a8d3b22adea8 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(38, 38, 38, 1);
  text-align: left;
  font-family: Poppins;
  font-weight: 500;
  font-style: ;
  font-size: 18px;
}

#s-67f4c909-189a-4802-b02b-a8d3b22adea8 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-414b35cd-954b-4713-8c23-2bd1c4bdc41f {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-dd0d8015-783a-43de-b3dd-48f1ae76ab64 {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-67caad75-3350-4961-8ca6-b977e7267f26 {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-d2a7776b-88f5-49c9-ba7f-2b6da8416c1c {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-a045de2c-c957-47f5-b66e-27a1118a51e1 {
  padding-top: 20px;
padding-left: 0px;
padding-bottom: 20px;
padding-right: 0px;
}

#s-5a913510-ea2d-45ef-8e40-6803a1d0d09f {
  padding-top: 100px;
padding-bottom: 100px;
}
@media (min-width: 1200px){#s-5a913510-ea2d-45ef-8e40-6803a1d0d09f {
  background-color: rgba(255, 255, 255, 1);
}
}@media (min-width: 768px) and (max-width: 991px){#s-5a913510-ea2d-45ef-8e40-6803a1d0d09f {
  display: none;
}
#s-5a913510-ea2d-45ef-8e40-6803a1d0d09f, #wrap-s-5a913510-ea2d-45ef-8e40-6803a1d0d09f, #wrap-content-s-5a913510-ea2d-45ef-8e40-6803a1d0d09f { display: none !important; }}@media (max-width: 767px){#s-5a913510-ea2d-45ef-8e40-6803a1d0d09f {
  display: none;
}
#s-5a913510-ea2d-45ef-8e40-6803a1d0d09f, #wrap-s-5a913510-ea2d-45ef-8e40-6803a1d0d09f, #wrap-content-s-5a913510-ea2d-45ef-8e40-6803a1d0d09f { display: none !important; }}
@media (min-width: 0px) {
[id="s-5a913510-ea2d-45ef-8e40-6803a1d0d09f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5a913510-ea2d-45ef-8e40-6803a1d0d09f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-5a913510-ea2d-45ef-8e40-6803a1d0d09f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-5a913510-ea2d-45ef-8e40-6803a1d0d09f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-5a913510-ea2d-45ef-8e40-6803a1d0d09f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-5a913510-ea2d-45ef-8e40-6803a1d0d09f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-5a913510-ea2d-45ef-8e40-6803a1d0d09f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 768px) and (max-width: 991px){#s-cc32e161-665a-4bf7-8db2-840607db844c {
  display: none;
}
#s-cc32e161-665a-4bf7-8db2-840607db844c, #wrap-s-cc32e161-665a-4bf7-8db2-840607db844c, #wrap-content-s-cc32e161-665a-4bf7-8db2-840607db844c { display: none !important; }}@media (max-width: 767px){#s-cc32e161-665a-4bf7-8db2-840607db844c {
  display: none;
}
#s-cc32e161-665a-4bf7-8db2-840607db844c, #wrap-s-cc32e161-665a-4bf7-8db2-840607db844c, #wrap-content-s-cc32e161-665a-4bf7-8db2-840607db844c { display: none !important; }}
#s-bc4fb080-d916-4a1b-a967-f6da8a70909a {
  padding-top: 50px;
padding-bottom: 50px;
max-width: 1600px;
}
@media (min-width: 768px) and (max-width: 991px){#s-bc4fb080-d916-4a1b-a967-f6da8a70909a {
  
}
}
@media (min-width: 0px) {
[id="s-bc4fb080-d916-4a1b-a967-f6da8a70909a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-bc4fb080-d916-4a1b-a967-f6da8a70909a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-bc4fb080-d916-4a1b-a967-f6da8a70909a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-bc4fb080-d916-4a1b-a967-f6da8a70909a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-d6f15989-0950-4fc7-8c4a-f4030d8d7dd5 {
  box-shadow:1px 1px 10px 2px rgba(204, 204, 204, 1);
border-style: solid;
border-color: rgba(252, 205, 159, 1);
border-radius: 0px;
text-align: center;
}

#s-d6f15989-0950-4fc7-8c4a-f4030d8d7dd5 {
  overflow: hidden;
  
  
}







  #s-d6f15989-0950-4fc7-8c4a-f4030d8d7dd5 img.shogun-image {
    

    
    
    
  }


#s-d6f15989-0950-4fc7-8c4a-f4030d8d7dd5 .shogun-image-content {
  
    justify-content: center;
  
}

#s-129d3f8c-b2d9-436f-91f7-b0d3062446ce {
  box-shadow:0px 0px 10px 2px rgba(204, 204, 204, 1);
text-align: center;
}

#s-129d3f8c-b2d9-436f-91f7-b0d3062446ce {
  overflow: hidden;
  
  
}







  #s-129d3f8c-b2d9-436f-91f7-b0d3062446ce img.shogun-image {
    

    
    
    
  }


#s-129d3f8c-b2d9-436f-91f7-b0d3062446ce .shogun-image-content {
  
    justify-content: center;
  
}

#s-3005d1fc-1f95-47b6-8906-69f5a5bbd06d {
  box-shadow:1px 1px 10px 2px rgba(204, 204, 204, 0.8);
text-align: center;
}

#s-3005d1fc-1f95-47b6-8906-69f5a5bbd06d {
  overflow: hidden;
  
  
}







  #s-3005d1fc-1f95-47b6-8906-69f5a5bbd06d img.shogun-image {
    

    
    
    
  }


#s-3005d1fc-1f95-47b6-8906-69f5a5bbd06d .shogun-image-content {
  
    justify-content: center;
  
}

#s-557bbebf-4555-41c3-8d24-ee4bbf836dd9 {
  box-shadow:1px 1px 10px 2px rgba(204, 204, 204, 1);
text-align: center;
}

#s-557bbebf-4555-41c3-8d24-ee4bbf836dd9 {
  overflow: hidden;
  
  
}







  #s-557bbebf-4555-41c3-8d24-ee4bbf836dd9 img.shogun-image {
    

    
    
    
  }


#s-557bbebf-4555-41c3-8d24-ee4bbf836dd9 .shogun-image-content {
  
    justify-content: center;
  
}

#s-ceffbc3b-042a-4b39-bce8-e5742fbfc2d5 {
  padding-top: 100px;
padding-bottom: 100px;
background-color: rgba(255, 248, 242, 1);
}
@media (max-width: 767px){#s-ceffbc3b-042a-4b39-bce8-e5742fbfc2d5 {
  display: none;
}
#s-ceffbc3b-042a-4b39-bce8-e5742fbfc2d5, #wrap-s-ceffbc3b-042a-4b39-bce8-e5742fbfc2d5, #wrap-content-s-ceffbc3b-042a-4b39-bce8-e5742fbfc2d5 { display: none !important; }}
@media (min-width: 0px) {
[id="s-ceffbc3b-042a-4b39-bce8-e5742fbfc2d5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ceffbc3b-042a-4b39-bce8-e5742fbfc2d5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ceffbc3b-042a-4b39-bce8-e5742fbfc2d5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ceffbc3b-042a-4b39-bce8-e5742fbfc2d5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ceffbc3b-042a-4b39-bce8-e5742fbfc2d5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ceffbc3b-042a-4b39-bce8-e5742fbfc2d5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ceffbc3b-042a-4b39-bce8-e5742fbfc2d5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

#s-61376f12-e4d0-4ad7-9d7b-5a3cbb83cdcc {
  max-width: 2727px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-61376f12-e4d0-4ad7-9d7b-5a3cbb83cdcc {
  min-height: 100%;
display: none;
}
#s-61376f12-e4d0-4ad7-9d7b-5a3cbb83cdcc, #wrap-s-61376f12-e4d0-4ad7-9d7b-5a3cbb83cdcc, #wrap-content-s-61376f12-e4d0-4ad7-9d7b-5a3cbb83cdcc { display: none !important; }}
#s-61376f12-e4d0-4ad7-9d7b-5a3cbb83cdcc {
  overflow: hidden;
  
  
      max-width: 2727px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-61376f12-e4d0-4ad7-9d7b-5a3cbb83cdcc .shogun-image-content {
  
    justify-content: center;
  
}

#s-02524703-7b2e-4721-8ea4-393e2e65d420 {
  text-align: center;
}
@media (min-width: 1200px){#s-02524703-7b2e-4721-8ea4-393e2e65d420 {
  display: none;
}
#s-02524703-7b2e-4721-8ea4-393e2e65d420, #wrap-s-02524703-7b2e-4721-8ea4-393e2e65d420, #wrap-content-s-02524703-7b2e-4721-8ea4-393e2e65d420 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-02524703-7b2e-4721-8ea4-393e2e65d420 {
  display: none;
}
#s-02524703-7b2e-4721-8ea4-393e2e65d420, #wrap-s-02524703-7b2e-4721-8ea4-393e2e65d420, #wrap-content-s-02524703-7b2e-4721-8ea4-393e2e65d420 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-02524703-7b2e-4721-8ea4-393e2e65d420 {
  min-height: 100%;
max-width: 100%;
}
}@media (max-width: 767px){#s-02524703-7b2e-4721-8ea4-393e2e65d420 {
  display: none;
}
#s-02524703-7b2e-4721-8ea4-393e2e65d420, #wrap-s-02524703-7b2e-4721-8ea4-393e2e65d420, #wrap-content-s-02524703-7b2e-4721-8ea4-393e2e65d420 { display: none !important; }}
#s-02524703-7b2e-4721-8ea4-393e2e65d420 {
  overflow: hidden;
  
  
}







  #s-02524703-7b2e-4721-8ea4-393e2e65d420 img.shogun-image {
    

    
    
    
  }


#s-02524703-7b2e-4721-8ea4-393e2e65d420 .shogun-image-content {
  
    justify-content: center;
  
}

#s-eb704d32-90a1-454c-88f8-9bdb75c0bd2f {
  min-height: 50px;
}
@media (min-width: 1200px){#s-eb704d32-90a1-454c-88f8-9bdb75c0bd2f {
  display: none;
}
#s-eb704d32-90a1-454c-88f8-9bdb75c0bd2f, #wrap-s-eb704d32-90a1-454c-88f8-9bdb75c0bd2f, #wrap-content-s-eb704d32-90a1-454c-88f8-9bdb75c0bd2f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-eb704d32-90a1-454c-88f8-9bdb75c0bd2f {
  display: none;
}
#s-eb704d32-90a1-454c-88f8-9bdb75c0bd2f, #wrap-s-eb704d32-90a1-454c-88f8-9bdb75c0bd2f, #wrap-content-s-eb704d32-90a1-454c-88f8-9bdb75c0bd2f { display: none !important; }}@media (max-width: 767px){#s-eb704d32-90a1-454c-88f8-9bdb75c0bd2f {
  display: none;
}
#s-eb704d32-90a1-454c-88f8-9bdb75c0bd2f, #wrap-s-eb704d32-90a1-454c-88f8-9bdb75c0bd2f, #wrap-content-s-eb704d32-90a1-454c-88f8-9bdb75c0bd2f { display: none !important; }}







#s-eb704d32-90a1-454c-88f8-9bdb75c0bd2f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-eb704d32-90a1-454c-88f8-9bdb75c0bd2f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4942f2cb-3957-4fc9-bbce-2c5f9df3e3b6 {
  padding-top: 100px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
text-align: center;
}
@media (min-width: 1200px){#s-4942f2cb-3957-4fc9-bbce-2c5f9df3e3b6 {
  display: none;
}
#s-4942f2cb-3957-4fc9-bbce-2c5f9df3e3b6, #wrap-s-4942f2cb-3957-4fc9-bbce-2c5f9df3e3b6, #wrap-content-s-4942f2cb-3957-4fc9-bbce-2c5f9df3e3b6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4942f2cb-3957-4fc9-bbce-2c5f9df3e3b6 {
  display: none;
}
#s-4942f2cb-3957-4fc9-bbce-2c5f9df3e3b6, #wrap-s-4942f2cb-3957-4fc9-bbce-2c5f9df3e3b6, #wrap-content-s-4942f2cb-3957-4fc9-bbce-2c5f9df3e3b6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4942f2cb-3957-4fc9-bbce-2c5f9df3e3b6 {
  padding-left: 100px;
padding-right: 100px;
}
}
#s-4942f2cb-3957-4fc9-bbce-2c5f9df3e3b6 {
  overflow: hidden;
  
  
}







  #s-4942f2cb-3957-4fc9-bbce-2c5f9df3e3b6 img.shogun-image {
    

    
    
    
  }


#s-4942f2cb-3957-4fc9-bbce-2c5f9df3e3b6 .shogun-image-content {
  
    justify-content: center;
  
}

#s-71af7cc0-b497-4738-af91-5d6df9e42b26 {
  padding-top: 100px;
padding-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 991px){#s-71af7cc0-b497-4738-af91-5d6df9e42b26 {
  display: none;
}
#s-71af7cc0-b497-4738-af91-5d6df9e42b26, #wrap-s-71af7cc0-b497-4738-af91-5d6df9e42b26, #wrap-content-s-71af7cc0-b497-4738-af91-5d6df9e42b26 { display: none !important; }}@media (max-width: 767px){#s-71af7cc0-b497-4738-af91-5d6df9e42b26 {
  display: none;
}
#s-71af7cc0-b497-4738-af91-5d6df9e42b26, #wrap-s-71af7cc0-b497-4738-af91-5d6df9e42b26, #wrap-content-s-71af7cc0-b497-4738-af91-5d6df9e42b26 { display: none !important; }}
@media (min-width: 0px) {
[id="s-71af7cc0-b497-4738-af91-5d6df9e42b26"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-71af7cc0-b497-4738-af91-5d6df9e42b26"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-71af7cc0-b497-4738-af91-5d6df9e42b26"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-71af7cc0-b497-4738-af91-5d6df9e42b26"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-71af7cc0-b497-4738-af91-5d6df9e42b26"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-71af7cc0-b497-4738-af91-5d6df9e42b26"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-71af7cc0-b497-4738-af91-5d6df9e42b26"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 22.5px);
}

}

#s-a6072bd8-421d-404f-a75d-b4deea05bbe5 {
  text-align: center;
}

#s-a6072bd8-421d-404f-a75d-b4deea05bbe5 {
  overflow: hidden;
  
  
}







  #s-a6072bd8-421d-404f-a75d-b4deea05bbe5 img.shogun-image {
    

    
    
    
  }


#s-a6072bd8-421d-404f-a75d-b4deea05bbe5 .shogun-image-content {
  
    justify-content: center;
  
}

#s-2f95984d-1d31-46fb-86f0-7f02978f9f8a {
  min-height: 50px;
}
@media (max-width: 767px){#s-2f95984d-1d31-46fb-86f0-7f02978f9f8a {
  display: none;
}
#s-2f95984d-1d31-46fb-86f0-7f02978f9f8a, #wrap-s-2f95984d-1d31-46fb-86f0-7f02978f9f8a, #wrap-content-s-2f95984d-1d31-46fb-86f0-7f02978f9f8a { display: none !important; }}







#s-2f95984d-1d31-46fb-86f0-7f02978f9f8a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2f95984d-1d31-46fb-86f0-7f02978f9f8a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f8653364-a495-4f72-bcab-572b2f7f56c6 {
  padding-left: 50px;
padding-right: 50px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-f8653364-a495-4f72-bcab-572b2f7f56c6 {
  display: none;
}
#s-f8653364-a495-4f72-bcab-572b2f7f56c6, #wrap-s-f8653364-a495-4f72-bcab-572b2f7f56c6, #wrap-content-s-f8653364-a495-4f72-bcab-572b2f7f56c6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f8653364-a495-4f72-bcab-572b2f7f56c6 {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-e9f1ba33-119e-45bc-b03c-8317ce2a825d {
  min-height: 50px;
}
@media (min-width: 1200px){#s-e9f1ba33-119e-45bc-b03c-8317ce2a825d {
  display: none;
}
#s-e9f1ba33-119e-45bc-b03c-8317ce2a825d, #wrap-s-e9f1ba33-119e-45bc-b03c-8317ce2a825d, #wrap-content-s-e9f1ba33-119e-45bc-b03c-8317ce2a825d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e9f1ba33-119e-45bc-b03c-8317ce2a825d {
  display: none;
}
#s-e9f1ba33-119e-45bc-b03c-8317ce2a825d, #wrap-s-e9f1ba33-119e-45bc-b03c-8317ce2a825d, #wrap-content-s-e9f1ba33-119e-45bc-b03c-8317ce2a825d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e9f1ba33-119e-45bc-b03c-8317ce2a825d {
  display: none;
}
#s-e9f1ba33-119e-45bc-b03c-8317ce2a825d, #wrap-s-e9f1ba33-119e-45bc-b03c-8317ce2a825d, #wrap-content-s-e9f1ba33-119e-45bc-b03c-8317ce2a825d { display: none !important; }}@media (max-width: 767px){#s-e9f1ba33-119e-45bc-b03c-8317ce2a825d {
  display: none;
}
#s-e9f1ba33-119e-45bc-b03c-8317ce2a825d, #wrap-s-e9f1ba33-119e-45bc-b03c-8317ce2a825d, #wrap-content-s-e9f1ba33-119e-45bc-b03c-8317ce2a825d { display: none !important; }}







#s-e9f1ba33-119e-45bc-b03c-8317ce2a825d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e9f1ba33-119e-45bc-b03c-8317ce2a825d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

#s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706 {
  padding-top: 35px;
padding-left: 25px;
padding-right: 25px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706 {
  display: none;
}
#s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706, #wrap-s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706, #wrap-content-s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706 {
  display: none;
}
#s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706, #wrap-s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706, #wrap-content-s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706 {
  padding-right: 12px;
}
}

  #s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(245, 245, 245, 1);
    border: 2px solid rgba(227, 161, 83, 1);
  }
  #s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(227, 161, 83, 1);
    border: 2px solid rgba(255, 255, 255, 1);
  }
#s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(38, 38, 38, 1);
  font-family: Poppins;
  font-weight: 600;
  font-style: ;
  font-size: 20px;
}

#s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 2px);
  left: 2px;
  bottom: -2px;
  height: 2px;
  background: rgba(227, 161, 83, 1);
}

#s-ad92e3c5-b83f-4629-b5c1-753c5e2b6706 .shogun-tabs-body {
  margin-top: -2px;
  border-top: 2px solid rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-570ed8bd-c13a-44de-af03-6ba226349d47"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-570ed8bd-c13a-44de-af03-6ba226349d47"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-570ed8bd-c13a-44de-af03-6ba226349d47"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-570ed8bd-c13a-44de-af03-6ba226349d47"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-29e086b6-77fb-4192-a0e0-3111adbfbd7b {
  padding-top: 35px;
}
@media (min-width: 768px) and (max-width: 991px){#s-29e086b6-77fb-4192-a0e0-3111adbfbd7b {
  padding-left: 50px;
}
}
@media (min-width: 768px) and (max-width: 991px){#s-c7ea58cf-9583-4d1e-9efe-6b3e4176e752 {
  padding-left: 50px;
padding-right: 50px;
}
}
@media (min-width: 768px) and (max-width: 991px){#s-746f31e3-dd6e-4554-b412-37e602128636 {
  padding-left: 50px;
padding-right: 50px;
}
}
#s-0001152f-eb32-4942-a5c1-07a415c69e7b {
  text-align: center;
}

#s-0001152f-eb32-4942-a5c1-07a415c69e7b {
  overflow: hidden;
  
  
}







  #s-0001152f-eb32-4942-a5c1-07a415c69e7b img.shogun-image {
    

    
    
    
  }


#s-0001152f-eb32-4942-a5c1-07a415c69e7b .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-f71d6511-8ff4-4c08-9331-3113c64f6e6a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f71d6511-8ff4-4c08-9331-3113c64f6e6a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f71d6511-8ff4-4c08-9331-3113c64f6e6a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f71d6511-8ff4-4c08-9331-3113c64f6e6a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ab1691db-c827-4a23-a11e-e88ac3a18a7b {
  padding-top: 35px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ab1691db-c827-4a23-a11e-e88ac3a18a7b {
  padding-left: 50px;
}
}
@media (min-width: 768px) and (max-width: 991px){#s-823e00a3-9da5-4e98-8d0b-2bc50de4980a {
  padding-left: 50px;
padding-right: 50px;
}
}
@media (min-width: 768px) and (max-width: 991px){#s-834a5285-bf43-4994-8983-cf08d4b94dce {
  padding-left: 50px;
padding-right: 50px;
}
}
#s-041accaf-f42b-4c1d-877c-928c144f2304 {
  padding-bottom: 25px;
text-align: center;
}

#s-041accaf-f42b-4c1d-877c-928c144f2304 {
  overflow: hidden;
  
  
}







  #s-041accaf-f42b-4c1d-877c-928c144f2304 img.shogun-image {
    

    
    
    
  }


#s-041accaf-f42b-4c1d-877c-928c144f2304 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-3cbf12a2-c5d5-4a84-a825-8f6016a2e27b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3cbf12a2-c5d5-4a84-a825-8f6016a2e27b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3cbf12a2-c5d5-4a84-a825-8f6016a2e27b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3cbf12a2-c5d5-4a84-a825-8f6016a2e27b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1d18dbae-947e-4e4a-83ca-8e18aaca8ea0 {
  padding-top: 35px;
}
@media (min-width: 768px) and (max-width: 991px){#s-1d18dbae-947e-4e4a-83ca-8e18aaca8ea0 {
  padding-left: 50px;
}
}
@media (min-width: 768px) and (max-width: 991px){#s-89d2deed-3ab1-497d-9dba-b00c873e750e {
  padding-left: 50px;
padding-right: 50px;
}
}
@media (min-width: 768px) and (max-width: 991px){#s-08b309f7-dc47-494e-be83-02e3cc0f20dd {
  padding-left: 50px;
padding-right: 50px;
}
}
#s-0f822a0e-dbe6-4e15-9f54-9139bab5e34a {
  text-align: center;
}

#s-0f822a0e-dbe6-4e15-9f54-9139bab5e34a {
  overflow: hidden;
  
  
}







  #s-0f822a0e-dbe6-4e15-9f54-9139bab5e34a img.shogun-image {
    

    
    
    
  }


#s-0f822a0e-dbe6-4e15-9f54-9139bab5e34a .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-9ba17ca9-e457-4ad9-8fd1-005ab9bf835c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9ba17ca9-e457-4ad9-8fd1-005ab9bf835c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9ba17ca9-e457-4ad9-8fd1-005ab9bf835c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9ba17ca9-e457-4ad9-8fd1-005ab9bf835c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-bcce3991-9642-4732-8428-5bfb817740e2 {
  padding-top: 35px;
}
@media (min-width: 768px) and (max-width: 991px){#s-bcce3991-9642-4732-8428-5bfb817740e2 {
  padding-left: 50px;
}
}
@media (min-width: 768px) and (max-width: 991px){#s-204c469d-2585-4990-8c24-73f0f368e349 {
  padding-left: 50px;
}
}
@media (min-width: 768px) and (max-width: 991px){#s-cfed6fb4-ee68-4602-98a7-e620c2e0463c {
  padding-left: 50px;
padding-right: 0px;
}
}
#s-93ba9d7c-05d2-47e1-99a8-133f96357cb6 {
  text-align: center;
}

#s-93ba9d7c-05d2-47e1-99a8-133f96357cb6 {
  overflow: hidden;
  
  
}







  #s-93ba9d7c-05d2-47e1-99a8-133f96357cb6 img.shogun-image {
    

    
    
    
  }


#s-93ba9d7c-05d2-47e1-99a8-133f96357cb6 .shogun-image-content {
  
    justify-content: center;
  
}

#s-39331738-ddfc-42a6-9645-38f8e876cdf8 {
  padding-top: 100px;
padding-bottom: 100px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-39331738-ddfc-42a6-9645-38f8e876cdf8 {
  display: none;
}
#s-39331738-ddfc-42a6-9645-38f8e876cdf8, #wrap-s-39331738-ddfc-42a6-9645-38f8e876cdf8, #wrap-content-s-39331738-ddfc-42a6-9645-38f8e876cdf8 { display: none !important; }}@media (max-width: 767px){#s-39331738-ddfc-42a6-9645-38f8e876cdf8 {
  display: none;
}
#s-39331738-ddfc-42a6-9645-38f8e876cdf8, #wrap-s-39331738-ddfc-42a6-9645-38f8e876cdf8, #wrap-content-s-39331738-ddfc-42a6-9645-38f8e876cdf8 { display: none !important; }}
@media (min-width: 0px) {
[id="s-39331738-ddfc-42a6-9645-38f8e876cdf8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-39331738-ddfc-42a6-9645-38f8e876cdf8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-39331738-ddfc-42a6-9645-38f8e876cdf8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-39331738-ddfc-42a6-9645-38f8e876cdf8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-39331738-ddfc-42a6-9645-38f8e876cdf8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-39331738-ddfc-42a6-9645-38f8e876cdf8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-39331738-ddfc-42a6-9645-38f8e876cdf8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}


  #s-4c0d42a2-f2c1-446c-88f2-9ca3a059ed98 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(245, 245, 245, 1);
    border: 2px solid rgba(227, 161, 83, 1);
  }
  #s-4c0d42a2-f2c1-446c-88f2-9ca3a059ed98 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(227, 161, 83, 1);
    border: 2px solid rgba(255, 255, 255, 1);
  }
#s-4c0d42a2-f2c1-446c-88f2-9ca3a059ed98 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(38, 38, 38, 1);
  font-family: Poppins;
  font-weight: 600;
  font-style: ;
  font-size: 20px;
}

#s-4c0d42a2-f2c1-446c-88f2-9ca3a059ed98 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-4c0d42a2-f2c1-446c-88f2-9ca3a059ed98 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 2px);
  left: 2px;
  bottom: -2px;
  height: 2px;
  background: rgba(227, 161, 83, 1);
}

#s-4c0d42a2-f2c1-446c-88f2-9ca3a059ed98 .shogun-tabs-body {
  margin-top: -2px;
  border-top: 2px solid rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-3e80dbaf-0c36-4288-bbb6-efeb56a970bd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3e80dbaf-0c36-4288-bbb6-efeb56a970bd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3e80dbaf-0c36-4288-bbb6-efeb56a970bd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3e80dbaf-0c36-4288-bbb6-efeb56a970bd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-df8678ec-a9f6-47d4-bd6c-3f935679a8b6 {
  box-shadow:2px 2px 10px 3px rgba(194, 185, 185, 1);
border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-color: rgba(227, 161, 83, 1);
border-radius: 2px;
background-color: rgba(227, 161, 83, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
color: rgba(38, 38, 38, 1);
background-image: none;
hover-type: color;
}
#s-df8678ec-a9f6-47d4-bd6c-3f935679a8b6:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-df8678ec-a9f6-47d4-bd6c-3f935679a8b6:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-df8678ec-a9f6-47d4-bd6c-3f935679a8b6-root {
    text-align: center;
  }


#s-df8678ec-a9f6-47d4-bd6c-3f935679a8b6.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
@media (min-width: 1200px){
  #s-df8678ec-a9f6-47d4-bd6c-3f935679a8b6-root {
    text-align: center;
  }


#s-df8678ec-a9f6-47d4-bd6c-3f935679a8b6.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-df8678ec-a9f6-47d4-bd6c-3f935679a8b6-root {
    text-align: center;
  }


#s-df8678ec-a9f6-47d4-bd6c-3f935679a8b6.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-df8678ec-a9f6-47d4-bd6c-3f935679a8b6-root {
    text-align: center;
  }


#s-df8678ec-a9f6-47d4-bd6c-3f935679a8b6.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}@media (max-width: 767px){
  #s-df8678ec-a9f6-47d4-bd6c-3f935679a8b6-root {
    text-align: center;
  }


#s-df8678ec-a9f6-47d4-bd6c-3f935679a8b6.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}
#s-5ba2b2fa-0fd4-4371-a21c-663dc34e8a13 {
  text-align: center;
}

#s-5ba2b2fa-0fd4-4371-a21c-663dc34e8a13 {
  overflow: hidden;
  
  
}







  #s-5ba2b2fa-0fd4-4371-a21c-663dc34e8a13 img.shogun-image {
    

    
    
    
  }


#s-5ba2b2fa-0fd4-4371-a21c-663dc34e8a13 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-e72b90fe-92fc-4f20-852f-5d5b7070f0bc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e72b90fe-92fc-4f20-852f-5d5b7070f0bc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e72b90fe-92fc-4f20-852f-5d5b7070f0bc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e72b90fe-92fc-4f20-852f-5d5b7070f0bc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a9e456de-13e0-4f3c-9947-d32505f20493 {
  box-shadow:2px 2px 10px 3px rgba(194, 185, 185, 1);
border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-color: rgba(227, 161, 83, 1);
border-radius: 2px;
background-color: rgba(227, 161, 83, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
color: rgba(38, 38, 38, 1);
background-image: none;
hover-type: color;
}
#s-a9e456de-13e0-4f3c-9947-d32505f20493:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-a9e456de-13e0-4f3c-9947-d32505f20493:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a9e456de-13e0-4f3c-9947-d32505f20493-root {
    text-align: center;
  }


#s-a9e456de-13e0-4f3c-9947-d32505f20493.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
@media (min-width: 1200px){
  #s-a9e456de-13e0-4f3c-9947-d32505f20493-root {
    text-align: center;
  }


#s-a9e456de-13e0-4f3c-9947-d32505f20493.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a9e456de-13e0-4f3c-9947-d32505f20493-root {
    text-align: center;
  }


#s-a9e456de-13e0-4f3c-9947-d32505f20493.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a9e456de-13e0-4f3c-9947-d32505f20493-root {
    text-align: center;
  }


#s-a9e456de-13e0-4f3c-9947-d32505f20493.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}@media (max-width: 767px){
  #s-a9e456de-13e0-4f3c-9947-d32505f20493-root {
    text-align: center;
  }


#s-a9e456de-13e0-4f3c-9947-d32505f20493.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}
#s-9bbf7d25-155e-41d3-a187-84c32e7f231d {
  text-align: center;
}

#s-9bbf7d25-155e-41d3-a187-84c32e7f231d {
  overflow: hidden;
  
  
}







  #s-9bbf7d25-155e-41d3-a187-84c32e7f231d img.shogun-image {
    

    
    
    
  }


#s-9bbf7d25-155e-41d3-a187-84c32e7f231d .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-03ad7b55-06d8-4233-b351-518b58e6dd83"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-03ad7b55-06d8-4233-b351-518b58e6dd83"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-03ad7b55-06d8-4233-b351-518b58e6dd83"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-03ad7b55-06d8-4233-b351-518b58e6dd83"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d9049b18-11fe-4dff-be37-134c5b57bc28 {
  box-shadow:2px 2px 10px 3px rgba(194, 185, 185, 1);
border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-color: rgba(227, 161, 83, 1);
border-radius: 2px;
background-color: rgba(227, 161, 83, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
color: rgba(38, 38, 38, 1);
background-image: none;
hover-type: color;
}
#s-d9049b18-11fe-4dff-be37-134c5b57bc28:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-d9049b18-11fe-4dff-be37-134c5b57bc28:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d9049b18-11fe-4dff-be37-134c5b57bc28-root {
    text-align: center;
  }


#s-d9049b18-11fe-4dff-be37-134c5b57bc28.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
@media (min-width: 1200px){
  #s-d9049b18-11fe-4dff-be37-134c5b57bc28-root {
    text-align: center;
  }


#s-d9049b18-11fe-4dff-be37-134c5b57bc28.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d9049b18-11fe-4dff-be37-134c5b57bc28-root {
    text-align: center;
  }


#s-d9049b18-11fe-4dff-be37-134c5b57bc28.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d9049b18-11fe-4dff-be37-134c5b57bc28-root {
    text-align: center;
  }


#s-d9049b18-11fe-4dff-be37-134c5b57bc28.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}@media (max-width: 767px){
  #s-d9049b18-11fe-4dff-be37-134c5b57bc28-root {
    text-align: center;
  }


#s-d9049b18-11fe-4dff-be37-134c5b57bc28.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}
#s-c123edb6-7135-40bc-8629-ac540c5ff37c {
  text-align: center;
}

#s-c123edb6-7135-40bc-8629-ac540c5ff37c {
  overflow: hidden;
  
  
}







  #s-c123edb6-7135-40bc-8629-ac540c5ff37c img.shogun-image {
    

    
    
    
  }


#s-c123edb6-7135-40bc-8629-ac540c5ff37c .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-e2cca772-c3cc-4472-985e-4544b437f7aa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e2cca772-c3cc-4472-985e-4544b437f7aa"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e2cca772-c3cc-4472-985e-4544b437f7aa"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e2cca772-c3cc-4472-985e-4544b437f7aa"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9dfaccd4-4ae8-4ffb-8037-b25d6a312f5d {
  box-shadow:2px 2px 10px 3px rgba(194, 185, 185, 1);
border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-color: rgba(227, 161, 83, 1);
border-radius: 2px;
background-color: rgba(227, 161, 83, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
color: rgba(38, 38, 38, 1);
background-image: none;
hover-type: color;
}
#s-9dfaccd4-4ae8-4ffb-8037-b25d6a312f5d:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-9dfaccd4-4ae8-4ffb-8037-b25d6a312f5d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9dfaccd4-4ae8-4ffb-8037-b25d6a312f5d-root {
    text-align: center;
  }


#s-9dfaccd4-4ae8-4ffb-8037-b25d6a312f5d.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
@media (min-width: 1200px){
  #s-9dfaccd4-4ae8-4ffb-8037-b25d6a312f5d-root {
    text-align: center;
  }


#s-9dfaccd4-4ae8-4ffb-8037-b25d6a312f5d.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9dfaccd4-4ae8-4ffb-8037-b25d6a312f5d-root {
    text-align: center;
  }


#s-9dfaccd4-4ae8-4ffb-8037-b25d6a312f5d.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9dfaccd4-4ae8-4ffb-8037-b25d6a312f5d-root {
    text-align: center;
  }


#s-9dfaccd4-4ae8-4ffb-8037-b25d6a312f5d.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}@media (max-width: 767px){
  #s-9dfaccd4-4ae8-4ffb-8037-b25d6a312f5d-root {
    text-align: center;
  }


#s-9dfaccd4-4ae8-4ffb-8037-b25d6a312f5d.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  block ;
}
}
#s-32a60afc-909d-43e4-a10c-82f2fa5c3d89 {
  text-align: center;
}

#s-32a60afc-909d-43e4-a10c-82f2fa5c3d89 {
  overflow: hidden;
  
  
}







  #s-32a60afc-909d-43e4-a10c-82f2fa5c3d89 img.shogun-image {
    

    
    
    
  }


#s-32a60afc-909d-43e4-a10c-82f2fa5c3d89 .shogun-image-content {
  
    justify-content: center;
  
}

#s-908f15fe-e515-4586-84cd-e510ae747c7d {
  padding-top: 100px;
padding-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 991px){#s-908f15fe-e515-4586-84cd-e510ae747c7d {
  display: none;
}
#s-908f15fe-e515-4586-84cd-e510ae747c7d, #wrap-s-908f15fe-e515-4586-84cd-e510ae747c7d, #wrap-content-s-908f15fe-e515-4586-84cd-e510ae747c7d { display: none !important; }}@media (max-width: 767px){#s-908f15fe-e515-4586-84cd-e510ae747c7d {
  display: none;
}
#s-908f15fe-e515-4586-84cd-e510ae747c7d, #wrap-s-908f15fe-e515-4586-84cd-e510ae747c7d, #wrap-content-s-908f15fe-e515-4586-84cd-e510ae747c7d { display: none !important; }}
@media (min-width: 0px) {
[id="s-908f15fe-e515-4586-84cd-e510ae747c7d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-908f15fe-e515-4586-84cd-e510ae747c7d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-908f15fe-e515-4586-84cd-e510ae747c7d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-908f15fe-e515-4586-84cd-e510ae747c7d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-908f15fe-e515-4586-84cd-e510ae747c7d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-908f15fe-e515-4586-84cd-e510ae747c7d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-908f15fe-e515-4586-84cd-e510ae747c7d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 22.5px);
}

}

#s-a8880b7c-4913-48c2-ba12-a2f7bc945273 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-a8880b7c-4913-48c2-ba12-a2f7bc945273 {
  display: none;
}
#s-a8880b7c-4913-48c2-ba12-a2f7bc945273, #wrap-s-a8880b7c-4913-48c2-ba12-a2f7bc945273, #wrap-content-s-a8880b7c-4913-48c2-ba12-a2f7bc945273 { display: none !important; }}@media (max-width: 767px){#s-a8880b7c-4913-48c2-ba12-a2f7bc945273 {
  display: none;
}
#s-a8880b7c-4913-48c2-ba12-a2f7bc945273, #wrap-s-a8880b7c-4913-48c2-ba12-a2f7bc945273, #wrap-content-s-a8880b7c-4913-48c2-ba12-a2f7bc945273 { display: none !important; }}
#s-a8880b7c-4913-48c2-ba12-a2f7bc945273 {
  overflow: hidden;
  
  
}







  #s-a8880b7c-4913-48c2-ba12-a2f7bc945273 img.shogun-image {
    

    
    
    
  }


#s-a8880b7c-4913-48c2-ba12-a2f7bc945273 .shogun-image-content {
  
    justify-content: center;
  
}

#s-14bfca0e-5eac-402a-8bd7-9f9442e655a4 {
  padding-top: 110px;
padding-bottom: 110px;
max-width: 2000px;
text-align: center;
}

#s-14bfca0e-5eac-402a-8bd7-9f9442e655a4 {
  overflow: hidden;
  
  
      max-width: 2000px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-14bfca0e-5eac-402a-8bd7-9f9442e655a4 .shogun-image-content {
  
    justify-content: center;
  
}

#s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d {
  padding-top: 100px;
padding-bottom: 100px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d {
  display: none;
}
#s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d, #wrap-s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d, #wrap-content-s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d { display: none !important; }}@media (max-width: 767px){#s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d {
  display: none;
}
#s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d, #wrap-s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d, #wrap-content-s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d { display: none !important; }}
@media (min-width: 0px) {
[id="s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-a5edb9b4-76da-49ec-b0e7-e1bac9dde00d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 22.5px);
}

}

@media (min-width: 768px) and (max-width: 991px){#s-bc0bfe27-feec-4813-8329-f33aa1ef7329 {
  display: none;
}
#s-bc0bfe27-feec-4813-8329-f33aa1ef7329, #wrap-s-bc0bfe27-feec-4813-8329-f33aa1ef7329, #wrap-content-s-bc0bfe27-feec-4813-8329-f33aa1ef7329 { display: none !important; }}@media (max-width: 767px){#s-bc0bfe27-feec-4813-8329-f33aa1ef7329 {
  display: none;
}
#s-bc0bfe27-feec-4813-8329-f33aa1ef7329, #wrap-s-bc0bfe27-feec-4813-8329-f33aa1ef7329, #wrap-content-s-bc0bfe27-feec-4813-8329-f33aa1ef7329 { display: none !important; }}
#s-bc0bfe27-feec-4813-8329-f33aa1ef7329 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-bc0bfe27-feec-4813-8329-f33aa1ef7329 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(227, 161, 83, 1);
  padding: 17px;
}

#s-bc0bfe27-feec-4813-8329-f33aa1ef7329 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(38, 38, 38, 1);
}

#s-bc0bfe27-feec-4813-8329-f33aa1ef7329 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 248, 242, 1);
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-bc0bfe27-feec-4813-8329-f33aa1ef7329 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(38, 38, 38, 1);
  text-align: left;
  font-family: Poppins;
  font-weight: 500;
  font-style: ;
  font-size: 18px;
}

#s-bc0bfe27-feec-4813-8329-f33aa1ef7329 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-d08e03b5-f1cd-4bf6-a8eb-2b2c3e1493f4 {
  padding-top: 25px;
}

#s-0590fc5d-f9b2-43ee-9872-57dc3169b22b {
  padding-top: 25px;
}

#s-ccce12f7-16fb-454d-89cb-0701c6208fa5 {
  padding-top: 25px;
}

#s-8a552fb9-92fc-48c1-b42c-5e1ff2bbda6a {
  padding-top: 25px;
}

#s-0aa6df7f-6493-49c5-9ee3-7f555a987582 {
  padding-top: 25px;
padding-bottom: 0px;
}

#s-2abd1351-3a37-4d5f-b878-1900765d3033 {
  padding-top: 150px;
padding-left: 0px;
padding-bottom: 100px;
padding-right: 0px;
max-width: 100%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-2abd1351-3a37-4d5f-b878-1900765d3033 {
  padding-left: 80px;
padding-right: 80px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2abd1351-3a37-4d5f-b878-1900765d3033 {
  padding-left: 80px;
padding-right: 80px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-2abd1351-3a37-4d5f-b878-1900765d3033 {
  display: none;
}
#s-2abd1351-3a37-4d5f-b878-1900765d3033, #wrap-s-2abd1351-3a37-4d5f-b878-1900765d3033, #wrap-content-s-2abd1351-3a37-4d5f-b878-1900765d3033 { display: none !important; }}@media (max-width: 767px){#s-2abd1351-3a37-4d5f-b878-1900765d3033 {
  display: none;
}
#s-2abd1351-3a37-4d5f-b878-1900765d3033, #wrap-s-2abd1351-3a37-4d5f-b878-1900765d3033, #wrap-content-s-2abd1351-3a37-4d5f-b878-1900765d3033 { display: none !important; }}
@media (min-width: 0px) {
[id="s-2abd1351-3a37-4d5f-b878-1900765d3033"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2abd1351-3a37-4d5f-b878-1900765d3033"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-2abd1351-3a37-4d5f-b878-1900765d3033"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-2abd1351-3a37-4d5f-b878-1900765d3033"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-2abd1351-3a37-4d5f-b878-1900765d3033"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-2abd1351-3a37-4d5f-b878-1900765d3033"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-2abd1351-3a37-4d5f-b878-1900765d3033"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

}

#s-cd99689b-1f93-44c4-886e-6f992efb78aa {
  padding-left: 50px;
padding-right: 50px;
max-width: 100%;
}
@media (min-width: 1200px){#s-cd99689b-1f93-44c4-886e-6f992efb78aa {
  margin-bottom: -18px;
}
}
#s-440471cb-6d86-42f7-8890-59347b92201a {
  padding-left: 50px;
padding-right: 50px;
}
@media (min-width: 1200px){#s-440471cb-6d86-42f7-8890-59347b92201a {
  margin-bottom: -20px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-440471cb-6d86-42f7-8890-59347b92201a {
  margin-top: -20px;
margin-bottom: -20px;
}
}
#s-eb066c94-936a-43c8-9644-ede682bdc081 {
  padding-left: 50px;
padding-right: 50px;
}
@media (min-width: 1200px){#s-eb066c94-936a-43c8-9644-ede682bdc081 {
  margin-left: -23px;
margin-right: -23px;
}
}
#s-10b95fc1-afc4-42ae-939c-48633d83adee {
  padding-left: 50px;
padding-right: 50px;
}

#s-e77e7ff2-f29d-4391-9e68-db970864167d {
  padding-left: 50px;
padding-right: 50px;
}

@media (min-width: 0px) {
[id="s-e77e7ff2-f29d-4391-9e68-db970864167d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e77e7ff2-f29d-4391-9e68-db970864167d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-e77e7ff2-f29d-4391-9e68-db970864167d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-e77e7ff2-f29d-4391-9e68-db970864167d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-18824f38-b318-474a-948d-e85f7e404d83 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(227, 161, 83, 1);
border-radius: 1px;
min-height: 100%;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
color: rgba(38, 38, 38, 1);
background-image: none;
hover-type: color;
}
#s-18824f38-b318-474a-948d-e85f7e404d83:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-18824f38-b318-474a-948d-e85f7e404d83:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-18824f38-b318-474a-948d-e85f7e404d83-root {
    text-align: center;
  }


#s-18824f38-b318-474a-948d-e85f7e404d83.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-18824f38-b318-474a-948d-e85f7e404d83-root {
    text-align: center;
  }


#s-18824f38-b318-474a-948d-e85f7e404d83.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-18824f38-b318-474a-948d-e85f7e404d83-root {
    text-align: center;
  }


#s-18824f38-b318-474a-948d-e85f7e404d83.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-18824f38-b318-474a-948d-e85f7e404d83-root {
    text-align: center;
  }


#s-18824f38-b318-474a-948d-e85f7e404d83.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-18824f38-b318-474a-948d-e85f7e404d83-root {
    text-align: center;
  }


#s-18824f38-b318-474a-948d-e85f7e404d83.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-55768922-2fb3-4052-9480-ec038ac6f718 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(227, 161, 83, 1);
border-radius: 1px;
min-height: 100%;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
line-height: 1.5em;
background-image: none;
hover-type: color;
color: rgba(38, 38, 38, 1);
}
#s-55768922-2fb3-4052-9480-ec038ac6f718:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-55768922-2fb3-4052-9480-ec038ac6f718:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-55768922-2fb3-4052-9480-ec038ac6f718-root {
    text-align: center;
  }


#s-55768922-2fb3-4052-9480-ec038ac6f718.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-55768922-2fb3-4052-9480-ec038ac6f718-root {
    text-align: center;
  }


#s-55768922-2fb3-4052-9480-ec038ac6f718.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-55768922-2fb3-4052-9480-ec038ac6f718-root {
    text-align: center;
  }


#s-55768922-2fb3-4052-9480-ec038ac6f718.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-55768922-2fb3-4052-9480-ec038ac6f718-root {
    text-align: center;
  }


#s-55768922-2fb3-4052-9480-ec038ac6f718.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-55768922-2fb3-4052-9480-ec038ac6f718-root {
    text-align: center;
  }


#s-55768922-2fb3-4052-9480-ec038ac6f718.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-0cd0e3c5-a960-4ae2-ac71-653cda668a20 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(227, 161, 83, 1);
border-radius: 1px;
min-height: 100%;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(38, 38, 38, 1);
background-image: none;
hover-type: color;
line-height: 1.5em;
}
#s-0cd0e3c5-a960-4ae2-ac71-653cda668a20:hover {background-color: rgba(227, 161, 83, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-0cd0e3c5-a960-4ae2-ac71-653cda668a20:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0cd0e3c5-a960-4ae2-ac71-653cda668a20-root {
    text-align: center;
  }


#s-0cd0e3c5-a960-4ae2-ac71-653cda668a20.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 800;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0cd0e3c5-a960-4ae2-ac71-653cda668a20-root {
    text-align: center;
  }


#s-0cd0e3c5-a960-4ae2-ac71-653cda668a20.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 800;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0cd0e3c5-a960-4ae2-ac71-653cda668a20-root {
    text-align: center;
  }


#s-0cd0e3c5-a960-4ae2-ac71-653cda668a20.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 800;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0cd0e3c5-a960-4ae2-ac71-653cda668a20-root {
    text-align: center;
  }


#s-0cd0e3c5-a960-4ae2-ac71-653cda668a20.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 800;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0cd0e3c5-a960-4ae2-ac71-653cda668a20-root {
    text-align: center;
  }


#s-0cd0e3c5-a960-4ae2-ac71-653cda668a20.shg-btn {
  color: rgba(38, 38, 38, 1);
  font-size: 18px;
  font-weight: 800;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-8937c122-fbd1-4b3b-ae2c-58ad7bc1d3a1 {
  margin-top: -44px;
margin-bottom: -44px;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1953px;
text-align: center;
}

#s-8937c122-fbd1-4b3b-ae2c-58ad7bc1d3a1 {
  overflow: hidden;
  
  
      max-width: 1953px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-8937c122-fbd1-4b3b-ae2c-58ad7bc1d3a1 .shogun-image-content {
  
    justify-content: center;
  
}

#s-057b657b-89a4-4449-978a-92860833f789 {
  padding-left: 50px;
padding-right: 50px;
}
@media (min-width: 1200px){#s-057b657b-89a4-4449-978a-92860833f789 {
  padding-top: 40px;
padding-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-057b657b-89a4-4449-978a-92860833f789 {
  padding-top: 25px;
padding-bottom: 10px;
}
}
#s-07d35523-784f-4e73-86da-31e20dc28948 {
  margin-top: -32px;
padding-left: 25px;
padding-right: 25px;
}
@media (min-width: 1200px){#s-07d35523-784f-4e73-86da-31e20dc28948 {
  padding-top: 40px;
padding-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-07d35523-784f-4e73-86da-31e20dc28948 {
  padding-top: 25px;
padding-bottom: 10px;
}
}
#s-2be86e67-5a02-46df-9b3a-f717d9b1c774 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-2be86e67-5a02-46df-9b3a-f717d9b1c774 {
  display: none;
}
#s-2be86e67-5a02-46df-9b3a-f717d9b1c774, #wrap-s-2be86e67-5a02-46df-9b3a-f717d9b1c774, #wrap-content-s-2be86e67-5a02-46df-9b3a-f717d9b1c774 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2be86e67-5a02-46df-9b3a-f717d9b1c774 {
  display: none;
}
#s-2be86e67-5a02-46df-9b3a-f717d9b1c774, #wrap-s-2be86e67-5a02-46df-9b3a-f717d9b1c774, #wrap-content-s-2be86e67-5a02-46df-9b3a-f717d9b1c774 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2be86e67-5a02-46df-9b3a-f717d9b1c774 {
  display: none;
}
#s-2be86e67-5a02-46df-9b3a-f717d9b1c774, #wrap-s-2be86e67-5a02-46df-9b3a-f717d9b1c774, #wrap-content-s-2be86e67-5a02-46df-9b3a-f717d9b1c774 { display: none !important; }}







#s-2be86e67-5a02-46df-9b3a-f717d9b1c774 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2be86e67-5a02-46df-9b3a-f717d9b1c774.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-36b44170-ec51-4838-bd57-035a844dac10 {
  padding-top: 75px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-36b44170-ec51-4838-bd57-035a844dac10 {
  display: none;
}
#s-36b44170-ec51-4838-bd57-035a844dac10, #wrap-s-36b44170-ec51-4838-bd57-035a844dac10, #wrap-content-s-36b44170-ec51-4838-bd57-035a844dac10 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-36b44170-ec51-4838-bd57-035a844dac10 {
  display: none;
}
#s-36b44170-ec51-4838-bd57-035a844dac10, #wrap-s-36b44170-ec51-4838-bd57-035a844dac10, #wrap-content-s-36b44170-ec51-4838-bd57-035a844dac10 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-36b44170-ec51-4838-bd57-035a844dac10 {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-ad2d0594-2b9d-4ee6-a610-0078d18973e5 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-ad2d0594-2b9d-4ee6-a610-0078d18973e5 {
  display: none;
}
#s-ad2d0594-2b9d-4ee6-a610-0078d18973e5, #wrap-s-ad2d0594-2b9d-4ee6-a610-0078d18973e5, #wrap-content-s-ad2d0594-2b9d-4ee6-a610-0078d18973e5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ad2d0594-2b9d-4ee6-a610-0078d18973e5 {
  display: none;
}
#s-ad2d0594-2b9d-4ee6-a610-0078d18973e5, #wrap-s-ad2d0594-2b9d-4ee6-a610-0078d18973e5, #wrap-content-s-ad2d0594-2b9d-4ee6-a610-0078d18973e5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ad2d0594-2b9d-4ee6-a610-0078d18973e5 {
  display: none;
}
#s-ad2d0594-2b9d-4ee6-a610-0078d18973e5, #wrap-s-ad2d0594-2b9d-4ee6-a610-0078d18973e5, #wrap-content-s-ad2d0594-2b9d-4ee6-a610-0078d18973e5 { display: none !important; }}







#s-ad2d0594-2b9d-4ee6-a610-0078d18973e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ad2d0594-2b9d-4ee6-a610-0078d18973e5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-45b8945d-edca-461c-9984-59868bd673a8 {
  padding-left: 25px;
padding-right: 25px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-45b8945d-edca-461c-9984-59868bd673a8 {
  display: none;
}
#s-45b8945d-edca-461c-9984-59868bd673a8, #wrap-s-45b8945d-edca-461c-9984-59868bd673a8, #wrap-content-s-45b8945d-edca-461c-9984-59868bd673a8 { display: none !important; }}
#s-3b44c3ff-70c2-486e-8cfe-65331f0d0f8b {
  min-height: 50px;
}








#s-3b44c3ff-70c2-486e-8cfe-65331f0d0f8b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3b44c3ff-70c2-486e-8cfe-65331f0d0f8b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6774ebc9-7d00-449c-883a-a551b110bbfd {
  padding-top: 35px;
padding-left: 16px;
padding-right: 16px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-6774ebc9-7d00-449c-883a-a551b110bbfd {
  display: none;
}
#s-6774ebc9-7d00-449c-883a-a551b110bbfd, #wrap-s-6774ebc9-7d00-449c-883a-a551b110bbfd, #wrap-content-s-6774ebc9-7d00-449c-883a-a551b110bbfd { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6774ebc9-7d00-449c-883a-a551b110bbfd {
  display: none;
}
#s-6774ebc9-7d00-449c-883a-a551b110bbfd, #wrap-s-6774ebc9-7d00-449c-883a-a551b110bbfd, #wrap-content-s-6774ebc9-7d00-449c-883a-a551b110bbfd { display: none !important; }}

  #s-6774ebc9-7d00-449c-883a-a551b110bbfd .shogun-tabs > li > .shogun-tab-box {
    background: rgba(245, 245, 245, 1);
    border: 2px solid rgba(227, 161, 83, 1);
  }
  #s-6774ebc9-7d00-449c-883a-a551b110bbfd .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(227, 161, 83, 1);
    border: 2px solid rgba(255, 255, 255, 1);
  }
#s-6774ebc9-7d00-449c-883a-a551b110bbfd .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(38, 38, 38, 1);
  font-family: Poppins;
  font-weight: 500;
  font-style: ;
  font-size: 16px;
}

#s-6774ebc9-7d00-449c-883a-a551b110bbfd .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-6774ebc9-7d00-449c-883a-a551b110bbfd .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 2px);
  left: 2px;
  bottom: -2px;
  height: 2px;
  background: rgba(227, 161, 83, 1);
}

#s-6774ebc9-7d00-449c-883a-a551b110bbfd .shogun-tabs-body {
  margin-top: -2px;
  border-top: 2px solid rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-912f8686-a2f8-4f1a-8164-43721d68ee3a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-912f8686-a2f8-4f1a-8164-43721d68ee3a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-912f8686-a2f8-4f1a-8164-43721d68ee3a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-912f8686-a2f8-4f1a-8164-43721d68ee3a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-4ef9b6b9-d5a4-4ba4-b137-fa6cf5f5a9f5 {
  padding-top: 35px;
padding-left: 9px;
padding-right: 9px;
}

#s-9de16378-2a52-49fa-81cf-ba1d6a6b988c {
  padding-left: 9px;
padding-right: 9px;
}

#s-260ac9f1-2f14-475f-9121-0ca13375297d {
  padding-left: 9px;
padding-right: 9px;
}

#s-40bedb35-4f93-4d11-9af1-722e65508efd {
  text-align: center;
}

#s-40bedb35-4f93-4d11-9af1-722e65508efd {
  overflow: hidden;
  
  
}







  #s-40bedb35-4f93-4d11-9af1-722e65508efd img.shogun-image {
    

    
    
    
  }


#s-40bedb35-4f93-4d11-9af1-722e65508efd .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-538ad4d3-5576-4d67-9e62-21bfffd79daa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-538ad4d3-5576-4d67-9e62-21bfffd79daa"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-538ad4d3-5576-4d67-9e62-21bfffd79daa"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-538ad4d3-5576-4d67-9e62-21bfffd79daa"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-84e6e954-2e09-4f08-a6ec-67b608d0cf7f {
  margin-left: 0px;
margin-right: 0px;
padding-top: 35px;
padding-left: 9px;
padding-right: 9px;
}

#s-cf7be1e7-5474-4d23-b3e4-65c4cb454bfb {
  padding-left: 9px;
padding-right: 9px;
}

#s-bdf4c0a4-3dcf-430f-b018-6d3b70958b5c {
  padding-left: 9px;
padding-right: 9px;
}

#s-1d3c8bc7-f3bf-4b8f-8266-414c5f6ed97b {
  padding-bottom: 25px;
text-align: center;
}

#s-1d3c8bc7-f3bf-4b8f-8266-414c5f6ed97b {
  overflow: hidden;
  
  
}







  #s-1d3c8bc7-f3bf-4b8f-8266-414c5f6ed97b img.shogun-image {
    

    
    
    
  }


#s-1d3c8bc7-f3bf-4b8f-8266-414c5f6ed97b .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-a7d7fce0-5395-49e6-9b43-b3150c4c67a6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a7d7fce0-5395-49e6-9b43-b3150c4c67a6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a7d7fce0-5395-49e6-9b43-b3150c4c67a6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a7d7fce0-5395-49e6-9b43-b3150c4c67a6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-03050289-a87f-41b0-b418-67354d6bbcdd {
  padding-top: 35px;
padding-left: 9px;
padding-right: 9px;
}

#s-4f8c7571-50de-432c-8c45-ea6432bce32d {
  padding-left: 9px;
padding-right: 9px;
}

#s-b9bb97f4-2422-4e45-b1d7-3db4d2294d1d {
  padding-left: 9px;
padding-right: 9px;
}

#s-584d0aba-a464-496a-b057-e73fc6573a40 {
  text-align: center;
}

#s-584d0aba-a464-496a-b057-e73fc6573a40 {
  overflow: hidden;
  
  
}







  #s-584d0aba-a464-496a-b057-e73fc6573a40 img.shogun-image {
    

    
    
    
  }


#s-584d0aba-a464-496a-b057-e73fc6573a40 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-f8b0d894-5e62-4f36-ae84-bdda0c05f02f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f8b0d894-5e62-4f36-ae84-bdda0c05f02f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f8b0d894-5e62-4f36-ae84-bdda0c05f02f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f8b0d894-5e62-4f36-ae84-bdda0c05f02f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-69085ed3-dd7e-417e-a0a6-aeb3ef878c67 {
  padding-top: 35px;
padding-left: 9px;
padding-right: 9px;
}

#s-e06bd3d2-3332-4ecb-8845-cda8bbf59fb6 {
  padding-left: 9px;
padding-right: 9px;
}

#s-8f6889ec-6b7b-4d03-8c1b-a39e6e8c8b73 {
  padding-left: 9px;
padding-right: 9px;
}

#s-b06e2e66-fda8-455a-bbd9-3011f300644c {
  text-align: center;
}

#s-b06e2e66-fda8-455a-bbd9-3011f300644c {
  overflow: hidden;
  
  
}







  #s-b06e2e66-fda8-455a-bbd9-3011f300644c img.shogun-image {
    

    
    
    
  }


#s-b06e2e66-fda8-455a-bbd9-3011f300644c .shogun-image-content {
  
    justify-content: center;
  
}

#s-ae9a861b-8e0d-49b2-b33e-87f2cfc517e2 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-ae9a861b-8e0d-49b2-b33e-87f2cfc517e2 {
  display: none;
}
#s-ae9a861b-8e0d-49b2-b33e-87f2cfc517e2, #wrap-s-ae9a861b-8e0d-49b2-b33e-87f2cfc517e2, #wrap-content-s-ae9a861b-8e0d-49b2-b33e-87f2cfc517e2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ae9a861b-8e0d-49b2-b33e-87f2cfc517e2 {
  display: none;
}
#s-ae9a861b-8e0d-49b2-b33e-87f2cfc517e2, #wrap-s-ae9a861b-8e0d-49b2-b33e-87f2cfc517e2, #wrap-content-s-ae9a861b-8e0d-49b2-b33e-87f2cfc517e2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ae9a861b-8e0d-49b2-b33e-87f2cfc517e2 {
  display: none;
}
#s-ae9a861b-8e0d-49b2-b33e-87f2cfc517e2, #wrap-s-ae9a861b-8e0d-49b2-b33e-87f2cfc517e2, #wrap-content-s-ae9a861b-8e0d-49b2-b33e-87f2cfc517e2 { display: none !important; }}







#s-ae9a861b-8e0d-49b2-b33e-87f2cfc517e2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ae9a861b-8e0d-49b2-b33e-87f2cfc517e2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a1e58819-d476-4ba7-87f1-97e740f11a6a {
  padding-top: 130px;
padding-bottom: 0px;
max-width: 2000px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-a1e58819-d476-4ba7-87f1-97e740f11a6a {
  padding-left: 125px;
padding-right: 125px;
}
}
#s-a1e58819-d476-4ba7-87f1-97e740f11a6a {
  overflow: hidden;
  
  
      max-width: 2000px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-a1e58819-d476-4ba7-87f1-97e740f11a6a .shogun-image-content {
  
    justify-content: center;
  
}

#s-e4b25f53-ab0b-4043-951d-56ed981be36a {
  padding-top: 0px;
padding-left: 25px;
padding-right: 25px;
text-align: center;
}

#s-e4b25f53-ab0b-4043-951d-56ed981be36a {
  overflow: hidden;
  
  
}







  #s-e4b25f53-ab0b-4043-951d-56ed981be36a img.shogun-image {
    

    
    
    
  }


#s-e4b25f53-ab0b-4043-951d-56ed981be36a .shogun-image-content {
  
    justify-content: center;
  
}

#s-28cabacd-53ec-48fc-9d3c-133ba16580e1 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-28cabacd-53ec-48fc-9d3c-133ba16580e1 {
  display: none;
}
#s-28cabacd-53ec-48fc-9d3c-133ba16580e1, #wrap-s-28cabacd-53ec-48fc-9d3c-133ba16580e1, #wrap-content-s-28cabacd-53ec-48fc-9d3c-133ba16580e1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-28cabacd-53ec-48fc-9d3c-133ba16580e1 {
  display: none;
}
#s-28cabacd-53ec-48fc-9d3c-133ba16580e1, #wrap-s-28cabacd-53ec-48fc-9d3c-133ba16580e1, #wrap-content-s-28cabacd-53ec-48fc-9d3c-133ba16580e1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-28cabacd-53ec-48fc-9d3c-133ba16580e1 {
  display: none;
}
#s-28cabacd-53ec-48fc-9d3c-133ba16580e1, #wrap-s-28cabacd-53ec-48fc-9d3c-133ba16580e1, #wrap-content-s-28cabacd-53ec-48fc-9d3c-133ba16580e1 { display: none !important; }}







#s-28cabacd-53ec-48fc-9d3c-133ba16580e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-28cabacd-53ec-48fc-9d3c-133ba16580e1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2a3d4999-1b07-4118-bad9-290f9b94576a {
  min-height: 50px;
}
@media (min-width: 1200px){#s-2a3d4999-1b07-4118-bad9-290f9b94576a {
  display: none;
}
#s-2a3d4999-1b07-4118-bad9-290f9b94576a, #wrap-s-2a3d4999-1b07-4118-bad9-290f9b94576a, #wrap-content-s-2a3d4999-1b07-4118-bad9-290f9b94576a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2a3d4999-1b07-4118-bad9-290f9b94576a {
  display: none;
}
#s-2a3d4999-1b07-4118-bad9-290f9b94576a, #wrap-s-2a3d4999-1b07-4118-bad9-290f9b94576a, #wrap-content-s-2a3d4999-1b07-4118-bad9-290f9b94576a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2a3d4999-1b07-4118-bad9-290f9b94576a {
  display: none;
}
#s-2a3d4999-1b07-4118-bad9-290f9b94576a, #wrap-s-2a3d4999-1b07-4118-bad9-290f9b94576a, #wrap-content-s-2a3d4999-1b07-4118-bad9-290f9b94576a { display: none !important; }}







#s-2a3d4999-1b07-4118-bad9-290f9b94576a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2a3d4999-1b07-4118-bad9-290f9b94576a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a29358ee-858e-4bac-a6f7-38bd37547c61 {
  padding-top: 50px;
padding-left: 25px;
padding-bottom: 16px;
padding-right: 25px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-a29358ee-858e-4bac-a6f7-38bd37547c61 {
  display: none;
}
#s-a29358ee-858e-4bac-a6f7-38bd37547c61, #wrap-s-a29358ee-858e-4bac-a6f7-38bd37547c61, #wrap-content-s-a29358ee-858e-4bac-a6f7-38bd37547c61 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a29358ee-858e-4bac-a6f7-38bd37547c61 {
  display: none;
}
#s-a29358ee-858e-4bac-a6f7-38bd37547c61, #wrap-s-a29358ee-858e-4bac-a6f7-38bd37547c61, #wrap-content-s-a29358ee-858e-4bac-a6f7-38bd37547c61 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a29358ee-858e-4bac-a6f7-38bd37547c61 {
  display: none;
}
#s-a29358ee-858e-4bac-a6f7-38bd37547c61, #wrap-s-a29358ee-858e-4bac-a6f7-38bd37547c61, #wrap-content-s-a29358ee-858e-4bac-a6f7-38bd37547c61 { display: none !important; }}
#s-efb6aac2-3d38-4704-8658-d2d61595bd09 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-efb6aac2-3d38-4704-8658-d2d61595bd09 {
  display: none;
}
#s-efb6aac2-3d38-4704-8658-d2d61595bd09, #wrap-s-efb6aac2-3d38-4704-8658-d2d61595bd09, #wrap-content-s-efb6aac2-3d38-4704-8658-d2d61595bd09 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-efb6aac2-3d38-4704-8658-d2d61595bd09 {
  display: none;
}
#s-efb6aac2-3d38-4704-8658-d2d61595bd09, #wrap-s-efb6aac2-3d38-4704-8658-d2d61595bd09, #wrap-content-s-efb6aac2-3d38-4704-8658-d2d61595bd09 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-efb6aac2-3d38-4704-8658-d2d61595bd09 {
  display: none;
}
#s-efb6aac2-3d38-4704-8658-d2d61595bd09, #wrap-s-efb6aac2-3d38-4704-8658-d2d61595bd09, #wrap-content-s-efb6aac2-3d38-4704-8658-d2d61595bd09 { display: none !important; }}







#s-efb6aac2-3d38-4704-8658-d2d61595bd09 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-efb6aac2-3d38-4704-8658-d2d61595bd09.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-230891f1-2e27-4b0c-a539-cd2e6853d6b2 {
  padding-left: 25px;
padding-right: 25px;
background-color: rgba(255, 248, 242, 1);
}
@media (min-width: 1200px){#s-230891f1-2e27-4b0c-a539-cd2e6853d6b2 {
  display: none;
}
#s-230891f1-2e27-4b0c-a539-cd2e6853d6b2, #wrap-s-230891f1-2e27-4b0c-a539-cd2e6853d6b2, #wrap-content-s-230891f1-2e27-4b0c-a539-cd2e6853d6b2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-230891f1-2e27-4b0c-a539-cd2e6853d6b2 {
  display: none;
}
#s-230891f1-2e27-4b0c-a539-cd2e6853d6b2, #wrap-s-230891f1-2e27-4b0c-a539-cd2e6853d6b2, #wrap-content-s-230891f1-2e27-4b0c-a539-cd2e6853d6b2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-230891f1-2e27-4b0c-a539-cd2e6853d6b2 {
  display: none;
}
#s-230891f1-2e27-4b0c-a539-cd2e6853d6b2, #wrap-s-230891f1-2e27-4b0c-a539-cd2e6853d6b2, #wrap-content-s-230891f1-2e27-4b0c-a539-cd2e6853d6b2 { display: none !important; }}
#s-15c5c3c9-b296-4587-9f3c-200960ead318 {
  padding-top: 50px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
}
@media (min-width: 1200px){#s-15c5c3c9-b296-4587-9f3c-200960ead318 {
  display: none;
}
#s-15c5c3c9-b296-4587-9f3c-200960ead318, #wrap-s-15c5c3c9-b296-4587-9f3c-200960ead318, #wrap-content-s-15c5c3c9-b296-4587-9f3c-200960ead318 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-15c5c3c9-b296-4587-9f3c-200960ead318 {
  display: none;
}
#s-15c5c3c9-b296-4587-9f3c-200960ead318, #wrap-s-15c5c3c9-b296-4587-9f3c-200960ead318, #wrap-content-s-15c5c3c9-b296-4587-9f3c-200960ead318 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-15c5c3c9-b296-4587-9f3c-200960ead318 {
  padding-left: 125px;
padding-right: 125px;
display: none;
}
#s-15c5c3c9-b296-4587-9f3c-200960ead318, #wrap-s-15c5c3c9-b296-4587-9f3c-200960ead318, #wrap-content-s-15c5c3c9-b296-4587-9f3c-200960ead318 { display: none !important; }}
#s-15c5c3c9-b296-4587-9f3c-200960ead318 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-15c5c3c9-b296-4587-9f3c-200960ead318 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(227, 161, 83, 1);
  padding: 17px;
}

#s-15c5c3c9-b296-4587-9f3c-200960ead318 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(38, 38, 38, 1);
}

#s-15c5c3c9-b296-4587-9f3c-200960ead318 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 1);
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-15c5c3c9-b296-4587-9f3c-200960ead318 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(38, 38, 38, 1);
  text-align: left;
  font-family: Poppins;
  font-weight: 500;
  font-style: ;
  font-size: 18px;
}

#s-15c5c3c9-b296-4587-9f3c-200960ead318 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-df0a2508-462b-462d-b0db-3d9434895eb7 {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-d9704782-e9de-40be-a9f5-11b1239c1104 {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-ee03b55a-5201-4d9e-a38d-e9cc58d3dc75 {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-7c92730c-e1f1-485a-ad17-4875d0fe13a0 {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-4585fedf-b5b1-4231-885e-18d80ef7b154 {
  padding-top: 20px;
padding-left: 0px;
padding-bottom: 20px;
padding-right: 0px;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

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

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

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

/* <-- User Content Animations */

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

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

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