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

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

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

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

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

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

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

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

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

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

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

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

#s-f4d429f2-f0ba-4489-8454-9bbfa86329dd {
  min-height: 600px;
}








#s-f4d429f2-f0ba-4489-8454-9bbfa86329dd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f4d429f2-f0ba-4489-8454-9bbfa86329dd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-ea3528d0-aa19-4313-96d4-5e621ed7da18 {
  margin-top: 90px;
margin-left: auto;
margin-bottom: 90px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-ea3528d0-aa19-4313-96d4-5e621ed7da18 {
  max-width: 1280px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ea3528d0-aa19-4313-96d4-5e621ed7da18 {
  max-width: 90%;
}
}@media (max-width: 767px){#s-ea3528d0-aa19-4313-96d4-5e621ed7da18 {
  margin-top: 40px;
margin-bottom: 40px;
max-width: 90%;
}
}
@media (min-width: 0px) {
[id="s-ea3528d0-aa19-4313-96d4-5e621ed7da18"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ea3528d0-aa19-4313-96d4-5e621ed7da18"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ea3528d0-aa19-4313-96d4-5e621ed7da18"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ea3528d0-aa19-4313-96d4-5e621ed7da18"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-89253dd2-b649-45f8-8f2b-66eca416bb22 {
  margin-top: 5px;
padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}







  #s-89253dd2-b649-45f8-8f2b-66eca416bb22 img.shogun-image {
    

    
    
    
  }


#s-89253dd2-b649-45f8-8f2b-66eca416bb22 .shogun-image-content {
  
    align-items: 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-8094b268-67ab-4d1f-b8bc-6f4dfda573c8 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
padding-top: 15px;
}
@media (min-width: 768px) and (max-width: 991px){#s-8094b268-67ab-4d1f-b8bc-6f4dfda573c8 {
  display: none;
}
#s-8094b268-67ab-4d1f-b8bc-6f4dfda573c8, #wrap-s-8094b268-67ab-4d1f-b8bc-6f4dfda573c8 { display:none !important; }}@media (max-width: 767px){#s-8094b268-67ab-4d1f-b8bc-6f4dfda573c8 {
  display: none;
}
#s-8094b268-67ab-4d1f-b8bc-6f4dfda573c8, #wrap-s-8094b268-67ab-4d1f-b8bc-6f4dfda573c8 { display:none !important; }}
#s-8d9c26c8-71cf-4392-aa8d-1da9caf7dc91 {
  margin-top: 20px;
margin-left: 0%;
}
@media (min-width: 1200px){#s-8d9c26c8-71cf-4392-aa8d-1da9caf7dc91 {
  display: none;
}
#s-8d9c26c8-71cf-4392-aa8d-1da9caf7dc91, #wrap-s-8d9c26c8-71cf-4392-aa8d-1da9caf7dc91 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8d9c26c8-71cf-4392-aa8d-1da9caf7dc91 {
  display: none;
}
#s-8d9c26c8-71cf-4392-aa8d-1da9caf7dc91, #wrap-s-8d9c26c8-71cf-4392-aa8d-1da9caf7dc91 { display:none !important; }}
#s-58407d8b-290a-4aa3-a88a-7f97c947fc3c {
  margin-top: 5px;
margin-left: 0%;
margin-bottom: 0px;
}

#s-1c449c4d-6270-40ae-94f0-5b0bec3311ad {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
text-align: left;
}
@media (max-width: 767px){#s-1c449c4d-6270-40ae-94f0-5b0bec3311ad {
  margin-bottom: 0px;
}
}






  #s-1c449c4d-6270-40ae-94f0-5b0bec3311ad img.shogun-image {
    

    
    
    
  }


#s-1c449c4d-6270-40ae-94f0-5b0bec3311ad .shogun-image-content {
  
    align-items: center;
  
}

#s-bb1a365a-176b-4486-85c9-95552669e23f {
  background-repeat: no-repeat;
background-size: cover;
min-height: 1000px;
max-width: 100%;
background-position: center center;
}








#s-bb1a365a-176b-4486-85c9-95552669e23f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bb1a365a-176b-4486-85c9-95552669e23f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-df5f35d6-b330-40b6-8c51-669f278fb7a9 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
min-height: 600px;
max-width: 90%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-df5f35d6-b330-40b6-8c51-669f278fb7a9 {
  display: none;
}
#s-df5f35d6-b330-40b6-8c51-669f278fb7a9, #wrap-s-df5f35d6-b330-40b6-8c51-669f278fb7a9 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-df5f35d6-b330-40b6-8c51-669f278fb7a9 {
  padding-left: 20px;
padding-right: 20px;
display: none;
}
#s-df5f35d6-b330-40b6-8c51-669f278fb7a9, #wrap-s-df5f35d6-b330-40b6-8c51-669f278fb7a9 { display:none !important; }}@media (max-width: 767px){#s-df5f35d6-b330-40b6-8c51-669f278fb7a9 {
  margin-top: 50px;
display: none;
}
#s-df5f35d6-b330-40b6-8c51-669f278fb7a9, #wrap-s-df5f35d6-b330-40b6-8c51-669f278fb7a9 { display:none !important; }}







#s-df5f35d6-b330-40b6-8c51-669f278fb7a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-df5f35d6-b330-40b6-8c51-669f278fb7a9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6253c76a-e6ea-4d19-989e-55b9826986ef {
  margin-top: 20px;
text-align: center;
}







  #s-6253c76a-e6ea-4d19-989e-55b9826986ef img.shogun-image {
    

    
    
    
  }


#s-6253c76a-e6ea-4d19-989e-55b9826986ef .shogun-image-content {
  
    align-items: center;
  
}

#s-7353f215-2de4-4a46-bb29-0a15de9f6783 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-54dad5a1-5198-4f42-85ac-019801deda57 {
  margin-bottom: 20px;
}

#s-b13334bc-1d5a-4d32-9d50-7f3474f1aafd {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 595px;
}

@media (min-width: 0px) {
[id="s-b13334bc-1d5a-4d32-9d50-7f3474f1aafd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b13334bc-1d5a-4d32-9d50-7f3474f1aafd"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-b13334bc-1d5a-4d32-9d50-7f3474f1aafd"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b13334bc-1d5a-4d32-9d50-7f3474f1aafd"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-b13334bc-1d5a-4d32-9d50-7f3474f1aafd"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b13334bc-1d5a-4d32-9d50-7f3474f1aafd"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-b13334bc-1d5a-4d32-9d50-7f3474f1aafd"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-5e823a17-7513-4b5f-95ef-7e2ef39f277f {
  margin-left: auto;
margin-right: auto;
max-width: 24px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-5e823a17-7513-4b5f-95ef-7e2ef39f277f {
  text-align: left;
}
}






  #s-5e823a17-7513-4b5f-95ef-7e2ef39f277f img.shogun-image {
    

    
    
    
  }


#s-5e823a17-7513-4b5f-95ef-7e2ef39f277f .shogun-image-content {
  
    align-items: center;
  
}

#s-9a3b8b3e-9046-4914-9dd3-2301e9b9679c {
  margin-top: 4px;
margin-left: -5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-9a3b8b3e-9046-4914-9dd3-2301e9b9679c {
  margin-left: -3%;
}
}@media (max-width: 767px){#s-9a3b8b3e-9046-4914-9dd3-2301e9b9679c {
  margin-left: 0px;
}
}
#s-c8ac94ee-0477-4608-b6c5-1f7b36d97da7 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 595px;
}

@media (min-width: 0px) {
[id="s-c8ac94ee-0477-4608-b6c5-1f7b36d97da7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c8ac94ee-0477-4608-b6c5-1f7b36d97da7"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-c8ac94ee-0477-4608-b6c5-1f7b36d97da7"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c8ac94ee-0477-4608-b6c5-1f7b36d97da7"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-c8ac94ee-0477-4608-b6c5-1f7b36d97da7"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c8ac94ee-0477-4608-b6c5-1f7b36d97da7"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-c8ac94ee-0477-4608-b6c5-1f7b36d97da7"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-b382eb96-a142-41da-a891-8fda8807442b {
  margin-left: auto;
margin-right: auto;
max-width: 24px;
text-align: center;
}







  #s-b382eb96-a142-41da-a891-8fda8807442b img.shogun-image {
    

    
    
    
  }


#s-b382eb96-a142-41da-a891-8fda8807442b .shogun-image-content {
  
    align-items: center;
  
}

#s-e3368d91-dd21-4b92-aad0-5ecb56f97849 {
  margin-top: 4px;
margin-left: -5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-e3368d91-dd21-4b92-aad0-5ecb56f97849 {
  margin-left: -3%;
}
}@media (max-width: 767px){#s-e3368d91-dd21-4b92-aad0-5ecb56f97849 {
  margin-left: 1px;
}
}
#s-fb3bf22c-d8b8-49fd-a963-d35f96cfa0ee {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 595px;
}

@media (min-width: 0px) {
[id="s-fb3bf22c-d8b8-49fd-a963-d35f96cfa0ee"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fb3bf22c-d8b8-49fd-a963-d35f96cfa0ee"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-fb3bf22c-d8b8-49fd-a963-d35f96cfa0ee"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fb3bf22c-d8b8-49fd-a963-d35f96cfa0ee"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-fb3bf22c-d8b8-49fd-a963-d35f96cfa0ee"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fb3bf22c-d8b8-49fd-a963-d35f96cfa0ee"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-fb3bf22c-d8b8-49fd-a963-d35f96cfa0ee"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-81c505d9-9d67-4d4b-a789-9c808692f164 {
  margin-left: auto;
margin-right: auto;
max-width: 24px;
text-align: center;
}







  #s-81c505d9-9d67-4d4b-a789-9c808692f164 img.shogun-image {
    

    
    
    
  }


#s-81c505d9-9d67-4d4b-a789-9c808692f164 .shogun-image-content {
  
    align-items: center;
  
}

#s-2123cbb4-80a5-44e6-b55e-bc34a0ff6b5c {
  margin-top: 4px;
margin-left: -5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-2123cbb4-80a5-44e6-b55e-bc34a0ff6b5c {
  margin-left: -3%;
}
}@media (max-width: 767px){#s-2123cbb4-80a5-44e6-b55e-bc34a0ff6b5c {
  margin-left: 1px;
}
}
#s-df4ff24d-ba69-4dbf-a293-cb3fd5dd01b4 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 595px;
}

@media (min-width: 0px) {
[id="s-df4ff24d-ba69-4dbf-a293-cb3fd5dd01b4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-df4ff24d-ba69-4dbf-a293-cb3fd5dd01b4"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-df4ff24d-ba69-4dbf-a293-cb3fd5dd01b4"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-df4ff24d-ba69-4dbf-a293-cb3fd5dd01b4"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-df4ff24d-ba69-4dbf-a293-cb3fd5dd01b4"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-df4ff24d-ba69-4dbf-a293-cb3fd5dd01b4"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-df4ff24d-ba69-4dbf-a293-cb3fd5dd01b4"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-b4ad6919-4d25-484f-b396-3ad00890550b {
  margin-left: auto;
margin-right: auto;
max-width: 24px;
text-align: center;
}







  #s-b4ad6919-4d25-484f-b396-3ad00890550b img.shogun-image {
    

    
    
    
  }


#s-b4ad6919-4d25-484f-b396-3ad00890550b .shogun-image-content {
  
    align-items: center;
  
}

#s-f24e4532-ea33-4651-b510-a5450a68b266 {
  margin-top: 4px;
margin-left: 1px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f24e4532-ea33-4651-b510-a5450a68b266 {
  margin-left: -3%;
}
}
#s-28e29787-6f48-4210-aae2-dc88edac8e5a {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 595px;
}

@media (min-width: 0px) {
[id="s-28e29787-6f48-4210-aae2-dc88edac8e5a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-28e29787-6f48-4210-aae2-dc88edac8e5a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-28e29787-6f48-4210-aae2-dc88edac8e5a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-28e29787-6f48-4210-aae2-dc88edac8e5a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-28e29787-6f48-4210-aae2-dc88edac8e5a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-28e29787-6f48-4210-aae2-dc88edac8e5a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-28e29787-6f48-4210-aae2-dc88edac8e5a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-c6c3e349-4231-4cda-b564-2263f93984ea {
  margin-left: auto;
margin-right: auto;
max-width: 24px;
text-align: center;
}







  #s-c6c3e349-4231-4cda-b564-2263f93984ea img.shogun-image {
    

    
    
    
  }


#s-c6c3e349-4231-4cda-b564-2263f93984ea .shogun-image-content {
  
    align-items: center;
  
}

#s-1d9aa282-b276-4d2a-8a94-c51f74558e73 {
  margin-top: 4px;
margin-left: 1px;
}
@media (min-width: 768px) and (max-width: 991px){#s-1d9aa282-b276-4d2a-8a94-c51f74558e73 {
  margin-left: -3%;
}
}
#s-e743496e-ae31-4e17-a94d-f1c9ea429720 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 30px;
padding-left: 10px;
padding-bottom: 20px;
padding-right: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: #000;
border-style: solid;
border-radius: 10px;
max-width: 78%;
}
@media (min-width: 768px) and (max-width: 991px){#s-e743496e-ae31-4e17-a94d-f1c9ea429720 {
  padding-top: 30px;
padding-left: 0px;
padding-bottom: 20px;
padding-right: 0px;
max-width: 76%;
}
}@media (max-width: 767px){#s-e743496e-ae31-4e17-a94d-f1c9ea429720 {
  padding-top: 20px;
}
}
#s-ec67cffa-b95d-4956-a3e1-d313ad81603b {
  display: none;
}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

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

#s-dc7db2ea-3840-47d5-a2cf-ecf976d789e9 {
  background-image: url(https://i.shgcdn.com/31682cef-0d22-4f0a-a0a6-d27defc6dbb9/);
background-repeat: no-repeat;
background-size: contain;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
min-height: 100px;
text-align: center;
cursor: pointer;
hover-type: image;
background-position: center center;
}
#s-dc7db2ea-3840-47d5-a2cf-ecf976d789e9:hover {background-image: url(https://i.shgcdn.com/cfd5c7d5-f184-40a1-8c65-855f75d7de18/) !important;
background-repeat: no-repeat !important;
background-size: contain !important;
text-decoration: none !important;
hover-type: image !important;
color: rgba(255, 255, 255, 0) !important;}#s-dc7db2ea-3840-47d5-a2cf-ecf976d789e9:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 0) !important;}

  #s-dc7db2ea-3840-47d5-a2cf-ecf976d789e9-atc-btn-wrapper {
    text-align: center;
  }


#s-dc7db2ea-3840-47d5-a2cf-ecf976d789e9 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-dc7db2ea-3840-47d5-a2cf-ecf976d789e9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-dc7db2ea-3840-47d5-a2cf-ecf976d789e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-dc7db2ea-3840-47d5-a2cf-ecf976d789e9.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-48d82824-4b81-4c1a-bd10-9e5b0bd6ef13 {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
min-height: 50px;
max-width: 70%;
background-color: rgba(36, 36, 36, 1);
}
@media (min-width: 1200px){#s-48d82824-4b81-4c1a-bd10-9e5b0bd6ef13 {
  display: none;
}
#s-48d82824-4b81-4c1a-bd10-9e5b0bd6ef13, #wrap-s-48d82824-4b81-4c1a-bd10-9e5b0bd6ef13 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-48d82824-4b81-4c1a-bd10-9e5b0bd6ef13 {
  display: none;
}
#s-48d82824-4b81-4c1a-bd10-9e5b0bd6ef13, #wrap-s-48d82824-4b81-4c1a-bd10-9e5b0bd6ef13 { display:none !important; }}@media (max-width: 767px){#s-48d82824-4b81-4c1a-bd10-9e5b0bd6ef13 {
  display: none;
}
#s-48d82824-4b81-4c1a-bd10-9e5b0bd6ef13, #wrap-s-48d82824-4b81-4c1a-bd10-9e5b0bd6ef13 { display:none !important; }}







#s-48d82824-4b81-4c1a-bd10-9e5b0bd6ef13 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-48d82824-4b81-4c1a-bd10-9e5b0bd6ef13.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-83c3c0d7-b975-4674-bc41-04928c152171 {
  margin-top: 20px;
}
@media (max-width: 767px){#s-83c3c0d7-b975-4674-bc41-04928c152171 {
  margin-top: 0px;
}
}
#s-232bb826-2687-4ad2-b750-338618b3005c {
  margin-top: 50px;
margin-left: auto;
margin-right: auto;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 10px;
min-height: 600px;
max-width: 90%;
}
@media (min-width: 1200px){#s-232bb826-2687-4ad2-b750-338618b3005c {
  display: none;
}
#s-232bb826-2687-4ad2-b750-338618b3005c, #wrap-s-232bb826-2687-4ad2-b750-338618b3005c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-232bb826-2687-4ad2-b750-338618b3005c {
  padding-left: 20px;
padding-right: 20px;
display: none;
}
#s-232bb826-2687-4ad2-b750-338618b3005c, #wrap-s-232bb826-2687-4ad2-b750-338618b3005c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-232bb826-2687-4ad2-b750-338618b3005c {
  padding-left: 10px;
padding-right: 10px;
}
}@media (max-width: 767px){#s-232bb826-2687-4ad2-b750-338618b3005c {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
display: none;
}
#s-232bb826-2687-4ad2-b750-338618b3005c, #wrap-s-232bb826-2687-4ad2-b750-338618b3005c { display:none !important; }}







#s-232bb826-2687-4ad2-b750-338618b3005c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-232bb826-2687-4ad2-b750-338618b3005c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b69a0794-d4a6-4410-a433-6de9377f9698 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (min-width: 1200px){#s-b69a0794-d4a6-4410-a433-6de9377f9698 {
  margin-bottom: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b69a0794-d4a6-4410-a433-6de9377f9698 {
  margin-bottom: 40px;
}
}






  #s-b69a0794-d4a6-4410-a433-6de9377f9698 img.shogun-image {
    

    
    
    
  }


#s-b69a0794-d4a6-4410-a433-6de9377f9698 .shogun-image-content {
  
    align-items: center;
  
}

#s-75cc9930-898c-48a8-b098-ea54e66ff435 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-73a03648-92c5-4752-a47a-b759e8a3d9bd {
  margin-top: 10px;
margin-bottom: 20px;
}

#s-b3527550-289f-4a06-a85a-897bb16308a3 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 595px;
}

@media (min-width: 0px) {
[id="s-b3527550-289f-4a06-a85a-897bb16308a3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b3527550-289f-4a06-a85a-897bb16308a3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-b3527550-289f-4a06-a85a-897bb16308a3"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b3527550-289f-4a06-a85a-897bb16308a3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-b3527550-289f-4a06-a85a-897bb16308a3"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b3527550-289f-4a06-a85a-897bb16308a3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-b3527550-289f-4a06-a85a-897bb16308a3"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-8ee24bad-2264-419a-b2b3-f3450fe41187 {
  margin-left: auto;
margin-right: auto;
max-width: 24px;
text-align: center;
}







  #s-8ee24bad-2264-419a-b2b3-f3450fe41187 img.shogun-image {
    

    
    
    
  }


#s-8ee24bad-2264-419a-b2b3-f3450fe41187 .shogun-image-content {
  
    align-items: center;
  
}

#s-1be18b4c-34b1-4322-ac32-55a36c7c0bd3 {
  margin-top: 4px;
margin-left: -5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-1be18b4c-34b1-4322-ac32-55a36c7c0bd3 {
  margin-left: -3%;
}
}@media (max-width: 767px){#s-1be18b4c-34b1-4322-ac32-55a36c7c0bd3 {
  margin-left: 1px;
}
}
#s-99f48f18-8868-475a-a50e-b987b4210182 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 595px;
}

@media (min-width: 0px) {
[id="s-99f48f18-8868-475a-a50e-b987b4210182"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-99f48f18-8868-475a-a50e-b987b4210182"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-99f48f18-8868-475a-a50e-b987b4210182"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-99f48f18-8868-475a-a50e-b987b4210182"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-99f48f18-8868-475a-a50e-b987b4210182"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-99f48f18-8868-475a-a50e-b987b4210182"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-99f48f18-8868-475a-a50e-b987b4210182"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-a4761e5f-7e07-4ed1-8f35-0af2bf7d9c43 {
  margin-left: auto;
margin-right: auto;
max-width: 24px;
text-align: center;
}







  #s-a4761e5f-7e07-4ed1-8f35-0af2bf7d9c43 img.shogun-image {
    

    
    
    
  }


#s-a4761e5f-7e07-4ed1-8f35-0af2bf7d9c43 .shogun-image-content {
  
    align-items: center;
  
}

#s-e4c7b47f-c180-45c8-8707-f0db7be94e4e {
  margin-top: 4px;
margin-left: -5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-e4c7b47f-c180-45c8-8707-f0db7be94e4e {
  margin-left: -3%;
}
}@media (max-width: 767px){#s-e4c7b47f-c180-45c8-8707-f0db7be94e4e {
  margin-left: 1px;
}
}
#s-ca404d75-be00-4f4f-933a-12550ea69881 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 595px;
}

@media (min-width: 0px) {
[id="s-ca404d75-be00-4f4f-933a-12550ea69881"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ca404d75-be00-4f4f-933a-12550ea69881"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ca404d75-be00-4f4f-933a-12550ea69881"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ca404d75-be00-4f4f-933a-12550ea69881"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ca404d75-be00-4f4f-933a-12550ea69881"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ca404d75-be00-4f4f-933a-12550ea69881"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ca404d75-be00-4f4f-933a-12550ea69881"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-021b616d-9364-470f-87f1-e6ce19d62943 {
  margin-left: auto;
margin-right: auto;
max-width: 24px;
text-align: center;
}







  #s-021b616d-9364-470f-87f1-e6ce19d62943 img.shogun-image {
    

    
    
    
  }


#s-021b616d-9364-470f-87f1-e6ce19d62943 .shogun-image-content {
  
    align-items: center;
  
}

#s-d8ba0f95-4934-4719-925b-35a73ae78e2d {
  margin-top: 4px;
margin-left: 1px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d8ba0f95-4934-4719-925b-35a73ae78e2d {
  margin-left: -3%;
}
}
#s-48dd43f2-c1ca-46a7-9f70-1c06612b074f {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 595px;
}

@media (min-width: 0px) {
[id="s-48dd43f2-c1ca-46a7-9f70-1c06612b074f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-48dd43f2-c1ca-46a7-9f70-1c06612b074f"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-48dd43f2-c1ca-46a7-9f70-1c06612b074f"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-48dd43f2-c1ca-46a7-9f70-1c06612b074f"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-48dd43f2-c1ca-46a7-9f70-1c06612b074f"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-48dd43f2-c1ca-46a7-9f70-1c06612b074f"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-48dd43f2-c1ca-46a7-9f70-1c06612b074f"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-e8a66e1b-045e-4163-b116-6fcf1c6b3013 {
  margin-left: auto;
margin-right: auto;
max-width: 24px;
text-align: center;
}







  #s-e8a66e1b-045e-4163-b116-6fcf1c6b3013 img.shogun-image {
    

    
    
    
  }


#s-e8a66e1b-045e-4163-b116-6fcf1c6b3013 .shogun-image-content {
  
    align-items: center;
  
}

#s-80b8affa-795f-4506-8e1f-63b8a158588f {
  margin-top: 4px;
margin-left: -5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-80b8affa-795f-4506-8e1f-63b8a158588f {
  margin-left: -3%;
}
}@media (max-width: 767px){#s-80b8affa-795f-4506-8e1f-63b8a158588f {
  margin-left: 1%;
}
}
#s-529337de-3cb8-49b4-9169-9207cc2d0a41 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 595px;
}

@media (min-width: 0px) {
[id="s-529337de-3cb8-49b4-9169-9207cc2d0a41"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-529337de-3cb8-49b4-9169-9207cc2d0a41"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-529337de-3cb8-49b4-9169-9207cc2d0a41"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-529337de-3cb8-49b4-9169-9207cc2d0a41"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-529337de-3cb8-49b4-9169-9207cc2d0a41"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-529337de-3cb8-49b4-9169-9207cc2d0a41"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-529337de-3cb8-49b4-9169-9207cc2d0a41"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-8418e0e3-3067-4716-aa29-f05721398ee6 {
  margin-left: auto;
margin-right: auto;
max-width: 24px;
text-align: center;
}







  #s-8418e0e3-3067-4716-aa29-f05721398ee6 img.shogun-image {
    

    
    
    
  }


#s-8418e0e3-3067-4716-aa29-f05721398ee6 .shogun-image-content {
  
    align-items: center;
  
}

#s-7c0d8bf8-5036-4c13-bc7e-ad5fd07049b9 {
  margin-top: 4px;
