.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-5b6fae96-394d-466b-b753-60db6e91e288 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 676px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-5b6fae96-394d-466b-b753-60db6e91e288 {
  min-height: 676px;
}
}
#s-5b6fae96-394d-466b-b753-60db6e91e288 {
  background-image: url(https://i.shgcdn.com/67809f4c-c4d0-4b92-9aae-171430e8d3ce/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-5b6fae96-394d-466b-b753-60db6e91e288 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b6fae96-394d-466b-b753-60db6e91e288 {
  cursor: pointer;
}#s-5b6fae96-394d-466b-b753-60db6e91e288.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0cb540b4-2573-4633-a766-524870fb3261 {
  margin-left: auto;
margin-right: auto;
min-height: 540px;
max-width: 540px;
background-color: rgba(141, 121, 101, 0);
}
@media (min-width: 1200px){#s-0cb540b4-2573-4633-a766-524870fb3261 {
  margin-top: 0%;
margin-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0cb540b4-2573-4633-a766-524870fb3261 {
  min-height: 440px;
max-width: 440px;
}
}@media (max-width: 767px){#s-0cb540b4-2573-4633-a766-524870fb3261 {
  min-height: 360px;
max-width: 360px;
}
}







#s-0cb540b4-2573-4633-a766-524870fb3261 > .shg-box-overlay {
  background-color: rgba(10, 9, 8, 1);
  opacity: 1;
}#s-0cb540b4-2573-4633-a766-524870fb3261.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content {
  display: flex;
  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-6bd1e1de-63bf-49a2-8528-289ff8fbac89 {
  text-align: center;
}
@media (max-width: 767px){#s-6bd1e1de-63bf-49a2-8528-289ff8fbac89 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
}
}






  #s-6bd1e1de-63bf-49a2-8528-289ff8fbac89 img.shogun-image {
    

    
    
    
  }


#s-6bd1e1de-63bf-49a2-8528-289ff8fbac89 .shogun-image-content {
  
    align-items: center;
  
}

#s-669484ed-7e32-4f8b-b83f-e5b59c1cc9ae {
  max-width: 206px;
text-align: right;
}
@media (min-width: 768px) and (max-width: 991px){#s-669484ed-7e32-4f8b-b83f-e5b59c1cc9ae {
  max-width: 140px;
}
}






  #s-669484ed-7e32-4f8b-b83f-e5b59c1cc9ae img.shogun-image {
    

    
    
    
  }


#s-669484ed-7e32-4f8b-b83f-e5b59c1cc9ae .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-e54dee47-747c-4b61-b934-3096f613782b {
  margin-left: auto;
margin-right: auto;
max-width: 395px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-e54dee47-747c-4b61-b934-3096f613782b {
  max-width: 300px;
}
}@media (max-width: 767px){#s-e54dee47-747c-4b61-b934-3096f613782b {
  max-width: 180px;
}
}






  #s-e54dee47-747c-4b61-b934-3096f613782b img.shogun-image {
    

    
    
    
  }


#s-e54dee47-747c-4b61-b934-3096f613782b .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

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

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

#s-0a0b8521-a8e4-4c35-a9fe-2d3dc3e086e7 {
  background-size: undefined 0px;
padding-top: 15px;
padding-left: 50px;
padding-bottom: 15px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
background-color: rgba(51, 78, 45, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 2px;
}
#s-0a0b8521-a8e4-4c35-a9fe-2d3dc3e086e7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0a0b8521-a8e4-4c35-a9fe-2d3dc3e086e7:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0a0b8521-a8e4-4c35-a9fe-2d3dc3e086e7-root {
    text-align: center;
  }


#s-0a0b8521-a8e4-4c35-a9fe-2d3dc3e086e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0a0b8521-a8e4-4c35-a9fe-2d3dc3e086e7-root {
    text-align: center;
  }


#s-0a0b8521-a8e4-4c35-a9fe-2d3dc3e086e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0a0b8521-a8e4-4c35-a9fe-2d3dc3e086e7-root {
    text-align: center;
  }


#s-0a0b8521-a8e4-4c35-a9fe-2d3dc3e086e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0a0b8521-a8e4-4c35-a9fe-2d3dc3e086e7-root {
    text-align: center;
  }


#s-0a0b8521-a8e4-4c35-a9fe-2d3dc3e086e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0a0b8521-a8e4-4c35-a9fe-2d3dc3e086e7-root {
    text-align: center;
  }


#s-0a0b8521-a8e4-4c35-a9fe-2d3dc3e086e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}
#s-39d772c1-1c82-4f6d-bebc-b4b593f7fec3 {
  min-height: 50px;
}








#s-39d772c1-1c82-4f6d-bebc-b4b593f7fec3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-39d772c1-1c82-4f6d-bebc-b4b593f7fec3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e0be534b-7741-4131-94b8-1b567440cd9f {
  text-align: center;
}







  #s-e0be534b-7741-4131-94b8-1b567440cd9f img.shogun-image {
    

    
    
    
  }


#s-e0be534b-7741-4131-94b8-1b567440cd9f .shogun-image-content {
  
    align-items: center;
  
}

#s-559ca66e-a1d1-42b1-a454-dc7bc8872cdb {
  padding-top: 60px;
padding-bottom: 43px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-559ca66e-a1d1-42b1-a454-dc7bc8872cdb {
  padding-top: 30px;
}
}@media (max-width: 767px){#s-559ca66e-a1d1-42b1-a454-dc7bc8872cdb {
  padding-top: 15px;
}
}







#s-559ca66e-a1d1-42b1-a454-dc7bc8872cdb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-559ca66e-a1d1-42b1-a454-dc7bc8872cdb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-472bb285-8228-44bb-884b-d60884ec0bbe {
  margin-left: auto;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
max-width: 1378px;
}








#s-472bb285-8228-44bb-884b-d60884ec0bbe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-472bb285-8228-44bb-884b-d60884ec0bbe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-5adfbcd9-aecc-4c16-8df6-42b502fea2f0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-5adfbcd9-aecc-4c16-8df6-42b502fea2f0 {
  margin-left: auto;
margin-right: auto;
max-width: 600px;
}
}
#s-5adfbcd9-aecc-4c16-8df6-42b502fea2f0 .shogun-heading-component h3 {
  color: rgba(51, 78, 45, 1);
  font-weight:  normal ;
  font-family: "gandhi_serifregular";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-cad22728-d6da-4849-8031-ce705ffd8e44 {
  padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
}








#s-cad22728-d6da-4849-8031-ce705ffd8e44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cad22728-d6da-4849-8031-ce705ffd8e44.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-348864f4-4166-4a4d-ac9e-6efc8a0bda3a {
  margin-left: auto;
margin-right: auto;
padding-left: 10px;
padding-bottom: 0px;
padding-right: 10px;
min-height: 50px;
max-width: 1378px;
}








#s-348864f4-4166-4a4d-ac9e-6efc8a0bda3a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-348864f4-4166-4a4d-ac9e-6efc8a0bda3a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-1609844d-6bea-4d5d-9e01-76f00d26138b {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 130px;
}

#s-1609844d-6bea-4d5d-9e01-76f00d26138b .shg-sld-dot {
  background-color: rgba(214, 214, 214, 1);
}

#s-1609844d-6bea-4d5d-9e01-76f00d26138b .shg-sld-nav-button.shg-sld-left,
#s-1609844d-6bea-4d5d-9e01-76f00d26138b .shg-sld-nav-button.shg-sld-right {
  fill: rgba(214, 214, 214, 1);
}

#s-4a6e1240-57cb-44da-8450-f971fe18d469 {
  min-height: 50px;
}








#s-4a6e1240-57cb-44da-8450-f971fe18d469 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4a6e1240-57cb-44da-8450-f971fe18d469 {
  cursor: pointer;
}#s-4a6e1240-57cb-44da-8450-f971fe18d469.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c57e1c4f-9bfd-484c-b638-a3dec184bd91 {
  text-align: center;
}







  #s-c57e1c4f-9bfd-484c-b638-a3dec184bd91 img.shogun-image {
    

    
    
    
  }


#s-c57e1c4f-9bfd-484c-b638-a3dec184bd91 .shogun-image-content {
  
    align-items: center;
  
}