margin-left: -5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-7c0d8bf8-5036-4c13-bc7e-ad5fd07049b9 {
  margin-left: -3%;
}
}@media (max-width: 767px){#s-7c0d8bf8-5036-4c13-bc7e-ad5fd07049b9 {
  margin-left: 1%;
}
}
#s-663ba498-55bc-4cf1-aaac-f47d9a81c2ce {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 30px;
padding-left: 10px;
padding-bottom: 20px;
padding-right: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-663ba498-55bc-4cf1-aaac-f47d9a81c2ce {
  margin-left: auto;
margin-right: auto;
max-width: 75%;
}
}@media (max-width: 767px){#s-663ba498-55bc-4cf1-aaac-f47d9a81c2ce {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
max-width: 70%;
}
}
#s-7b0c896d-5613-419e-a9d7-3610901f02cf {
  text-align: center;
}

#s-7b0c896d-5613-419e-a9d7-3610901f02cf {
  display: none;
}
#s-cf0d14e1-9d5a-4ff7-a312-e3d36538bf0b {
  background-image: url(https://i.shgcdn.com/47a172b6-0e84-41cd-a689-791744ff37d8/);
background-repeat: no-repeat;
background-size: contain;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
min-height: 100px;
max-width: 100%;
text-align: center;
cursor: pointer;
hover-type: image;
background-position: center center;
}
#s-cf0d14e1-9d5a-4ff7-a312-e3d36538bf0b:hover {background-image: url(https://i.shgcdn.com/7dee4908-cd04-495f-9e33-5741b65a6948/) !important;
background-repeat: no-repeat !important;
background-size: contain !important;
text-decoration: none !important;
hover-type: image !important;
color: rgba(255, 255, 255, 0) !important;}#s-cf0d14e1-9d5a-4ff7-a312-e3d36538bf0b:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 0) !important;}

  #s-cf0d14e1-9d5a-4ff7-a312-e3d36538bf0b-atc-btn-wrapper {
    text-align: center;
  }


#s-cf0d14e1-9d5a-4ff7-a312-e3d36538bf0b {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-cf0d14e1-9d5a-4ff7-a312-e3d36538bf0b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-cf0d14e1-9d5a-4ff7-a312-e3d36538bf0b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-cf0d14e1-9d5a-4ff7-a312-e3d36538bf0b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-73a24177-75a5-436c-9581-4dc14d6d93e2 {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
min-height: 50px;
max-width: 70%;
background-color: rgba(36, 36, 36, 1);
}
@media (min-width: 1200px){#s-73a24177-75a5-436c-9581-4dc14d6d93e2 {
  display: none;
}
#s-73a24177-75a5-436c-9581-4dc14d6d93e2, #wrap-s-73a24177-75a5-436c-9581-4dc14d6d93e2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-73a24177-75a5-436c-9581-4dc14d6d93e2 {
  display: none;
}
#s-73a24177-75a5-436c-9581-4dc14d6d93e2, #wrap-s-73a24177-75a5-436c-9581-4dc14d6d93e2 { display:none !important; }}@media (max-width: 767px){#s-73a24177-75a5-436c-9581-4dc14d6d93e2 {
  display: none;
}
#s-73a24177-75a5-436c-9581-4dc14d6d93e2, #wrap-s-73a24177-75a5-436c-9581-4dc14d6d93e2 { display:none !important; }}







#s-73a24177-75a5-436c-9581-4dc14d6d93e2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-73a24177-75a5-436c-9581-4dc14d6d93e2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0a4f7265-661a-4866-805a-f5e9e99d1944 {
  margin-top: 20px;
}
@media (max-width: 767px){#s-0a4f7265-661a-4866-805a-f5e9e99d1944 {
  margin-top: 0px;
padding-right: 0px;
}
}
#s-52d3a2fd-6d08-408c-92a4-7ad09da2e328 {
  text-align: left;
}

#s-be59fe21-c0ef-42ee-94ed-81f7740d846b {
  text-align: left;
}

#s-96a61168-7971-475f-b6ad-94f6ef091ffb {
  margin-top: 160px;
margin-left: auto;
margin-bottom: 130px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 1200px){#s-96a61168-7971-475f-b6ad-94f6ef091ffb {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-96a61168-7971-475f-b6ad-94f6ef091ffb {
  max-width: 1280px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-96a61168-7971-475f-b6ad-94f6ef091ffb {
  max-width: 90%;
display: none;
}
#s-96a61168-7971-475f-b6ad-94f6ef091ffb, #wrap-s-96a61168-7971-475f-b6ad-94f6ef091ffb { display:none !important; }}@media (max-width: 767px){#s-96a61168-7971-475f-b6ad-94f6ef091ffb {
  margin-top: 30px;
}
}
@media (min-width: 0px) {
[id="s-96a61168-7971-475f-b6ad-94f6ef091ffb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-96a61168-7971-475f-b6ad-94f6ef091ffb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-96a61168-7971-475f-b6ad-94f6ef091ffb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-96a61168-7971-475f-b6ad-94f6ef091ffb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-db0a0507-409e-4633-9a88-8f06c23b4720 {
  padding-left: 30px;
padding-right: 30px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 10px;
min-height: 600px;
background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px){#s-db0a0507-409e-4633-9a88-8f06c23b4720 {
  max-width: 30%;
}
}







#s-db0a0507-409e-4633-9a88-8f06c23b4720 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-db0a0507-409e-4633-9a88-8f06c23b4720.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4f935bb5-43e3-488b-bc14-04b73a0b4104 {
  text-align: center;
}
@media (min-width: 1200px){#s-4f935bb5-43e3-488b-bc14-04b73a0b4104 {
  margin-top: -10%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4f935bb5-43e3-488b-bc14-04b73a0b4104 {
  margin-top: -10%;
}
}






  #s-4f935bb5-43e3-488b-bc14-04b73a0b4104 img.shogun-image {
    

    
    
    
  }


#s-4f935bb5-43e3-488b-bc14-04b73a0b4104 .shogun-image-content {
  
    align-items: center;
  
}

#s-72a20418-a2f4-4010-ab3b-f35c7520a153 {
  margin-top: 20px;
margin-bottom: 30px;
}

#s-bb5842b3-a102-4966-91f7-dc2d7d1c974b {
  margin-bottom: 13px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
}

#s-00983852-d910-4a43-bb26-e887311a9def {
  padding-left: 50px;
padding-right: 50px;
text-align: left;
}
@media (max-width: 767px){#s-00983852-d910-4a43-bb26-e887311a9def {
  padding-left: 20px;
padding-right: 20px;
}
}
#s-c2330432-3ba2-4ef9-b367-daae96cfaaae {
  margin-top: 55px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 30px;
padding-left: 10px;
padding-bottom: 20px;
padding-right: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 10px;
max-width: 84%;
}
@media (min-width: 768px) and (max-width: 991px){#s-c2330432-3ba2-4ef9-b367-daae96cfaaae {
  padding-top: 30px;
padding-left: 0px;
padding-bottom: 20px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-c2330432-3ba2-4ef9-b367-daae96cfaaae {
  max-width: 100%;
}
}
#s-78ddaac3-b61a-4d89-9424-919f597e8d92 {
  display: none;
}
#s-02543173-8e08-4615-ad7a-2ea82a3f0397 {
  background-image: url(https://i.shgcdn.com/1eb553bf-1633-45d2-b3ac-40e30c02e03a/);
background-repeat: no-repeat;
background-size: contain;
margin-left: 0px;
margin-bottom: 41px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
min-height: 100px;
max-width: 100%;
text-align: center;
cursor: pointer;
hover-type: image;
background-position: center center;
}
#s-02543173-8e08-4615-ad7a-2ea82a3f0397:hover {background-image: url(https://i.shgcdn.com/aa0426e3-3b96-4563-bde6-4c055f8243ad/) !important;
background-repeat: no-repeat !important;
background-size: contain !important;
text-decoration: none !important;
hover-type: image !important;
color: rgba(255, 255, 255, 0) !important;}#s-02543173-8e08-4615-ad7a-2ea82a3f0397:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 0) !important;}

  #s-02543173-8e08-4615-ad7a-2ea82a3f0397-atc-btn-wrapper {
    text-align: center;
  }


#s-02543173-8e08-4615-ad7a-2ea82a3f0397 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-02543173-8e08-4615-ad7a-2ea82a3f0397.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-02543173-8e08-4615-ad7a-2ea82a3f0397.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-02543173-8e08-4615-ad7a-2ea82a3f0397.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-b9eb638d-ae43-414b-a6c9-26f2c039eebf {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
min-height: 50px;
max-width: 60%;
background-color: rgba(36, 36, 36, 1);
}
@media (max-width: 767px){#s-b9eb638d-ae43-414b-a6c9-26f2c039eebf {
  margin-left: 50px;
margin-bottom: 40px;
margin-right: 1px;
max-width: 25%;
}
}







#s-b9eb638d-ae43-414b-a6c9-26f2c039eebf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b9eb638d-ae43-414b-a6c9-26f2c039eebf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8d6fbcbe-86a7-4cce-8459-b2ca01e239e3 {
  margin-top: 0px;
padding-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

@media (min-width: 0px) {
[id="s-8d6fbcbe-86a7-4cce-8459-b2ca01e239e3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8d6fbcbe-86a7-4cce-8459-b2ca01e239e3"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-8d6fbcbe-86a7-4cce-8459-b2ca01e239e3"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8d6fbcbe-86a7-4cce-8459-b2ca01e239e3"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-8d6fbcbe-86a7-4cce-8459-b2ca01e239e3"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8d6fbcbe-86a7-4cce-8459-b2ca01e239e3"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-8d6fbcbe-86a7-4cce-8459-b2ca01e239e3"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

#s-c439ddcd-71cc-42b4-9630-21560bba0867 {
  margin-top: 19px;
margin-left: 60%;
margin-right: -17%;
max-width: 20px;
text-align: right;
}
@media (max-width: 767px){#s-c439ddcd-71cc-42b4-9630-21560bba0867 {
  display: none;
}
#s-c439ddcd-71cc-42b4-9630-21560bba0867, #wrap-s-c439ddcd-71cc-42b4-9630-21560bba0867 { display:none !important; }}






  #s-c439ddcd-71cc-42b4-9630-21560bba0867 img.shogun-image {
    

    
    
    
  }


#s-c439ddcd-71cc-42b4-9630-21560bba0867 .shogun-image-content {
  
    align-items: center;
  
}

#s-b2f53cbd-e464-4940-9094-580101f0d7f7 {
  margin-top: 20px;
}
@media (max-width: 767px){#s-b2f53cbd-e464-4940-9094-580101f0d7f7 {
  margin-top: 20px;
}
}
#s-41f4ca61-5662-4e6f-85e4-3a6b34b75dd2 {
  border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 10px;
min-height: 600px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 992px) and (max-width: 1199px){#s-41f4ca61-5662-4e6f-85e4-3a6b34b75dd2 {
  padding-left: 20px;
padding-right: 20px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-41f4ca61-5662-4e6f-85e4-3a6b34b75dd2 {
  padding-left: 10px;
padding-right: 10px;
}
}@media (max-width: 767px){#s-41f4ca61-5662-4e6f-85e4-3a6b34b75dd2 {
  padding-left: 30px;
padding-right: 30px;
max-width: 30%;
}
}







#s-41f4ca61-5662-4e6f-85e4-3a6b34b75dd2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-41f4ca61-5662-4e6f-85e4-3a6b34b75dd2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9d6a591a-b6fe-4cdf-9d25-a3e285a08d5a {
  margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (min-width: 1200px){#s-9d6a591a-b6fe-4cdf-9d25-a3e285a08d5a {
  margin-top: -10%;
margin-bottom: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9d6a591a-b6fe-4cdf-9d25-a3e285a08d5a {
  margin-top: -10%;
margin-bottom: 50px;
}
}






  #s-9d6a591a-b6fe-4cdf-9d25-a3e285a08d5a img.shogun-image {
    

    
    
    
  }


#s-9d6a591a-b6fe-4cdf-9d25-a3e285a08d5a .shogun-image-content {
  
    align-items: center;
  
}

#s-f6761498-ff30-4309-807a-8efa599ac906 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-850d372e-f743-47b6-94ee-137c56f1e731 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-8c1f811a-1767-40ed-90ee-09717556e6cd {
  padding-left: 50px;
padding-right: 50px;
text-align: left;
}
@media (max-width: 767px){#s-8c1f811a-1767-40ed-90ee-09717556e6cd {
  padding-left: 20px;
padding-right: 20px;
}
}
#s-d65c75a8-5e05-4877-8412-46a76c0b8133 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 30px;
padding-left: 10px;
padding-bottom: 20px;
padding-right: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 10px;
max-width: 84%;
}
@media (max-width: 767px){#s-d65c75a8-5e05-4877-8412-46a76c0b8133 {
  max-width: 100%;
}
}
#s-e363d5e9-8868-4bc9-8f58-b23ce3875141 {
  display: none;
}
#s-31f1c232-1cea-4eb0-9d85-627921202879 {
  background-image: url(https://i.shgcdn.com/6191a9ea-90a4-4c37-8fbb-2cc94a78805c/);
background-repeat: no-repeat;
background-size: contain;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
min-height: 100px;
max-width: 100%;
text-align: center;
cursor: pointer;
hover-type: image;
background-position: center center;
}
#s-31f1c232-1cea-4eb0-9d85-627921202879:hover {background-image: url(https://i.shgcdn.com/ca5916da-2c49-488f-8dfd-597cc740c4f6/) !important;
background-repeat: no-repeat !important;
background-size: contain !important;
text-decoration: none !important;
hover-type: image !important;
color: rgba(255, 255, 255, 0) !important;}#s-31f1c232-1cea-4eb0-9d85-627921202879:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 0) !important;}@media (max-width: 767px){#s-31f1c232-1cea-4eb0-9d85-627921202879 {
  padding-left: 0px;
padding-right: 0px;
}
}

  #s-31f1c232-1cea-4eb0-9d85-627921202879-atc-btn-wrapper {
    text-align: center;
  }


#s-31f1c232-1cea-4eb0-9d85-627921202879 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-31f1c232-1cea-4eb0-9d85-627921202879.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-31f1c232-1cea-4eb0-9d85-627921202879.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-31f1c232-1cea-4eb0-9d85-627921202879.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-71d8cdf2-1256-4a65-b046-1d9786dd0c45 {
  margin-top: 5px;
margin-bottom: 10px;
}

#s-85a5906d-8cd7-4634-8ba0-6b125295d69c {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
min-height: 50px;
max-width: 60%;
background-color: rgba(36, 36, 36, 1);
}
@media (max-width: 767px){#s-85a5906d-8cd7-4634-8ba0-6b125295d69c {
  margin-left: 50px;
margin-right: 1px;
max-width: 25%;
}
}







#s-85a5906d-8cd7-4634-8ba0-6b125295d69c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-85a5906d-8cd7-4634-8ba0-6b125295d69c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ea2e616f-24d4-4190-9f20-d11e6142a0fb {
  margin-top: 0px;
padding-bottom: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

@media (min-width: 0px) {
[id="s-ea2e616f-24d4-4190-9f20-d11e6142a0fb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ea2e616f-24d4-4190-9f20-d11e6142a0fb"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ea2e616f-24d4-4190-9f20-d11e6142a0fb"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ea2e616f-24d4-4190-9f20-d11e6142a0fb"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ea2e616f-24d4-4190-9f20-d11e6142a0fb"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ea2e616f-24d4-4190-9f20-d11e6142a0fb"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ea2e616f-24d4-4190-9f20-d11e6142a0fb"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

#s-5246b3dc-f7f2-4ddf-a44b-b870e9a698a3 {
  margin-top: 19px;
margin-left: 60%;
margin-right: -11%;
max-width: 20px;
text-align: right;
}
@media (max-width: 767px){#s-5246b3dc-f7f2-4ddf-a44b-b870e9a698a3 {
  margin-right: 0%;
display: none;
}
#s-5246b3dc-f7f2-4ddf-a44b-b870e9a698a3, #wrap-s-5246b3dc-f7f2-4ddf-a44b-b870e9a698a3 { display:none !important; }}






  #s-5246b3dc-f7f2-4ddf-a44b-b870e9a698a3 img.shogun-image {
    

    
    
    
  }


#s-5246b3dc-f7f2-4ddf-a44b-b870e9a698a3 .shogun-image-content {
  
    align-items: center;
  
}

#s-358ec78e-b7f1-4b65-9566-aecdb39f5174 {
  margin-top: 20px;
}
@media (max-width: 767px){#s-358ec78e-b7f1-4b65-9566-aecdb39f5174 {
  margin-top: 20px;
}
}
#s-5373859a-bfe9-43ca-a6d3-3689ce87ea5d {
  text-align: left;
}

#s-c4b030c6-fde3-4698-895d-7271a95441a3 {
  text-align: left;
}
@media (min-width: 1200px){#s-c4b030c6-fde3-4698-895d-7271a95441a3 {
  display: none;
}
#s-c4b030c6-fde3-4698-895d-7271a95441a3, #wrap-s-c4b030c6-fde3-4698-895d-7271a95441a3 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c4b030c6-fde3-4698-895d-7271a95441a3 {
  display: none;
}
#s-c4b030c6-fde3-4698-895d-7271a95441a3, #wrap-s-c4b030c6-fde3-4698-895d-7271a95441a3 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c4b030c6-fde3-4698-895d-7271a95441a3 {
  display: none;
}
#s-c4b030c6-fde3-4698-895d-7271a95441a3, #wrap-s-c4b030c6-fde3-4698-895d-7271a95441a3 { display:none !important; }}@media (max-width: 767px){#s-c4b030c6-fde3-4698-895d-7271a95441a3 {
  display: none;
}
#s-c4b030c6-fde3-4698-895d-7271a95441a3, #wrap-s-c4b030c6-fde3-4698-895d-7271a95441a3 { display:none !important; }}
#s-ea1ea71c-7d54-4536-ab45-7a3fb20cfc38 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 950px;
background-position: center center;
}








#s-ea1ea71c-7d54-4536-ab45-7a3fb20cfc38 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ea1ea71c-7d54-4536-ab45-7a3fb20cfc38.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-239f7005-3df8-480c-85ea-7b2f3a6e4e03 {
  margin-top: 150px;
margin-bottom: 100px;
}
@media (max-width: 767px){#s-239f7005-3df8-480c-85ea-7b2f3a6e4e03 {
  margin-top: 40px;
margin-left: auto;
margin-bottom: 1px;
margin-right: auto;
max-width: 90%;
}
}
#s-d7cd2689-d426-46bf-9119-1e361d35d4aa {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d7cd2689-d426-46bf-9119-1e361d35d4aa {
  display: none;
}
#s-d7cd2689-d426-46bf-9119-1e361d35d4aa, #wrap-s-d7cd2689-d426-46bf-9119-1e361d35d4aa { display:none !important; }}@media (max-width: 767px){#s-d7cd2689-d426-46bf-9119-1e361d35d4aa {
  display: none;
}
#s-d7cd2689-d426-46bf-9119-1e361d35d4aa, #wrap-s-d7cd2689-d426-46bf-9119-1e361d35d4aa { display:none !important; }}
@media (min-width: 0px) {
[id="s-d7cd2689-d426-46bf-9119-1e361d35d4aa"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-d7cd2689-d426-46bf-9119-1e361d35d4aa"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-d7cd2689-d426-46bf-9119-1e361d35d4aa"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-d7cd2689-d426-46bf-9119-1e361d35d4aa"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-bf49805d-2650-44cc-bd94-c68bc0120f4d {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 40px;
padding-right: 30px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-bf49805d-2650-44cc-bd94-c68bc0120f4d {
  min-height: 707px;
}
}







#s-bf49805d-2650-44cc-bd94-c68bc0120f4d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bf49805d-2650-44cc-bd94-c68bc0120f4d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-888b5602-167b-4837-8b23-81b1d20fd87b {
  text-align: left;
}







  #s-888b5602-167b-4837-8b23-81b1d20fd87b img.shogun-image {
    

    
    
    
  }


#s-888b5602-167b-4837-8b23-81b1d20fd87b .shogun-image-content {
  
    align-items: center;
  
}

#s-e72d626c-a43e-4010-b0da-c104de3ee41c {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-2dde1421-f267-491d-ac95-54dfa127e1b3 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 30px;
padding-left: 30px;
padding-bottom: 40px;
padding-right: 30px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-2dde1421-f267-491d-ac95-54dfa127e1b3 {
  min-height: 707px;
}
}







#s-2dde1421-f267-491d-ac95-54dfa127e1b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2dde1421-f267-491d-ac95-54dfa127e1b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9c7a0b98-58b2-416c-9ebf-a20079dbbe47 {
  text-align: left;
}







  #s-9c7a0b98-58b2-416c-9ebf-a20079dbbe47 img.shogun-image {
    

    
    
    
  }


#s-9c7a0b98-58b2-416c-9ebf-a20079dbbe47 .shogun-image-content {
  
    align-items: center;
  
}

#s-b45e2d05-19f7-4cb5-8145-281c94873024 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-1609391d-d5c2-4da2-8049-f2c4da19b3a6 {
  text-align: left;
}

#s-bb38d0dc-db55-4aa0-8f8d-bbcb9953fd9e {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 40px;
padding-right: 30px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-bb38d0dc-db55-4aa0-8f8d-bbcb9953fd9e {
  min-height: 707px;
}
}







#s-bb38d0dc-db55-4aa0-8f8d-bbcb9953fd9e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bb38d0dc-db55-4aa0-8f8d-bbcb9953fd9e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bd6bdd05-cb62-46b0-96bb-b36ab672fa90 {
  text-align: left;
}







  #s-bd6bdd05-cb62-46b0-96bb-b36ab672fa90 img.shogun-image {
    

    
    
    
  }


#s-bd6bdd05-cb62-46b0-96bb-b36ab672fa90 .shogun-image-content {
  
    align-items: center;
  
}

#s-e892458c-723b-46d9-8693-8c95a4cf47f3 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-53c14082-9b99-4485-b514-7ed59d279f29 {
  text-align: left;
}

#s-2e7ad825-9851-464b-ba9f-69b9920851a2 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 40px;
padding-right: 30px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-2e7ad825-9851-464b-ba9f-69b9920851a2 {
  min-height: 707px;
}
}







#s-2e7ad825-9851-464b-ba9f-69b9920851a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2e7ad825-9851-464b-ba9f-69b9920851a2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0f334d42-14ad-4333-88e6-67fd80eb3cdc {
  text-align: left;
}







  #s-0f334d42-14ad-4333-88e6-67fd80eb3cdc img.shogun-image {
    

    
    
    
  }


#s-0f334d42-14ad-4333-88e6-67fd80eb3cdc .shogun-image-content {
  
    align-items: center;
  
}

#s-35b6e56b-3d5d-4626-9a6b-3b5ca47a7ee4 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-b94bec1b-b758-4736-825c-b2d04ae41049 {
  text-align: left;
}

#s-8ca24e81-4969-4870-914c-731df8c700b4 {
  margin-top: 50px;
margin-left: auto;
margin-right: auto;
padding-top: 30px;
padding-left: 30px;
padding-bottom: 40px;
padding-right: 30px;
min-height: 50px;
max-width: 90%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-8ca24e81-4969-4870-914c-731df8c700b4 {
  display: none;
}
#s-8ca24e81-4969-4870-914c-731df8c700b4, #wrap-s-8ca24e81-4969-4870-914c-731df8c700b4 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8ca24e81-4969-4870-914c-731df8c700b4 {
  display: none;
}
#s-8ca24e81-4969-4870-914c-731df8c700b4, #wrap-s-8ca24e81-4969-4870-914c-731df8c700b4 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8ca24e81-4969-4870-914c-731df8c700b4 {
  padding-bottom: 40px;
}
}@media (max-width: 767px){#s-8ca24e81-4969-4870-914c-731df8c700b4 {
  margin-top: 20px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}
}







#s-8ca24e81-4969-4870-914c-731df8c700b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8ca24e81-4969-4870-914c-731df8c700b4.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0cde579b-0f60-41d2-acd2-b0ff2c50dee9 {
  text-align: left;
}







  #s-0cde579b-0f60-41d2-acd2-b0ff2c50dee9 img.shogun-image {
    

    
    
    
  }


#s-0cde579b-0f60-41d2-acd2-b0ff2c50dee9 .shogun-image-content {
  
    align-items: center;
  
}

#s-b9293724-c49b-4935-a522-51087de41352 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-26d2e062-435c-413f-a73a-f71186f195a5 {
  margin-top: 50px;
margin-left: auto;
margin-right: auto;
padding-top: 30px;
padding-left: 30px;
padding-bottom: 40px;
padding-right: 30px;
max-width: 90%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-26d2e062-435c-413f-a73a-f71186f195a5 {
  display: none;
}
#s-26d2e062-435c-413f-a73a-f71186f195a5, #wrap-s-26d2e062-435c-413f-a73a-f71186f195a5 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-26d2e062-435c-413f-a73a-f71186f195a5 {
  display: none;
}
#s-26d2e062-435c-413f-a73a-f71186f195a5, #wrap-s-26d2e062-435c-413f-a73a-f71186f195a5 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-26d2e062-435c-413f-a73a-f71186f195a5 {
  
}
}@media (max-width: 767px){#s-26d2e062-435c-413f-a73a-f71186f195a5 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}
}