#s-d50297f5-aee7-46df-a2c8-3b14d7db81d8 {
  text-align: center;
}







  #s-d50297f5-aee7-46df-a2c8-3b14d7db81d8 img.shogun-image {
    

    
    
    
  }


#s-d50297f5-aee7-46df-a2c8-3b14d7db81d8 .shogun-image-content {
  
    align-items: center;
  
}

#s-5f2650a7-147b-4154-869e-712c270bceac {
  text-align: center;
}







  #s-5f2650a7-147b-4154-869e-712c270bceac img.shogun-image {
    

    
    
    
  }


#s-5f2650a7-147b-4154-869e-712c270bceac .shogun-image-content {
  
    align-items: center;
  
}

#s-a62482bb-7064-48f6-beed-3aefa878fe64 {
  text-align: center;
}







  #s-a62482bb-7064-48f6-beed-3aefa878fe64 img.shogun-image {
    

    
    
    
  }


#s-a62482bb-7064-48f6-beed-3aefa878fe64 .shogun-image-content {
  
    align-items: center;
  
}

#s-f86e5ea3-3d21-4bb7-86fc-914fc2c1c1d8 {
  text-align: center;
}







  #s-f86e5ea3-3d21-4bb7-86fc-914fc2c1c1d8 img.shogun-image {
    

    
    
    
  }


#s-f86e5ea3-3d21-4bb7-86fc-914fc2c1c1d8 .shogun-image-content {
  
    align-items: center;
  
}

#s-bab48a90-e9d3-42d9-b67c-547989cfaf33 {
  text-align: center;
}







  #s-bab48a90-e9d3-42d9-b67c-547989cfaf33 img.shogun-image {
    

    
    
    
  }


#s-bab48a90-e9d3-42d9-b67c-547989cfaf33 .shogun-image-content {
  
    align-items: center;
  
}

#s-c33ebc90-df2b-40d2-867d-c80efabc07aa {
  text-align: center;
}







  #s-c33ebc90-df2b-40d2-867d-c80efabc07aa img.shogun-image {
    

    
    
    
  }


#s-c33ebc90-df2b-40d2-867d-c80efabc07aa .shogun-image-content {
  
    align-items: center;
  
}

#s-a3f05daf-ca55-4423-9b41-b4dd7232b4fb {
  min-height: 50px;
}








#s-a3f05daf-ca55-4423-9b41-b4dd7232b4fb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a3f05daf-ca55-4423-9b41-b4dd7232b4fb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e1cf720b-91ce-4c94-aa6c-57a9d1489e9a {
  max-width: 100px;
text-align: center;
}







  #s-e1cf720b-91ce-4c94-aa6c-57a9d1489e9a img.shogun-image {
    

    
    
    
  }


#s-e1cf720b-91ce-4c94-aa6c-57a9d1489e9a .shogun-image-content {
  
    align-items: center;
  
}

#s-c90003b0-0f62-4e2c-839a-a3010b613309 {
  max-width: 100px;
text-align: center;
}







  #s-c90003b0-0f62-4e2c-839a-a3010b613309 img.shogun-image {
    

    
    
    
  }


#s-c90003b0-0f62-4e2c-839a-a3010b613309 .shogun-image-content {
  
    align-items: center;
  
}

#s-987f3fd2-c714-4cb9-a142-83d89f0acac4 {
  max-width: 100px;
text-align: center;
}







  #s-987f3fd2-c714-4cb9-a142-83d89f0acac4 img.shogun-image {
    

    
    
    
  }


#s-987f3fd2-c714-4cb9-a142-83d89f0acac4 .shogun-image-content {
  
    align-items: center;
  
}

#s-304a857d-f34b-4a47-8cb6-2a9f11c1e40c {
  max-width: 100px;
text-align: center;
}







  #s-304a857d-f34b-4a47-8cb6-2a9f11c1e40c img.shogun-image {
    

    
    
    
  }


#s-304a857d-f34b-4a47-8cb6-2a9f11c1e40c .shogun-image-content {
  
    align-items: center;
  
}

#s-05ac8b58-6da8-4fb2-a8ef-88ef25ed5f02 {
  max-width: 100px;
text-align: center;
}







  #s-05ac8b58-6da8-4fb2-a8ef-88ef25ed5f02 img.shogun-image {
    

    
    
    
  }


#s-05ac8b58-6da8-4fb2-a8ef-88ef25ed5f02 .shogun-image-content {
  
    align-items: center;
  
}

#s-f8b6a57a-f236-4c47-8842-319247556d19 {
  max-width: 100px;
text-align: center;
}







  #s-f8b6a57a-f236-4c47-8842-319247556d19 img.shogun-image {
    

    
    
    
  }


#s-f8b6a57a-f236-4c47-8842-319247556d19 .shogun-image-content {
  
    align-items: center;
  
}

#s-06246a87-8fd6-478f-8865-573380bd5c1a {
  max-width: 100px;
text-align: center;
}







  #s-06246a87-8fd6-478f-8865-573380bd5c1a img.shogun-image {
    

    
    
    
  }


#s-06246a87-8fd6-478f-8865-573380bd5c1a .shogun-image-content {
  
    align-items: center;
  
}

#s-7f77c658-e80e-4ae6-8750-ea6f7bd6049e {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 80px;
margin-bottom: 0px;
min-height: 775px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-7f77c658-e80e-4ae6-8750-ea6f7bd6049e {
  margin-top: 30px;
min-height: 600px;
}
}@media (max-width: 767px){#s-7f77c658-e80e-4ae6-8750-ea6f7bd6049e {
  margin-top: 30px;
min-height: 650px;
}
}







#s-7f77c658-e80e-4ae6-8750-ea6f7bd6049e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7f77c658-e80e-4ae6-8750-ea6f7bd6049e {
  cursor: pointer;
}#s-7f77c658-e80e-4ae6-8750-ea6f7bd6049e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e733c5fe-6c14-4c58-b14e-2f8248636259 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 740px;
}








#s-e733c5fe-6c14-4c58-b14e-2f8248636259 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e733c5fe-6c14-4c58-b14e-2f8248636259.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4a3372de-c277-4671-8081-addd7107e5e9 {
  text-align: center;
}







  #s-4a3372de-c277-4671-8081-addd7107e5e9 img.shogun-image {
    

    
    
    
  }


#s-4a3372de-c277-4671-8081-addd7107e5e9 .shogun-image-content {
  
    align-items: center;
  
}

#s-2f4212fa-d0e2-47a9-ae55-272343a45d7b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2f4212fa-d0e2-47a9-ae55-272343a45d7b .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "gandhi_serifregular";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-770a0921-a960-411c-8750-aae77c8a2955 {
  margin-top: 10px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-770a0921-a960-411c-8750-aae77c8a2955 {
  padding-left: 20px;
padding-right: 20px;
}
}
#s-770a0921-a960-411c-8750-aae77c8a2955 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 76px;
  line-height: 1em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-770a0921-a960-411c-8750-aae77c8a2955 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 65px;
  line-height: 1em;
  
  
}


}@media (max-width: 767px){#s-770a0921-a960-411c-8750-aae77c8a2955 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 65px;
  line-height: 1em;
  
  
}


}
#s-e9b47f59-51e4-4723-9c7a-e6e4b5769b4e {
  text-align: center;
}







  #s-e9b47f59-51e4-4723-9c7a-e6e4b5769b4e img.shogun-image {
    

    
    
    
  }


#s-e9b47f59-51e4-4723-9c7a-e6e4b5769b4e .shogun-image-content {
  
    align-items: center;
  
}

#s-8cfc2589-eb9e-4723-a274-750bdb64f339 {
  background-size: contain;
padding-top: 50px;
padding-bottom: 50px;
min-height: 50px;
background-color: rgba(243, 242, 240, 1);
background-position: center bottom;
}








#s-8cfc2589-eb9e-4723-a274-750bdb64f339 > .shg-box-overlay {
  background-color: rgba(138, 93, 93, 1);
  opacity: 0;
}#s-8cfc2589-eb9e-4723-a274-750bdb64f339.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d0dbd6ea-ed7e-4a5b-9768-a631ed97a8f7 {
  margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
min-height: 50px;
max-width: 1378px;
background-color: rgba(243, 242, 240, 1);
}