#s-26d2e062-435c-413f-a73a-f71186f195a5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-26d2e062-435c-413f-a73a-f71186f195a5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-80036077-b36e-4551-b7cc-61b11be2832e {
  text-align: left;
}







  #s-80036077-b36e-4551-b7cc-61b11be2832e img.shogun-image {
    

    
    
    
  }


#s-80036077-b36e-4551-b7cc-61b11be2832e .shogun-image-content {
  
    align-items: center;
  
}

#s-399870af-5794-4cf3-9b1b-eb3f211aa64b {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-12883b65-a9bd-4387-b83c-7ddf852f3061 {
  text-align: left;
}

#s-3e19c7d5-66ba-4f2e-93bd-722ecb644d0e {
  margin-top: 50px;
margin-left: auto;
margin-right: auto;
padding-top: 30px;
padding-left: 30px;
padding-bottom: 40px;
padding-right: 30px;
min-height: 50px;
max-width: 90%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-3e19c7d5-66ba-4f2e-93bd-722ecb644d0e {
  display: none;
}
#s-3e19c7d5-66ba-4f2e-93bd-722ecb644d0e, #wrap-s-3e19c7d5-66ba-4f2e-93bd-722ecb644d0e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3e19c7d5-66ba-4f2e-93bd-722ecb644d0e {
  display: none;
}
#s-3e19c7d5-66ba-4f2e-93bd-722ecb644d0e, #wrap-s-3e19c7d5-66ba-4f2e-93bd-722ecb644d0e { display:none !important; }}@media (max-width: 767px){#s-3e19c7d5-66ba-4f2e-93bd-722ecb644d0e {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}
}







#s-3e19c7d5-66ba-4f2e-93bd-722ecb644d0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e19c7d5-66ba-4f2e-93bd-722ecb644d0e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-86cd1dd2-f5c4-4d76-9dd7-9962555f749e {
  text-align: left;
}







  #s-86cd1dd2-f5c4-4d76-9dd7-9962555f749e img.shogun-image {
    

    
    
    
  }


#s-86cd1dd2-f5c4-4d76-9dd7-9962555f749e .shogun-image-content {
  
    align-items: center;
  
}

#s-8a9bedd3-7061-4f0a-967c-263603f439dc {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-714abfa1-ea33-4cc7-9201-f0f059fe7379 {
  text-align: left;
}

#s-f620f216-2f2a-4e59-b035-cc568e91ee85 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-top: 30px;
padding-left: 30px;
padding-bottom: 40px;
padding-right: 30px;
min-height: 50px;
max-width: 90%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-f620f216-2f2a-4e59-b035-cc568e91ee85 {
  display: none;
}
#s-f620f216-2f2a-4e59-b035-cc568e91ee85, #wrap-s-f620f216-2f2a-4e59-b035-cc568e91ee85 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f620f216-2f2a-4e59-b035-cc568e91ee85 {
  display: none;
}
#s-f620f216-2f2a-4e59-b035-cc568e91ee85, #wrap-s-f620f216-2f2a-4e59-b035-cc568e91ee85 { display:none !important; }}@media (max-width: 767px){#s-f620f216-2f2a-4e59-b035-cc568e91ee85 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}
}







#s-f620f216-2f2a-4e59-b035-cc568e91ee85 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f620f216-2f2a-4e59-b035-cc568e91ee85.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8aacec1d-5937-4f3b-8137-ab88efb56951 {
  text-align: left;
}







  #s-8aacec1d-5937-4f3b-8137-ab88efb56951 img.shogun-image {
    

    
    
    
  }


#s-8aacec1d-5937-4f3b-8137-ab88efb56951 .shogun-image-content {
  
    align-items: center;
  
}

#s-525ec9a9-38ff-4085-b570-d2f908f17490 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-6ebf249b-c8e7-4433-aa03-5ace75338f58 {
  text-align: left;
}

#s-7202f9b3-35fa-4867-8e70-229138dbec2f {
  min-height: 50px;
}








#s-7202f9b3-35fa-4867-8e70-229138dbec2f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7202f9b3-35fa-4867-8e70-229138dbec2f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bd7ba0d2-6593-473c-9216-75cc47c7541f {
  margin-top: 150px;
margin-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 991px){#s-bd7ba0d2-6593-473c-9216-75cc47c7541f {
  display: none;
}
#s-bd7ba0d2-6593-473c-9216-75cc47c7541f, #wrap-s-bd7ba0d2-6593-473c-9216-75cc47c7541f { display:none !important; }}@media (max-width: 767px){#s-bd7ba0d2-6593-473c-9216-75cc47c7541f {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 90%;
display: none;
}
#s-bd7ba0d2-6593-473c-9216-75cc47c7541f, #wrap-s-bd7ba0d2-6593-473c-9216-75cc47c7541f { display:none !important; }}
#s-627caa83-f01f-455e-838b-cc6202a96c86 {
  margin-top: 150px;
margin-bottom: 100px;
}
@media (min-width: 1200px){#s-627caa83-f01f-455e-838b-cc6202a96c86 {
  display: none;
}
#s-627caa83-f01f-455e-838b-cc6202a96c86, #wrap-s-627caa83-f01f-455e-838b-cc6202a96c86 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-627caa83-f01f-455e-838b-cc6202a96c86 {
  display: none;
}
#s-627caa83-f01f-455e-838b-cc6202a96c86, #wrap-s-627caa83-f01f-455e-838b-cc6202a96c86 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-627caa83-f01f-455e-838b-cc6202a96c86 {
  margin-top: 40px;
}
}@media (max-width: 767px){#s-627caa83-f01f-455e-838b-cc6202a96c86 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 90%;
}
}
#s-7856439a-d67e-4206-af2d-c5766232f32a {
  margin-left: auto;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 1200px){#s-7856439a-d67e-4206-af2d-c5766232f32a {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7856439a-d67e-4206-af2d-c5766232f32a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7856439a-d67e-4206-af2d-c5766232f32a {
  display: none;
}
#s-7856439a-d67e-4206-af2d-c5766232f32a, #wrap-s-7856439a-d67e-4206-af2d-c5766232f32a { display:none !important; }}@media (max-width: 767px){#s-7856439a-d67e-4206-af2d-c5766232f32a {
  display: none;
}
#s-7856439a-d67e-4206-af2d-c5766232f32a, #wrap-s-7856439a-d67e-4206-af2d-c5766232f32a { display:none !important; }}
@media (min-width: 0px) {
[id="s-7856439a-d67e-4206-af2d-c5766232f32a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7856439a-d67e-4206-af2d-c5766232f32a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7856439a-d67e-4206-af2d-c5766232f32a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7856439a-d67e-4206-af2d-c5766232f32a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d41558d7-921c-4285-9ce6-e9a3de7ad100 {
  margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-d41558d7-921c-4285-9ce6-e9a3de7ad100"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d41558d7-921c-4285-9ce6-e9a3de7ad100"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d41558d7-921c-4285-9ce6-e9a3de7ad100"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d41558d7-921c-4285-9ce6-e9a3de7ad100"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d41558d7-921c-4285-9ce6-e9a3de7ad100"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d41558d7-921c-4285-9ce6-e9a3de7ad100"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d41558d7-921c-4285-9ce6-e9a3de7ad100"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-6cf1b7f5-d893-436c-865e-a916ec48b885 {
  margin-right: -15px;
text-align: right;
}







  #s-6cf1b7f5-d893-436c-865e-a916ec48b885 img.shogun-image {
    

    
    
    
  }


#s-6cf1b7f5-d893-436c-865e-a916ec48b885 .shogun-image-content {
  
    align-items: center;
  
}

#s-03fd6b63-8313-4615-a7e6-ebe391f035fa {
  margin-top: 50px;
}

@media (min-width: 0px) {
[id="s-03fd6b63-8313-4615-a7e6-ebe391f035fa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-03fd6b63-8313-4615-a7e6-ebe391f035fa"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-03fd6b63-8313-4615-a7e6-ebe391f035fa"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-03fd6b63-8313-4615-a7e6-ebe391f035fa"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-03fd6b63-8313-4615-a7e6-ebe391f035fa"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-03fd6b63-8313-4615-a7e6-ebe391f035fa"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-03fd6b63-8313-4615-a7e6-ebe391f035fa"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-6f18d1c2-1c0d-4c4b-b85c-77284f5746e4 {
  margin-right: -15px;
text-align: right;
}







  #s-6f18d1c2-1c0d-4c4b-b85c-77284f5746e4 img.shogun-image {
    

    
    
    
  }


#s-6f18d1c2-1c0d-4c4b-b85c-77284f5746e4 .shogun-image-content {
  
    align-items: center;
  
}

#s-4346009c-227b-4497-aa2e-17617a16895c {
  margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-4346009c-227b-4497-aa2e-17617a16895c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4346009c-227b-4497-aa2e-17617a16895c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-4346009c-227b-4497-aa2e-17617a16895c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4346009c-227b-4497-aa2e-17617a16895c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-4346009c-227b-4497-aa2e-17617a16895c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4346009c-227b-4497-aa2e-17617a16895c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-4346009c-227b-4497-aa2e-17617a16895c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-9e1befd4-b269-459b-81d2-4cbdcf85a843 {
  margin-left: 0px;
margin-right: -15px;
text-align: right;
}







  #s-9e1befd4-b269-459b-81d2-4cbdcf85a843 img.shogun-image {
    

    
    
    
  }


#s-9e1befd4-b269-459b-81d2-4cbdcf85a843 .shogun-image-content {
  
    align-items: center;
  
}

#s-3db7474a-f727-4708-889d-5f89c88d73fe {
  margin-top: 80px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-3db7474a-f727-4708-889d-5f89c88d73fe"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3db7474a-f727-4708-889d-5f89c88d73fe"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-3db7474a-f727-4708-889d-5f89c88d73fe"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3db7474a-f727-4708-889d-5f89c88d73fe"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-3db7474a-f727-4708-889d-5f89c88d73fe"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3db7474a-f727-4708-889d-5f89c88d73fe"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-3db7474a-f727-4708-889d-5f89c88d73fe"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-7230316c-8f0b-48d6-bcf6-376f90081127 {
  margin-right: -15px;
text-align: right;
}







  #s-7230316c-8f0b-48d6-bcf6-376f90081127 img.shogun-image {
    

    
    
    
  }


#s-7230316c-8f0b-48d6-bcf6-376f90081127 .shogun-image-content {
  
    align-items: center;
  
}

#s-d289e130-2446-473f-a5a5-025a76747855 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 90%;
}
@media (min-width: 1200px){#s-d289e130-2446-473f-a5a5-025a76747855 {
  display: none;
}
#s-d289e130-2446-473f-a5a5-025a76747855, #wrap-s-d289e130-2446-473f-a5a5-025a76747855 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d289e130-2446-473f-a5a5-025a76747855 {
  display: none;
}
#s-d289e130-2446-473f-a5a5-025a76747855, #wrap-s-d289e130-2446-473f-a5a5-025a76747855 { display:none !important; }}
@media (min-width: 0px) {
[id="s-d289e130-2446-473f-a5a5-025a76747855"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d289e130-2446-473f-a5a5-025a76747855"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d289e130-2446-473f-a5a5-025a76747855"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d289e130-2446-473f-a5a5-025a76747855"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d289e130-2446-473f-a5a5-025a76747855"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d289e130-2446-473f-a5a5-025a76747855"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d289e130-2446-473f-a5a5-025a76747855"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-8072e4c3-977e-4a4c-85d3-2a7266dffe67 {
  margin-right: -15px;
text-align: right;
}
@media (max-width: 767px){#s-8072e4c3-977e-4a4c-85d3-2a7266dffe67 {
  margin-top: 0px;
margin-bottom: 20px;
text-align: center;
}
}






  #s-8072e4c3-977e-4a4c-85d3-2a7266dffe67 img.shogun-image {
    

    
    
    
  }


#s-8072e4c3-977e-4a4c-85d3-2a7266dffe67 .shogun-image-content {
  
    align-items: center;
  
}

#s-2ab26df2-e768-4005-88fa-86a948cbaa8e {
  margin-top: 40px;
margin-left: auto;
margin-right: auto;
max-width: 90%;
}
@media (min-width: 1200px){#s-2ab26df2-e768-4005-88fa-86a948cbaa8e {
  display: none;
}
#s-2ab26df2-e768-4005-88fa-86a948cbaa8e, #wrap-s-2ab26df2-e768-4005-88fa-86a948cbaa8e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2ab26df2-e768-4005-88fa-86a948cbaa8e {
  display: none;
}
#s-2ab26df2-e768-4005-88fa-86a948cbaa8e, #wrap-s-2ab26df2-e768-4005-88fa-86a948cbaa8e { display:none !important; }}
@media (min-width: 0px) {
[id="s-2ab26df2-e768-4005-88fa-86a948cbaa8e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2ab26df2-e768-4005-88fa-86a948cbaa8e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-2ab26df2-e768-4005-88fa-86a948cbaa8e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2ab26df2-e768-4005-88fa-86a948cbaa8e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-2ab26df2-e768-4005-88fa-86a948cbaa8e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2ab26df2-e768-4005-88fa-86a948cbaa8e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-2ab26df2-e768-4005-88fa-86a948cbaa8e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-909a8f7b-bd68-4f08-aa3f-012ed81df77a {
  margin-bottom: 20px;
margin-right: -15px;
text-align: center;
}







  #s-909a8f7b-bd68-4f08-aa3f-012ed81df77a img.shogun-image {
    

    
    
    
  }


#s-909a8f7b-bd68-4f08-aa3f-012ed81df77a .shogun-image-content {
  
    align-items: center;
  
}

#s-802fdbfb-71d5-40e7-96b3-ab9d6ea1bcd6 {
  margin-top: 40px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 90%;
}
@media (min-width: 1200px){#s-802fdbfb-71d5-40e7-96b3-ab9d6ea1bcd6 {
  display: none;
}
#s-802fdbfb-71d5-40e7-96b3-ab9d6ea1bcd6, #wrap-s-802fdbfb-71d5-40e7-96b3-ab9d6ea1bcd6 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-802fdbfb-71d5-40e7-96b3-ab9d6ea1bcd6 {
  display: none;
}
#s-802fdbfb-71d5-40e7-96b3-ab9d6ea1bcd6, #wrap-s-802fdbfb-71d5-40e7-96b3-ab9d6ea1bcd6 { display:none !important; }}
@media (min-width: 0px) {
[id="s-802fdbfb-71d5-40e7-96b3-ab9d6ea1bcd6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-802fdbfb-71d5-40e7-96b3-ab9d6ea1bcd6"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-802fdbfb-71d5-40e7-96b3-ab9d6ea1bcd6"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-802fdbfb-71d5-40e7-96b3-ab9d6ea1bcd6"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-802fdbfb-71d5-40e7-96b3-ab9d6ea1bcd6"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-802fdbfb-71d5-40e7-96b3-ab9d6ea1bcd6"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-802fdbfb-71d5-40e7-96b3-ab9d6ea1bcd6"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-065fae1b-19aa-437c-9f55-2f942d49b021 {
  margin-left: 0px;
margin-bottom: 20px;
margin-right: -15px;
text-align: center;
}







  #s-065fae1b-19aa-437c-9f55-2f942d49b021 img.shogun-image {
    

    
    
    
  }


#s-065fae1b-19aa-437c-9f55-2f942d49b021 .shogun-image-content {
  
    align-items: center;
  
}

#s-353848dd-b93a-416f-88c0-43a8c696ddd6 {
  margin-top: 40px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 90%;
}
@media (min-width: 1200px){#s-353848dd-b93a-416f-88c0-43a8c696ddd6 {
  display: none;
}
#s-353848dd-b93a-416f-88c0-43a8c696ddd6, #wrap-s-353848dd-b93a-416f-88c0-43a8c696ddd6 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-353848dd-b93a-416f-88c0-43a8c696ddd6 {
  display: none;
}
#s-353848dd-b93a-416f-88c0-43a8c696ddd6, #wrap-s-353848dd-b93a-416f-88c0-43a8c696ddd6 { display:none !important; }}
@media (min-width: 0px) {
[id="s-353848dd-b93a-416f-88c0-43a8c696ddd6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-353848dd-b93a-416f-88c0-43a8c696ddd6"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-353848dd-b93a-416f-88c0-43a8c696ddd6"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-353848dd-b93a-416f-88c0-43a8c696ddd6"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-353848dd-b93a-416f-88c0-43a8c696ddd6"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-353848dd-b93a-416f-88c0-43a8c696ddd6"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-353848dd-b93a-416f-88c0-43a8c696ddd6"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-ac92dff7-cd37-4e64-a3a6-8e3d37b969bd {
  margin-bottom: 20px;
margin-right: -15px;
text-align: center;
}







  #s-ac92dff7-cd37-4e64-a3a6-8e3d37b969bd img.shogun-image {
    

    
    
    
  }


#s-ac92dff7-cd37-4e64-a3a6-8e3d37b969bd .shogun-image-content {
  
    align-items: center;
  
}

#s-9fd7613c-23ba-41f4-90ba-1c2c55b49a30 {
  margin-top: 120px;
margin-left: auto;
margin-bottom: 100px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9fd7613c-23ba-41f4-90ba-1c2c55b49a30 {
  max-width: 90%;
display: none;
}
#s-9fd7613c-23ba-41f4-90ba-1c2c55b49a30, #wrap-s-9fd7613c-23ba-41f4-90ba-1c2c55b49a30 { display:none !important; }}@media (max-width: 767px){#s-9fd7613c-23ba-41f4-90ba-1c2c55b49a30 {
  max-width: 90%;
display: none;
}
#s-9fd7613c-23ba-41f4-90ba-1c2c55b49a30, #wrap-s-9fd7613c-23ba-41f4-90ba-1c2c55b49a30 { display:none !important; }}
#s-8de91c5e-6ff7-4efe-b2f8-8ed60b2fc66e {
  margin-top: 120px;
margin-left: auto;
margin-bottom: 100px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 1200px){#s-8de91c5e-6ff7-4efe-b2f8-8ed60b2fc66e {
  display: none;
}
#s-8de91c5e-6ff7-4efe-b2f8-8ed60b2fc66e, #wrap-s-8de91c5e-6ff7-4efe-b2f8-8ed60b2fc66e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8de91c5e-6ff7-4efe-b2f8-8ed60b2fc66e {
  display: none;
}
#s-8de91c5e-6ff7-4efe-b2f8-8ed60b2fc66e, #wrap-s-8de91c5e-6ff7-4efe-b2f8-8ed60b2fc66e { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8de91c5e-6ff7-4efe-b2f8-8ed60b2fc66e {
  max-width: 90%;
}
}@media (max-width: 767px){#s-8de91c5e-6ff7-4efe-b2f8-8ed60b2fc66e {
  margin-top: 50px;
margin-bottom: 50px;
max-width: 90%;
}
}
#s-235429e3-6611-40ed-b29a-d6b7b7830c62 {
  margin-left: auto;
margin-bottom: 110px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-235429e3-6611-40ed-b29a-d6b7b7830c62 {
  display: none;
}
#s-235429e3-6611-40ed-b29a-d6b7b7830c62, #wrap-s-235429e3-6611-40ed-b29a-d6b7b7830c62 { display:none !important; }}@media (max-width: 767px){#s-235429e3-6611-40ed-b29a-d6b7b7830c62 {
  display: none;
}
#s-235429e3-6611-40ed-b29a-d6b7b7830c62, #wrap-s-235429e3-6611-40ed-b29a-d6b7b7830c62 { display:none !important; }}
@media (min-width: 0px) {
[id="s-235429e3-6611-40ed-b29a-d6b7b7830c62"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-235429e3-6611-40ed-b29a-d6b7b7830c62"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-235429e3-6611-40ed-b29a-d6b7b7830c62"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-235429e3-6611-40ed-b29a-d6b7b7830c62"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-c6f2e65d-a2d6-4416-a876-6310993bfb81 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 310px;
background-position: center center;
}








#s-c6f2e65d-a2d6-4416-a876-6310993bfb81 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c6f2e65d-a2d6-4416-a876-6310993bfb81.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1f0cf520-340b-4eaa-8dc3-d2c7877c4f1e {
  text-align: center;
}
@media (min-width: 1200px){#s-1f0cf520-340b-4eaa-8dc3-d2c7877c4f1e {
  margin-top: -10%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1f0cf520-340b-4eaa-8dc3-d2c7877c4f1e {
  margin-top: -10%;
}
}






  #s-1f0cf520-340b-4eaa-8dc3-d2c7877c4f1e img.shogun-image {
    

    
    
    
  }


#s-1f0cf520-340b-4eaa-8dc3-d2c7877c4f1e .shogun-image-content {
  
    align-items: center;
  
}

#s-f4ad9546-4172-458f-827c-fa49f10ba040 {
  padding-left: 5%;
padding-bottom: 8%;
padding-right: 5%;
}

#s-07446c1c-1166-4a71-ae4c-0c696a2fd930 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 310px;
background-position: center center;
}








#s-07446c1c-1166-4a71-ae4c-0c696a2fd930 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-07446c1c-1166-4a71-ae4c-0c696a2fd930.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2e2c0f58-191b-49bd-9993-5c1b23f716bf {
  text-align: center;
}
@media (min-width: 1200px){#s-2e2c0f58-191b-49bd-9993-5c1b23f716bf {
  margin-top: -10%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2e2c0f58-191b-49bd-9993-5c1b23f716bf {
  margin-top: -10%;
}
}






  #s-2e2c0f58-191b-49bd-9993-5c1b23f716bf img.shogun-image {
    

    
    
    
  }


#s-2e2c0f58-191b-49bd-9993-5c1b23f716bf .shogun-image-content {
  
    align-items: center;
  
}

#s-dd76c096-bf12-41df-8369-b970e7e4f84e {
  margin-top: 0px;
padding-top: 0px;
padding-left: 5%;
padding-bottom: 80px;
padding-right: 5%;
}

#s-bbcb6596-64b6-4557-9e0d-80d05bd58b9a {
  text-align: left;
}

#s-790cafa7-3eed-4e63-894f-ada93994fa0e {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-790cafa7-3eed-4e63-894f-ada93994fa0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-790cafa7-3eed-4e63-894f-ada93994fa0e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-310e994c-1480-4160-a978-b8b008074a2a {
  text-align: center;
}
@media (min-width: 1200px){#s-310e994c-1480-4160-a978-b8b008074a2a {
  margin-top: -10%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-310e994c-1480-4160-a978-b8b008074a2a {
  margin-top: -10%;
}
}






  #s-310e994c-1480-4160-a978-b8b008074a2a img.shogun-image {
    

    
    
    
  }


#s-310e994c-1480-4160-a978-b8b008074a2a .shogun-image-content {
  
    align-items: center;
  
}

#s-73321a74-190d-4b13-8348-48a65464c39c {
  padding-left: 10px;
padding-bottom: 70px;
padding-right: 10px;
}

#s-312eb868-8002-4735-8cb8-e93ab449c19a {
  background-repeat: no-repeat;
margin-top: auto;
margin-bottom: auto;
background-position: center center;
}
@media (min-width: 1200px){#s-312eb868-8002-4735-8cb8-e93ab449c19a {
  display: none;
}
#s-312eb868-8002-4735-8cb8-e93ab449c19a, #wrap-s-312eb868-8002-4735-8cb8-e93ab449c19a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-312eb868-8002-4735-8cb8-e93ab449c19a {
  display: none;
}
#s-312eb868-8002-4735-8cb8-e93ab449c19a, #wrap-s-312eb868-8002-4735-8cb8-e93ab449c19a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-312eb868-8002-4735-8cb8-e93ab449c19a {
  margin-top: auto;
}
}@media (max-width: 767px){#s-312eb868-8002-4735-8cb8-e93ab449c19a {
  margin-left: auto;
margin-right: auto;
max-width: 90%;
}
}







#s-312eb868-8002-4735-8cb8-e93ab449c19a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-312eb868-8002-4735-8cb8-e93ab449c19a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-624bed21-ff20-433d-a33e-2267e8430298 {
  margin-bottom: -40px;
text-align: center;
}
@media (min-width: 1200px){#s-624bed21-ff20-433d-a33e-2267e8430298 {
  display: none;
}
#s-624bed21-ff20-433d-a33e-2267e8430298, #wrap-s-624bed21-ff20-433d-a33e-2267e8430298 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-624bed21-ff20-433d-a33e-2267e8430298 {
  display: none;
}
#s-624bed21-ff20-433d-a33e-2267e8430298, #wrap-s-624bed21-ff20-433d-a33e-2267e8430298 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-624bed21-ff20-433d-a33e-2267e8430298 {
  margin-bottom: 0px;
}
}@media (max-width: 767px){#s-624bed21-ff20-433d-a33e-2267e8430298 {
  margin-top: -20px;
margin-bottom: 0px;
}
}






  #s-624bed21-ff20-433d-a33e-2267e8430298 img.shogun-image {
    

    
    
    
  }