#s-d0dbd6ea-ed7e-4a5b-9768-a631ed97a8f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d0dbd6ea-ed7e-4a5b-9768-a631ed97a8f7.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;
}

@media (min-width: 0px) {
[id="s-a6d51f42-a7fa-41dd-bdb3-7a55b31b2b9f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a6d51f42-a7fa-41dd-bdb3-7a55b31b2b9f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a6d51f42-a7fa-41dd-bdb3-7a55b31b2b9f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a6d51f42-a7fa-41dd-bdb3-7a55b31b2b9f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f6019fc2-9146-4ba4-a71a-649c96a09685 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f6019fc2-9146-4ba4-a71a-649c96a09685 .shogun-heading-component h2 {
  color: rgba(51, 78, 45, 1);
  font-weight:  normal ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 26px;
  
  letter-spacing: 2px;
  text-align: left;
}


#s-f6019fc2-9146-4ba4-a71a-649c96a09685 .shogun-heading-component h2 a {
  color: rgba(51, 78, 45, 1);
}


#s-cf91e4ea-3a78-40d6-a42c-731245239993 {
  margin-top: 15px;
margin-bottom: 15px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(51, 78, 45, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(164, 91, 91, 0);
text-align: right;
text-decoration: none;
letter-spacing: 2px;
color: rgba(51, 78, 45, 1);
background-image: none;
hover-type: color;
}
#s-cf91e4ea-3a78-40d6-a42c-731245239993:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-cf91e4ea-3a78-40d6-a42c-731245239993:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-cf91e4ea-3a78-40d6-a42c-731245239993-root {
    text-align: right;
  }


#s-cf91e4ea-3a78-40d6-a42c-731245239993.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-cf91e4ea-3a78-40d6-a42c-731245239993-root {
    text-align: right;
  }


#s-cf91e4ea-3a78-40d6-a42c-731245239993.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cf91e4ea-3a78-40d6-a42c-731245239993-root {
    text-align: right;
  }


#s-cf91e4ea-3a78-40d6-a42c-731245239993.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cf91e4ea-3a78-40d6-a42c-731245239993-root {
    text-align: right;
  }


#s-cf91e4ea-3a78-40d6-a42c-731245239993.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-cf91e4ea-3a78-40d6-a42c-731245239993-root {
    text-align: right;
  }


#s-cf91e4ea-3a78-40d6-a42c-731245239993.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}
#s-1eed4352-3276-4981-8581-4e514886bafc {
  margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
min-height: 50px;
max-width: 1378px;
}








#s-1eed4352-3276-4981-8581-4e514886bafc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1eed4352-3276-4981-8581-4e514886bafc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-23c1b531-4fca-43d7-9799-0b12231fc684 {
  padding-top: 40px;
}

@media (min-width: 0px) {
[id="s-23c1b531-4fca-43d7-9799-0b12231fc684"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-23c1b531-4fca-43d7-9799-0b12231fc684"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-23c1b531-4fca-43d7-9799-0b12231fc684"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-23c1b531-4fca-43d7-9799-0b12231fc684"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-23c1b531-4fca-43d7-9799-0b12231fc684"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-23c1b531-4fca-43d7-9799-0b12231fc684"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-23c1b531-4fca-43d7-9799-0b12231fc684"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-da8fa900-735e-430e-8e4a-3f344fd85a84 {
  min-height: 50px;
}








#s-da8fa900-735e-430e-8e4a-3f344fd85a84 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-da8fa900-735e-430e-8e4a-3f344fd85a84.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9b817869-1b1a-45ce-8b21-5440248731eb {
  margin-left: auto;
margin-right: auto;
border-radius: 195px;
max-width: 195px;
text-align: center;
}







  #s-9b817869-1b1a-45ce-8b21-5440248731eb img.shogun-image {
    

    
    
    
  }


#s-9b817869-1b1a-45ce-8b21-5440248731eb .shogun-image-content {
  
    align-items: center;
  
}

#s-e15f91ee-a944-475b-a2a2-a43a04d5261a {
  padding-top: 20px;
padding-bottom: 20px;
text-align: center;
}

#s-e15f91ee-a944-475b-a2a2-a43a04d5261a .shogun-heading-component h3 {
  color: rgba(51, 78, 45, 1);
  font-weight:  normal ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-e15f91ee-a944-475b-a2a2-a43a04d5261a .shogun-heading-component h3 a {
  color: rgba(51, 78, 45, 1);
}


#s-c1f08f06-94af-4d62-b342-cabd00d97c2b {
  margin-left: auto;
margin-right: auto;
border-radius: 195px;
max-width: 195px;
text-align: center;
}







  #s-c1f08f06-94af-4d62-b342-cabd00d97c2b img.shogun-image {
    

    
    
    
  }


#s-c1f08f06-94af-4d62-b342-cabd00d97c2b .shogun-image-content {
  
    align-items: center;
  
}

#s-3af7bf56-83c2-435f-b2b9-3fb29aa3c592 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: center;
}

#s-3af7bf56-83c2-435f-b2b9-3fb29aa3c592 .shogun-heading-component h3 {
  color: rgba(51, 78, 45, 1);
  font-weight:  normal ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-3af7bf56-83c2-435f-b2b9-3fb29aa3c592 .shogun-heading-component h3 a {
  color: rgba(51, 78, 45, 1);
}


#s-37da86fa-5e00-428b-a53e-42000a424293 {
  min-height: 50px;
}








#s-37da86fa-5e00-428b-a53e-42000a424293 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-37da86fa-5e00-428b-a53e-42000a424293.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-47bd264c-5678-4c03-b3af-877937a8e486 {
  margin-left: auto;
margin-right: auto;
border-radius: 195px;
max-width: 195px;
text-align: center;
}







  #s-47bd264c-5678-4c03-b3af-877937a8e486 img.shogun-image {
    

    
    
    
  }


#s-47bd264c-5678-4c03-b3af-877937a8e486 .shogun-image-content {
  
    align-items: center;
  
}

#s-a92f5274-f96f-4cea-9ab5-4f141b459e15 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: center;
}

#s-a92f5274-f96f-4cea-9ab5-4f141b459e15 .shogun-heading-component h3 {
  color: rgba(51, 78, 45, 1);
  font-weight:  normal ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-a92f5274-f96f-4cea-9ab5-4f141b459e15 .shogun-heading-component h3 a {
  color: rgba(51, 78, 45, 1);
}


#s-74237f13-a424-442b-838c-4364d4e3b705 {
  min-height: 50px;
}








#s-74237f13-a424-442b-838c-4364d4e3b705 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-74237f13-a424-442b-838c-4364d4e3b705.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-358c9fb9-49c6-4989-a027-a7144e0a429b {
  margin-left: auto;
margin-right: auto;
border-radius: 195px;
max-width: 195px;
text-align: center;
}







  #s-358c9fb9-49c6-4989-a027-a7144e0a429b img.shogun-image {
    

    
    
    
  }


#s-358c9fb9-49c6-4989-a027-a7144e0a429b .shogun-image-content {
  
    align-items: center;
  
}

#s-b21363bf-83db-417e-8b10-94c1011a0c91 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: center;
}

#s-b21363bf-83db-417e-8b10-94c1011a0c91 .shogun-heading-component h3 {
  color: rgba(51, 78, 45, 1);
  font-weight:  normal ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-b21363bf-83db-417e-8b10-94c1011a0c91 .shogun-heading-component h3 a {
  color: rgba(51, 78, 45, 1);
}


#s-ca5959e0-25d4-427e-98d8-4344a5675670 {
  min-height: 50px;
}








#s-ca5959e0-25d4-427e-98d8-4344a5675670 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ca5959e0-25d4-427e-98d8-4344a5675670.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f4441da7-73ec-4792-b7fb-a26187630eb7 {
  margin-left: auto;
margin-right: auto;
border-radius: 195px;
max-width: 195px;
text-align: center;
}







  #s-f4441da7-73ec-4792-b7fb-a26187630eb7 img.shogun-image {
    

    
    
    
  }


#s-f4441da7-73ec-4792-b7fb-a26187630eb7 .shogun-image-content {
  
    align-items: center;
  
}

#s-3bf2ae59-1038-40e0-ae57-46e449a1dcea {
  padding-top: 20px;
padding-bottom: 20px;
text-align: center;
}