#s-624bed21-ff20-433d-a33e-2267e8430298 .shogun-image-content {
  
    align-items: center;
  
}

#s-e6db731d-dcf7-42a5-8ec4-35a736607a2f {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 220px;
padding-bottom: 80px;
padding-right: 220px;
}
@media (max-width: 767px){#s-e6db731d-dcf7-42a5-8ec4-35a736607a2f {
  margin-top: -10px;
padding-left: 21px;
padding-right: 21px;
}
}
#s-02feefbb-5ab5-45ab-9d49-77888424c1cd {
  background-repeat: no-repeat;
min-height: 50px;
background-position: center center;
}
@media (min-width: 1200px){#s-02feefbb-5ab5-45ab-9d49-77888424c1cd {
  display: none;
}
#s-02feefbb-5ab5-45ab-9d49-77888424c1cd, #wrap-s-02feefbb-5ab5-45ab-9d49-77888424c1cd { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-02feefbb-5ab5-45ab-9d49-77888424c1cd {
  display: none;
}
#s-02feefbb-5ab5-45ab-9d49-77888424c1cd, #wrap-s-02feefbb-5ab5-45ab-9d49-77888424c1cd { display:none !important; }}@media (max-width: 767px){#s-02feefbb-5ab5-45ab-9d49-77888424c1cd {
  margin-left: auto;
margin-right: auto;
max-width: 90%;
}
}







#s-02feefbb-5ab5-45ab-9d49-77888424c1cd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-02feefbb-5ab5-45ab-9d49-77888424c1cd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dd548203-458e-4af7-8df1-545dd6148b0f {
  margin-top: 0px;
margin-bottom: 90px;
text-align: center;
}
@media (min-width: 1200px){#s-dd548203-458e-4af7-8df1-545dd6148b0f {
  display: none;
}
#s-dd548203-458e-4af7-8df1-545dd6148b0f, #wrap-s-dd548203-458e-4af7-8df1-545dd6148b0f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dd548203-458e-4af7-8df1-545dd6148b0f {
  display: none;
}
#s-dd548203-458e-4af7-8df1-545dd6148b0f, #wrap-s-dd548203-458e-4af7-8df1-545dd6148b0f { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-dd548203-458e-4af7-8df1-545dd6148b0f {
  margin-bottom: 40px;
}
}@media (max-width: 767px){#s-dd548203-458e-4af7-8df1-545dd6148b0f {
  margin-bottom: 30px;
}
}






  #s-dd548203-458e-4af7-8df1-545dd6148b0f img.shogun-image {
    

    
    
    
  }


#s-dd548203-458e-4af7-8df1-545dd6148b0f .shogun-image-content {
  
    align-items: center;
  
}

#s-c0091136-90b4-47b7-84b9-9daa8fef97c5 {
  margin-top: 0px;
padding-top: 10px;
padding-bottom: 130px;
}
@media (min-width: 768px) and (max-width: 991px){#s-c0091136-90b4-47b7-84b9-9daa8fef97c5 {
  margin-bottom: 40px;
}
}@media (max-width: 767px){#s-c0091136-90b4-47b7-84b9-9daa8fef97c5 {
  margin-bottom: 50px;
}
}
#s-cfee7874-8666-4a0c-96ac-b155d7b92615 {
  background-repeat: no-repeat;
min-height: 50px;
background-position: center center;
}
@media (min-width: 1200px){#s-cfee7874-8666-4a0c-96ac-b155d7b92615 {
  display: none;
}
#s-cfee7874-8666-4a0c-96ac-b155d7b92615, #wrap-s-cfee7874-8666-4a0c-96ac-b155d7b92615 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cfee7874-8666-4a0c-96ac-b155d7b92615 {
  display: none;
}
#s-cfee7874-8666-4a0c-96ac-b155d7b92615, #wrap-s-cfee7874-8666-4a0c-96ac-b155d7b92615 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-cfee7874-8666-4a0c-96ac-b155d7b92615 {
  margin-top: 10px;
}
}@media (max-width: 767px){#s-cfee7874-8666-4a0c-96ac-b155d7b92615 {
  margin-left: auto;
margin-right: auto;
max-width: 90%;
}
}







#s-cfee7874-8666-4a0c-96ac-b155d7b92615 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cfee7874-8666-4a0c-96ac-b155d7b92615.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d810f8ea-fe77-4a3e-baac-462cf8a2d8fc {
  margin-top: 0px;
margin-bottom: -30px;
padding-top: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-d810f8ea-fe77-4a3e-baac-462cf8a2d8fc {
  display: none;
}
#s-d810f8ea-fe77-4a3e-baac-462cf8a2d8fc, #wrap-s-d810f8ea-fe77-4a3e-baac-462cf8a2d8fc { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d810f8ea-fe77-4a3e-baac-462cf8a2d8fc {
  display: none;
}
#s-d810f8ea-fe77-4a3e-baac-462cf8a2d8fc, #wrap-s-d810f8ea-fe77-4a3e-baac-462cf8a2d8fc { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d810f8ea-fe77-4a3e-baac-462cf8a2d8fc {
  margin-top: -30px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-d810f8ea-fe77-4a3e-baac-462cf8a2d8fc {
  margin-top: -30px;
margin-bottom: 0px;
}
}






  #s-d810f8ea-fe77-4a3e-baac-462cf8a2d8fc img.shogun-image {
    

    
    
    
  }


#s-d810f8ea-fe77-4a3e-baac-462cf8a2d8fc .shogun-image-content {
  
    align-items: center;
  
}

#s-749abdb6-e32b-4c45-a8ef-a0eb1f9ae206 {
  margin-top: 20px;
padding-top: 20px;
padding-left: 220px;
padding-bottom: 90px;
padding-right: 220px;
}
@media (min-width: 1200px){#s-749abdb6-e32b-4c45-a8ef-a0eb1f9ae206 {
  display: none;
}
#s-749abdb6-e32b-4c45-a8ef-a0eb1f9ae206, #wrap-s-749abdb6-e32b-4c45-a8ef-a0eb1f9ae206 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-749abdb6-e32b-4c45-a8ef-a0eb1f9ae206 {
  display: none;
}
#s-749abdb6-e32b-4c45-a8ef-a0eb1f9ae206, #wrap-s-749abdb6-e32b-4c45-a8ef-a0eb1f9ae206 { display:none !important; }}@media (max-width: 767px){#s-749abdb6-e32b-4c45-a8ef-a0eb1f9ae206 {
  margin-bottom: 40px;
padding-top: 20px;
padding-left: 21px;
padding-bottom: 41px;
padding-right: 21px;
}
}
#s-7877d588-2a9a-4de6-8600-b145856a3035 {
  margin-top: -190px;
min-height: 50px;
background-color: rgba(247, 247, 247, 0.6);
}
@media (min-width: 768px) and (max-width: 991px){#s-7877d588-2a9a-4de6-8600-b145856a3035 {
  margin-top: 20px;
}
}@media (max-width: 767px){#s-7877d588-2a9a-4de6-8600-b145856a3035 {
  margin-top: 20px;
}
}







#s-7877d588-2a9a-4de6-8600-b145856a3035 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7877d588-2a9a-4de6-8600-b145856a3035.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9319f4b3-44ec-46c4-9672-f59722d4b965 {
  margin-top: 180px;
margin-bottom: 120px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9319f4b3-44ec-46c4-9672-f59722d4b965 {
  display: none;
}
#s-9319f4b3-44ec-46c4-9672-f59722d4b965, #wrap-s-9319f4b3-44ec-46c4-9672-f59722d4b965 { display:none !important; }}@media (max-width: 767px){#s-9319f4b3-44ec-46c4-9672-f59722d4b965 {
  margin-left: auto;
margin-bottom: 1px;
margin-right: auto;
max-width: 90%;
display: none;
}
#s-9319f4b3-44ec-46c4-9672-f59722d4b965, #wrap-s-9319f4b3-44ec-46c4-9672-f59722d4b965 { display:none !important; }}
#s-cb7658c9-f402-43c0-89af-d1a4f39786ad {
  margin-top: 80px;
margin-bottom: 120px;
}
@media (min-width: 1200px){#s-cb7658c9-f402-43c0-89af-d1a4f39786ad {
  display: none;
}
#s-cb7658c9-f402-43c0-89af-d1a4f39786ad, #wrap-s-cb7658c9-f402-43c0-89af-d1a4f39786ad { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cb7658c9-f402-43c0-89af-d1a4f39786ad {
  display: none;
}
#s-cb7658c9-f402-43c0-89af-d1a4f39786ad, #wrap-s-cb7658c9-f402-43c0-89af-d1a4f39786ad { display:none !important; }}@media (max-width: 767px){#s-cb7658c9-f402-43c0-89af-d1a4f39786ad {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 1px;
margin-right: auto;
max-width: 90%;
}
}
#s-e9f26471-4a96-4a14-92a9-470551f4c9c9 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-e9f26471-4a96-4a14-92a9-470551f4c9c9 {
  max-width: 90%;
}
}@media (max-width: 767px){#s-e9f26471-4a96-4a14-92a9-470551f4c9c9 {
  margin-top: 50px;
max-width: 90%;
}
}
@media (min-width: 0px) {
[id="s-e9f26471-4a96-4a14-92a9-470551f4c9c9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e9f26471-4a96-4a14-92a9-470551f4c9c9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e9f26471-4a96-4a14-92a9-470551f4c9c9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e9f26471-4a96-4a14-92a9-470551f4c9c9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-6eb451f5-829a-43c1-acda-bdc12a909009 {
  padding-top: 120px;
padding-left: 110px;
padding-right: 110px;
}
@media (min-width: 768px) and (max-width: 991px){#s-6eb451f5-829a-43c1-acda-bdc12a909009 {
  padding-left: 0px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-6eb451f5-829a-43c1-acda-bdc12a909009 {
  padding-top: 0px;
padding-left: 21px;
padding-right: 21px;
}
}
#s-44a580bd-7a86-48b3-a431-5d63573fc395 {
  text-align: center;
}







  #s-44a580bd-7a86-48b3-a431-5d63573fc395 img.shogun-image {
    

    
    
    
  }


#s-44a580bd-7a86-48b3-a431-5d63573fc395 .shogun-image-content {
  
    align-items: center;
  
}

#s-25e1520e-ea16-4f18-b395-e326c27975ae {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-25e1520e-ea16-4f18-b395-e326c27975ae {
  max-width: 90%;
}
}@media (max-width: 767px){#s-25e1520e-ea16-4f18-b395-e326c27975ae {
  max-width: 90%;
}
}
@media (min-width: 0px) {
[id="s-25e1520e-ea16-4f18-b395-e326c27975ae"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-25e1520e-ea16-4f18-b395-e326c27975ae"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-25e1520e-ea16-4f18-b395-e326c27975ae"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-25e1520e-ea16-4f18-b395-e326c27975ae"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-25e1520e-ea16-4f18-b395-e326c27975ae"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-22187e74-1735-4b57-897b-fc5b7bbcf316 {
  text-align: center;
}







  #s-22187e74-1735-4b57-897b-fc5b7bbcf316 img.shogun-image {
    

    
    
    
  }


#s-22187e74-1735-4b57-897b-fc5b7bbcf316 .shogun-image-content {
  
    align-items: center;
  
}

#s-9681a64f-aa82-4aed-bf0b-36bcf0499209 {
  padding-top: 120px;
padding-left: 80px;
padding-bottom: 120px;
padding-right: 80px;
}
@media (max-width: 767px){#s-9681a64f-aa82-4aed-bf0b-36bcf0499209 {
  padding-top: 20px;
padding-bottom: 20px;
}
}
#s-9f0a5efa-825a-44ac-86cb-347028f3b403 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9f0a5efa-825a-44ac-86cb-347028f3b403 {
  max-width: 90%;
}
}@media (max-width: 767px){#s-9f0a5efa-825a-44ac-86cb-347028f3b403 {
  max-width: 90%;
}
}
@media (min-width: 0px) {
[id="s-9f0a5efa-825a-44ac-86cb-347028f3b403"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9f0a5efa-825a-44ac-86cb-347028f3b403"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9f0a5efa-825a-44ac-86cb-347028f3b403"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9f0a5efa-825a-44ac-86cb-347028f3b403"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f9612bf0-67e8-4254-8e47-57e06d8f383a {
  padding-top: 15%;
padding-left: 14%;
padding-bottom: 15%;
padding-right: 14%;
}
@media (min-width: 768px) and (max-width: 991px){#s-f9612bf0-67e8-4254-8e47-57e06d8f383a {
  padding-top: 71px;
padding-left: 1px;
padding-bottom: 1px;
padding-right: 1px;
}
}@media (max-width: 767px){#s-f9612bf0-67e8-4254-8e47-57e06d8f383a {
  padding-top: 15px;
padding-left: 14px;
padding-bottom: 15px;
padding-right: 14px;
}
}
#s-589e7b5c-cdc4-4c8c-af93-a14028a67e64 {
  text-align: center;
}







  #s-589e7b5c-cdc4-4c8c-af93-a14028a67e64 img.shogun-image {
    

    
    
    
  }


#s-589e7b5c-cdc4-4c8c-af93-a14028a67e64 .shogun-image-content {
  
    align-items: center;
  
}

#s-a72ea5bb-bdba-4922-8ce6-21131cfd7e39 {
  margin-top: 100px;
margin-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 991px){#s-a72ea5bb-bdba-4922-8ce6-21131cfd7e39 {
  display: none;
}
#s-a72ea5bb-bdba-4922-8ce6-21131cfd7e39, #wrap-s-a72ea5bb-bdba-4922-8ce6-21131cfd7e39 { display:none !important; }}@media (max-width: 767px){#s-a72ea5bb-bdba-4922-8ce6-21131cfd7e39 {
  display: none;
}
#s-a72ea5bb-bdba-4922-8ce6-21131cfd7e39, #wrap-s-a72ea5bb-bdba-4922-8ce6-21131cfd7e39 { display:none !important; }}
#s-18b1ba4e-23fa-4fe9-adc5-26168f4f8e25 {
  margin-top: 100px;
margin-bottom: 100px;
}
@media (min-width: 1200px){#s-18b1ba4e-23fa-4fe9-adc5-26168f4f8e25 {
  display: none;
}
#s-18b1ba4e-23fa-4fe9-adc5-26168f4f8e25, #wrap-s-18b1ba4e-23fa-4fe9-adc5-26168f4f8e25 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-18b1ba4e-23fa-4fe9-adc5-26168f4f8e25 {
  display: none;
}
#s-18b1ba4e-23fa-4fe9-adc5-26168f4f8e25, #wrap-s-18b1ba4e-23fa-4fe9-adc5-26168f4f8e25 { display:none !important; }}@media (max-width: 767px){#s-18b1ba4e-23fa-4fe9-adc5-26168f4f8e25 {
  margin-top: 20px;
margin-bottom: 20px;
}
}
#s-2c4fefa5-0f83-47a2-b02a-46f6807bbd4d {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-2c4fefa5-0f83-47a2-b02a-46f6807bbd4d {
  max-width: 90%;
}
}@media (max-width: 767px){#s-2c4fefa5-0f83-47a2-b02a-46f6807bbd4d {
  max-width: 90%;
}
}
@media (min-width: 0px) {
[id="s-2c4fefa5-0f83-47a2-b02a-46f6807bbd4d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2c4fefa5-0f83-47a2-b02a-46f6807bbd4d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2c4fefa5-0f83-47a2-b02a-46f6807bbd4d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2c4fefa5-0f83-47a2-b02a-46f6807bbd4d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-2c4fefa5-0f83-47a2-b02a-46f6807bbd4d"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-e0648851-ce06-4ec6-82b9-5c08738e2a8f {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-e0648851-ce06-4ec6-82b9-5c08738e2a8f {
  margin-top: 40px;
}
}






  #s-e0648851-ce06-4ec6-82b9-5c08738e2a8f img.shogun-image {
    

    
    
    
  }


#s-e0648851-ce06-4ec6-82b9-5c08738e2a8f .shogun-image-content {
  
    align-items: center;
  
}

#s-cbc382a4-1d85-44e7-8de8-f4f854c2b8f8 {
  padding-top: 70px;
padding-left: 80px;
padding-bottom: 70px;
padding-right: 80px;
}
@media (min-width: 768px) and (max-width: 991px){#s-cbc382a4-1d85-44e7-8de8-f4f854c2b8f8 {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-cbc382a4-1d85-44e7-8de8-f4f854c2b8f8 {
  padding-top: 20px;
padding-left: 30px;
padding-bottom: 20px;
padding-right: 30px;
}
}
#s-63092d72-9315-4296-8319-645ece140deb {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-63092d72-9315-4296-8319-645ece140deb {
  max-width: 90%;
}
}@media (max-width: 767px){#s-63092d72-9315-4296-8319-645ece140deb {
  max-width: 90%;
}
}
@media (min-width: 0px) {
[id="s-63092d72-9315-4296-8319-645ece140deb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-63092d72-9315-4296-8319-645ece140deb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-63092d72-9315-4296-8319-645ece140deb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-63092d72-9315-4296-8319-645ece140deb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0e351229-9877-4f29-a4b1-bf2a354d9918 {
  padding-top: 15%;
padding-left: 13%;
padding-bottom: 15%;
padding-right: 13%;
}
@media (min-width: 768px) and (max-width: 991px){#s-0e351229-9877-4f29-a4b1-bf2a354d9918 {
  padding-top: 1px;
padding-left: 1px;
padding-bottom: 1px;
padding-right: 1px;
}
}@media (max-width: 767px){#s-0e351229-9877-4f29-a4b1-bf2a354d9918 {
  padding-top: 15px;
padding-left: 13px;
padding-bottom: 15px;
padding-right: 13px;
}
}
#s-4f76b1cd-9204-44ca-8f84-d8fc0fa96d04 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-4f76b1cd-9204-44ca-8f84-d8fc0fa96d04 {
  margin-top: 40px;
}
}






  #s-4f76b1cd-9204-44ca-8f84-d8fc0fa96d04 img.shogun-image {
    

    
    
    
  }


#s-4f76b1cd-9204-44ca-8f84-d8fc0fa96d04 .shogun-image-content {
  
    align-items: center;
  
}

#s-ce4e8cca-7507-46df-bfa0-376c483bf721 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ce4e8cca-7507-46df-bfa0-376c483bf721 {
  max-width: 90%;
}
}@media (max-width: 767px){#s-ce4e8cca-7507-46df-bfa0-376c483bf721 {
  max-width: 90%;
}
}
@media (min-width: 0px) {
[id="s-ce4e8cca-7507-46df-bfa0-376c483bf721"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ce4e8cca-7507-46df-bfa0-376c483bf721"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ce4e8cca-7507-46df-bfa0-376c483bf721"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ce4e8cca-7507-46df-bfa0-376c483bf721"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-ce4e8cca-7507-46df-bfa0-376c483bf721"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-86dac220-8f14-4c55-add5-7cbe1e1d48ad {
  text-align: center;
}







  #s-86dac220-8f14-4c55-add5-7cbe1e1d48ad img.shogun-image {
    

    
    
    
  }


#s-86dac220-8f14-4c55-add5-7cbe1e1d48ad .shogun-image-content {
  
    align-items: center;
  
}

#s-5ad3851e-084f-412e-a446-945adf79d462 {
  padding-top: 25%;
padding-left: 14%;
padding-bottom: 25%;
padding-right: 14%;
}
@media (min-width: 768px) and (max-width: 991px){#s-5ad3851e-084f-412e-a446-945adf79d462 {
  padding-top: 1px;
padding-left: 1px;
padding-bottom: 1px;
padding-right: 1px;
}
}@media (max-width: 767px){#s-5ad3851e-084f-412e-a446-945adf79d462 {
  padding-top: 15px;
padding-left: 14px;
padding-bottom: 15px;
padding-right: 14px;
}
}
#s-bc0fe330-333f-4a0f-9d6e-9a5faa8cb21f {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-bc0fe330-333f-4a0f-9d6e-9a5faa8cb21f {
  max-width: 90%;
}
}@media (max-width: 767px){#s-bc0fe330-333f-4a0f-9d6e-9a5faa8cb21f {
  max-width: 90%;
}
}
@media (min-width: 0px) {
[id="s-bc0fe330-333f-4a0f-9d6e-9a5faa8cb21f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bc0fe330-333f-4a0f-9d6e-9a5faa8cb21f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bc0fe330-333f-4a0f-9d6e-9a5faa8cb21f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bc0fe330-333f-4a0f-9d6e-9a5faa8cb21f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-dfb2ba5b-cd82-45fb-9a2b-61f7668e71ad {
  padding-top: 15%;
padding-left: 13%;
padding-bottom: 15%;
padding-right: 13%;
}
@media (min-width: 768px) and (max-width: 991px){#s-dfb2ba5b-cd82-45fb-9a2b-61f7668e71ad {
  padding-top: 71px;
padding-left: 1px;
padding-bottom: 1px;
padding-right: 1px;
}
}@media (max-width: 767px){#s-dfb2ba5b-cd82-45fb-9a2b-61f7668e71ad {
  padding-top: 15px;
padding-left: 13px;
padding-bottom: 15px;
padding-right: 13px;
}
}
#s-b88a7770-dca4-40db-a947-3583c7fe001e {
  text-align: center;
}







  #s-b88a7770-dca4-40db-a947-3583c7fe001e img.shogun-image {
    

    
    
    
  }


#s-b88a7770-dca4-40db-a947-3583c7fe001e .shogun-image-content {
  
    align-items: center;
  
}

#s-0f55c31c-3771-40f1-b19b-99712747562c {
  margin-top: 100px;
margin-left: auto;
margin-bottom: 100px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-0f55c31c-3771-40f1-b19b-99712747562c {
  max-width: 90%;
}
}@media (max-width: 767px){#s-0f55c31c-3771-40f1-b19b-99712747562c {
  max-width: 90%;
}
}
@media (min-width: 0px) {
[id="s-0f55c31c-3771-40f1-b19b-99712747562c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0f55c31c-3771-40f1-b19b-99712747562c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0f55c31c-3771-40f1-b19b-99712747562c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0f55c31c-3771-40f1-b19b-99712747562c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-0f55c31c-3771-40f1-b19b-99712747562c"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-e34b0ade-ee69-420e-b96a-dd4ac10b431f {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-e34b0ade-ee69-420e-b96a-dd4ac10b431f {
  margin-top: 90px;
}
}






  #s-e34b0ade-ee69-420e-b96a-dd4ac10b431f img.shogun-image {
    

    
    
    
  }


#s-e34b0ade-ee69-420e-b96a-dd4ac10b431f .shogun-image-content {
  
    align-items: center;
  
}

#s-72fb6386-c503-4260-bd1d-a2de613f5628 {
  padding-top: 25px;
padding-left: 11%;
padding-bottom: 25px;
padding-right: 11%;
}
@media (min-width: 768px) and (max-width: 991px){#s-72fb6386-c503-4260-bd1d-a2de613f5628 {
  padding-top: 1px;
padding-left: 1px;
padding-bottom: 1px;
padding-right: 1px;
}
}@media (max-width: 767px){#s-72fb6386-c503-4260-bd1d-a2de613f5628 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}
}
#s-28dcae20-7c6c-4b3f-bddb-48dfa09b1852 {
  margin-top: 100px;
margin-left: auto;
margin-bottom: 100px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-28dcae20-7c6c-4b3f-bddb-48dfa09b1852 {
  max-width: 90%;
}
}@media (max-width: 767px){#s-28dcae20-7c6c-4b3f-bddb-48dfa09b1852 {
  max-width: 90%;
}
}
@media (min-width: 0px) {
[id="s-28dcae20-7c6c-4b3f-bddb-48dfa09b1852"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-28dcae20-7c6c-4b3f-bddb-48dfa09b1852"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-28dcae20-7c6c-4b3f-bddb-48dfa09b1852"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-28dcae20-7c6c-4b3f-bddb-48dfa09b1852"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-79a8c416-0209-4d4d-9e72-c9ce4ed80b42 {
  padding-top: 15%;
padding-left: 4%;
padding-bottom: 15%;
padding-right: 4%;
}
@media (min-width: 768px) and (max-width: 991px){#s-79a8c416-0209-4d4d-9e72-c9ce4ed80b42 {
  padding-top: 1px;
padding-bottom: 1px;
}
}@media (max-width: 767px){#s-79a8c416-0209-4d4d-9e72-c9ce4ed80b42 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 20px;
padding-bottom: 20px;
}
}
#s-a63f23e2-97da-4e4b-bff9-75dc97155e4c {
  text-align: center;
}







  #s-a63f23e2-97da-4e4b-bff9-75dc97155e4c img.shogun-image {
    

    
    
    
  }


#s-a63f23e2-97da-4e4b-bff9-75dc97155e4c .shogun-image-content {
  
    align-items: center;
  
}

#s-63ec97c0-876c-46c8-873e-31b1cbdaf627 {
  margin-top: 100px;
margin-left: auto;
margin-bottom: 100px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-63ec97c0-876c-46c8-873e-31b1cbdaf627 {
  max-width: 90%;
}
}@media (max-width: 767px){#s-63ec97c0-876c-46c8-873e-31b1cbdaf627 {
  max-width: 90%;
}
}
@media (min-width: 0px) {
[id="s-63ec97c0-876c-46c8-873e-31b1cbdaf627"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-63ec97c0-876c-46c8-873e-31b1cbdaf627"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-63ec97c0-876c-46c8-873e-31b1cbdaf627"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-63ec97c0-876c-46c8-873e-31b1cbdaf627"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-63ec97c0-876c-46c8-873e-31b1cbdaf627"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-22f84057-2720-4fb5-a804-da26a9ea857f {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-22f84057-2720-4fb5-a804-da26a9ea857f {
  margin-top: 60px;
}
}






  #s-22f84057-2720-4fb5-a804-da26a9ea857f img.shogun-image {
    

    
    
    
  }


#s-22f84057-2720-4fb5-a804-da26a9ea857f .shogun-image-content {
  
    align-items: center;
  
}

#s-93095e51-27af-48c6-8b52-aa55f2776437 {
  padding-top: 25px;
padding-left: 11%;
padding-bottom: 25px;
padding-right: 11%;
}
@media (min-width: 768px) and (max-width: 991px){#s-93095e51-27af-48c6-8b52-aa55f2776437 {
  padding-top: 1px;
padding-left: 1px;
padding-bottom: 1px;
padding-right: 1px;
}
}@media (max-width: 767px){#s-93095e51-27af-48c6-8b52-aa55f2776437 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}
}
#s-4182f77d-be05-4317-802b-83ed7074fa76 {
  margin-top: 100px;
margin-left: auto;
margin-bottom: 100px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-4182f77d-be05-4317-802b-83ed7074fa76 {
  max-width: 90%;
}
}@media (max-width: 767px){#s-4182f77d-be05-4317-802b-83ed7074fa76 {
  max-width: 90%;
}
}
@media (min-width: 0px) {
[id="s-4182f77d-be05-4317-802b-83ed7074fa76"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4182f77d-be05-4317-802b-83ed7074fa76"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4182f77d-be05-4317-802b-83ed7074fa76"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4182f77d-be05-4317-802b-83ed7074fa76"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e003e6d6-b3b2-4afc-a281-79b2e044d63e {
  padding-top: 15%;
padding-left: 13%;
padding-bottom: 15%;
padding-right: 13%;
}
@media (min-width: 768px) and (max-width: 991px){#s-e003e6d6-b3b2-4afc-a281-79b2e044d63e {
  padding-top: 1px;
padding-left: 1px;
padding-bottom: 1px;
padding-right: 1px;
}
}@media (max-width: 767px){#s-e003e6d6-b3b2-4afc-a281-79b2e044d63e {
  padding-top: 15px;
padding-left: 13px;
padding-bottom: 15px;
padding-right: 13px;
}
}
#s-ff90807e-d5fc-464e-9365-511e1ddc44a7 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-ff90807e-d5fc-464e-9365-511e1ddc44a7 {
  margin-top: 80px;
}
}






  #s-ff90807e-d5fc-464e-9365-511e1ddc44a7 img.shogun-image {
    

    
    
    
  }


#s-ff90807e-d5fc-464e-9365-511e1ddc44a7 .shogun-image-content {
  
    align-items: center;
  
}

#s-7f37e76d-d661-441b-b12a-61f09f31abd6 {
  margin-top: 100px;
margin-left: auto;
margin-bottom: 100px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-7f37e76d-d661-441b-b12a-61f09f31abd6 {
  max-width: 90%;
}
}@media (max-width: 767px){#s-7f37e76d-d661-441b-b12a-61f09f31abd6 {
  max-width: 90%;
}
}
@media (min-width: 0px) {
[id="s-7f37e76d-d661-441b-b12a-61f09f31abd6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7f37e76d-d661-441b-b12a-61f09f31abd6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7f37e76d-d661-441b-b12a-61f09f31abd6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7f37e76d-d661-441b-b12a-61f09f31abd6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-7f37e76d-d661-441b-b12a-61f09f31abd6"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-470c6bd3-63aa-4b33-9c62-83481134f457 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-470c6bd3-63aa-4b33-9c62-83481134f457 {
  margin-top: 70px;
}
}






  #s-470c6bd3-63aa-4b33-9c62-83481134f457 img.shogun-image {
    

    
    
    
  }


#s-470c6bd3-63aa-4b33-9c62-83481134f457 .shogun-image-content {
  
    align-items: center;
  
}

#s-00c6f933-8335-4077-834d-e0765661ded6 {
  padding-top: 25px;
padding-left: 10%;
padding-bottom: 25px;
padding-right: 10%;
}
@media (min-width: 768px) and (max-width: 991px){#s-00c6f933-8335-4077-834d-e0765661ded6 {
  padding-top: 1px;
padding-bottom: 1px;
}
}@media (max-width: 767px){#s-00c6f933-8335-4077-834d-e0765661ded6 {
  padding-top: 15px;
padding-bottom: 15px;
}
}
#s-532b105f-af67-4ff7-ab17-c099031a61bd {
  margin-top: 100px;
margin-left: auto;
margin-bottom: 100px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-532b105f-af67-4ff7-ab17-c099031a61bd {
  max-width: 90%;
}
}@media (max-width: 767px){#s-532b105f-af67-4ff7-ab17-c099031a61bd {
  max-width: 90%;
}
}
@media (min-width: 0px) {
[id="s-532b105f-af67-4ff7-ab17-c099031a61bd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-532b105f-af67-4ff7-ab17-c099031a61bd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-532b105f-af67-4ff7-ab17-c099031a61bd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-532b105f-af67-4ff7-ab17-c099031a61bd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-4528ba79-fe1d-4b66-b974-08df7354a54d {
  padding-top: 15%;
padding-left: 13%;
padding-bottom: 15%;
padding-right: 13%;
}
@media (min-width: 768px) and (max-width: 991px){#s-4528ba79-fe1d-4b66-b974-08df7354a54d {
  padding-top: 1px;
padding-left: 1px;
padding-bottom: 1px;
padding-right: 1px;
}
}@media (max-width: 767px){#s-4528ba79-fe1d-4b66-b974-08df7354a54d {
  padding-top: 15px;
padding-left: 13px;
padding-bottom: 15px;
padding-right: 13px;
}
}
#s-f9467411-9e77-416f-953f-57f27d1e2ac9 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-f9467411-9e77-416f-953f-57f27d1e2ac9 {
  margin-top: 0px;
}
}






  #s-f9467411-9e77-416f-953f-57f27d1e2ac9 img.shogun-image {
    

    
    
    
  }


#s-f9467411-9e77-416f-953f-57f27d1e2ac9 .shogun-image-content {
  
    align-items: center;
  
}

#s-d495e3a5-553a-4447-82ac-3cce6d809403 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d495e3a5-553a-4447-82ac-3cce6d809403 {
  max-width: 90%;
}
}@media (max-width: 767px){#s-d495e3a5-553a-4447-82ac-3cce6d809403 {
  max-width: 90%;
}
}
@media (min-width: 0px) {
[id="s-d495e3a5-553a-4447-82ac-3cce6d809403"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d495e3a5-553a-4447-82ac-3cce6d809403"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d495e3a5-553a-4447-82ac-3cce6d809403"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d495e3a5-553a-4447-82ac-3cce6d809403"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-d495e3a5-553a-4447-82ac-3cce6d809403"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-5d0aeacf-c724-4cd4-9aea-26bc98a427ae {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-5d0aeacf-c724-4cd4-9aea-26bc98a427ae {
  margin-top: 100px;
}
}






  #s-5d0aeacf-c724-4cd4-9aea-26bc98a427ae img.shogun-image {
    

    
    
    
  }


#s-5d0aeacf-c724-4cd4-9aea-26bc98a427ae .shogun-image-content {
  
    align-items: center;
  
}

#s-87adcbdd-4340-480a-9b1a-fb395e5d35ac {
  padding-top: 25px;
padding-left: 11%;
padding-bottom: 25px;
padding-right: 11%;
}
@media (min-width: 768px) and (max-width: 991px){#s-87adcbdd-4340-480a-9b1a-fb395e5d35ac {
  padding-top: 1px;
padding-left: 1px;
padding-bottom: 1px;
padding-right: 1px;
}
}@media (max-width: 767px){#s-87adcbdd-4340-480a-9b1a-fb395e5d35ac {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}
}
#s-b3c779e5-cde5-4d03-8097-23a4e89b9c10 {
  margin-top: 120px;
margin-left: auto;
margin-bottom: 120px;
margin-right: auto;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-b3c779e5-cde5-4d03-8097-23a4e89b9c10 {
  margin-top: 20px;
margin-bottom: 70px;
max-width: 60%;
}
}@media (max-width: 767px){#s-b3c779e5-cde5-4d03-8097-23a4e89b9c10 {
  margin-top: 50px;
margin-bottom: 40px;
max-width: 90%;
}
}






  #s-b3c779e5-cde5-4d03-8097-23a4e89b9c10 img.shogun-image {
    

    
    
    
  }


#s-b3c779e5-cde5-4d03-8097-23a4e89b9c10 .shogun-image-content {
  
    align-items: center;
  
}

#s-b468229f-7daf-4436-b5da-621ea30cd259 {
  text-align: left;
}

#s-64c2136e-be56-4cac-bb62-69549a1d6814 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 82%;
}








#s-64c2136e-be56-4cac-bb62-69549a1d6814 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-64c2136e-be56-4cac-bb62-69549a1d6814.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c9013c94-b850-41de-888a-4ca091c0a699 {
  margin-top: 80px;
margin-left: auto;
margin-bottom: 80px;
margin-right: auto;
}
@media (min-width: 768px) and (max-width: 991px){#s-c9013c94-b850-41de-888a-4ca091c0a699 {
  display: none;
}
#s-c9013c94-b850-41de-888a-4ca091c0a699, #wrap-s-c9013c94-b850-41de-888a-4ca091c0a699 { display:none !important; }}@media (max-width: 767px){#s-c9013c94-b850-41de-888a-4ca091c0a699 {
  display: none;
}
#s-c9013c94-b850-41de-888a-4ca091c0a699, #wrap-s-c9013c94-b850-41de-888a-4ca091c0a699 { display:none !important; }}
#s-866660b0-91df-493a-85df-ab9446441dd6 {
  margin-top: 80px;
margin-left: auto;
margin-bottom: 80px;
margin-right: auto;
}
@media (min-width: 1200px){#s-866660b0-91df-493a-85df-ab9446441dd6 {
  display: none;
}
#s-866660b0-91df-493a-85df-ab9446441dd6, #wrap-s-866660b0-91df-493a-85df-ab9446441dd6 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-866660b0-91df-493a-85df-ab9446441dd6 {
  display: none;
}
#s-866660b0-91df-493a-85df-ab9446441dd6, #wrap-s-866660b0-91df-493a-85df-ab9446441dd6 { display:none !important; }}@media (max-width: 767px){#s-866660b0-91df-493a-85df-ab9446441dd6 {
  margin-top: 40px;
margin-bottom: 50px;
}
}
#s-91ae8970-4f0e-44f5-838e-dec52fc45a2a {
  text-align: left;
}

#s-69747ad5-01a6-4c74-9a44-03b122cb302d {
  text-align: left;
}

#s-30ea19fc-770e-4453-8157-607f827153a6 {
  margin-top: 80px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-30ea19fc-770e-4453-8157-607f827153a6 {
  display: none;
}
#s-30ea19fc-770e-4453-8157-607f827153a6, #wrap-s-30ea19fc-770e-4453-8157-607f827153a6 { display:none !important; }}@media (max-width: 767px){#s-30ea19fc-770e-4453-8157-607f827153a6 {
  display: none;
}
#s-30ea19fc-770e-4453-8157-607f827153a6, #wrap-s-30ea19fc-770e-4453-8157-607f827153a6 { display:none !important; }}
#s-61cef38d-a613-4a74-a8c1-66f23d99ced1 {
  margin-top: 80px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 1200px){#s-61cef38d-a613-4a74-a8c1-66f23d99ced1 {
  display: none;
}
#s-61cef38d-a613-4a74-a8c1-66f23d99ced1, #wrap-s-61cef38d-a613-4a74-a8c1-66f23d99ced1 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-61cef38d-a613-4a74-a8c1-66f23d99ced1 {
  display: none;
}
#s-61cef38d-a613-4a74-a8c1-66f23d99ced1, #wrap-s-61cef38d-a613-4a74-a8c1-66f23d99ced1 { display:none !important; }}@media (max-width: 767px){#s-61cef38d-a613-4a74-a8c1-66f23d99ced1 {
  margin-top: 40px;
margin-bottom: 40px;
}
}
#s-3d3036b5-0d34-4a4f-9a66-ab4e9d71b786 {
  margin-left: auto;
margin-right: auto;
max-width: 1440px;
}

#s-fbbdfecb-1559-40c3-a92a-eabbf83c2217 {
  margin-top: 80px;
margin-bottom: 80px;
}
@media (min-width: 768px) and (max-width: 991px){#s-fbbdfecb-1559-40c3-a92a-eabbf83c2217 {
  display: none;
}
#s-fbbdfecb-1559-40c3-a92a-eabbf83c2217, #wrap-s-fbbdfecb-1559-40c3-a92a-eabbf83c2217 { display:none !important; }}@media (max-width: 767px){#s-fbbdfecb-1559-40c3-a92a-eabbf83c2217 {
  display: none;
}
#s-fbbdfecb-1559-40c3-a92a-eabbf83c2217, #wrap-s-fbbdfecb-1559-40c3-a92a-eabbf83c2217 { display:none !important; }}
#s-772f79d3-a83b-4f2a-8c20-f1916766d8b3 {
  margin-top: 80px;
margin-bottom: 80px;
}
@media (min-width: 1200px){#s-772f79d3-a83b-4f2a-8c20-f1916766d8b3 {
  display: none;
}
#s-772f79d3-a83b-4f2a-8c20-f1916766d8b3, #wrap-s-772f79d3-a83b-4f2a-8c20-f1916766d8b3 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-772f79d3-a83b-4f2a-8c20-f1916766d8b3 {
  display: none;
}
#s-772f79d3-a83b-4f2a-8c20-f1916766d8b3, #wrap-s-772f79d3-a83b-4f2a-8c20-f1916766d8b3 { display:none !important; }}@media (max-width: 767px){#s-772f79d3-a83b-4f2a-8c20-f1916766d8b3 {
  margin-top: 40px;
margin-bottom: 40px;
}
}
#s-3511b983-c871-41c0-b2bc-c285ddec5c47 {
  max-width: 1440px;
}
@media (min-width: 1200px){#s-3511b983-c871-41c0-b2bc-c285ddec5c47 {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3511b983-c871-41c0-b2bc-c285ddec5c47 {
  margin-left: auto;
margin-right: auto;
}
}
@media (min-width: 0px) {
[id="s-3511b983-c871-41c0-b2bc-c285ddec5c47"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3511b983-c871-41c0-b2bc-c285ddec5c47"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3511b983-c871-41c0-b2bc-c285ddec5c47"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3511b983-c871-41c0-b2bc-c285ddec5c47"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-c5ae881e-25c7-42f7-b979-1cfff3fce684"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c5ae881e-25c7-42f7-b979-1cfff3fce684"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-c5ae881e-25c7-42f7-b979-1cfff3fce684"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c5ae881e-25c7-42f7-b979-1cfff3fce684"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-c5ae881e-25c7-42f7-b979-1cfff3fce684"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c5ae881e-25c7-42f7-b979-1cfff3fce684"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-c5ae881e-25c7-42f7-b979-1cfff3fce684"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

#s-f9409a68-dcfb-4bbe-a292-04e50d005612 {
  margin-top: 13px;
text-align: center;
}
@media (max-width: 767px){#s-f9409a68-dcfb-4bbe-a292-04e50d005612 {
  text-align: left;
}
}






  #s-f9409a68-dcfb-4bbe-a292-04e50d005612 img.shogun-image {
    

    
    
    
  }


#s-f9409a68-dcfb-4bbe-a292-04e50d005612 .shogun-image-content {
  
    align-items: center;
  
}

@media (max-width: 767px){#s-a40fb501-3f1d-4f12-9188-986d9ca30b10 {
  margin-bottom: 40px;
}
}
@media (min-width: 0px) {
[id="s-dfc4b55b-6c18-4f82-90ea-67854bb879f7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dfc4b55b-6c18-4f82-90ea-67854bb879f7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-dfc4b55b-6c18-4f82-90ea-67854bb879f7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-dfc4b55b-6c18-4f82-90ea-67854bb879f7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-dfc4b55b-6c18-4f82-90ea-67854bb879f7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-dfc4b55b-6c18-4f82-90ea-67854bb879f7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-dfc4b55b-6c18-4f82-90ea-67854bb879f7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

#s-3a7ce446-254a-4909-bed6-7caf8efa66af {
  margin-top: 13px;
text-align: center;
}
@media (max-width: 767px){#s-3a7ce446-254a-4909-bed6-7caf8efa66af {
  text-align: left;
}
}






  #s-3a7ce446-254a-4909-bed6-7caf8efa66af img.shogun-image {
    

    
    
    
  }


#s-3a7ce446-254a-4909-bed6-7caf8efa66af .shogun-image-content {
  
    align-items: center;
  
}

#s-80edb24f-1b94-4695-b89d-c6974b38b81b {
  margin-top: 0px;
margin-bottom: 120px;
}
@media (max-width: 767px){#s-80edb24f-1b94-4695-b89d-c6974b38b81b {
  margin-bottom: 60px;
}
}
#s-f4694234-599d-42bd-a579-79ab36bcb7ca {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-f4694234-599d-42bd-a579-79ab36bcb7ca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f4694234-599d-42bd-a579-79ab36bcb7ca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-292a9699-c4b0-408f-a80a-d8fede25b817 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 82%;
}








#s-292a9699-c4b0-408f-a80a-d8fede25b817 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-292a9699-c4b0-408f-a80a-d8fede25b817.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7462615c-a4a3-46ae-a01e-69d2988e7509 {
  margin-top: 120px;
margin-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 991px){#s-7462615c-a4a3-46ae-a01e-69d2988e7509 {
  display: none;
}
#s-7462615c-a4a3-46ae-a01e-69d2988e7509, #wrap-s-7462615c-a4a3-46ae-a01e-69d2988e7509 { display:none !important; }}@media (max-width: 767px){#s-7462615c-a4a3-46ae-a01e-69d2988e7509 {
  display: none;
}
#s-7462615c-a4a3-46ae-a01e-69d2988e7509, #wrap-s-7462615c-a4a3-46ae-a01e-69d2988e7509 { display:none !important; }}
#s-dc8cf43b-6ad6-4445-ae29-db41e6a4653a {
  margin-top: 120px;
margin-bottom: 100px;
}
@media (min-width: 1200px){#s-dc8cf43b-6ad6-4445-ae29-db41e6a4653a {
  display: none;
}
#s-dc8cf43b-6ad6-4445-ae29-db41e6a4653a, #wrap-s-dc8cf43b-6ad6-4445-ae29-db41e6a4653a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dc8cf43b-6ad6-4445-ae29-db41e6a4653a {
  display: none;
}
#s-dc8cf43b-6ad6-4445-ae29-db41e6a4653a, #wrap-s-dc8cf43b-6ad6-4445-ae29-db41e6a4653a { display:none !important; }}@media (max-width: 767px){#s-dc8cf43b-6ad6-4445-ae29-db41e6a4653a {
  margin-top: 50px;
}
}
#s-7e066550-f0e2-442a-8962-a5bd3bc57dbf {
  margin-top: 0px;
margin-bottom: 80px;
text-align: center;
}
@media (max-width: 767px){#s-7e066550-f0e2-442a-8962-a5bd3bc57dbf {
  margin-bottom: 50px;
}
}






  #s-7e066550-f0e2-442a-8962-a5bd3bc57dbf img.shogun-image {
    

    
    
    
  }


#s-7e066550-f0e2-442a-8962-a5bd3bc57dbf .shogun-image-content {
  
    align-items: center;
  
}

#s-d5129d65-1f2d-43e5-acd6-f1ad5872c095 {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
background-color: rgba(103, 64, 255, 1);
}
@media (min-width: 1200px){#s-d5129d65-1f2d-43e5-acd6-f1ad5872c095 {
  display: none;
}
#s-d5129d65-1f2d-43e5-acd6-f1ad5872c095, #wrap-s-d5129d65-1f2d-43e5-acd6-f1ad5872c095 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d5129d65-1f2d-43e5-acd6-f1ad5872c095 {
  display: none;
}
#s-d5129d65-1f2d-43e5-acd6-f1ad5872c095, #wrap-s-d5129d65-1f2d-43e5-acd6-f1ad5872c095 { display:none !important; }}







#s-d5129d65-1f2d-43e5-acd6-f1ad5872c095 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d5129d65-1f2d-43e5-acd6-f1ad5872c095.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c7992fb6-dc68-4cf0-9333-d96909f0d7df {
  margin-bottom: 20px;
padding-top: 5%;
padding-left: 5%;
padding-bottom: 3px;
text-align: left;
}
@media (max-width: 767px){#s-c7992fb6-dc68-4cf0-9333-d96909f0d7df {
  margin-left: 2%;
max-width: 25%;
}
}






  #s-c7992fb6-dc68-4cf0-9333-d96909f0d7df img.shogun-image {
    

    
    
    
  }


#s-c7992fb6-dc68-4cf0-9333-d96909f0d7df .shogun-image-content {
  
    align-items: center;
  
}

#s-a8495d92-4e94-449a-a8be-bfaf7e404d84 {
  padding-left: 30px;
}
@media (min-width: 768px) and (max-width: 991px){#s-a8495d92-4e94-449a-a8be-bfaf7e404d84 {
  display: none;
}
#s-a8495d92-4e94-449a-a8be-bfaf7e404d84, #wrap-s-a8495d92-4e94-449a-a8be-bfaf7e404d84 { display:none !important; }}@media (max-width: 767px){#s-a8495d92-4e94-449a-a8be-bfaf7e404d84 {
  display: none;
}
#s-a8495d92-4e94-449a-a8be-bfaf7e404d84, #wrap-s-a8495d92-4e94-449a-a8be-bfaf7e404d84 { display:none !important; }}
#s-d47bfbeb-454d-4687-bb1d-57d9db13303a {
  padding-left: 30px;
}
@media (min-width: 1200px){#s-d47bfbeb-454d-4687-bb1d-57d9db13303a {
  display: none;
}
#s-d47bfbeb-454d-4687-bb1d-57d9db13303a, #wrap-s-d47bfbeb-454d-4687-bb1d-57d9db13303a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d47bfbeb-454d-4687-bb1d-57d9db13303a {
  display: none;
}
#s-d47bfbeb-454d-4687-bb1d-57d9db13303a, #wrap-s-d47bfbeb-454d-4687-bb1d-57d9db13303a { display:none !important; }}@media (max-width: 767px){#s-d47bfbeb-454d-4687-bb1d-57d9db13303a {
  margin-top: 0px;
margin-bottom: 20px;
padding-left: 30px;
padding-right: 30px;
}
}
#s-3707ea85-df41-4409-ad74-b58911696dbb {
  margin-top: 0px;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 43px;
padding-right: 10px;
}

#s-7d8dee5f-e78e-4b07-8866-329e9316938b {
  min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-7d8dee5f-e78e-4b07-8866-329e9316938b {
  display: none;
}
#s-7d8dee5f-e78e-4b07-8866-329e9316938b, #wrap-s-7d8dee5f-e78e-4b07-8866-329e9316938b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7d8dee5f-e78e-4b07-8866-329e9316938b {
  display: none;
}
#s-7d8dee5f-e78e-4b07-8866-329e9316938b, #wrap-s-7d8dee5f-e78e-4b07-8866-329e9316938b { display:none !important; }}







#s-7d8dee5f-e78e-4b07-8866-329e9316938b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7d8dee5f-e78e-4b07-8866-329e9316938b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-174bfb90-8e78-4685-815e-50392bb2fe09 {
  margin-bottom: 20px;
padding-top: 5%;
padding-left: 5%;
padding-bottom: 3px;
text-align: left;
}
@media (max-width: 767px){#s-174bfb90-8e78-4685-815e-50392bb2fe09 {
  margin-left: 2%;
max-width: 25%;
}
}






  #s-174bfb90-8e78-4685-815e-50392bb2fe09 img.shogun-image {
    

    
    
    
  }


#s-174bfb90-8e78-4685-815e-50392bb2fe09 .shogun-image-content {
  
    align-items: center;
  
}