#s-3bf2ae59-1038-40e0-ae57-46e449a1dcea .shogun-heading-component h3 {
  color: rgba(51, 78, 45, 1);
  font-weight:  normal ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-3bf2ae59-1038-40e0-ae57-46e449a1dcea .shogun-heading-component h3 a {
  color: rgba(51, 78, 45, 1);
}


#s-cad5a11f-bd0f-4680-827b-4256f65a27bb {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
background-position: center center;
}








#s-cad5a11f-bd0f-4680-827b-4256f65a27bb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cad5a11f-bd0f-4680-827b-4256f65a27bb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d3a06427-668e-4217-adfa-8ff2dfbfaf56 {
  min-height: 50px;
}








#s-d3a06427-668e-4217-adfa-8ff2dfbfaf56 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d3a06427-668e-4217-adfa-8ff2dfbfaf56.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7a9b3916-ceeb-44d7-a434-a48c33d8da5f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7a9b3916-ceeb-44d7-a434-a48c33d8da5f .shogun-heading-component h1 {
  color: rgba(51, 78, 45, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


#s-7a9b3916-ceeb-44d7-a434-a48c33d8da5f .shogun-heading-component h1 a {
  color: rgba(51, 78, 45, 1);
}


#s-49d6866f-0f6b-4426-8b75-ad20f469a39e {
  padding-top: 30px;
padding-bottom: 20px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-49d6866f-0f6b-4426-8b75-ad20f469a39e {
  padding-top: 0px;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-49d6866f-0f6b-4426-8b75-ad20f469a39e {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-49d6866f-0f6b-4426-8b75-ad20f469a39e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-49d6866f-0f6b-4426-8b75-ad20f469a39e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-83bf48b7-7cd7-47da-b644-3632b6367d35 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
max-width: 1378px;
}








#s-83bf48b7-7cd7-47da-b644-3632b6367d35 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-83bf48b7-7cd7-47da-b644-3632b6367d35.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c4c6c3e6-86d1-4b61-baa3-e8c8cabfa436 {
  margin-top: 0px;
margin-bottom: 0px;
}








#s-c4c6c3e6-86d1-4b61-baa3-e8c8cabfa436 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c4c6c3e6-86d1-4b61-baa3-e8c8cabfa436 {
  cursor: pointer;
}#s-c4c6c3e6-86d1-4b61-baa3-e8c8cabfa436.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-186e9543-47be-4ffa-88f6-26c36e3173e3 {
  padding-top: 1px;
padding-bottom: 1px;
max-width: 1357px;
aspect-ratio: 1357/425;
text-align: center;
}





  #s-186e9543-47be-4ffa-88f6-26c36e3173e3 img.shogun-image,
  #s-186e9543-47be-4ffa-88f6-26c36e3173e3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-186e9543-47be-4ffa-88f6-26c36e3173e3 {
    width: 100%;
    height: auto;
  }



  #s-186e9543-47be-4ffa-88f6-26c36e3173e3 img.shogun-image {
    

    
    
    
  }


#s-186e9543-47be-4ffa-88f6-26c36e3173e3 .shogun-image-content {
  
    align-items: center;
  
}

#s-a04bdf49-40e1-4995-b1ad-f67e48725f89 {
  margin-top: 25px;
margin-left: 20px;
margin-bottom: 25px;
margin-right: 20px;
padding-left: 20px;
padding-bottom: 13px;
padding-right: 20px;
min-height: 50px;
max-width: 260px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-a04bdf49-40e1-4995-b1ad-f67e48725f89 {
  display: none;
}
#s-a04bdf49-40e1-4995-b1ad-f67e48725f89, #wrap-s-a04bdf49-40e1-4995-b1ad-f67e48725f89 { display: none !important; }}@media (max-width: 767px){#s-a04bdf49-40e1-4995-b1ad-f67e48725f89 {
  display: none;
}
#s-a04bdf49-40e1-4995-b1ad-f67e48725f89, #wrap-s-a04bdf49-40e1-4995-b1ad-f67e48725f89 { display: none !important; }}







#s-a04bdf49-40e1-4995-b1ad-f67e48725f89 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a04bdf49-40e1-4995-b1ad-f67e48725f89.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3eb86c0f-7921-418b-a6dc-69b9ebcbb6f7 {
  background-size: 0px 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(51, 78, 45, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(164, 91, 91, 0);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
color: rgba(51, 78, 45, 1);
background-image: none;
hover-type: color;
line-height: 2em;
}
#s-3eb86c0f-7921-418b-a6dc-69b9ebcbb6f7:hover {background-color: rgba(41, 34, 34, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-3eb86c0f-7921-418b-a6dc-69b9ebcbb6f7:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3eb86c0f-7921-418b-a6dc-69b9ebcbb6f7-root {
    text-align: center;
  }


#s-3eb86c0f-7921-418b-a6dc-69b9ebcbb6f7.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3eb86c0f-7921-418b-a6dc-69b9ebcbb6f7-root {
    text-align: center;
  }


#s-3eb86c0f-7921-418b-a6dc-69b9ebcbb6f7.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3eb86c0f-7921-418b-a6dc-69b9ebcbb6f7-root {
    text-align: center;
  }


#s-3eb86c0f-7921-418b-a6dc-69b9ebcbb6f7.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3eb86c0f-7921-418b-a6dc-69b9ebcbb6f7-root {
    text-align: center;
  }


#s-3eb86c0f-7921-418b-a6dc-69b9ebcbb6f7.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3eb86c0f-7921-418b-a6dc-69b9ebcbb6f7-root {
    text-align: center;
  }


#s-3eb86c0f-7921-418b-a6dc-69b9ebcbb6f7.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}
#s-45779368-cb1f-4967-9f58-9c82cd2ab0c3 {
  margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
max-width: 1378px;
}








#s-45779368-cb1f-4967-9f58-9c82cd2ab0c3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-45779368-cb1f-4967-9f58-9c82cd2ab0c3.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-39810d7d-e01e-4880-a73f-fd70ef5eef11"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-39810d7d-e01e-4880-a73f-fd70ef5eef11"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 13.5px);
}

}

@media (min-width: 992px) {
[id="s-39810d7d-e01e-4880-a73f-fd70ef5eef11"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 13.5px);
}

}

@media (min-width: 1200px) {
[id="s-39810d7d-e01e-4880-a73f-fd70ef5eef11"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 13.5px);
}

}

#s-9e26fd05-9720-4ea2-8e7f-69228ca6cb6b {
  margin-top: 0px;
margin-bottom: 0px;
}








#s-9e26fd05-9720-4ea2-8e7f-69228ca6cb6b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9e26fd05-9720-4ea2-8e7f-69228ca6cb6b {
  cursor: pointer;
}#s-9e26fd05-9720-4ea2-8e7f-69228ca6cb6b.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-9d9e71a7-fc4b-48ac-805c-03e1d6c5c608 {
  max-width: 665px;
aspect-ratio: 665/396;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-9d9e71a7-fc4b-48ac-805c-03e1d6c5c608 {
  margin-top: 0px;
margin-bottom: 20px;
}
}




  #s-9d9e71a7-fc4b-48ac-805c-03e1d6c5c608 img.shogun-image,
  #s-9d9e71a7-fc4b-48ac-805c-03e1d6c5c608 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9d9e71a7-fc4b-48ac-805c-03e1d6c5c608 {
    width: 100%;
    height: auto;
  }



  #s-9d9e71a7-fc4b-48ac-805c-03e1d6c5c608 img.shogun-image {
    

    
    
    
  }


#s-9d9e71a7-fc4b-48ac-805c-03e1d6c5c608 .shogun-image-content {
  
    align-items: center;
  
}

#s-83374f12-432a-4ade-9d10-5496375102d1 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
padding-left: 20px;
padding-bottom: 13px;
padding-right: 20px;
min-height: 50px;
max-width: 206px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-83374f12-432a-4ade-9d10-5496375102d1 {
  display: none;
}
#s-83374f12-432a-4ade-9d10-5496375102d1, #wrap-s-83374f12-432a-4ade-9d10-5496375102d1 { display: none !important; }}@media (max-width: 767px){#s-83374f12-432a-4ade-9d10-5496375102d1 {
  display: none;
}
#s-83374f12-432a-4ade-9d10-5496375102d1, #wrap-s-83374f12-432a-4ade-9d10-5496375102d1 { display: none !important; }}







#s-83374f12-432a-4ade-9d10-5496375102d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-83374f12-432a-4ade-9d10-5496375102d1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-40ea167d-0c57-4619-8712-3866c53ecdb0 {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(51, 78, 45, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(164, 91, 91, 0);
text-align: left;
text-decoration: none;
letter-spacing: 2px;
color: rgba(51, 78, 45, 1);
background-image: none;
hover-type: color;
line-height: 2em;
}
#s-40ea167d-0c57-4619-8712-3866c53ecdb0:hover {background-color: rgba(41, 34, 34, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-40ea167d-0c57-4619-8712-3866c53ecdb0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-40ea167d-0c57-4619-8712-3866c53ecdb0-root {
    text-align: left;
  }


#s-40ea167d-0c57-4619-8712-3866c53ecdb0.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-40ea167d-0c57-4619-8712-3866c53ecdb0-root {
    text-align: left;
  }


#s-40ea167d-0c57-4619-8712-3866c53ecdb0.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-40ea167d-0c57-4619-8712-3866c53ecdb0-root {
    text-align: left;
  }


#s-40ea167d-0c57-4619-8712-3866c53ecdb0.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-40ea167d-0c57-4619-8712-3866c53ecdb0-root {
    text-align: left;
  }


#s-40ea167d-0c57-4619-8712-3866c53ecdb0.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-40ea167d-0c57-4619-8712-3866c53ecdb0-root {
    text-align: left;
  }


#s-40ea167d-0c57-4619-8712-3866c53ecdb0.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}
#s-d6a62771-b60b-45dc-9151-4a4c74c5e32b {
  margin-top: 0px;
margin-bottom: 0px;
}








#s-d6a62771-b60b-45dc-9151-4a4c74c5e32b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d6a62771-b60b-45dc-9151-4a4c74c5e32b {
  cursor: pointer;
}#s-d6a62771-b60b-45dc-9151-4a4c74c5e32b.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-8e50c590-999b-485c-a1ff-779be03fcb64 {
  max-width: 665px;
aspect-ratio: 665/396;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-8e50c590-999b-485c-a1ff-779be03fcb64 {
  margin-bottom: 20px;
}
}




  #s-8e50c590-999b-485c-a1ff-779be03fcb64 img.shogun-image,
  #s-8e50c590-999b-485c-a1ff-779be03fcb64 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e50c590-999b-485c-a1ff-779be03fcb64 {
    width: 100%;
    height: auto;
  }



  #s-8e50c590-999b-485c-a1ff-779be03fcb64 img.shogun-image {
    

    
    
    
  }


#s-8e50c590-999b-485c-a1ff-779be03fcb64 .shogun-image-content {
  
    align-items: center;
  
}

#s-c5def625-40e7-4abe-b40b-6166a53c3c26 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
padding-left: 20px;
padding-bottom: 13px;
padding-right: 20px;
min-height: 50px;
max-width: 220px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-c5def625-40e7-4abe-b40b-6166a53c3c26 {
  display: none;
}
#s-c5def625-40e7-4abe-b40b-6166a53c3c26, #wrap-s-c5def625-40e7-4abe-b40b-6166a53c3c26 { display: none !important; }}@media (max-width: 767px){#s-c5def625-40e7-4abe-b40b-6166a53c3c26 {
  display: none;
}
#s-c5def625-40e7-4abe-b40b-6166a53c3c26, #wrap-s-c5def625-40e7-4abe-b40b-6166a53c3c26 { display: none !important; }}







#s-c5def625-40e7-4abe-b40b-6166a53c3c26 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c5def625-40e7-4abe-b40b-6166a53c3c26.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-596eb51d-ba34-4678-9710-d1266a85ec68 {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(51, 78, 45, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(164, 91, 91, 0);
text-align: left;
text-decoration: none;
letter-spacing: 2px;
color: rgba(51, 78, 45, 1);
background-image: none;
hover-type: color;
line-height: 2em;
}
#s-596eb51d-ba34-4678-9710-d1266a85ec68:hover {background-color: rgba(41, 34, 34, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-596eb51d-ba34-4678-9710-d1266a85ec68:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-596eb51d-ba34-4678-9710-d1266a85ec68-root {
    text-align: left;
  }


#s-596eb51d-ba34-4678-9710-d1266a85ec68.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-596eb51d-ba34-4678-9710-d1266a85ec68-root {
    text-align: left;
  }


#s-596eb51d-ba34-4678-9710-d1266a85ec68.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-596eb51d-ba34-4678-9710-d1266a85ec68-root {
    text-align: left;
  }


#s-596eb51d-ba34-4678-9710-d1266a85ec68.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-596eb51d-ba34-4678-9710-d1266a85ec68-root {
    text-align: left;
  }


#s-596eb51d-ba34-4678-9710-d1266a85ec68.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-596eb51d-ba34-4678-9710-d1266a85ec68-root {
    text-align: left;
  }


#s-596eb51d-ba34-4678-9710-d1266a85ec68.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}
#s-0a3267cd-795c-40d4-a791-9c59d04a477d {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
max-width: 1378px;
}








#s-0a3267cd-795c-40d4-a791-9c59d04a477d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0a3267cd-795c-40d4-a791-9c59d04a477d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dcbed16c-bc3e-4458-89f7-27a57e96f7b7 {
  margin-bottom: 0px;
min-height: 0px;
}








#s-dcbed16c-bc3e-4458-89f7-27a57e96f7b7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dcbed16c-bc3e-4458-89f7-27a57e96f7b7 {
  cursor: pointer;
}#s-dcbed16c-bc3e-4458-89f7-27a57e96f7b7.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-0621d066-4cfb-49c6-8016-5868cfb99f3a {
  max-width: 1357px;
aspect-ratio: 1357/359;
text-align: center;
}





  #s-0621d066-4cfb-49c6-8016-5868cfb99f3a img.shogun-image,
  #s-0621d066-4cfb-49c6-8016-5868cfb99f3a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0621d066-4cfb-49c6-8016-5868cfb99f3a {
    width: 100%;
    height: auto;
  }



  #s-0621d066-4cfb-49c6-8016-5868cfb99f3a img.shogun-image {
    

    
    
    
  }


#s-0621d066-4cfb-49c6-8016-5868cfb99f3a .shogun-image-content {
  
    align-items: center;
  
}

#s-3bd89598-faee-4ae5-8b8e-15ed6722be6a {
  margin-top: 30px;
margin-left: 20px;
margin-bottom: 30px;
margin-right: 20px;
padding-left: 20px;
padding-bottom: 13px;
padding-right: 20px;
min-height: 50px;
max-width: 245px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-3bd89598-faee-4ae5-8b8e-15ed6722be6a {
  display: none;
}
#s-3bd89598-faee-4ae5-8b8e-15ed6722be6a, #wrap-s-3bd89598-faee-4ae5-8b8e-15ed6722be6a { display: none !important; }}@media (max-width: 767px){#s-3bd89598-faee-4ae5-8b8e-15ed6722be6a {
  display: none;
}
#s-3bd89598-faee-4ae5-8b8e-15ed6722be6a, #wrap-s-3bd89598-faee-4ae5-8b8e-15ed6722be6a { display: none !important; }}







#s-3bd89598-faee-4ae5-8b8e-15ed6722be6a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3bd89598-faee-4ae5-8b8e-15ed6722be6a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-16302ca1-c15d-4214-934b-c2c9feaf41a7 {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(51, 78, 45, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(164, 91, 91, 0);
text-align: left;
text-decoration: none;
letter-spacing: 2px;
color: rgba(51, 78, 45, 1);
background-image: none;
hover-type: color;
line-height: 2em;
}
#s-16302ca1-c15d-4214-934b-c2c9feaf41a7:hover {background-color: rgba(41, 34, 34, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-16302ca1-c15d-4214-934b-c2c9feaf41a7:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-16302ca1-c15d-4214-934b-c2c9feaf41a7-root {
    text-align: left;
  }


#s-16302ca1-c15d-4214-934b-c2c9feaf41a7.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-16302ca1-c15d-4214-934b-c2c9feaf41a7-root {
    text-align: left;
  }