#s-0ec142b6-c09b-4b7f-bb00-1ef2b803d5f1 {
  padding-left: 30px;
}
@media (min-width: 768px) and (max-width: 991px){#s-0ec142b6-c09b-4b7f-bb00-1ef2b803d5f1 {
  display: none;
}
#s-0ec142b6-c09b-4b7f-bb00-1ef2b803d5f1, #wrap-s-0ec142b6-c09b-4b7f-bb00-1ef2b803d5f1 { display:none !important; }}@media (max-width: 767px){#s-0ec142b6-c09b-4b7f-bb00-1ef2b803d5f1 {
  display: none;
}
#s-0ec142b6-c09b-4b7f-bb00-1ef2b803d5f1, #wrap-s-0ec142b6-c09b-4b7f-bb00-1ef2b803d5f1 { display:none !important; }}
#s-d7f7d72c-3084-4715-b712-481df243ffa5 {
  padding-left: 30px;
}
@media (min-width: 1200px){#s-d7f7d72c-3084-4715-b712-481df243ffa5 {
  display: none;
}
#s-d7f7d72c-3084-4715-b712-481df243ffa5, #wrap-s-d7f7d72c-3084-4715-b712-481df243ffa5 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d7f7d72c-3084-4715-b712-481df243ffa5 {
  display: none;
}
#s-d7f7d72c-3084-4715-b712-481df243ffa5, #wrap-s-d7f7d72c-3084-4715-b712-481df243ffa5 { display:none !important; }}@media (max-width: 767px){#s-d7f7d72c-3084-4715-b712-481df243ffa5 {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-7786707d-9ec0-4bc2-95d5-f30fa32c749c {
  margin-top: 20px;
margin-bottom: 40px;
padding-left: 30px;
}

#s-de84c0cb-3714-46aa-b1ac-655e012c6260 {
  padding-top: 0px;
padding-left: 30px;
padding-bottom: 20px;
padding-right: 10px;
}

#s-d63b87e5-ea00-4ce8-baa8-b7ed1f6fe35c {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d63b87e5-ea00-4ce8-baa8-b7ed1f6fe35c {
  display: none;
}
#s-d63b87e5-ea00-4ce8-baa8-b7ed1f6fe35c, #wrap-s-d63b87e5-ea00-4ce8-baa8-b7ed1f6fe35c { display:none !important; }}@media (max-width: 767px){#s-d63b87e5-ea00-4ce8-baa8-b7ed1f6fe35c {
  display: none;
}
#s-d63b87e5-ea00-4ce8-baa8-b7ed1f6fe35c, #wrap-s-d63b87e5-ea00-4ce8-baa8-b7ed1f6fe35c { display:none !important; }}
@media (min-width: 0px) {
[id="s-d63b87e5-ea00-4ce8-baa8-b7ed1f6fe35c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d63b87e5-ea00-4ce8-baa8-b7ed1f6fe35c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d63b87e5-ea00-4ce8-baa8-b7ed1f6fe35c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d63b87e5-ea00-4ce8-baa8-b7ed1f6fe35c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-b44d698a-5892-4079-ac18-472f2b507afc {
  min-height: 50px;
background-color: rgba(103, 64, 255, 1);
}








#s-b44d698a-5892-4079-ac18-472f2b507afc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b44d698a-5892-4079-ac18-472f2b507afc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f5f0138a-d94f-4604-85d2-5665972dc1ef {
  margin-bottom: 20px;
padding-top: 5%;
padding-left: 5%;
padding-bottom: 3px;
text-align: left;
}







  #s-f5f0138a-d94f-4604-85d2-5665972dc1ef img.shogun-image {
    

    
    
    
  }


#s-f5f0138a-d94f-4604-85d2-5665972dc1ef .shogun-image-content {
  
    align-items: center;
  
}

#s-0f115762-ccb0-4de6-a7a6-9bbf9685f0f1 {
  padding-left: 30px;
}

#s-e2fdf99a-e581-4ea3-8fb3-09aedfa4c295 {
  margin-top: 20px;
margin-bottom: 40px;
padding-left: 30px;
}

#s-a6a14c83-c8cd-4f9b-b932-77628c1adf2f {
  padding-top: 0px;
padding-left: 30px;
padding-bottom: 35px;
padding-right: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-a6a14c83-c8cd-4f9b-b932-77628c1adf2f {
  padding-bottom: 200px;
}
}
#s-6bba3c8b-f819-46a8-a510-e42dbe445837 {
  min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}








#s-6bba3c8b-f819-46a8-a510-e42dbe445837 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6bba3c8b-f819-46a8-a510-e42dbe445837.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-aa91a52b-2c0d-46a0-94cb-d9f7a1df5dc1 {
  margin-bottom: 20px;
padding-top: 5%;
padding-left: 5%;
padding-bottom: 3px;
text-align: left;
}







  #s-aa91a52b-2c0d-46a0-94cb-d9f7a1df5dc1 img.shogun-image {
    

    
    
    
  }


#s-aa91a52b-2c0d-46a0-94cb-d9f7a1df5dc1 .shogun-image-content {
  
    align-items: center;
  
}

#s-503cea3c-c234-439e-8032-f94318044167 {
  padding-left: 30px;
}

#s-263f29a2-61a0-43ce-b2ab-fb261dd020f7 {
  margin-top: 20px;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 43px;
padding-right: 10px;
}

#s-b1c223dd-8cff-4411-a595-00246ace4d91 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 180px;
margin-right: auto;
min-height: 50px;
max-width: 1440px;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-b1c223dd-8cff-4411-a595-00246ace4d91 {
  margin-bottom: 90px;
}
}







#s-b1c223dd-8cff-4411-a595-00246ace4d91 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b1c223dd-8cff-4411-a595-00246ace4d91.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ec4b4019-bcb7-451b-b294-c221b9f16b8b {
  padding-top: 4%;
padding-left: 5%;
padding-bottom: 4%;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ec4b4019-bcb7-451b-b294-c221b9f16b8b {
  padding-top: 41px;
padding-left: 21px;
padding-bottom: 41px;
padding-right: 21px;
display: none;
}
#s-ec4b4019-bcb7-451b-b294-c221b9f16b8b, #wrap-s-ec4b4019-bcb7-451b-b294-c221b9f16b8b { display:none !important; }}@media (max-width: 767px){#s-ec4b4019-bcb7-451b-b294-c221b9f16b8b {
  display: none;
}
#s-ec4b4019-bcb7-451b-b294-c221b9f16b8b, #wrap-s-ec4b4019-bcb7-451b-b294-c221b9f16b8b { display:none !important; }}
#s-64e20181-17bf-4078-93fc-772df3ae4e4e {
  padding-top: 4%;
padding-left: 5%;
padding-bottom: 4%;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
}
@media (min-width: 1200px){#s-64e20181-17bf-4078-93fc-772df3ae4e4e {
  display: none;
}
#s-64e20181-17bf-4078-93fc-772df3ae4e4e, #wrap-s-64e20181-17bf-4078-93fc-772df3ae4e4e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-64e20181-17bf-4078-93fc-772df3ae4e4e {
  display: none;
}
#s-64e20181-17bf-4078-93fc-772df3ae4e4e, #wrap-s-64e20181-17bf-4078-93fc-772df3ae4e4e { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-64e20181-17bf-4078-93fc-772df3ae4e4e {
  padding-top: 41px;
padding-left: 21px;
padding-bottom: 41px;
padding-right: 21px;
}
}@media (max-width: 767px){#s-64e20181-17bf-4078-93fc-772df3ae4e4e {
  padding-left: 5%;
padding-right: 5%;
}
}
#s-9438115d-a14e-4b46-b5bc-e136b63a2e6a {
  margin-bottom: 40px;
text-align: center;
}
@media (max-width: 767px){#s-9438115d-a14e-4b46-b5bc-e136b63a2e6a {
  margin-left: auto;
margin-right: auto;
max-width: 80%;
}
}






  #s-9438115d-a14e-4b46-b5bc-e136b63a2e6a img.shogun-image {
    

    
    
    
  }


#s-9438115d-a14e-4b46-b5bc-e136b63a2e6a .shogun-image-content {
  
    align-items: center;
  
}

#s-f29b1c71-0fc7-49d2-9d69-d73996599636 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: -10px;
min-height: 50px;
background-position: center center;
}








#s-f29b1c71-0fc7-49d2-9d69-d73996599636 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f29b1c71-0fc7-49d2-9d69-d73996599636.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cbaea834-a74a-4728-828d-aff2f7859194 {
  margin-top: 100px;
margin-bottom: 120px;
}
@media (min-width: 768px) and (max-width: 991px){#s-cbaea834-a74a-4728-828d-aff2f7859194 {
  display: none;
}
#s-cbaea834-a74a-4728-828d-aff2f7859194, #wrap-s-cbaea834-a74a-4728-828d-aff2f7859194 { display:none !important; }}@media (max-width: 767px){#s-cbaea834-a74a-4728-828d-aff2f7859194 {
  display: none;
}
#s-cbaea834-a74a-4728-828d-aff2f7859194, #wrap-s-cbaea834-a74a-4728-828d-aff2f7859194 { display:none !important; }}
#s-d65f0cc3-be77-4ec5-b298-f5dc6849afb2 {
  margin-top: 120px;
margin-bottom: 120px;
}
@media (min-width: 1200px){#s-d65f0cc3-be77-4ec5-b298-f5dc6849afb2 {
  display: none;
}
#s-d65f0cc3-be77-4ec5-b298-f5dc6849afb2, #wrap-s-d65f0cc3-be77-4ec5-b298-f5dc6849afb2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d65f0cc3-be77-4ec5-b298-f5dc6849afb2 {
  display: none;
}
#s-d65f0cc3-be77-4ec5-b298-f5dc6849afb2, #wrap-s-d65f0cc3-be77-4ec5-b298-f5dc6849afb2 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d65f0cc3-be77-4ec5-b298-f5dc6849afb2 {
  margin-top: 50px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-d65f0cc3-be77-4ec5-b298-f5dc6849afb2 {
  margin-top: 50px;
margin-bottom: 50px;
}
}
#s-26eaaf10-9615-40a4-b620-0c1b036646ec {
  margin-left: auto;
margin-bottom: 120px;
margin-right: auto;
max-width: 82%;
}
@media (min-width: 768px) and (max-width: 991px){#s-26eaaf10-9615-40a4-b620-0c1b036646ec {
  display: none;
}
#s-26eaaf10-9615-40a4-b620-0c1b036646ec, #wrap-s-26eaaf10-9615-40a4-b620-0c1b036646ec { display:none !important; }}@media (max-width: 767px){#s-26eaaf10-9615-40a4-b620-0c1b036646ec {
  display: none;
}
#s-26eaaf10-9615-40a4-b620-0c1b036646ec, #wrap-s-26eaaf10-9615-40a4-b620-0c1b036646ec { display:none !important; }}
@media (min-width: 0px) {
[id="s-26eaaf10-9615-40a4-b620-0c1b036646ec"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-26eaaf10-9615-40a4-b620-0c1b036646ec"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-26eaaf10-9615-40a4-b620-0c1b036646ec"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-26eaaf10-9615-40a4-b620-0c1b036646ec"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-73cd081e-d5e3-4e59-877a-0acfb391bc2e {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-73cd081e-d5e3-4e59-877a-0acfb391bc2e {
  margin-top: 180px;
}
}






  #s-73cd081e-d5e3-4e59-877a-0acfb391bc2e img.shogun-image {
    

    
    
    
  }


#s-73cd081e-d5e3-4e59-877a-0acfb391bc2e .shogun-image-content {
  
    align-items: center;
  
}

#s-fea2e1a2-3d87-4292-be60-d5493ccf3b14 {
  margin-top: 20px;
margin-left: 2%;
margin-right: 2%;
}

#s-d245a876-305a-42d6-b0be-d7f774282502 {
  margin-top: 20px;
padding-left: 2%;
padding-right: 2%;
}

#s-3ea666f3-20c6-426d-ba91-167c1ba674fc {
  margin-left: auto;
margin-right: auto;
max-width: 90%;
text-align: center;
}
@media (min-width: 1200px){#s-3ea666f3-20c6-426d-ba91-167c1ba674fc {
  display: none;
}
#s-3ea666f3-20c6-426d-ba91-167c1ba674fc, #wrap-s-3ea666f3-20c6-426d-ba91-167c1ba674fc { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3ea666f3-20c6-426d-ba91-167c1ba674fc {
  display: none;
}
#s-3ea666f3-20c6-426d-ba91-167c1ba674fc, #wrap-s-3ea666f3-20c6-426d-ba91-167c1ba674fc { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3ea666f3-20c6-426d-ba91-167c1ba674fc {
  margin-top: 80px;
margin-bottom: 80px;
}
}






  #s-3ea666f3-20c6-426d-ba91-167c1ba674fc img.shogun-image {
    

    
    
    
  }


#s-3ea666f3-20c6-426d-ba91-167c1ba674fc .shogun-image-content {
  
    align-items: center;
  
}

#s-e0fecb76-a214-4706-be36-af3459bc4dc1 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
max-width: 90%;
}
@media (min-width: 1200px){#s-e0fecb76-a214-4706-be36-af3459bc4dc1 {
  display: none;
}
#s-e0fecb76-a214-4706-be36-af3459bc4dc1, #wrap-s-e0fecb76-a214-4706-be36-af3459bc4dc1 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e0fecb76-a214-4706-be36-af3459bc4dc1 {
  display: none;
}
#s-e0fecb76-a214-4706-be36-af3459bc4dc1, #wrap-s-e0fecb76-a214-4706-be36-af3459bc4dc1 { display:none !important; }}
#s-f60fc739-671b-4cbf-8e50-66cb000fa7c7 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
max-width: 90%;
}
@media (min-width: 1200px){#s-f60fc739-671b-4cbf-8e50-66cb000fa7c7 {
  display: none;
}
#s-f60fc739-671b-4cbf-8e50-66cb000fa7c7, #wrap-s-f60fc739-671b-4cbf-8e50-66cb000fa7c7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f60fc739-671b-4cbf-8e50-66cb000fa7c7 {
  display: none;
}
#s-f60fc739-671b-4cbf-8e50-66cb000fa7c7, #wrap-s-f60fc739-671b-4cbf-8e50-66cb000fa7c7 { display:none !important; }}
#s-b65083a4-3a83-44e4-b335-cd8be630cadf {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-b65083a4-3a83-44e4-b335-cd8be630cadf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b65083a4-3a83-44e4-b335-cd8be630cadf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-891695f9-4901-492d-9624-68f88eeca53c {
  margin-top: 150px;
margin-bottom: 150px;
}
@media (min-width: 768px) and (max-width: 991px){#s-891695f9-4901-492d-9624-68f88eeca53c {
  margin-top: 50px;
margin-bottom: 50px;
}
}@media (max-width: 767px){#s-891695f9-4901-492d-9624-68f88eeca53c {
  margin-top: 50px;
margin-bottom: 50px;
padding-left: 20px;
padding-right: 20px;
}
}
#s-a0c25e5d-0383-4b27-938b-4b6d115a0bb2 {
  margin-left: auto;
margin-bottom: 150px;
margin-right: auto;
max-width: 82%;
}
@media (min-width: 768px) and (max-width: 991px){#s-a0c25e5d-0383-4b27-938b-4b6d115a0bb2 {
  display: none;
}
#s-a0c25e5d-0383-4b27-938b-4b6d115a0bb2, #wrap-s-a0c25e5d-0383-4b27-938b-4b6d115a0bb2 { display:none !important; }}@media (max-width: 767px){#s-a0c25e5d-0383-4b27-938b-4b6d115a0bb2 {
  display: none;
}
#s-a0c25e5d-0383-4b27-938b-4b6d115a0bb2, #wrap-s-a0c25e5d-0383-4b27-938b-4b6d115a0bb2 { display:none !important; }}
@media (min-width: 0px) {
[id="s-a0c25e5d-0383-4b27-938b-4b6d115a0bb2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a0c25e5d-0383-4b27-938b-4b6d115a0bb2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a0c25e5d-0383-4b27-938b-4b6d115a0bb2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a0c25e5d-0383-4b27-938b-4b6d115a0bb2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0b8ede23-a495-49a9-8cf0-180efdc74c85 {
  padding-left: 10%;
padding-right: 10%;
}

#s-132fd76a-c3f0-43b8-a7b3-3a8f085c6563 {
  margin-top: 25px;
padding-left: 10%;
padding-right: 10%;
}

#s-c74d4a1a-340f-49ce-b519-f3650efae97d {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
max-width: 80%;
text-align: center;
}







  #s-c74d4a1a-340f-49ce-b519-f3650efae97d img.shogun-image {
    

    
    
    
  }


#s-c74d4a1a-340f-49ce-b519-f3650efae97d .shogun-image-content {
  
    align-items: center;
  
}

#s-fe95574a-23b8-41d9-8584-135793cf6a11 {
  margin-top: 10px;
text-align: center;
}







  #s-fe95574a-23b8-41d9-8584-135793cf6a11 img.shogun-image {
    

    
    
    
  }


#s-fe95574a-23b8-41d9-8584-135793cf6a11 .shogun-image-content {
  
    align-items: center;
  
}

#s-f9bddb70-73be-4828-b23a-7b20cc1b089b {
  margin-top: 60px;
margin-left: auto;
margin-right: auto;
max-width: 80%;
text-align: center;
}
@media (min-width: 1200px){#s-f9bddb70-73be-4828-b23a-7b20cc1b089b {
  display: none;
}
#s-f9bddb70-73be-4828-b23a-7b20cc1b089b, #wrap-s-f9bddb70-73be-4828-b23a-7b20cc1b089b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f9bddb70-73be-4828-b23a-7b20cc1b089b {
  display: none;
}
#s-f9bddb70-73be-4828-b23a-7b20cc1b089b, #wrap-s-f9bddb70-73be-4828-b23a-7b20cc1b089b { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f9bddb70-73be-4828-b23a-7b20cc1b089b {
  margin-top: 20px;
}
}






  #s-f9bddb70-73be-4828-b23a-7b20cc1b089b img.shogun-image {
    

    
    
    
  }


#s-f9bddb70-73be-4828-b23a-7b20cc1b089b .shogun-image-content {
  
    align-items: center;
  
}

#s-61358289-bd48-4e69-a25e-7976196c49e8 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 40px;
margin-right: auto;
max-width: 90%;
text-align: center;
}
@media (min-width: 1200px){#s-61358289-bd48-4e69-a25e-7976196c49e8 {
  display: none;
}
#s-61358289-bd48-4e69-a25e-7976196c49e8, #wrap-s-61358289-bd48-4e69-a25e-7976196c49e8 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-61358289-bd48-4e69-a25e-7976196c49e8 {
  display: none;
}
#s-61358289-bd48-4e69-a25e-7976196c49e8, #wrap-s-61358289-bd48-4e69-a25e-7976196c49e8 { display:none !important; }}






  #s-61358289-bd48-4e69-a25e-7976196c49e8 img.shogun-image {
    

    
    
    
  }


#s-61358289-bd48-4e69-a25e-7976196c49e8 .shogun-image-content {
  
    align-items: center;
  
}

#s-ff6e8e49-019e-4eb2-897c-3799b51e1a6d {
  padding-left: 10%;
padding-right: 10%;
}
@media (min-width: 1200px){#s-ff6e8e49-019e-4eb2-897c-3799b51e1a6d {
  display: none;
}
#s-ff6e8e49-019e-4eb2-897c-3799b51e1a6d, #wrap-s-ff6e8e49-019e-4eb2-897c-3799b51e1a6d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ff6e8e49-019e-4eb2-897c-3799b51e1a6d {
  display: none;
}
#s-ff6e8e49-019e-4eb2-897c-3799b51e1a6d, #wrap-s-ff6e8e49-019e-4eb2-897c-3799b51e1a6d { display:none !important; }}
#s-ac8bcceb-1f2d-4b03-968c-dc7a966feed5 {
  margin-top: 25px;
margin-bottom: 40px;
padding-left: 10%;
padding-right: 10%;
}
@media (min-width: 1200px){#s-ac8bcceb-1f2d-4b03-968c-dc7a966feed5 {
  display: none;
}
#s-ac8bcceb-1f2d-4b03-968c-dc7a966feed5, #wrap-s-ac8bcceb-1f2d-4b03-968c-dc7a966feed5 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ac8bcceb-1f2d-4b03-968c-dc7a966feed5 {
  display: none;
}
#s-ac8bcceb-1f2d-4b03-968c-dc7a966feed5, #wrap-s-ac8bcceb-1f2d-4b03-968c-dc7a966feed5 { display:none !important; }}
#s-4142859d-6be0-4d5f-98e5-ccc442a42794 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-4142859d-6be0-4d5f-98e5-ccc442a42794 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4142859d-6be0-4d5f-98e5-ccc442a42794.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3b3a9a5d-e55c-4bf1-a359-13f1af94a377 {
  margin-top: 50px;
margin-bottom: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-3b3a9a5d-e55c-4bf1-a359-13f1af94a377 {
  display: none;
}
#s-3b3a9a5d-e55c-4bf1-a359-13f1af94a377, #wrap-s-3b3a9a5d-e55c-4bf1-a359-13f1af94a377 { display:none !important; }}@media (max-width: 767px){#s-3b3a9a5d-e55c-4bf1-a359-13f1af94a377 {
  display: none;
}
#s-3b3a9a5d-e55c-4bf1-a359-13f1af94a377, #wrap-s-3b3a9a5d-e55c-4bf1-a359-13f1af94a377 { display:none !important; }}
#s-2fd51ddf-c9cb-4b0c-b9d3-4325a807626d {
  margin-top: 130px;
margin-bottom: 130px;
}
@media (min-width: 1200px){#s-2fd51ddf-c9cb-4b0c-b9d3-4325a807626d {
  display: none;
}
#s-2fd51ddf-c9cb-4b0c-b9d3-4325a807626d, #wrap-s-2fd51ddf-c9cb-4b0c-b9d3-4325a807626d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2fd51ddf-c9cb-4b0c-b9d3-4325a807626d {
  display: none;
}
#s-2fd51ddf-c9cb-4b0c-b9d3-4325a807626d, #wrap-s-2fd51ddf-c9cb-4b0c-b9d3-4325a807626d { display:none !important; }}@media (max-width: 767px){#s-2fd51ddf-c9cb-4b0c-b9d3-4325a807626d {
  margin-top: 50px;
margin-bottom: 50px;
}
}
#s-23174605-be4a-407e-b35c-5a40ad383074 {
  margin-left: auto;
margin-bottom: 100px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-23174605-be4a-407e-b35c-5a40ad383074 {
  max-width: 90%;
display: none;
}
#s-23174605-be4a-407e-b35c-5a40ad383074, #wrap-s-23174605-be4a-407e-b35c-5a40ad383074 { display:none !important; }}@media (max-width: 767px){#s-23174605-be4a-407e-b35c-5a40ad383074 {
  display: none;
}
#s-23174605-be4a-407e-b35c-5a40ad383074, #wrap-s-23174605-be4a-407e-b35c-5a40ad383074 { display:none !important; }}
@media (min-width: 0px) {
[id="s-23174605-be4a-407e-b35c-5a40ad383074"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-23174605-be4a-407e-b35c-5a40ad383074"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-23174605-be4a-407e-b35c-5a40ad383074"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-23174605-be4a-407e-b35c-5a40ad383074"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-1a5f757f-888f-495c-a601-52acb3c59758 {
  border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(208, 208, 208, 1);
border-style: solid;
border-radius: 10px;
min-height: 483px;
background-color: rgba(255, 255, 255, 1);
}








#s-1a5f757f-888f-495c-a601-52acb3c59758 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1a5f757f-888f-495c-a601-52acb3c59758.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-5a5eba1b-bad8-4afa-bc79-5b61c3e70a28"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5a5eba1b-bad8-4afa-bc79-5b61c3e70a28"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-5a5eba1b-bad8-4afa-bc79-5b61c3e70a28"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5a5eba1b-bad8-4afa-bc79-5b61c3e70a28"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-5a5eba1b-bad8-4afa-bc79-5b61c3e70a28"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5a5eba1b-bad8-4afa-bc79-5b61c3e70a28"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-5a5eba1b-bad8-4afa-bc79-5b61c3e70a28"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-45040a49-a23a-4cfe-9dbe-838440809391 {
  margin-left: 80px;
margin-right: -80px;
padding-top: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-45040a49-a23a-4cfe-9dbe-838440809391 {
  margin-left: 40px;
margin-right: -40px;
}
}






  #s-45040a49-a23a-4cfe-9dbe-838440809391 img.shogun-image {
    

    
    
    
  }


#s-45040a49-a23a-4cfe-9dbe-838440809391 .shogun-image-content {
  
    align-items: center;
  
}

#s-296b948f-f7ba-481a-aa45-55495a590478 {
  margin-top: 15%;
margin-left: 20%;
margin-bottom: 0%;
margin-right: 0%;
}

#s-096e1d37-5804-403a-9783-d17dd5b00027 {
  margin-top: 10px;
padding-top: 17px;
padding-bottom: 17px;
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-966a022a-e3ad-4f84-888d-39036710768d {
  padding-left: 3%;
padding-right: 3%;
}