#s-16302ca1-c15d-4214-934b-c2c9feaf41a7.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-16302ca1-c15d-4214-934b-c2c9feaf41a7-root {
    text-align: left;
  }


#s-16302ca1-c15d-4214-934b-c2c9feaf41a7.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-16302ca1-c15d-4214-934b-c2c9feaf41a7-root {
    text-align: left;
  }


#s-16302ca1-c15d-4214-934b-c2c9feaf41a7.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-16302ca1-c15d-4214-934b-c2c9feaf41a7-root {
    text-align: left;
  }


#s-16302ca1-c15d-4214-934b-c2c9feaf41a7.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Oswald;
  display:  inline-block ;
}
}
#s-6557bef0-303a-4cb4-96f9-328d020cbafe {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-bottom: 0px;
min-height: 715px;
background-position: center center;
}








#s-6557bef0-303a-4cb4-96f9-328d020cbafe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6557bef0-303a-4cb4-96f9-328d020cbafe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-16d3e621-8a5a-42da-bf80-c906fc205231 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 640px;
}








#s-16d3e621-8a5a-42da-bf80-c906fc205231 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-16d3e621-8a5a-42da-bf80-c906fc205231.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-82504970-4720-4048-a2c0-edc299be3f5d {
  text-align: center;
}







  #s-82504970-4720-4048-a2c0-edc299be3f5d img.shogun-image {
    

    
    
    
  }


#s-82504970-4720-4048-a2c0-edc299be3f5d .shogun-image-content {
  
    align-items: center;
  
}

#s-f4338808-ebbe-433d-80ea-2bb8a4113a96 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f4338808-ebbe-433d-80ea-2bb8a4113a96 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "gandhi_serifregular";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-f9bcef4c-8279-46c7-a120-7626bb0b9906 {
  margin-top: 10px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-f9bcef4c-8279-46c7-a120-7626bb0b9906 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 76px;
  line-height: 1em;
  
  
}



#s-fb3e02ca-69f8-417b-b805-bf5e5b0927c5 {
  text-align: center;
}







  #s-fb3e02ca-69f8-417b-b805-bf5e5b0927c5 img.shogun-image {
    

    
    
    
  }


#s-fb3e02ca-69f8-417b-b805-bf5e5b0927c5 .shogun-image-content {
  
    align-items: center;
  
}

#s-30092814-f9a5-41a6-a2a7-98b76000341a {
  background-repeat: no-repeat;
background-size: contain;
padding-top: 90px;
padding-bottom: 90px;
min-height: 50px;
background-position: center top;
background-attachment: scroll;
}








#s-30092814-f9a5-41a6-a2a7-98b76000341a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-30092814-f9a5-41a6-a2a7-98b76000341a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b33be5ef-0373-452c-933c-b9fe70ccf5d8 {
  margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
min-height: 50px;
max-width: 1378px;
}








#s-b33be5ef-0373-452c-933c-b9fe70ccf5d8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b33be5ef-0373-452c-933c-b9fe70ccf5d8.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-cea06787-c7ce-4fb8-855f-7c6fe1a8cd45"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cea06787-c7ce-4fb8-855f-7c6fe1a8cd45"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-cea06787-c7ce-4fb8-855f-7c6fe1a8cd45"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-cea06787-c7ce-4fb8-855f-7c6fe1a8cd45"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-178a00da-6252-4b51-818c-3f5c89c90d0c {
  min-height: 50px;
}








#s-178a00da-6252-4b51-818c-3f5c89c90d0c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-178a00da-6252-4b51-818c-3f5c89c90d0c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eac6f214-c36d-4826-9889-ea448bdd24b3 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}







  #s-eac6f214-c36d-4826-9889-ea448bdd24b3 img.shogun-image {
    

    
    
    
  }


#s-eac6f214-c36d-4826-9889-ea448bdd24b3 .shogun-image-content {
  
    align-items: center;
  
}

#s-844169db-51df-48dd-a375-4f46f9e36521 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
min-height: 160px;
max-width: 315px;
}

#s-6864b1a0-52ab-4486-8a73-5af3c7a834d5 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 39px;
text-align: center;
}







  #s-6864b1a0-52ab-4486-8a73-5af3c7a834d5 img.shogun-image {
    

    
    
    
  }


#s-6864b1a0-52ab-4486-8a73-5af3c7a834d5 .shogun-image-content {
  
    align-items: center;
  
}

#s-e69442fb-cf3b-4b7d-b5cb-52e2d08460b7 {
  min-height: 50px;
}








#s-e69442fb-cf3b-4b7d-b5cb-52e2d08460b7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e69442fb-cf3b-4b7d-b5cb-52e2d08460b7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a7196528-3df4-4271-8e52-f323b61abe59 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}







  #s-a7196528-3df4-4271-8e52-f323b61abe59 img.shogun-image {
    

    
    
    
  }


#s-a7196528-3df4-4271-8e52-f323b61abe59 .shogun-image-content {
  
    align-items: center;
  
}

#s-b1dff017-9e53-4219-8680-6ba6cb127656 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
min-height: 160px;
max-width: 315px;
}

#s-2a4e55c4-e405-4404-bdcf-57eb187a8611 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 39px;
text-align: center;
}







  #s-2a4e55c4-e405-4404-bdcf-57eb187a8611 img.shogun-image {
    

    
    
    
  }


#s-2a4e55c4-e405-4404-bdcf-57eb187a8611 .shogun-image-content {
  
    align-items: center;
  
}

#s-8339c30b-dabc-4b3b-921a-1c49bfc81664 {
  min-height: 50px;
}








#s-8339c30b-dabc-4b3b-921a-1c49bfc81664 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8339c30b-dabc-4b3b-921a-1c49bfc81664.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bccc611b-243c-4903-9bcc-70109a1d9ace {
  margin-left: auto;
margin-right: auto;
text-align: center;
}







  #s-bccc611b-243c-4903-9bcc-70109a1d9ace img.shogun-image {
    

    
    
    
  }


#s-bccc611b-243c-4903-9bcc-70109a1d9ace .shogun-image-content {
  
    align-items: center;
  
}

#s-c090df8b-57d4-4394-894f-9671f9888ba3 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
min-height: 160px;
max-width: 315px;
}

#s-65de30cf-ec70-4d54-83d8-730a7d32bfaf {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 39px;
text-align: center;
}







  #s-65de30cf-ec70-4d54-83d8-730a7d32bfaf img.shogun-image {
    

    
    
    
  }


#s-65de30cf-ec70-4d54-83d8-730a7d32bfaf .shogun-image-content {
  
    align-items: center;
  
}

#s-78ba8216-724b-4077-ab75-3197d5fcc790 {
  min-height: 50px;
}








#s-78ba8216-724b-4077-ab75-3197d5fcc790 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-78ba8216-724b-4077-ab75-3197d5fcc790.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ac5b6570-36c6-4a05-ad34-8b6e79070681 {
  margin-top: 30px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(51, 78, 45, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 2em;
}
#s-ac5b6570-36c6-4a05-ad34-8b6e79070681:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ac5b6570-36c6-4a05-ad34-8b6e79070681:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ac5b6570-36c6-4a05-ad34-8b6e79070681-root {
    text-align: center;
  }


#s-ac5b6570-36c6-4a05-ad34-8b6e79070681.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-family: Oswald;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ac5b6570-36c6-4a05-ad34-8b6e79070681-root {
    text-align: center;
  }


#s-ac5b6570-36c6-4a05-ad34-8b6e79070681.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ac5b6570-36c6-4a05-ad34-8b6e79070681-root {
    text-align: center;
  }


#s-ac5b6570-36c6-4a05-ad34-8b6e79070681.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ac5b6570-36c6-4a05-ad34-8b6e79070681-root {
    text-align: center;
  }


#s-ac5b6570-36c6-4a05-ad34-8b6e79070681.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-family: Oswald;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ac5b6570-36c6-4a05-ad34-8b6e79070681-root {
    text-align: center;
  }


#s-ac5b6570-36c6-4a05-ad34-8b6e79070681.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-family: Oswald;
  display:  inline-block ;
}
}
#s-185a9484-b40a-4ea2-9438-c43ce5886e4d {
  background-repeat: no-repeat;
background-size: cover;
min-height: 62px;
background-position: center center;
}








#s-185a9484-b40a-4ea2-9438-c43ce5886e4d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-185a9484-b40a-4ea2-9438-c43ce5886e4d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a8a053a8-bcf9-4c81-b6d6-907911b9204b {
  background-repeat: no-repeat;
background-size: contain;
margin-top: 10px;
padding-top: 270px;
min-height: 1258px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-a8a053a8-bcf9-4c81-b6d6-907911b9204b {
  padding-top: 70px;
min-height: 900px;
}
}@media (max-width: 767px){#s-a8a053a8-bcf9-4c81-b6d6-907911b9204b {
  padding-top: 30px;
padding-bottom: 30px;
min-height: 0px;
}
}







#s-a8a053a8-bcf9-4c81-b6d6-907911b9204b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a8a053a8-bcf9-4c81-b6d6-907911b9204b {
  cursor: pointer;
}#s-a8a053a8-bcf9-4c81-b6d6-907911b9204b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-11d9c65d-6340-4fce-af0c-4734b9f5a87c {
  margin-left: auto;
margin-right: auto;
max-width: 1378px;
}

@media (min-width: 0px) {
[id="s-11d9c65d-6340-4fce-af0c-4734b9f5a87c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-11d9c65d-6340-4fce-af0c-4734b9f5a87c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-11d9c65d-6340-4fce-af0c-4734b9f5a87c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-11d9c65d-6340-4fce-af0c-4734b9f5a87c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-55951572-5eb8-4886-b4cc-9c1f7adfcab1 {
  padding-left: 80px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-55951572-5eb8-4886-b4cc-9c1f7adfcab1 {
  padding-left: 30px;
}
}@media (max-width: 767px){#s-55951572-5eb8-4886-b4cc-9c1f7adfcab1 {
  padding-left: 30px;
padding-right: 30px;
}
}







#s-55951572-5eb8-4886-b4cc-9c1f7adfcab1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-55951572-5eb8-4886-b4cc-9c1f7adfcab1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7acc97e8-2b08-4aeb-91f7-cf2a78a16502 {
  text-align: left;
}







  #s-7acc97e8-2b08-4aeb-91f7-cf2a78a16502 img.shogun-image {
    

    
    
    
  }


#s-7acc97e8-2b08-4aeb-91f7-cf2a78a16502 .shogun-image-content {
  
    align-items: center;
  
}

#s-218d54b0-f724-49d5-b104-9e901aaa9b70 {
  padding-top: 15px;
padding-bottom: 40px;
max-width: 460px;
text-align: left;
}
@media (max-width: 767px){#s-218d54b0-f724-49d5-b104-9e901aaa9b70 {
  max-width: 320px;
}
}
#s-218d54b0-f724-49d5-b104-9e901aaa9b70 .shogun-heading-component h2 {
  color: rgba(51, 78, 45, 1);
  font-weight:  600 ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 74px;
  line-height: 1em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-218d54b0-f724-49d5-b104-9e901aaa9b70 .shogun-heading-component h2 {
  color: rgba(51, 78, 45, 1);
  font-weight:  600 ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 62px;
  line-height: 1em;
  
  
}


}@media (max-width: 767px){#s-218d54b0-f724-49d5-b104-9e901aaa9b70 .shogun-heading-component h2 {
  color: rgba(51, 78, 45, 1);
  font-weight:  600 ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 44px;
  line-height: 1em;
  
  
}


}
#s-7fd161fb-2695-4855-b783-63aa52220946 {
  max-width: 330px;
}
@media (max-width: 767px){#s-7fd161fb-2695-4855-b783-63aa52220946 {
  max-width: 170px;
}
}
#s-ed203d44-b88d-4e22-b9c1-8d432c3e1205 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 625px;
}








#s-ed203d44-b88d-4e22-b9c1-8d432c3e1205 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ed203d44-b88d-4e22-b9c1-8d432c3e1205.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4bbe293a-b72c-45fd-99b9-a01712ec753b {
  min-height: 50px;
}








#s-4bbe293a-b72c-45fd-99b9-a01712ec753b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4bbe293a-b72c-45fd-99b9-a01712ec753b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-531aaf27-d102-45bd-8f6d-88e4026febfa {
  margin-top: 140px;
padding-right: 20px;
}
@media (max-width: 767px){#s-531aaf27-d102-45bd-8f6d-88e4026febfa {
  margin-top: 0px;
margin-left: 30px;
}
}
#s-297db781-2031-4f3e-8cfe-3ee35430f02f {
  background-repeat: no-repeat;
background-size: contain;
min-height: 50px;
background-position: center center;
}
@media (min-width: 1200px){#s-297db781-2031-4f3e-8cfe-3ee35430f02f {
  display: none;
}
#s-297db781-2031-4f3e-8cfe-3ee35430f02f, #wrap-s-297db781-2031-4f3e-8cfe-3ee35430f02f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-297db781-2031-4f3e-8cfe-3ee35430f02f {
  display: none;
}
#s-297db781-2031-4f3e-8cfe-3ee35430f02f, #wrap-s-297db781-2031-4f3e-8cfe-3ee35430f02f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-297db781-2031-4f3e-8cfe-3ee35430f02f {
  display: none;
}
#s-297db781-2031-4f3e-8cfe-3ee35430f02f, #wrap-s-297db781-2031-4f3e-8cfe-3ee35430f02f { display: none !important; }}@media (max-width: 767px){#s-297db781-2031-4f3e-8cfe-3ee35430f02f {
  display: none;
}
#s-297db781-2031-4f3e-8cfe-3ee35430f02f, #wrap-s-297db781-2031-4f3e-8cfe-3ee35430f02f { display: none !important; }}







#s-297db781-2031-4f3e-8cfe-3ee35430f02f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-297db781-2031-4f3e-8cfe-3ee35430f02f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-97f8d2a3-ad79-4ef6-aa3f-cae3757dc1ee {
  margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
min-height: 50px;
max-width: 1378px;
}








#s-97f8d2a3-ad79-4ef6-aa3f-cae3757dc1ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-97f8d2a3-ad79-4ef6-aa3f-cae3757dc1ee.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-112232ed-1a2a-4a4e-8098-0f9a64a600da"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-112232ed-1a2a-4a4e-8098-0f9a64a600da"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-112232ed-1a2a-4a4e-8098-0f9a64a600da"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-112232ed-1a2a-4a4e-8098-0f9a64a600da"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-9a2800f8-6458-4ec0-b616-6d7309cb03d9 {
  padding-top: 0px;
padding-bottom: 20px;
min-height: 50px;
}








#s-9a2800f8-6458-4ec0-b616-6d7309cb03d9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9a2800f8-6458-4ec0-b616-6d7309cb03d9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a971ceb5-5a50-482d-bcc1-33cdece65adc {
  text-align: center;
}







  #s-a971ceb5-5a50-482d-bcc1-33cdece65adc img.shogun-image {
    

    
    
    
  }


#s-a971ceb5-5a50-482d-bcc1-33cdece65adc .shogun-image-content {
  
    align-items: center;
  
}

#s-c656242f-e32a-4f94-9aad-95759be016a9 {
  padding-top: 60px;
padding-left: 60px;
padding-bottom: 40px;
padding-right: 60px;
min-height: 50px;
background-color: rgba(51, 78, 44, 1);
}








#s-c656242f-e32a-4f94-9aad-95759be016a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c656242f-e32a-4f94-9aad-95759be016a9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e0fe51d7-6b51-4110-ad84-192d44f31357 {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 360px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-e0fe51d7-6b51-4110-ad84-192d44f31357 {
  min-height: 120px;
}
}
#s-e0fe51d7-6b51-4110-ad84-192d44f31357 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 60px;
  line-height: 1em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-e0fe51d7-6b51-4110-ad84-192d44f31357 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 43px;
  line-height: 1em;
  
  
}


}@media (max-width: 767px){#s-e0fe51d7-6b51-4110-ad84-192d44f31357 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 40px;
  line-height: 1em;
  
  
}


}
#s-a470dc53-fb16-448d-9774-34ddcc6359af {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 2px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
}
#s-a470dc53-fb16-448d-9774-34ddcc6359af:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 0.8) !important;}#s-a470dc53-fb16-448d-9774-34ddcc6359af:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a470dc53-fb16-448d-9774-34ddcc6359af-root {
    text-align: left;
  }