#s-d3f477fe-0648-427a-ac45-9e95145af251 {
  margin-top: 20px;
margin-bottom: 28px;
padding-left: 13%;
padding-right: 13%;
}

#s-90720f04-074a-46d4-a0ec-4f5a080db451 {
  margin-top: 0px;
margin-bottom: 0px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(208, 208, 208, 1);
border-style: solid;
border-radius: 10px;
min-height: 456px;
background-color: rgba(255, 255, 255, 1);
}








#s-90720f04-074a-46d4-a0ec-4f5a080db451 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-90720f04-074a-46d4-a0ec-4f5a080db451.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-e2939104-6faf-427b-b13d-7f4988fad9e9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e2939104-6faf-427b-b13d-7f4988fad9e9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e2939104-6faf-427b-b13d-7f4988fad9e9"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e2939104-6faf-427b-b13d-7f4988fad9e9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e2939104-6faf-427b-b13d-7f4988fad9e9"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e2939104-6faf-427b-b13d-7f4988fad9e9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e2939104-6faf-427b-b13d-7f4988fad9e9"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-607819c5-f218-4ec9-aa24-ef7e9566f6eb {
  margin-left: 80px;
margin-right: -80px;
padding-top: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-607819c5-f218-4ec9-aa24-ef7e9566f6eb {
  margin-left: 40px;
margin-right: -40px;
}
}






  #s-607819c5-f218-4ec9-aa24-ef7e9566f6eb img.shogun-image {
    

    
    
    
  }


#s-607819c5-f218-4ec9-aa24-ef7e9566f6eb .shogun-image-content {
  
    align-items: center;
  
}

#s-7880f032-1388-4b93-90a6-647db69850d0 {
  margin-top: 15%;
margin-left: 20%;
margin-bottom: 0%;
margin-right: 0%;
}

#s-257039d0-7194-4733-8777-69d15ecf82b8 {
  margin-top: 10px;
padding-top: 3px;
padding-left: 3%;
padding-bottom: 3px;
padding-right: 3%;
}

#s-e62036d5-1c36-4ef6-bb50-97ecb9168035 {
  padding-top: 0px;
padding-left: 3%;
padding-bottom: 0px;
padding-right: 3%;
}
@media (max-width: 767px){#s-e62036d5-1c36-4ef6-bb50-97ecb9168035 {
  
}
}
#s-23982fde-39b4-47e8-97ed-49b9d80ac3c6 {
  margin-top: 20px;
margin-bottom: 30px;
padding-top: 14px;
padding-left: 13%;
padding-bottom: 14px;
padding-right: 13%;
}

#s-91333a2d-0154-46ad-884c-b810f4db55f0 {
  margin-top: 0px;
margin-bottom: 0px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(208, 208, 208, 1);
border-style: solid;
border-radius: 10px;
min-height: 483px;
background-color: rgba(255, 255, 255, 1);
}








#s-91333a2d-0154-46ad-884c-b810f4db55f0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-91333a2d-0154-46ad-884c-b810f4db55f0.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-91c71838-512c-4441-8a04-58b2ff58f053"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-91c71838-512c-4441-8a04-58b2ff58f053"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-91c71838-512c-4441-8a04-58b2ff58f053"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-91c71838-512c-4441-8a04-58b2ff58f053"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-91c71838-512c-4441-8a04-58b2ff58f053"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-91c71838-512c-4441-8a04-58b2ff58f053"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-91c71838-512c-4441-8a04-58b2ff58f053"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-95b4ff19-7e04-4bf4-8904-956511931f98 {
  margin-left: 80px;
margin-right: -80px;
padding-top: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-95b4ff19-7e04-4bf4-8904-956511931f98 {
  margin-left: 40px;
margin-right: -40px;
}
}






  #s-95b4ff19-7e04-4bf4-8904-956511931f98 img.shogun-image {
    

    
    
    
  }


#s-95b4ff19-7e04-4bf4-8904-956511931f98 .shogun-image-content {
  
    align-items: center;
  
}

#s-b57fb617-acba-4854-bbae-2a8af4317357 {
  margin-top: 15%;
margin-left: 20%;
margin-bottom: 0%;
margin-right: 0%;
}

#s-c4972039-8ab0-4c65-8238-42791d5b4393 {
  margin-top: 10px;
padding-top: 15px;
padding-left: 3%;
padding-bottom: 15px;
padding-right: 3%;
}

#s-1a79def3-d450-4652-b273-721a557b0b76 {
  padding-top: 8px;
padding-left: 3%;
padding-bottom: 0px;
padding-right: 3%;
}

#s-ea244f9c-ae0f-46e4-accc-44c45bc3bfda {
  margin-top: 55px;
margin-bottom: 55px;
padding-left: 13%;
padding-right: 13%;
}

#s-f76fabc4-8754-4baa-bf10-4fe44015ce8f {
  margin-left: auto;
margin-right: auto;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(208, 208, 208, 1);
border-style: solid;
border-radius: 10px;
max-width: 90%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-f76fabc4-8754-4baa-bf10-4fe44015ce8f {
  display: none;
}
#s-f76fabc4-8754-4baa-bf10-4fe44015ce8f, #wrap-s-f76fabc4-8754-4baa-bf10-4fe44015ce8f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f76fabc4-8754-4baa-bf10-4fe44015ce8f {
  display: none;
}
#s-f76fabc4-8754-4baa-bf10-4fe44015ce8f, #wrap-s-f76fabc4-8754-4baa-bf10-4fe44015ce8f { display:none !important; }}@media (max-width: 767px){#s-f76fabc4-8754-4baa-bf10-4fe44015ce8f {
  
}
}







#s-f76fabc4-8754-4baa-bf10-4fe44015ce8f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f76fabc4-8754-4baa-bf10-4fe44015ce8f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-e3980e1a-4775-468c-999e-08f5dc2c6b0c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e3980e1a-4775-468c-999e-08f5dc2c6b0c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e3980e1a-4775-468c-999e-08f5dc2c6b0c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e3980e1a-4775-468c-999e-08f5dc2c6b0c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e3980e1a-4775-468c-999e-08f5dc2c6b0c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e3980e1a-4775-468c-999e-08f5dc2c6b0c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e3980e1a-4775-468c-999e-08f5dc2c6b0c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-1acdff05-b6cc-4860-8314-325721d3456f {
  margin-left: 80px;
margin-right: -80px;
padding-top: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-1acdff05-b6cc-4860-8314-325721d3456f {
  margin-left: 40px;
margin-right: -40px;
}
}@media (max-width: 767px){#s-1acdff05-b6cc-4860-8314-325721d3456f {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}
}






  #s-1acdff05-b6cc-4860-8314-325721d3456f img.shogun-image {
    

    
    
    
  }


#s-1acdff05-b6cc-4860-8314-325721d3456f .shogun-image-content {
  
    align-items: center;
  
}

#s-38e88dea-3b46-4ee2-af3a-e8c04e7a6984 {
  margin-top: 15%;
margin-left: 20%;
margin-bottom: 0%;
margin-right: 0%;
}
@media (max-width: 767px){#s-38e88dea-3b46-4ee2-af3a-e8c04e7a6984 {
  margin-top: 20px;
margin-left: 125px;
}
}
#s-622868a1-b041-486e-bd12-cad568be9279 {
  margin-top: 10px;
}

#s-22d403c7-6f5f-403d-ba38-cedd537b0be5 {
  margin-top: 20px;
margin-bottom: 50px;
padding-left: 13%;
padding-right: 13%;
}
@media (max-width: 767px){#s-22d403c7-6f5f-403d-ba38-cedd537b0be5 {
  margin-top: 10px;
margin-bottom: 20px;
}
}
#s-7f884dd2-4276-44b5-a22c-df20eee98aab {
  margin-top: 40px;
margin-left: auto;
margin-bottom: 40px;
margin-right: auto;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(208, 208, 208, 1);
border-style: solid;
border-radius: 10px;
max-width: 90%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-7f884dd2-4276-44b5-a22c-df20eee98aab {
  display: none;
}
#s-7f884dd2-4276-44b5-a22c-df20eee98aab, #wrap-s-7f884dd2-4276-44b5-a22c-df20eee98aab { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7f884dd2-4276-44b5-a22c-df20eee98aab {
  display: none;
}
#s-7f884dd2-4276-44b5-a22c-df20eee98aab, #wrap-s-7f884dd2-4276-44b5-a22c-df20eee98aab { display:none !important; }}







#s-7f884dd2-4276-44b5-a22c-df20eee98aab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7f884dd2-4276-44b5-a22c-df20eee98aab.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-cadbebe7-b590-46d0-98aa-40a0d485add0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cadbebe7-b590-46d0-98aa-40a0d485add0"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-cadbebe7-b590-46d0-98aa-40a0d485add0"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cadbebe7-b590-46d0-98aa-40a0d485add0"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-cadbebe7-b590-46d0-98aa-40a0d485add0"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cadbebe7-b590-46d0-98aa-40a0d485add0"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-cadbebe7-b590-46d0-98aa-40a0d485add0"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-24d11398-79e0-487e-887d-22601342b871 {
  margin-left: 80px;
margin-right: -80px;
padding-top: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-24d11398-79e0-487e-887d-22601342b871 {
  margin-left: 40px;
margin-right: -40px;
}
}@media (max-width: 767px){#s-24d11398-79e0-487e-887d-22601342b871 {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
}
}






  #s-24d11398-79e0-487e-887d-22601342b871 img.shogun-image {
    

    
    
    
  }


#s-24d11398-79e0-487e-887d-22601342b871 .shogun-image-content {
  
    align-items: center;
  
}

#s-69441aaf-f71d-493f-b311-c5bcf011249e {
  margin-top: 15%;
margin-left: 20%;
margin-bottom: 0%;
margin-right: 0%;
}
@media (max-width: 767px){#s-69441aaf-f71d-493f-b311-c5bcf011249e {
  margin-top: 20px;
margin-left: 125px;
}
}
#s-f3867ee8-78f5-4834-b5a1-5ede41f79066 {
  margin-top: 10px;
padding-left: 3%;
padding-right: 3%;
}

#s-d77f6967-1eb7-4932-ae7a-936ac2327dd2 {
  margin-top: 20px;
margin-bottom: 30px;
padding-left: 13%;
padding-right: 13%;
}
@media (max-width: 767px){#s-d77f6967-1eb7-4932-ae7a-936ac2327dd2 {
  margin-top: 10px;
margin-bottom: 20px;
}
}
#s-df94b9f5-f6eb-47f7-b58a-4a28b79eb8ec {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(208, 208, 208, 1);
border-style: solid;
border-radius: 10px;
min-height: 0px;
max-width: 90%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-df94b9f5-f6eb-47f7-b58a-4a28b79eb8ec {
  display: none;
}
#s-df94b9f5-f6eb-47f7-b58a-4a28b79eb8ec, #wrap-s-df94b9f5-f6eb-47f7-b58a-4a28b79eb8ec { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-df94b9f5-f6eb-47f7-b58a-4a28b79eb8ec {
  display: none;
}
#s-df94b9f5-f6eb-47f7-b58a-4a28b79eb8ec, #wrap-s-df94b9f5-f6eb-47f7-b58a-4a28b79eb8ec { display:none !important; }}







#s-df94b9f5-f6eb-47f7-b58a-4a28b79eb8ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-df94b9f5-f6eb-47f7-b58a-4a28b79eb8ec.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-c5e74367-e652-45cc-9e0d-f2a6eaef41aa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c5e74367-e652-45cc-9e0d-f2a6eaef41aa"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-c5e74367-e652-45cc-9e0d-f2a6eaef41aa"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c5e74367-e652-45cc-9e0d-f2a6eaef41aa"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-c5e74367-e652-45cc-9e0d-f2a6eaef41aa"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c5e74367-e652-45cc-9e0d-f2a6eaef41aa"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-c5e74367-e652-45cc-9e0d-f2a6eaef41aa"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-b92fe7c2-caef-41f7-9727-937b6b7606c2 {
  margin-left: 80px;
margin-right: -80px;
padding-top: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-b92fe7c2-caef-41f7-9727-937b6b7606c2 {
  margin-left: 40px;
margin-right: -40px;
}
}@media (max-width: 767px){#s-b92fe7c2-caef-41f7-9727-937b6b7606c2 {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
}
}






  #s-b92fe7c2-caef-41f7-9727-937b6b7606c2 img.shogun-image {
    

    
    
    
  }


#s-b92fe7c2-caef-41f7-9727-937b6b7606c2 .shogun-image-content {
  
    align-items: center;
  
}

#s-d78c4157-f2aa-4daa-b1e0-7f08ba639749 {
  margin-top: 15%;
margin-left: 20%;
margin-bottom: 0%;
margin-right: 0%;
}
@media (max-width: 767px){#s-d78c4157-f2aa-4daa-b1e0-7f08ba639749 {
  margin-top: 20px;
margin-left: 125px;
}
}
#s-27e350af-549a-4427-a981-11288cbe5289 {
  margin-top: 10px;
}

#s-b16e2a34-7ecc-4983-839c-e8819127b76c {
  margin-top: 50px;
margin-bottom: 50px;
padding-left: 13%;
padding-right: 13%;
}
@media (max-width: 767px){#s-b16e2a34-7ecc-4983-839c-e8819127b76c {
  margin-top: 10px;
margin-bottom: 20px;
}
}
#s-0cc4eff9-33d9-47b4-83d3-d0338e6fa16d {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
min-height: 50px;
background-position: center center;
}








#s-0cc4eff9-33d9-47b4-83d3-d0338e6fa16d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0cc4eff9-33d9-47b4-83d3-d0338e6fa16d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c26ebc5c-4c71-4b34-896a-d1d472f193d0 {
  margin-top: 150px;
margin-bottom: 110px;
}
@media (min-width: 768px) and (max-width: 991px){#s-c26ebc5c-4c71-4b34-896a-d1d472f193d0 {
  display: none;
}
#s-c26ebc5c-4c71-4b34-896a-d1d472f193d0, #wrap-s-c26ebc5c-4c71-4b34-896a-d1d472f193d0 { display:none !important; }}@media (max-width: 767px){#s-c26ebc5c-4c71-4b34-896a-d1d472f193d0 {
  display: none;
}
#s-c26ebc5c-4c71-4b34-896a-d1d472f193d0, #wrap-s-c26ebc5c-4c71-4b34-896a-d1d472f193d0 { display:none !important; }}
#s-566c27de-ec27-45f4-8d73-cd0ab93ffdcb {
  margin-top: 150px;
margin-bottom: 110px;
}
@media (min-width: 1200px){#s-566c27de-ec27-45f4-8d73-cd0ab93ffdcb {
  display: none;
}
#s-566c27de-ec27-45f4-8d73-cd0ab93ffdcb, #wrap-s-566c27de-ec27-45f4-8d73-cd0ab93ffdcb { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-566c27de-ec27-45f4-8d73-cd0ab93ffdcb {
  display: none;
}
#s-566c27de-ec27-45f4-8d73-cd0ab93ffdcb, #wrap-s-566c27de-ec27-45f4-8d73-cd0ab93ffdcb { display:none !important; }}@media (max-width: 767px){#s-566c27de-ec27-45f4-8d73-cd0ab93ffdcb {
  margin-top: 50px;
margin-bottom: 50px;
}
}
#s-d60f51b9-e4cb-442e-b852-1366b339b46e {
  margin-left: auto;
margin-right: auto;
max-width: 1440px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d60f51b9-e4cb-442e-b852-1366b339b46e {
  max-width: 90%;
}
}@media (max-width: 767px){#s-d60f51b9-e4cb-442e-b852-1366b339b46e {
  max-width: 80%;
}
}






  #s-d60f51b9-e4cb-442e-b852-1366b339b46e img.shogun-image {
    

    
    
    
  }


#s-d60f51b9-e4cb-442e-b852-1366b339b46e .shogun-image-content {
  
    align-items: center;
  
}

#s-b3f0c38b-4c57-49ea-adcf-c9f76e2879b0 {
  margin-top: 80px;
margin-bottom: 120px;
padding-left: 25%;
padding-right: 25%;
}
@media (min-width: 768px) and (max-width: 991px){#s-b3f0c38b-4c57-49ea-adcf-c9f76e2879b0 {
  display: none;
}
#s-b3f0c38b-4c57-49ea-adcf-c9f76e2879b0, #wrap-s-b3f0c38b-4c57-49ea-adcf-c9f76e2879b0 { display:none !important; }}@media (max-width: 767px){#s-b3f0c38b-4c57-49ea-adcf-c9f76e2879b0 {
  margin-top: 50px;
margin-bottom: 50px;
display: none;
}
#s-b3f0c38b-4c57-49ea-adcf-c9f76e2879b0, #wrap-s-b3f0c38b-4c57-49ea-adcf-c9f76e2879b0 { display:none !important; }}
#s-362c3ae0-e87d-4999-a1f4-307d4cfa3e9e {
  margin-top: 80px;
margin-bottom: 120px;
padding-left: 25%;
padding-right: 25%;
}
@media (min-width: 1200px){#s-362c3ae0-e87d-4999-a1f4-307d4cfa3e9e {
  display: none;
}
#s-362c3ae0-e87d-4999-a1f4-307d4cfa3e9e, #wrap-s-362c3ae0-e87d-4999-a1f4-307d4cfa3e9e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-362c3ae0-e87d-4999-a1f4-307d4cfa3e9e {
  display: none;
}
#s-362c3ae0-e87d-4999-a1f4-307d4cfa3e9e, #wrap-s-362c3ae0-e87d-4999-a1f4-307d4cfa3e9e { display:none !important; }}@media (max-width: 767px){#s-362c3ae0-e87d-4999-a1f4-307d4cfa3e9e {
  margin-top: 50px;
margin-bottom: 50px;
padding-left: 25px;
padding-right: 25px;
}
}
#s-76aabd00-10bb-4d16-b711-5c393b5620c2 {
  margin-top: 50px;
margin-bottom: 0px;
}
@media (min-width: 1200px){#s-76aabd00-10bb-4d16-b711-5c393b5620c2 {
  display: none;
}
#s-76aabd00-10bb-4d16-b711-5c393b5620c2, #wrap-s-76aabd00-10bb-4d16-b711-5c393b5620c2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-76aabd00-10bb-4d16-b711-5c393b5620c2 {
  display: none;
}
#s-76aabd00-10bb-4d16-b711-5c393b5620c2, #wrap-s-76aabd00-10bb-4d16-b711-5c393b5620c2 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-76aabd00-10bb-4d16-b711-5c393b5620c2 {
  margin-bottom: 20px;
}
}
@media (min-width: 1200px){#s-75596f48-3765-4103-a3b5-6ca3adbb8089 {
  display: none;
}
#s-75596f48-3765-4103-a3b5-6ca3adbb8089, #wrap-s-75596f48-3765-4103-a3b5-6ca3adbb8089 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-75596f48-3765-4103-a3b5-6ca3adbb8089 {
  display: none;
}
#s-75596f48-3765-4103-a3b5-6ca3adbb8089, #wrap-s-75596f48-3765-4103-a3b5-6ca3adbb8089 { display:none !important; }}
@media (min-width: 0px) {
[id="s-75596f48-3765-4103-a3b5-6ca3adbb8089"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-75596f48-3765-4103-a3b5-6ca3adbb8089"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-75596f48-3765-4103-a3b5-6ca3adbb8089"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-75596f48-3765-4103-a3b5-6ca3adbb8089"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-75596f48-3765-4103-a3b5-6ca3adbb8089"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-75596f48-3765-4103-a3b5-6ca3adbb8089"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-75596f48-3765-4103-a3b5-6ca3adbb8089"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-ead89881-cf0c-4a70-bc89-e53021b8ea86 {
  margin-top: 20px;
margin-bottom: 10px;
text-align: center;
}







  #s-ead89881-cf0c-4a70-bc89-e53021b8ea86 img.shogun-image {
    

    
    
    
  }


#s-ead89881-cf0c-4a70-bc89-e53021b8ea86 .shogun-image-content {
  
    align-items: center;
  
}

#s-01c47de5-f7e2-4cf2-a609-34dafa12b7c9 {
  margin-left: -20px;
}
@media (max-width: 767px){#s-01c47de5-f7e2-4cf2-a609-34dafa12b7c9 {
  margin-left: 0px;
}
}
#s-44a8f54e-a35c-43ef-ac66-71a3a00c8c80 {
  margin-top: 10px;
margin-bottom: 10px;
}
@media (min-width: 1200px){#s-44a8f54e-a35c-43ef-ac66-71a3a00c8c80 {
  display: none;
}
#s-44a8f54e-a35c-43ef-ac66-71a3a00c8c80, #wrap-s-44a8f54e-a35c-43ef-ac66-71a3a00c8c80 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-44a8f54e-a35c-43ef-ac66-71a3a00c8c80 {
  display: none;
}
#s-44a8f54e-a35c-43ef-ac66-71a3a00c8c80, #wrap-s-44a8f54e-a35c-43ef-ac66-71a3a00c8c80 { display:none !important; }}
@media (min-width: 0px) {
[id="s-44a8f54e-a35c-43ef-ac66-71a3a00c8c80"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-44a8f54e-a35c-43ef-ac66-71a3a00c8c80"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-44a8f54e-a35c-43ef-ac66-71a3a00c8c80"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-44a8f54e-a35c-43ef-ac66-71a3a00c8c80"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-44a8f54e-a35c-43ef-ac66-71a3a00c8c80"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-44a8f54e-a35c-43ef-ac66-71a3a00c8c80"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-44a8f54e-a35c-43ef-ac66-71a3a00c8c80"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-39f6ca04-ce69-48b4-9672-9e9aa5205834 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-39f6ca04-ce69-48b4-9672-9e9aa5205834 img.shogun-image {
    

    
    
    
  }


#s-39f6ca04-ce69-48b4-9672-9e9aa5205834 .shogun-image-content {
  
    align-items: center;
  
}

#s-2689f8c6-f704-400c-ad3d-7322fdc81148 {
  margin-left: -20px;
}
@media (max-width: 767px){#s-2689f8c6-f704-400c-ad3d-7322fdc81148 {
  margin-left: 0px;
}
}
#s-3266be99-1a6c-48f5-a221-92cdfb6b5023 {
  margin-top: 0px;
}
@media (min-width: 1200px){#s-3266be99-1a6c-48f5-a221-92cdfb6b5023 {
  display: none;
}
#s-3266be99-1a6c-48f5-a221-92cdfb6b5023, #wrap-s-3266be99-1a6c-48f5-a221-92cdfb6b5023 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3266be99-1a6c-48f5-a221-92cdfb6b5023 {
  display: none;
}
#s-3266be99-1a6c-48f5-a221-92cdfb6b5023, #wrap-s-3266be99-1a6c-48f5-a221-92cdfb6b5023 { display:none !important; }}
@media (min-width: 0px) {
[id="s-3266be99-1a6c-48f5-a221-92cdfb6b5023"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3266be99-1a6c-48f5-a221-92cdfb6b5023"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-3266be99-1a6c-48f5-a221-92cdfb6b5023"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3266be99-1a6c-48f5-a221-92cdfb6b5023"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-3266be99-1a6c-48f5-a221-92cdfb6b5023"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3266be99-1a6c-48f5-a221-92cdfb6b5023"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-3266be99-1a6c-48f5-a221-92cdfb6b5023"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-713d0936-72b2-44f2-a006-3f172ce765eb {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-713d0936-72b2-44f2-a006-3f172ce765eb img.shogun-image {
    

    
    
    
  }


#s-713d0936-72b2-44f2-a006-3f172ce765eb .shogun-image-content {
  
    align-items: center;
  
}

#s-6050d7a2-1a94-4489-9597-645acd1b3425 {
  margin-left: -20px;
}
@media (max-width: 767px){#s-6050d7a2-1a94-4489-9597-645acd1b3425 {
  margin-left: 0px;
}
}
#s-095c9ed9-811c-4ae3-b5ca-9349a1791298 {
  margin-top: 10px;
margin-bottom: 10px;
}
@media (min-width: 1200px){#s-095c9ed9-811c-4ae3-b5ca-9349a1791298 {
  display: none;
}
#s-095c9ed9-811c-4ae3-b5ca-9349a1791298, #wrap-s-095c9ed9-811c-4ae3-b5ca-9349a1791298 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-095c9ed9-811c-4ae3-b5ca-9349a1791298 {
  display: none;
}
#s-095c9ed9-811c-4ae3-b5ca-9349a1791298, #wrap-s-095c9ed9-811c-4ae3-b5ca-9349a1791298 { display:none !important; }}
@media (min-width: 0px) {
[id="s-095c9ed9-811c-4ae3-b5ca-9349a1791298"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-095c9ed9-811c-4ae3-b5ca-9349a1791298"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-095c9ed9-811c-4ae3-b5ca-9349a1791298"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-095c9ed9-811c-4ae3-b5ca-9349a1791298"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-095c9ed9-811c-4ae3-b5ca-9349a1791298"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-095c9ed9-811c-4ae3-b5ca-9349a1791298"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-095c9ed9-811c-4ae3-b5ca-9349a1791298"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-e696d0e1-bed7-4c6c-b512-f44d89b36961 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-e696d0e1-bed7-4c6c-b512-f44d89b36961 img.shogun-image {
    

    
    
    
  }


#s-e696d0e1-bed7-4c6c-b512-f44d89b36961 .shogun-image-content {
  
    align-items: center;
  
}

#s-5046783e-1bf7-4c0e-a49d-122006d9cc48 {
  margin-left: -20px;
}
@media (max-width: 767px){#s-5046783e-1bf7-4c0e-a49d-122006d9cc48 {
  margin-left: 0px;
}
}
#s-17387558-e26c-4e1c-abf0-55aebdbf0fdd {
  margin-top: 10px;
margin-bottom: 10px;
}
@media (min-width: 1200px){#s-17387558-e26c-4e1c-abf0-55aebdbf0fdd {
  display: none;
}
#s-17387558-e26c-4e1c-abf0-55aebdbf0fdd, #wrap-s-17387558-e26c-4e1c-abf0-55aebdbf0fdd { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-17387558-e26c-4e1c-abf0-55aebdbf0fdd {
  display: none;
}
#s-17387558-e26c-4e1c-abf0-55aebdbf0fdd, #wrap-s-17387558-e26c-4e1c-abf0-55aebdbf0fdd { display:none !important; }}
@media (min-width: 0px) {
[id="s-17387558-e26c-4e1c-abf0-55aebdbf0fdd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-17387558-e26c-4e1c-abf0-55aebdbf0fdd"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-17387558-e26c-4e1c-abf0-55aebdbf0fdd"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-17387558-e26c-4e1c-abf0-55aebdbf0fdd"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-17387558-e26c-4e1c-abf0-55aebdbf0fdd"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-17387558-e26c-4e1c-abf0-55aebdbf0fdd"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-17387558-e26c-4e1c-abf0-55aebdbf0fdd"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-1a7a8c29-b100-4a03-8481-3db0ff19f0f7 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}







  #s-1a7a8c29-b100-4a03-8481-3db0ff19f0f7 img.shogun-image {
    

    
    
    
  }


#s-1a7a8c29-b100-4a03-8481-3db0ff19f0f7 .shogun-image-content {
  
    align-items: center;
  
}

#s-656bc096-e350-4779-bc21-15c9431acc8c {
  margin-left: -20px;
}
@media (max-width: 767px){#s-656bc096-e350-4779-bc21-15c9431acc8c {
  margin-left: 0px;
}
}
@media (min-width: 1200px){#s-6464d2eb-e40b-4736-9885-bc1c4c7a1909 {
  display: none;
}
#s-6464d2eb-e40b-4736-9885-bc1c4c7a1909, #wrap-s-6464d2eb-e40b-4736-9885-bc1c4c7a1909 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6464d2eb-e40b-4736-9885-bc1c4c7a1909 {
  display: none;
}
#s-6464d2eb-e40b-4736-9885-bc1c4c7a1909, #wrap-s-6464d2eb-e40b-4736-9885-bc1c4c7a1909 { display:none !important; }}
@media (min-width: 0px) {
[id="s-6464d2eb-e40b-4736-9885-bc1c4c7a1909"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6464d2eb-e40b-4736-9885-bc1c4c7a1909"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-6464d2eb-e40b-4736-9885-bc1c4c7a1909"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6464d2eb-e40b-4736-9885-bc1c4c7a1909"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-6464d2eb-e40b-4736-9885-bc1c4c7a1909"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6464d2eb-e40b-4736-9885-bc1c4c7a1909"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-6464d2eb-e40b-4736-9885-bc1c4c7a1909"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-c54268c0-aa21-47e7-b006-df3c26b0508a {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-c54268c0-aa21-47e7-b006-df3c26b0508a {
  margin-left: 0px;
margin-right: 0px;
}
}






  #s-c54268c0-aa21-47e7-b006-df3c26b0508a img.shogun-image {
    

    
    
    
  }


#s-c54268c0-aa21-47e7-b006-df3c26b0508a .shogun-image-content {
  
    align-items: center;
  
}

#s-40ccb9ce-fc52-482e-ba6b-999e49438447 {
  margin-left: -20px;
}
@media (max-width: 767px){#s-40ccb9ce-fc52-482e-ba6b-999e49438447 {
  margin-left: 0px;
}
}
#s-a749ee26-a2d0-4874-abd5-0762cddaeeea {
  margin-top: 10px;
margin-bottom: 10px;
}
@media (min-width: 1200px){#s-a749ee26-a2d0-4874-abd5-0762cddaeeea {
  display: none;
}
#s-a749ee26-a2d0-4874-abd5-0762cddaeeea, #wrap-s-a749ee26-a2d0-4874-abd5-0762cddaeeea { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a749ee26-a2d0-4874-abd5-0762cddaeeea {
  display: none;
}
#s-a749ee26-a2d0-4874-abd5-0762cddaeeea, #wrap-s-a749ee26-a2d0-4874-abd5-0762cddaeeea { display:none !important; }}
@media (min-width: 0px) {
[id="s-a749ee26-a2d0-4874-abd5-0762cddaeeea"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a749ee26-a2d0-4874-abd5-0762cddaeeea"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a749ee26-a2d0-4874-abd5-0762cddaeeea"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a749ee26-a2d0-4874-abd5-0762cddaeeea"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a749ee26-a2d0-4874-abd5-0762cddaeeea"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a749ee26-a2d0-4874-abd5-0762cddaeeea"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a749ee26-a2d0-4874-abd5-0762cddaeeea"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-b0c53db1-19fd-4747-b668-1f7aa61e6805 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-b0c53db1-19fd-4747-b668-1f7aa61e6805 {
  margin-left: 0px;
}
}






  #s-b0c53db1-19fd-4747-b668-1f7aa61e6805 img.shogun-image {
    

    
    
    
  }


#s-b0c53db1-19fd-4747-b668-1f7aa61e6805 .shogun-image-content {
  
    align-items: center;
  
}

#s-c9d3d1a3-29dc-406d-a390-2f740554fe6c {
  margin-left: -20px;
}
@media (max-width: 767px){#s-c9d3d1a3-29dc-406d-a390-2f740554fe6c {
  margin-left: 0px;
}
}
#s-8238ff55-e9e8-42b4-a997-a343f50d33a3 {
  margin-top: 10px;
margin-bottom: 40px;
}
@media (min-width: 1200px){#s-8238ff55-e9e8-42b4-a997-a343f50d33a3 {
  display: none;
}
#s-8238ff55-e9e8-42b4-a997-a343f50d33a3, #wrap-s-8238ff55-e9e8-42b4-a997-a343f50d33a3 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8238ff55-e9e8-42b4-a997-a343f50d33a3 {
  display: none;
}
#s-8238ff55-e9e8-42b4-a997-a343f50d33a3, #wrap-s-8238ff55-e9e8-42b4-a997-a343f50d33a3 { display:none !important; }}
@media (min-width: 0px) {
[id="s-8238ff55-e9e8-42b4-a997-a343f50d33a3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8238ff55-e9e8-42b4-a997-a343f50d33a3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-8238ff55-e9e8-42b4-a997-a343f50d33a3"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8238ff55-e9e8-42b4-a997-a343f50d33a3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-8238ff55-e9e8-42b4-a997-a343f50d33a3"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8238ff55-e9e8-42b4-a997-a343f50d33a3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-8238ff55-e9e8-42b4-a997-a343f50d33a3"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-a0fc30b0-4a15-40ac-b96c-d9e3e8fb6b13 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-a0fc30b0-4a15-40ac-b96c-d9e3e8fb6b13 {
  margin-left: 0px;
}
}






  #s-a0fc30b0-4a15-40ac-b96c-d9e3e8fb6b13 img.shogun-image {
    

    
    
    
  }


#s-a0fc30b0-4a15-40ac-b96c-d9e3e8fb6b13 .shogun-image-content {
  
    align-items: center;
  
}

#s-e66919d3-b175-4f9c-90cf-3b30f1ea3093 {
  margin-left: -20px;
}
@media (max-width: 767px){#s-e66919d3-b175-4f9c-90cf-3b30f1ea3093 {
  margin-left: 0px;
}
}
#s-b1c7d6fa-a8da-4423-9487-e67415d38e0f {
  margin-top: 20px;
max-width: 750px;
text-align: center;
}
@media (min-width: 1200px){#s-b1c7d6fa-a8da-4423-9487-e67415d38e0f {
  display: none;
}
#s-b1c7d6fa-a8da-4423-9487-e67415d38e0f, #wrap-s-b1c7d6fa-a8da-4423-9487-e67415d38e0f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b1c7d6fa-a8da-4423-9487-e67415d38e0f {
  max-width: 100%;
display: none;
}
#s-b1c7d6fa-a8da-4423-9487-e67415d38e0f, #wrap-s-b1c7d6fa-a8da-4423-9487-e67415d38e0f { display:none !important; }}






  #s-b1c7d6fa-a8da-4423-9487-e67415d38e0f img.shogun-image {
    

    
    
    
  }


#s-b1c7d6fa-a8da-4423-9487-e67415d38e0f .shogun-image-content {
  
    align-items: center;
  
}

#s-929ff8e4-d073-4124-9213-2198064ec1a0 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-929ff8e4-d073-4124-9213-2198064ec1a0 {
  padding-top: 0px;
padding-bottom: 0px;
opacity: 1;
}
}







#s-929ff8e4-d073-4124-9213-2198064ec1a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-929ff8e4-d073-4124-9213-2198064ec1a0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-93fb6798-96f9-4d9f-bae5-5f3bf55e06f7 {
  margin-top: 150px;
margin-left: auto;
margin-bottom: 100px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-93fb6798-96f9-4d9f-bae5-5f3bf55e06f7 {
  max-width: 90%;
display: none;
}
#s-93fb6798-96f9-4d9f-bae5-5f3bf55e06f7, #wrap-s-93fb6798-96f9-4d9f-bae5-5f3bf55e06f7 { display:none !important; }}@media (max-width: 767px){#s-93fb6798-96f9-4d9f-bae5-5f3bf55e06f7 {
  display: none;
}
#s-93fb6798-96f9-4d9f-bae5-5f3bf55e06f7, #wrap-s-93fb6798-96f9-4d9f-bae5-5f3bf55e06f7 { display:none !important; }}
@media (min-width: 0px) {
[id="s-93fb6798-96f9-4d9f-bae5-5f3bf55e06f7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-93fb6798-96f9-4d9f-bae5-5f3bf55e06f7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-93fb6798-96f9-4d9f-bae5-5f3bf55e06f7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-93fb6798-96f9-4d9f-bae5-5f3bf55e06f7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-21b40675-5a7d-4dee-bf0f-c4788a1070ab {
  margin-top: -50px;
margin-bottom: 20px;
}

#s-158f2545-6d1f-4ba8-9026-5f248a88b3fd {
  margin-top: 10px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-158f2545-6d1f-4ba8-9026-5f248a88b3fd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-158f2545-6d1f-4ba8-9026-5f248a88b3fd"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-158f2545-6d1f-4ba8-9026-5f248a88b3fd"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-158f2545-6d1f-4ba8-9026-5f248a88b3fd"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-158f2545-6d1f-4ba8-9026-5f248a88b3fd"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-158f2545-6d1f-4ba8-9026-5f248a88b3fd"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-158f2545-6d1f-4ba8-9026-5f248a88b3fd"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-5fd2f193-74af-4c0b-9f0f-55c88a28d9bb {
  text-align: center;
}







  #s-5fd2f193-74af-4c0b-9f0f-55c88a28d9bb img.shogun-image {
    

    
    
    
  }


#s-5fd2f193-74af-4c0b-9f0f-55c88a28d9bb .shogun-image-content {
  
    align-items: center;
  
}

#s-f01a19de-ebad-4e81-b181-04ae97c293b9 {
  margin-left: -20px;
}

#s-63a4f490-d00e-4148-8729-e35a2b537b08 {
  margin-top: 10px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-63a4f490-d00e-4148-8729-e35a2b537b08"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-63a4f490-d00e-4148-8729-e35a2b537b08"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-63a4f490-d00e-4148-8729-e35a2b537b08"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-63a4f490-d00e-4148-8729-e35a2b537b08"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-63a4f490-d00e-4148-8729-e35a2b537b08"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-63a4f490-d00e-4148-8729-e35a2b537b08"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-63a4f490-d00e-4148-8729-e35a2b537b08"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-13244eef-d544-4951-838d-26692f669905 {
  text-align: center;
}







  #s-13244eef-d544-4951-838d-26692f669905 img.shogun-image {
    

    
    
    
  }


#s-13244eef-d544-4951-838d-26692f669905 .shogun-image-content {
  
    align-items: center;
  
}

#s-51be18f0-082c-4720-9b4c-3694318a4ee0 {
  margin-left: -20px;
}

#s-21317915-2550-4f1f-9af6-f20233286282 {
  margin-top: 10px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-21317915-2550-4f1f-9af6-f20233286282"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-21317915-2550-4f1f-9af6-f20233286282"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-21317915-2550-4f1f-9af6-f20233286282"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-21317915-2550-4f1f-9af6-f20233286282"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-21317915-2550-4f1f-9af6-f20233286282"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-21317915-2550-4f1f-9af6-f20233286282"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-21317915-2550-4f1f-9af6-f20233286282"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-5333f8a5-fdbd-4037-8e31-b37c711e0d5b {
  text-align: center;
}







  #s-5333f8a5-fdbd-4037-8e31-b37c711e0d5b img.shogun-image {
    

    
    
    
  }


#s-5333f8a5-fdbd-4037-8e31-b37c711e0d5b .shogun-image-content {
  
    align-items: center;
  
}

#s-8cdbb825-af6e-4689-984b-7bb811c2d6db {
  margin-left: -20px;
}

#s-2beb7b31-d625-4c8e-b193-85ef2946f35a {
  margin-top: 10px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-2beb7b31-d625-4c8e-b193-85ef2946f35a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2beb7b31-d625-4c8e-b193-85ef2946f35a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-2beb7b31-d625-4c8e-b193-85ef2946f35a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2beb7b31-d625-4c8e-b193-85ef2946f35a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-2beb7b31-d625-4c8e-b193-85ef2946f35a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2beb7b31-d625-4c8e-b193-85ef2946f35a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-2beb7b31-d625-4c8e-b193-85ef2946f35a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-9c623dc0-ddd9-4cd8-b84f-72b15a27f009 {
  text-align: center;
}







  #s-9c623dc0-ddd9-4cd8-b84f-72b15a27f009 img.shogun-image {
    

    
    
    
  }


#s-9c623dc0-ddd9-4cd8-b84f-72b15a27f009 .shogun-image-content {
  
    align-items: center;
  
}

#s-e86a161d-08a0-40cf-ade0-2cc547038061 {
  margin-left: -20px;
}

#s-42aeabb5-e835-455e-827a-0c5908742b6b {
  margin-top: 10px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-42aeabb5-e835-455e-827a-0c5908742b6b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-42aeabb5-e835-455e-827a-0c5908742b6b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-42aeabb5-e835-455e-827a-0c5908742b6b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-42aeabb5-e835-455e-827a-0c5908742b6b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-42aeabb5-e835-455e-827a-0c5908742b6b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-42aeabb5-e835-455e-827a-0c5908742b6b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-42aeabb5-e835-455e-827a-0c5908742b6b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-1b267e9c-18f5-4235-b3b6-372050c42c45 {
  text-align: center;
}







  #s-1b267e9c-18f5-4235-b3b6-372050c42c45 img.shogun-image {
    

    
    
    
  }


#s-1b267e9c-18f5-4235-b3b6-372050c42c45 .shogun-image-content {
  
    align-items: center;
  
}

#s-3bdcda5b-59e3-4242-8be3-fd0e4df28fcc {
  margin-left: -20px;
}

#s-a27ed87e-c71e-4d79-89ee-a54686a9a36e {
  margin-top: 10px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-a27ed87e-c71e-4d79-89ee-a54686a9a36e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a27ed87e-c71e-4d79-89ee-a54686a9a36e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a27ed87e-c71e-4d79-89ee-a54686a9a36e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a27ed87e-c71e-4d79-89ee-a54686a9a36e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a27ed87e-c71e-4d79-89ee-a54686a9a36e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a27ed87e-c71e-4d79-89ee-a54686a9a36e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a27ed87e-c71e-4d79-89ee-a54686a9a36e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-1d1d9abe-62ff-4e1a-928a-a778be9744fb {
  text-align: center;
}







  #s-1d1d9abe-62ff-4e1a-928a-a778be9744fb img.shogun-image {
    

    
    
    
  }


#s-1d1d9abe-62ff-4e1a-928a-a778be9744fb .shogun-image-content {
  
    align-items: center;
  
}

#s-3d8941c4-4a9f-4b5b-b789-d9025f4eff85 {
  margin-left: -20px;
}

#s-23b1424e-58b0-48e2-9d3f-f6f837fae355 {
  margin-top: 10px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-23b1424e-58b0-48e2-9d3f-f6f837fae355"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-23b1424e-58b0-48e2-9d3f-f6f837fae355"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-23b1424e-58b0-48e2-9d3f-f6f837fae355"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-23b1424e-58b0-48e2-9d3f-f6f837fae355"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-23b1424e-58b0-48e2-9d3f-f6f837fae355"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-23b1424e-58b0-48e2-9d3f-f6f837fae355"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-23b1424e-58b0-48e2-9d3f-f6f837fae355"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-6a3b8141-ecd4-470e-963f-c119a0211a87 {
  text-align: center;
}







  #s-6a3b8141-ecd4-470e-963f-c119a0211a87 img.shogun-image {
    

    
    
    
  }


#s-6a3b8141-ecd4-470e-963f-c119a0211a87 .shogun-image-content {
  
    align-items: center;
  
}

#s-2d7da46c-9fd0-4089-85d8-d15bb91a816d {
  margin-left: -20px;
}

#s-b2bd848f-79b8-4d86-86cd-bb04b34047e1 {
  margin-top: 10px;
}

@media (min-width: 0px) {
[id="s-b2bd848f-79b8-4d86-86cd-bb04b34047e1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b2bd848f-79b8-4d86-86cd-bb04b34047e1"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-b2bd848f-79b8-4d86-86cd-bb04b34047e1"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b2bd848f-79b8-4d86-86cd-bb04b34047e1"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-b2bd848f-79b8-4d86-86cd-bb04b34047e1"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b2bd848f-79b8-4d86-86cd-bb04b34047e1"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-b2bd848f-79b8-4d86-86cd-bb04b34047e1"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-bab7a1de-ac14-462e-a76c-6e8ced06e0d9 {
  text-align: center;
}







  #s-bab7a1de-ac14-462e-a76c-6e8ced06e0d9 img.shogun-image {
    

    
    
    
  }


#s-bab7a1de-ac14-462e-a76c-6e8ced06e0d9 .shogun-image-content {
  
    align-items: center;
  
}

#s-ddd85820-36fd-4c28-9493-f21489fad74b {
  margin-left: -20px;
}

#s-1658b95d-831d-4e24-aa6f-53d171a09987 {
  margin-top: 60px;
max-width: 67%;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-1658b95d-831d-4e24-aa6f-53d171a09987 {
  display: none;
}
#s-1658b95d-831d-4e24-aa6f-53d171a09987, #wrap-s-1658b95d-831d-4e24-aa6f-53d171a09987 { display:none !important; }}@media (max-width: 767px){#s-1658b95d-831d-4e24-aa6f-53d171a09987 {
  display: none;
}
#s-1658b95d-831d-4e24-aa6f-53d171a09987, #wrap-s-1658b95d-831d-4e24-aa6f-53d171a09987 { display:none !important; }}






  #s-1658b95d-831d-4e24-aa6f-53d171a09987 img.shogun-image {
    

    
    
    
  }


#s-1658b95d-831d-4e24-aa6f-53d171a09987 .shogun-image-content {
  
    align-items: center;
  
}

#s-84bd023f-c0b0-4a86-8db6-e4c1442b99d7 {
  margin-top: 60px;
max-width: 67%;
text-align: left;
}
@media (min-width: 1200px){#s-84bd023f-c0b0-4a86-8db6-e4c1442b99d7 {
  display: none;
}
#s-84bd023f-c0b0-4a86-8db6-e4c1442b99d7, #wrap-s-84bd023f-c0b0-4a86-8db6-e4c1442b99d7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-84bd023f-c0b0-4a86-8db6-e4c1442b99d7 {
  display: none;
}
#s-84bd023f-c0b0-4a86-8db6-e4c1442b99d7, #wrap-s-84bd023f-c0b0-4a86-8db6-e4c1442b99d7 { display:none !important; }}






  #s-84bd023f-c0b0-4a86-8db6-e4c1442b99d7 img.shogun-image {
    

    
    
    
  }


#s-84bd023f-c0b0-4a86-8db6-e4c1442b99d7 .shogun-image-content {
  
    align-items: center;
  
}

#s-d6cf8627-7338-4c7a-bc23-d0468d77a346 {
  max-width: 750px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-d6cf8627-7338-4c7a-bc23-d0468d77a346 {
  max-width: 100%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d6cf8627-7338-4c7a-bc23-d0468d77a346 {
  margin-top: 350px;
}
}






  #s-d6cf8627-7338-4c7a-bc23-d0468d77a346 img.shogun-image {
    

    
    
    
  }


#s-d6cf8627-7338-4c7a-bc23-d0468d77a346 .shogun-image-content {
  
    align-items: center;
  
}

#s-968fff2a-2f9e-42e5-a87b-8ab10703c695 {
  text-align: left;
}

#s-bb62866a-7389-4acd-a4c6-3ea3f485be11 {
  min-height: 50px;
background-color: rgba(247, 247, 247, 1);
}








#s-bb62866a-7389-4acd-a4c6-3ea3f485be11 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bb62866a-7389-4acd-a4c6-3ea3f485be11.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-160bba26-ea90-4072-a703-7a48328e7936 {
  margin-top: 100px;
margin-bottom: 100px;
}
@media (max-width: 767px){#s-160bba26-ea90-4072-a703-7a48328e7936 {
  margin-bottom: 60px;
}
}
.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-91aaa40f-dc59-442c-9756-0563e1d30254 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 1440px;
}
@media (min-width: 768px) and (max-width: 991px){#s-91aaa40f-dc59-442c-9756-0563e1d30254 {
  max-width: 90%;
}
}@media (max-width: 767px){#s-91aaa40f-dc59-442c-9756-0563e1d30254 {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
max-width: 90%;
}
}
#s-91aaa40f-dc59-442c-9756-0563e1d30254 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-91aaa40f-dc59-442c-9756-0563e1d30254 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 30px;
}

#s-91aaa40f-dc59-442c-9756-0563e1d30254 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-91aaa40f-dc59-442c-9756-0563e1d30254 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-91aaa40f-dc59-442c-9756-0563e1d30254 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: left;
  font-family: Kanit;
  font-weight: ;
  font-style: ;
  font-size: 28px;
}

#s-91aaa40f-dc59-442c-9756-0563e1d30254 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 28px;
}
#s-d20b2271-bf13-4faa-b65c-5f506679aa9b {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-b93a1bca-2ef7-4a4f-a19b-378ebaa8aef8 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-8dfbd98f-fac8-4556-a91c-0ddfca21d34b {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-d0c5c8c3-e68a-4c71-962d-78dfd7838d6e {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-e150694c-d2ed-4c06-a253-5add9c9fc4ef {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-8052bbba-a7f8-43fe-b991-eb3136e57ab2 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-34fbab41-ea6f-4944-9124-594795345099 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-b67e6f9a-35be-46f2-afd4-4c7b1878bb4e {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-1974dfcf-6e68-426e-8236-da14cb8d4c57 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-8874d5f4-3467-43ff-85f9-ae69466b3f8a {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-1343704b-5a28-4acd-a31c-38be0ba3724f {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-6fe85abc-cc34-4971-845f-35b3311b04b5 {
  text-align: left;
}

#s-e9c239fc-b6da-4d5e-bb5b-ec1d10f6fe88 {
  text-align: left;
}

#s-8696cdc3-bf3c-4827-97e8-989d0cc4d19b {
  text-align: left;
}

#s-3bae6e84-3d3a-4efa-a02a-705c8aa6b903 {
  text-align: left;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-c:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{background-attachment:scroll!important}}@media only screen and (min-width:1024px) and (max-height:1366px) and (-webkit-min-device-pixel-ratio:1.5) and (hover:none) and (orientation:landscape){.shg-box{background-attachment:scroll!important}}#mc_embed_signup .clear{width:auto!important;height:auto!important;visibility:visible!important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline!important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,.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:focus,.shg-lightbox .shg-lightbox-close:hover{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 .3s}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*=enterviewport][data-animations*=fadeIn],[data-animations*=enterviewport][data-animations*=zoomIn]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}