#s-a470dc53-fb16-448d-9774-34ddcc6359af.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a470dc53-fb16-448d-9774-34ddcc6359af-root {
    text-align: left;
  }


#s-a470dc53-fb16-448d-9774-34ddcc6359af.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a470dc53-fb16-448d-9774-34ddcc6359af-root {
    text-align: left;
  }


#s-a470dc53-fb16-448d-9774-34ddcc6359af.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a470dc53-fb16-448d-9774-34ddcc6359af-root {
    text-align: left;
  }


#s-a470dc53-fb16-448d-9774-34ddcc6359af.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a470dc53-fb16-448d-9774-34ddcc6359af-root {
    text-align: left;
  }


#s-a470dc53-fb16-448d-9774-34ddcc6359af.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}
#s-35f80019-5bdc-4071-a00a-4480a6ab8716 {
  background-repeat: no-repeat;
background-size: 100% 31px;
min-height: 30px;
background-position: center top;
}








#s-35f80019-5bdc-4071-a00a-4480a6ab8716 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-35f80019-5bdc-4071-a00a-4480a6ab8716.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8e537db6-8cbe-4e54-83b6-6a0014cf668e {
  padding-top: 0px;
padding-bottom: 20px;
min-height: 50px;
}








#s-8e537db6-8cbe-4e54-83b6-6a0014cf668e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8e537db6-8cbe-4e54-83b6-6a0014cf668e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e4c310bc-ff12-46ea-b985-9edf9735611d {
  text-align: center;
}







  #s-e4c310bc-ff12-46ea-b985-9edf9735611d img.shogun-image {
    

    
    
    
  }


#s-e4c310bc-ff12-46ea-b985-9edf9735611d .shogun-image-content {
  
    align-items: center;
  
}

#s-56564e92-daad-4d55-a7f5-fc7270d3046e {
  padding-top: 60px;
padding-left: 60px;
padding-bottom: 40px;
padding-right: 60px;
min-height: 50px;
background-color: rgba(93, 137, 84, 1);
}








#s-56564e92-daad-4d55-a7f5-fc7270d3046e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-56564e92-daad-4d55-a7f5-fc7270d3046e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4951a9cd-623e-40e4-88bd-c651d599dd05 {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 340px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-4951a9cd-623e-40e4-88bd-c651d599dd05 {
  min-height: 120px;
}
}
#s-4951a9cd-623e-40e4-88bd-c651d599dd05 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 60px;
  line-height: 1em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-4951a9cd-623e-40e4-88bd-c651d599dd05 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 43px;
  line-height: 1em;
  
  
}


}@media (max-width: 767px){#s-4951a9cd-623e-40e4-88bd-c651d599dd05 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 40px;
  line-height: 1em;
  
  
}


}
#s-89b1ef3d-329e-4695-a59e-91ead2d5bd4d {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 2px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
}
#s-89b1ef3d-329e-4695-a59e-91ead2d5bd4d:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 0.8) !important;}#s-89b1ef3d-329e-4695-a59e-91ead2d5bd4d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-89b1ef3d-329e-4695-a59e-91ead2d5bd4d-root {
    text-align: left;
  }


#s-89b1ef3d-329e-4695-a59e-91ead2d5bd4d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-89b1ef3d-329e-4695-a59e-91ead2d5bd4d-root {
    text-align: left;
  }


#s-89b1ef3d-329e-4695-a59e-91ead2d5bd4d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-89b1ef3d-329e-4695-a59e-91ead2d5bd4d-root {
    text-align: left;
  }


#s-89b1ef3d-329e-4695-a59e-91ead2d5bd4d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-89b1ef3d-329e-4695-a59e-91ead2d5bd4d-root {
    text-align: left;
  }


#s-89b1ef3d-329e-4695-a59e-91ead2d5bd4d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-89b1ef3d-329e-4695-a59e-91ead2d5bd4d-root {
    text-align: left;
  }


#s-89b1ef3d-329e-4695-a59e-91ead2d5bd4d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}
#s-b65015dc-aa82-400a-b9f7-0fb45a8e7438 {
  background-repeat: no-repeat;
background-size: 100% 31px;
min-height: 30px;
background-position: center top;
}








#s-b65015dc-aa82-400a-b9f7-0fb45a8e7438 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b65015dc-aa82-400a-b9f7-0fb45a8e7438.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-73df8e9a-d5fc-43bc-855d-b3cad941a0cb {
  min-height: 50px;
}








#s-73df8e9a-d5fc-43bc-855d-b3cad941a0cb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-73df8e9a-d5fc-43bc-855d-b3cad941a0cb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ab727561-6051-46e9-82eb-d5ae67e9dcf9 {
  margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
min-height: 50px;
max-width: 1378px;
background-color: rgba(243, 242, 240, 0);
}








#s-ab727561-6051-46e9-82eb-d5ae67e9dcf9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ab727561-6051-46e9-82eb-d5ae67e9dcf9.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-0a985b7a-f4e0-4efb-8b2b-fa1d45fbc9a2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-0a985b7a-f4e0-4efb-8b2b-fa1d45fbc9a2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0a985b7a-f4e0-4efb-8b2b-fa1d45fbc9a2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0a985b7a-f4e0-4efb-8b2b-fa1d45fbc9a2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-2d6d71ce-383e-4245-a899-32727174b2c4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-2d6d71ce-383e-4245-a899-32727174b2c4 .shogun-heading-component h2 {
  color: rgba(51, 78, 45, 1);
  font-weight:  normal ;
  font-family: "Oswald";
  font-style:  normal ;
  font-size: 26px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-464b10b3-b778-46a1-97ba-de84ff026de2 {
  margin-top: 15px;
margin-bottom: 15px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(51, 78, 45, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(164, 91, 91, 0);
text-align: right;
text-decoration: none;
letter-spacing: 2px;
color: rgba(51, 78, 45, 1);
background-image: none;
hover-type: color;
}
#s-464b10b3-b778-46a1-97ba-de84ff026de2:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-464b10b3-b778-46a1-97ba-de84ff026de2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-464b10b3-b778-46a1-97ba-de84ff026de2-root {
    text-align: right;
  }


#s-464b10b3-b778-46a1-97ba-de84ff026de2.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-464b10b3-b778-46a1-97ba-de84ff026de2-root {
    text-align: right;
  }


#s-464b10b3-b778-46a1-97ba-de84ff026de2.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-464b10b3-b778-46a1-97ba-de84ff026de2-root {
    text-align: right;
  }


#s-464b10b3-b778-46a1-97ba-de84ff026de2.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-464b10b3-b778-46a1-97ba-de84ff026de2-root {
    text-align: right;
  }


#s-464b10b3-b778-46a1-97ba-de84ff026de2.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-464b10b3-b778-46a1-97ba-de84ff026de2-root {
    text-align: right;
  }


#s-464b10b3-b778-46a1-97ba-de84ff026de2.shg-btn {
  color: rgba(51, 78, 45, 1);
  font-size: 14px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}
}
#s-ecac61a5-0635-4610-8191-42b88a2ab513 {
  min-height: 50px;
}








#s-ecac61a5-0635-4610-8191-42b88a2ab513 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ecac61a5-0635-4610-8191-42b88a2ab513.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-063a6567-fd7e-4b6f-a496-123ee06bdda9 {
  margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-bottom: 120px;
padding-right: 20px;
min-height: 50px;
max-width: 1378px;
}
@media (min-width: 768px) and (max-width: 991px){#s-063a6567-fd7e-4b6f-a496-123ee06bdda9 {
  padding-bottom: 40px;
}
}@media (max-width: 767px){#s-063a6567-fd7e-4b6f-a496-123ee06bdda9 {
  padding-bottom: 20px;
}
}







#s-063a6567-fd7e-4b6f-a496-123ee06bdda9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-063a6567-fd7e-4b6f-a496-123ee06bdda9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-972f4e14-55cf-43c5-b0d4-6c066be10312 {
  min-height: 50px;
}








#s-972f4e14-55cf-43c5-b0d4-6c066be10312 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-972f4e14-55cf-43c5-b0d4-6c066be10312.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e6c3384f-e227-4098-bfad-3732f90ddb2d {
  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:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
