.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-16e125b6-d1c8-4edf-b286-55443b3bf3b2 {
  min-height: 50px;
}
@media (max-width: 767px){#s-16e125b6-d1c8-4edf-b286-55443b3bf3b2 {
  display: none;
}
#s-16e125b6-d1c8-4edf-b286-55443b3bf3b2, #wrap-s-16e125b6-d1c8-4edf-b286-55443b3bf3b2 { display:none !important; }}







#s-16e125b6-d1c8-4edf-b286-55443b3bf3b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-16e125b6-d1c8-4edf-b286-55443b3bf3b2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-325be930-571e-4517-a8d3-26b7e50b3967 {
  max-width: 4480px;
aspect-ratio: 2/3;
text-align: center;
}
@media (max-width: 767px){#s-325be930-571e-4517-a8d3-26b7e50b3967 {
  display: none;
}
#s-325be930-571e-4517-a8d3-26b7e50b3967, #wrap-s-325be930-571e-4517-a8d3-26b7e50b3967 { display:none !important; }}




  #s-325be930-571e-4517-a8d3-26b7e50b3967 img.shogun-image,
  #s-325be930-571e-4517-a8d3-26b7e50b3967 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-325be930-571e-4517-a8d3-26b7e50b3967 {
    width: 100%;
    height: auto;
  }



  img.s-325be930-571e-4517-a8d3-26b7e50b3967.shogun-image {
    
    
  }


.s-325be930-571e-4517-a8d3-26b7e50b3967 .shogun-image-content {
  
    align-items: center;
  
}

.s-325be930-571e-4517-a8d3-26b7e50b3967.shg-align-container {
  text-align: center
}

.s-325be930-571e-4517-a8d3-26b7e50b3967.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-325be930-571e-4517-a8d3-26b7e50b3967.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-325be930-571e-4517-a8d3-26b7e50b3967 img.shogun-image,
  #s-325be930-571e-4517-a8d3-26b7e50b3967 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-325be930-571e-4517-a8d3-26b7e50b3967 {
    width: 100%;
    height: auto;
  }



  img.s-325be930-571e-4517-a8d3-26b7e50b3967.shogun-image {
    
    
  }


.s-325be930-571e-4517-a8d3-26b7e50b3967 .shogun-image-content {
  
    align-items: center;
  
}

.s-325be930-571e-4517-a8d3-26b7e50b3967.shg-align-container {
  text-align: center
}

.s-325be930-571e-4517-a8d3-26b7e50b3967.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-325be930-571e-4517-a8d3-26b7e50b3967.shogun-image {
  box-sizing: border-box;
}


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



  #s-325be930-571e-4517-a8d3-26b7e50b3967 img.shogun-image,
  #s-325be930-571e-4517-a8d3-26b7e50b3967 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-325be930-571e-4517-a8d3-26b7e50b3967 {
    width: 100%;
    height: auto;
  }



  img.s-325be930-571e-4517-a8d3-26b7e50b3967.shogun-image {
    
    
  }


.s-325be930-571e-4517-a8d3-26b7e50b3967 .shogun-image-content {
  
    align-items: center;
  
}

.s-325be930-571e-4517-a8d3-26b7e50b3967.shg-align-container {
  text-align: center
}

.s-325be930-571e-4517-a8d3-26b7e50b3967.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-325be930-571e-4517-a8d3-26b7e50b3967.shogun-image {
  box-sizing: border-box;
}


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



  #s-325be930-571e-4517-a8d3-26b7e50b3967 img.shogun-image,
  #s-325be930-571e-4517-a8d3-26b7e50b3967 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-325be930-571e-4517-a8d3-26b7e50b3967 {
    width: 100%;
    height: auto;
  }



  img.s-325be930-571e-4517-a8d3-26b7e50b3967.shogun-image {
    
    
  }


.s-325be930-571e-4517-a8d3-26b7e50b3967 .shogun-image-content {
  
    align-items: center;
  
}

.s-325be930-571e-4517-a8d3-26b7e50b3967.shg-align-container {
  text-align: center
}

.s-325be930-571e-4517-a8d3-26b7e50b3967.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-325be930-571e-4517-a8d3-26b7e50b3967.shogun-image {
  box-sizing: border-box;
}


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



  #s-325be930-571e-4517-a8d3-26b7e50b3967 img.shogun-image,
  #s-325be930-571e-4517-a8d3-26b7e50b3967 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-325be930-571e-4517-a8d3-26b7e50b3967 {
    width: 100%;
    height: auto;
  }



  img.s-325be930-571e-4517-a8d3-26b7e50b3967.shogun-image {
    
    
  }


.s-325be930-571e-4517-a8d3-26b7e50b3967 .shogun-image-content {
  
    align-items: center;
  
}

.s-325be930-571e-4517-a8d3-26b7e50b3967.shg-align-container {
  text-align: center
}

.s-325be930-571e-4517-a8d3-26b7e50b3967.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-325be930-571e-4517-a8d3-26b7e50b3967.shogun-image {
  box-sizing: border-box;
}


}
#s-9f5bb0cf-183e-425f-a224-396694282576 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-9f5bb0cf-183e-425f-a224-396694282576 {
  
}
}@media (max-width: 767px){#s-9f5bb0cf-183e-425f-a224-396694282576 {
  display: none;
}
#s-9f5bb0cf-183e-425f-a224-396694282576, #wrap-s-9f5bb0cf-183e-425f-a224-396694282576 { display:none !important; }}







#s-9f5bb0cf-183e-425f-a224-396694282576 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9f5bb0cf-183e-425f-a224-396694282576.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: rgba(0, 0, 0, 1);
  font-family: Assistant, sans-serif;
  text-transform: none;
  font-weight: normal;
  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-d5ed0a03-935a-4128-add0-f33b788187a6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-d5ed0a03-935a-4128-add0-f33b788187a6 {
  display: none;
}
#s-d5ed0a03-935a-4128-add0-f33b788187a6, #wrap-s-d5ed0a03-935a-4128-add0-f33b788187a6 { display:none !important; }}
#s-d5ed0a03-935a-4128-add0-f33b788187a6 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}



#s-5f17638f-ab0a-4685-95f7-be6c4e09889f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-5f17638f-ab0a-4685-95f7-be6c4e09889f {
  display: none;
}
#s-5f17638f-ab0a-4685-95f7-be6c4e09889f, #wrap-s-5f17638f-ab0a-4685-95f7-be6c4e09889f { display:none !important; }}
#s-5f17638f-ab0a-4685-95f7-be6c4e09889f .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  
  
  
}



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

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

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

#s-d14291b5-b378-4258-998e-575bf31cd123 {
  margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-d14291b5-b378-4258-998e-575bf31cd123 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d14291b5-b378-4258-998e-575bf31cd123 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d14291b5-b378-4258-998e-575bf31cd123 {
  
}
}@media (max-width: 767px){#s-d14291b5-b378-4258-998e-575bf31cd123 {
  
}
}
@media (min-width: 0px) {
[id="s-d14291b5-b378-4258-998e-575bf31cd123"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d14291b5-b378-4258-998e-575bf31cd123"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d14291b5-b378-4258-998e-575bf31cd123"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d14291b5-b378-4258-998e-575bf31cd123"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-d14291b5-b378-4258-998e-575bf31cd123"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-06baa603-ddad-4968-af28-db3d265d40f6 {
  padding-left: 10%;
padding-right: 10%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-06baa603-ddad-4968-af28-db3d265d40f6 {
  display: none;
}
#s-06baa603-ddad-4968-af28-db3d265d40f6, #wrap-s-06baa603-ddad-4968-af28-db3d265d40f6 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-06baa603-ddad-4968-af28-db3d265d40f6 {
  display: none;
}
#s-06baa603-ddad-4968-af28-db3d265d40f6, #wrap-s-06baa603-ddad-4968-af28-db3d265d40f6 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-06baa603-ddad-4968-af28-db3d265d40f6 {
  display: none;
}
#s-06baa603-ddad-4968-af28-db3d265d40f6, #wrap-s-06baa603-ddad-4968-af28-db3d265d40f6 { display:none !important; }}@media (max-width: 767px){#s-06baa603-ddad-4968-af28-db3d265d40f6 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
}
}







#s-06baa603-ddad-4968-af28-db3d265d40f6 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-06baa603-ddad-4968-af28-db3d265d40f6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ec83c410-34d0-4df9-91a3-e0da1eb01abf {
  margin-bottom: 0px;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
text-align: left;
}
@media (min-width: 1200px){#s-ec83c410-34d0-4df9-91a3-e0da1eb01abf {
  display: none;
}
#s-ec83c410-34d0-4df9-91a3-e0da1eb01abf, #wrap-s-ec83c410-34d0-4df9-91a3-e0da1eb01abf { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ec83c410-34d0-4df9-91a3-e0da1eb01abf {
  display: none;
}
#s-ec83c410-34d0-4df9-91a3-e0da1eb01abf, #wrap-s-ec83c410-34d0-4df9-91a3-e0da1eb01abf { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ec83c410-34d0-4df9-91a3-e0da1eb01abf {
  display: none;
}
#s-ec83c410-34d0-4df9-91a3-e0da1eb01abf, #wrap-s-ec83c410-34d0-4df9-91a3-e0da1eb01abf { display:none !important; }}
#s-ec83c410-34d0-4df9-91a3-e0da1eb01abf .shogun-heading-component h6 {
  color: rgba(159, 92, 93, 1);
  font-weight:  600 ;
  font-family: "Sarabun";
  font-style:  normal ;
  font-size: 14px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-155b1a80-e81f-4dc6-8998-a44752165ae7 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-155b1a80-e81f-4dc6-8998-a44752165ae7 {
  display: none;
}
#s-155b1a80-e81f-4dc6-8998-a44752165ae7, #wrap-s-155b1a80-e81f-4dc6-8998-a44752165ae7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-155b1a80-e81f-4dc6-8998-a44752165ae7 {
  display: none;
}
#s-155b1a80-e81f-4dc6-8998-a44752165ae7, #wrap-s-155b1a80-e81f-4dc6-8998-a44752165ae7 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-155b1a80-e81f-4dc6-8998-a44752165ae7 {
  display: none;
}
#s-155b1a80-e81f-4dc6-8998-a44752165ae7, #wrap-s-155b1a80-e81f-4dc6-8998-a44752165ae7 { display:none !important; }}
#s-155b1a80-e81f-4dc6-8998-a44752165ae7 .shogun-heading-component h1 {
  color: rgba(33, 33, 33, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  
  
  letter-spacing: -2px;
  text-align: left;
}



.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-a3ef1778-233c-4469-8684-2fe098c5efc4 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
text-align: left;
}







  #s-a3ef1778-233c-4469-8684-2fe098c5efc4 img.shogun-image {
    

    
    
    
  }


#s-a3ef1778-233c-4469-8684-2fe098c5efc4 .shogun-image-content {
  
    align-items: center;
  
}

#s-2bb35534-603e-4b04-a17c-fa5dafecbb90 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-2bb35534-603e-4b04-a17c-fa5dafecbb90 .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



#s-bc02c4ac-5a67-4855-9f08-6fc61b03e758 {
  padding-left: 10%;
padding-right: 10%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-bc02c4ac-5a67-4855-9f08-6fc61b03e758 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bc02c4ac-5a67-4855-9f08-6fc61b03e758 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bc02c4ac-5a67-4855-9f08-6fc61b03e758 {
  
}
}@media (max-width: 767px){#s-bc02c4ac-5a67-4855-9f08-6fc61b03e758 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
display: none;
}
#s-bc02c4ac-5a67-4855-9f08-6fc61b03e758, #wrap-s-bc02c4ac-5a67-4855-9f08-6fc61b03e758 { display:none !important; }}







#s-bc02c4ac-5a67-4855-9f08-6fc61b03e758 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-bc02c4ac-5a67-4855-9f08-6fc61b03e758.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d209623f-9d9e-4021-b95f-0b0b114cac6d {
  margin-bottom: 0px;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
text-align: left;
}
@media (min-width: 1200px){#s-d209623f-9d9e-4021-b95f-0b0b114cac6d {
  display: none;
}
#s-d209623f-9d9e-4021-b95f-0b0b114cac6d, #wrap-s-d209623f-9d9e-4021-b95f-0b0b114cac6d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d209623f-9d9e-4021-b95f-0b0b114cac6d {
  display: none;
}
#s-d209623f-9d9e-4021-b95f-0b0b114cac6d, #wrap-s-d209623f-9d9e-4021-b95f-0b0b114cac6d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d209623f-9d9e-4021-b95f-0b0b114cac6d {
  display: none;
}
#s-d209623f-9d9e-4021-b95f-0b0b114cac6d, #wrap-s-d209623f-9d9e-4021-b95f-0b0b114cac6d { display:none !important; }}
#s-d209623f-9d9e-4021-b95f-0b0b114cac6d .shogun-heading-component h6 {
  color: rgba(159, 92, 93, 1);
  font-weight:  600 ;
  font-family: "Sarabun";
  font-style:  normal ;
  font-size: 14px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-2367b4e0-e7df-43d6-8ea1-504f1e6e0359 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-2367b4e0-e7df-43d6-8ea1-504f1e6e0359 {
  display: none;
}
#s-2367b4e0-e7df-43d6-8ea1-504f1e6e0359, #wrap-s-2367b4e0-e7df-43d6-8ea1-504f1e6e0359 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2367b4e0-e7df-43d6-8ea1-504f1e6e0359 {
  display: none;
}
#s-2367b4e0-e7df-43d6-8ea1-504f1e6e0359, #wrap-s-2367b4e0-e7df-43d6-8ea1-504f1e6e0359 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2367b4e0-e7df-43d6-8ea1-504f1e6e0359 {
  display: none;
}
#s-2367b4e0-e7df-43d6-8ea1-504f1e6e0359, #wrap-s-2367b4e0-e7df-43d6-8ea1-504f1e6e0359 { display:none !important; }}
#s-2367b4e0-e7df-43d6-8ea1-504f1e6e0359 .shogun-heading-component h1 {
  color: rgba(33, 33, 33, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  
  
  letter-spacing: -2px;
  text-align: left;
}



#s-2699491d-4cac-4c8e-8b27-6d0dfa027cd1 {
  padding-left: 10%;
padding-right: 10%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-2699491d-4cac-4c8e-8b27-6d0dfa027cd1 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2699491d-4cac-4c8e-8b27-6d0dfa027cd1 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2699491d-4cac-4c8e-8b27-6d0dfa027cd1 {
  
}
}@media (max-width: 767px){#s-2699491d-4cac-4c8e-8b27-6d0dfa027cd1 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
display: none;
}
#s-2699491d-4cac-4c8e-8b27-6d0dfa027cd1, #wrap-s-2699491d-4cac-4c8e-8b27-6d0dfa027cd1 { display:none !important; }}







#s-2699491d-4cac-4c8e-8b27-6d0dfa027cd1 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-2699491d-4cac-4c8e-8b27-6d0dfa027cd1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-26bfd7dd-cdca-42c3-8119-63f7faefc767 {
  margin-bottom: 0px;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
text-align: left;
}
@media (min-width: 1200px){#s-26bfd7dd-cdca-42c3-8119-63f7faefc767 {
  display: none;
}
#s-26bfd7dd-cdca-42c3-8119-63f7faefc767, #wrap-s-26bfd7dd-cdca-42c3-8119-63f7faefc767 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-26bfd7dd-cdca-42c3-8119-63f7faefc767 {
  display: none;
}
#s-26bfd7dd-cdca-42c3-8119-63f7faefc767, #wrap-s-26bfd7dd-cdca-42c3-8119-63f7faefc767 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-26bfd7dd-cdca-42c3-8119-63f7faefc767 {
  display: none;
}
#s-26bfd7dd-cdca-42c3-8119-63f7faefc767, #wrap-s-26bfd7dd-cdca-42c3-8119-63f7faefc767 { display:none !important; }}
#s-26bfd7dd-cdca-42c3-8119-63f7faefc767 .shogun-heading-component h6 {
  color: rgba(159, 92, 93, 1);
  font-weight:  600 ;
  font-family: "Sarabun";
  font-style:  normal ;
  font-size: 14px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-962f30aa-aa33-4c30-af0a-3202bccfe75f {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-962f30aa-aa33-4c30-af0a-3202bccfe75f {
  display: none;
}
#s-962f30aa-aa33-4c30-af0a-3202bccfe75f, #wrap-s-962f30aa-aa33-4c30-af0a-3202bccfe75f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-962f30aa-aa33-4c30-af0a-3202bccfe75f {
  display: none;
}
#s-962f30aa-aa33-4c30-af0a-3202bccfe75f, #wrap-s-962f30aa-aa33-4c30-af0a-3202bccfe75f { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-962f30aa-aa33-4c30-af0a-3202bccfe75f {
  display: none;
}
#s-962f30aa-aa33-4c30-af0a-3202bccfe75f, #wrap-s-962f30aa-aa33-4c30-af0a-3202bccfe75f { display:none !important; }}
#s-962f30aa-aa33-4c30-af0a-3202bccfe75f .shogun-heading-component h1 {
  color: rgba(33, 33, 33, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  
  
  letter-spacing: -2px;
  text-align: left;
}



#s-d1fbfa03-e98b-4cf8-af28-556d34f21456 {
  background-repeat: no-repeat;
background-size: cover;
border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
min-height: 720px;
background-position: center center;
}
@media (min-width: 1200px){#s-d1fbfa03-e98b-4cf8-af28-556d34f21456 {
  display: none;
}
#s-d1fbfa03-e98b-4cf8-af28-556d34f21456, #wrap-s-d1fbfa03-e98b-4cf8-af28-556d34f21456 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d1fbfa03-e98b-4cf8-af28-556d34f21456 {
  display: none;
}
#s-d1fbfa03-e98b-4cf8-af28-556d34f21456, #wrap-s-d1fbfa03-e98b-4cf8-af28-556d34f21456 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d1fbfa03-e98b-4cf8-af28-556d34f21456 {
  min-height: 480px;
display: none;
}
#s-d1fbfa03-e98b-4cf8-af28-556d34f21456, #wrap-s-d1fbfa03-e98b-4cf8-af28-556d34f21456 { display:none !important; }}@media (max-width: 767px){#s-d1fbfa03-e98b-4cf8-af28-556d34f21456 {
  min-height: 360px;
}
}
#s-d1fbfa03-e98b-4cf8-af28-556d34f21456 {
  background-image: url(https://i.shgcdn.com/b971a314-603c-4ee5-b197-ec06e6693aab/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-d1fbfa03-e98b-4cf8-af28-556d34f21456 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-d1fbfa03-e98b-4cf8-af28-556d34f21456.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-38e5daab-ccb4-4de0-b45b-db5c272ae33c {
  padding-left: 25%;
padding-right: 25%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-38e5daab-ccb4-4de0-b45b-db5c272ae33c {
  display: none;
}
#s-38e5daab-ccb4-4de0-b45b-db5c272ae33c, #wrap-s-38e5daab-ccb4-4de0-b45b-db5c272ae33c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-38e5daab-ccb4-4de0-b45b-db5c272ae33c {
  display: none;
}
#s-38e5daab-ccb4-4de0-b45b-db5c272ae33c, #wrap-s-38e5daab-ccb4-4de0-b45b-db5c272ae33c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-38e5daab-ccb4-4de0-b45b-db5c272ae33c {
  padding-left: 20%;
padding-right: 20%;
display: none;
}
#s-38e5daab-ccb4-4de0-b45b-db5c272ae33c, #wrap-s-38e5daab-ccb4-4de0-b45b-db5c272ae33c { display:none !important; }}@media (max-width: 767px){#s-38e5daab-ccb4-4de0-b45b-db5c272ae33c {
  padding-left: 20px;
padding-right: 20px;
}
}







#s-38e5daab-ccb4-4de0-b45b-db5c272ae33c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-38e5daab-ccb4-4de0-b45b-db5c272ae33c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7de16bc4-4b85-4b8b-84ef-109e9b382dec {
  padding-bottom: 30px;
text-align: left;
}

#s-7de16bc4-4b85-4b8b-84ef-109e9b382dec .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 26px;
  
  
  text-align: left;
}



#s-52a8b6dc-a629-45a6-9fe1-da1c0e793b70 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-52a8b6dc-a629-45a6-9fe1-da1c0e793b70 .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



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

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

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

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

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

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

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: rgba(0, 0, 0, 1);
  font-family: Assistant, sans-serif;
  font-weight: normal;
}

.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: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: rgba(0, 0, 0, 1);
  font-family: Assistant, sans-serif;
}

.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: rgba(0, 0, 0, 1);
  font-family: Assistant, sans-serif;
  font-weight: normal;
}

.shg-theme-text-content p {
  color: rgba(0, 0, 0, 1);
  font-family: Assistant, sans-serif;
  font-weight: normal;
}

@media (max-width: 767px){#s-373f0344-e583-454e-95b5-1b97dd418bb6 {
  display: none;
}
#s-373f0344-e583-454e-95b5-1b97dd418bb6, #wrap-s-373f0344-e583-454e-95b5-1b97dd418bb6 { display:none !important; }}
#s-404b689a-0439-4766-afb8-644a3a14382d {
  margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-404b689a-0439-4766-afb8-644a3a14382d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-404b689a-0439-4766-afb8-644a3a14382d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-404b689a-0439-4766-afb8-644a3a14382d {
  
}
}@media (max-width: 767px){#s-404b689a-0439-4766-afb8-644a3a14382d {
  display: none;
}
#s-404b689a-0439-4766-afb8-644a3a14382d, #wrap-s-404b689a-0439-4766-afb8-644a3a14382d { display:none !important; }}
@media (min-width: 0px) {
[id="s-404b689a-0439-4766-afb8-644a3a14382d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-404b689a-0439-4766-afb8-644a3a14382d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-404b689a-0439-4766-afb8-644a3a14382d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-404b689a-0439-4766-afb8-644a3a14382d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-865fbf08-ae9f-4d1e-aaa0-a9b57e021dec {
  background-repeat: no-repeat;
background-size: cover;
border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
min-height: 720px;
background-position: center center;
}
@media (min-width: 1200px){#s-865fbf08-ae9f-4d1e-aaa0-a9b57e021dec {
  display: none;
}
#s-865fbf08-ae9f-4d1e-aaa0-a9b57e021dec, #wrap-s-865fbf08-ae9f-4d1e-aaa0-a9b57e021dec { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-865fbf08-ae9f-4d1e-aaa0-a9b57e021dec {
  display: none;
}
#s-865fbf08-ae9f-4d1e-aaa0-a9b57e021dec, #wrap-s-865fbf08-ae9f-4d1e-aaa0-a9b57e021dec { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-865fbf08-ae9f-4d1e-aaa0-a9b57e021dec {
  min-height: 480px;
display: none;
}
#s-865fbf08-ae9f-4d1e-aaa0-a9b57e021dec, #wrap-s-865fbf08-ae9f-4d1e-aaa0-a9b57e021dec { display:none !important; }}@media (max-width: 767px){#s-865fbf08-ae9f-4d1e-aaa0-a9b57e021dec {
  min-height: 360px;
}
}







#s-865fbf08-ae9f-4d1e-aaa0-a9b57e021dec > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-865fbf08-ae9f-4d1e-aaa0-a9b57e021dec.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ccd5ae40-a24f-4123-87e9-ebe1b8e0523a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-ccd5ae40-a24f-4123-87e9-ebe1b8e0523a {
  display: none;
}
#s-ccd5ae40-a24f-4123-87e9-ebe1b8e0523a, #wrap-s-ccd5ae40-a24f-4123-87e9-ebe1b8e0523a { display:none !important; }}
#s-ccd5ae40-a24f-4123-87e9-ebe1b8e0523a .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



#s-57c2d4ee-8a68-492f-b109-7035f79c2e75 {
  padding-left: 10%;
padding-right: 10%;
min-height: 720px;
background-color: rgba(247, 181, 168, 1);
}
@media (min-width: 1200px){#s-57c2d4ee-8a68-492f-b109-7035f79c2e75 {
  display: none;
}
#s-57c2d4ee-8a68-492f-b109-7035f79c2e75, #wrap-s-57c2d4ee-8a68-492f-b109-7035f79c2e75 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-57c2d4ee-8a68-492f-b109-7035f79c2e75 {
  display: none;
}
#s-57c2d4ee-8a68-492f-b109-7035f79c2e75, #wrap-s-57c2d4ee-8a68-492f-b109-7035f79c2e75 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-57c2d4ee-8a68-492f-b109-7035f79c2e75 {
  min-height: 480px;
display: none;
}
#s-57c2d4ee-8a68-492f-b109-7035f79c2e75, #wrap-s-57c2d4ee-8a68-492f-b109-7035f79c2e75 { display:none !important; }}@media (max-width: 767px){#s-57c2d4ee-8a68-492f-b109-7035f79c2e75 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
min-height: 100%;
}
}







#s-57c2d4ee-8a68-492f-b109-7035f79c2e75 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-57c2d4ee-8a68-492f-b109-7035f79c2e75.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0fee2570-4976-4722-b19f-913bc21973aa {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-0fee2570-4976-4722-b19f-913bc21973aa .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  300 ;
  font-family: "IBM Plex Serif";
  font-style:  normal ;
  font-size: 64px;
  
  letter-spacing: -2px;
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-0fee2570-4976-4722-b19f-913bc21973aa .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  300 ;
  font-family: "IBM Plex Serif";
  font-style:  normal ;
  font-size: 44px;
  
  letter-spacing: -2px;
  text-align: left;
}


}@media (max-width: 767px){#s-0fee2570-4976-4722-b19f-913bc21973aa .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  300 ;
  font-family: "IBM Plex Serif";
  font-style:  normal ;
  font-size: 44px;
  
  letter-spacing: -2px;
  text-align: left;
}


}
#s-0bff8060-fd98-4215-996c-05051e068920 {
  background-repeat: no-repeat;
background-size: cover;
border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
min-height: 720px;
background-position: center center;
}
@media (min-width: 1200px){#s-0bff8060-fd98-4215-996c-05051e068920 {
  display: none;
}
#s-0bff8060-fd98-4215-996c-05051e068920, #wrap-s-0bff8060-fd98-4215-996c-05051e068920 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0bff8060-fd98-4215-996c-05051e068920 {
  display: none;
}
#s-0bff8060-fd98-4215-996c-05051e068920, #wrap-s-0bff8060-fd98-4215-996c-05051e068920 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0bff8060-fd98-4215-996c-05051e068920 {
  min-height: 480px;
display: none;
}
#s-0bff8060-fd98-4215-996c-05051e068920, #wrap-s-0bff8060-fd98-4215-996c-05051e068920 { display:none !important; }}@media (max-width: 767px){#s-0bff8060-fd98-4215-996c-05051e068920 {
  min-height: 360px;
}
}







#s-0bff8060-fd98-4215-996c-05051e068920 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-0bff8060-fd98-4215-996c-05051e068920.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-197c9aaf-ea64-4a28-867a-aa17bcf7b447 {
  padding-left: 10%;
padding-right: 10%;
min-height: 720px;
background-color: rgba(247, 181, 168, 1);
}
@media (min-width: 1200px){#s-197c9aaf-ea64-4a28-867a-aa17bcf7b447 {
  display: none;
}
#s-197c9aaf-ea64-4a28-867a-aa17bcf7b447, #wrap-s-197c9aaf-ea64-4a28-867a-aa17bcf7b447 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-197c9aaf-ea64-4a28-867a-aa17bcf7b447 {
  display: none;
}
#s-197c9aaf-ea64-4a28-867a-aa17bcf7b447, #wrap-s-197c9aaf-ea64-4a28-867a-aa17bcf7b447 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-197c9aaf-ea64-4a28-867a-aa17bcf7b447 {
  min-height: 480px;
display: none;
}
#s-197c9aaf-ea64-4a28-867a-aa17bcf7b447, #wrap-s-197c9aaf-ea64-4a28-867a-aa17bcf7b447 { display:none !important; }}@media (max-width: 767px){#s-197c9aaf-ea64-4a28-867a-aa17bcf7b447 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
min-height: 100%;
}
}







#s-197c9aaf-ea64-4a28-867a-aa17bcf7b447 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-197c9aaf-ea64-4a28-867a-aa17bcf7b447.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-73f1fef3-b55a-4ea0-84d6-90bc71d2b302 {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-73f1fef3-b55a-4ea0-84d6-90bc71d2b302 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  300 ;
  font-family: "IBM Plex Serif";
  font-style:  normal ;
  font-size: 64px;
  
  letter-spacing: -2px;
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-73f1fef3-b55a-4ea0-84d6-90bc71d2b302 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  300 ;
  font-family: "IBM Plex Serif";
  font-style:  normal ;
  font-size: 44px;
  
  letter-spacing: -2px;
  text-align: left;
}


}@media (max-width: 767px){#s-73f1fef3-b55a-4ea0-84d6-90bc71d2b302 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  300 ;
  font-family: "IBM Plex Serif";
  font-style:  normal ;
  font-size: 44px;
  
  letter-spacing: -2px;
  text-align: left;
}


}
#s-e7cb3766-4191-453e-9103-3ed86d9ba92b {
  padding-top: 100px;
padding-left: 25%;
padding-bottom: 100px;
padding-right: 25%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-e7cb3766-4191-453e-9103-3ed86d9ba92b {
  display: none;
}
#s-e7cb3766-4191-453e-9103-3ed86d9ba92b, #wrap-s-e7cb3766-4191-453e-9103-3ed86d9ba92b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e7cb3766-4191-453e-9103-3ed86d9ba92b {
  display: none;
}
#s-e7cb3766-4191-453e-9103-3ed86d9ba92b, #wrap-s-e7cb3766-4191-453e-9103-3ed86d9ba92b { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e7cb3766-4191-453e-9103-3ed86d9ba92b {
  padding-top: 60px;
padding-left: 20%;
padding-bottom: 60px;
padding-right: 20%;
display: none;
}
#s-e7cb3766-4191-453e-9103-3ed86d9ba92b, #wrap-s-e7cb3766-4191-453e-9103-3ed86d9ba92b { display:none !important; }}@media (max-width: 767px){#s-e7cb3766-4191-453e-9103-3ed86d9ba92b {
  padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
}
}







#s-e7cb3766-4191-453e-9103-3ed86d9ba92b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e7cb3766-4191-453e-9103-3ed86d9ba92b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7f102d67-1752-49bb-a223-d9554bd3f79f {
  padding-bottom: 30px;
text-align: left;
}

#s-7f102d67-1752-49bb-a223-d9554bd3f79f .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 26px;
  
  
  text-align: left;
}



#s-a3fd937e-b5e6-45d2-883e-116e1ac235ae {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-a3fd937e-b5e6-45d2-883e-116e1ac235ae .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



#s-18364483-5975-4678-bfc7-5141b254b6bb {
  text-align: center;
}
@media (min-width: 1200px){#s-18364483-5975-4678-bfc7-5141b254b6bb {
  display: none;
}
#s-18364483-5975-4678-bfc7-5141b254b6bb, #wrap-s-18364483-5975-4678-bfc7-5141b254b6bb { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-18364483-5975-4678-bfc7-5141b254b6bb {
  display: none;
}
#s-18364483-5975-4678-bfc7-5141b254b6bb, #wrap-s-18364483-5975-4678-bfc7-5141b254b6bb { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-18364483-5975-4678-bfc7-5141b254b6bb {
  display: none;
}
#s-18364483-5975-4678-bfc7-5141b254b6bb, #wrap-s-18364483-5975-4678-bfc7-5141b254b6bb { display:none !important; }}






  img.s-18364483-5975-4678-bfc7-5141b254b6bb.shogun-image {
    
    
  }


.s-18364483-5975-4678-bfc7-5141b254b6bb .shogun-image-content {
  
    align-items: center;
  
}

.s-18364483-5975-4678-bfc7-5141b254b6bb.shg-align-container {
  text-align: center
}

.s-18364483-5975-4678-bfc7-5141b254b6bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18364483-5975-4678-bfc7-5141b254b6bb.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-18364483-5975-4678-bfc7-5141b254b6bb.shogun-image {
    
    
  }


.s-18364483-5975-4678-bfc7-5141b254b6bb .shogun-image-content {
  
    align-items: center;
  
}

.s-18364483-5975-4678-bfc7-5141b254b6bb.shg-align-container {
  text-align: center
}

.s-18364483-5975-4678-bfc7-5141b254b6bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18364483-5975-4678-bfc7-5141b254b6bb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-18364483-5975-4678-bfc7-5141b254b6bb.shogun-image {
    
    
  }


.s-18364483-5975-4678-bfc7-5141b254b6bb .shogun-image-content {
  
    align-items: center;
  
}

.s-18364483-5975-4678-bfc7-5141b254b6bb.shg-align-container {
  text-align: center
}

.s-18364483-5975-4678-bfc7-5141b254b6bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18364483-5975-4678-bfc7-5141b254b6bb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-18364483-5975-4678-bfc7-5141b254b6bb.shogun-image {
    
    
  }


.s-18364483-5975-4678-bfc7-5141b254b6bb .shogun-image-content {
  
    align-items: center;
  
}

.s-18364483-5975-4678-bfc7-5141b254b6bb.shg-align-container {
  text-align: center
}

.s-18364483-5975-4678-bfc7-5141b254b6bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18364483-5975-4678-bfc7-5141b254b6bb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-18364483-5975-4678-bfc7-5141b254b6bb.shogun-image {
    
    
  }


.s-18364483-5975-4678-bfc7-5141b254b6bb .shogun-image-content {
  
    align-items: center;
  
}

.s-18364483-5975-4678-bfc7-5141b254b6bb.shg-align-container {
  text-align: center
}

.s-18364483-5975-4678-bfc7-5141b254b6bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18364483-5975-4678-bfc7-5141b254b6bb.shogun-image {
  box-sizing: border-box;
}


}
#s-9ca1d675-24bd-4469-85b4-8c628deb9f49 {
  padding-top: 100px;
padding-left: 25%;
padding-bottom: 100px;
padding-right: 25%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-9ca1d675-24bd-4469-85b4-8c628deb9f49 {
  display: none;
}
#s-9ca1d675-24bd-4469-85b4-8c628deb9f49, #wrap-s-9ca1d675-24bd-4469-85b4-8c628deb9f49 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9ca1d675-24bd-4469-85b4-8c628deb9f49 {
  display: none;
}
#s-9ca1d675-24bd-4469-85b4-8c628deb9f49, #wrap-s-9ca1d675-24bd-4469-85b4-8c628deb9f49 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9ca1d675-24bd-4469-85b4-8c628deb9f49 {
  padding-top: 60px;
padding-left: 20%;
padding-bottom: 60px;
padding-right: 20%;
display: none;
}
#s-9ca1d675-24bd-4469-85b4-8c628deb9f49, #wrap-s-9ca1d675-24bd-4469-85b4-8c628deb9f49 { display:none !important; }}@media (max-width: 767px){#s-9ca1d675-24bd-4469-85b4-8c628deb9f49 {
  padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
}
}







#s-9ca1d675-24bd-4469-85b4-8c628deb9f49 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9ca1d675-24bd-4469-85b4-8c628deb9f49.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-943bc7c8-4514-41b8-a28a-95410f182b0f {
  padding-bottom: 30px;
text-align: left;
}

#s-943bc7c8-4514-41b8-a28a-95410f182b0f .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 26px;
  
  
  text-align: left;
}



#s-ae26b83c-f05e-4ddb-9152-e72f7671238a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-ae26b83c-f05e-4ddb-9152-e72f7671238a .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



#s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054 {
  text-align: center;
}







  img.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shogun-image {
    
    
  }


.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054 .shogun-image-content {
  
    align-items: center;
  
}

.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shg-align-container {
  text-align: center
}

.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shogun-image {
    
    
  }


.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054 .shogun-image-content {
  
    align-items: center;
  
}

.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shg-align-container {
  text-align: center
}

.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shogun-image {
    
    
  }


.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054 .shogun-image-content {
  
    align-items: center;
  
}

.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shg-align-container {
  text-align: center
}

.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shogun-image {
    
    
  }


.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054 .shogun-image-content {
  
    align-items: center;
  
}

.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shg-align-container {
  text-align: center
}

.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shogun-image {
    
    
  }


.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054 .shogun-image-content {
  
    align-items: center;
  
}

.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shg-align-container {
  text-align: center
}

.s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e02ad9ee-2734-42f1-8ab3-f1e5ac694054.shogun-image {
  box-sizing: border-box;
}


}
#s-206d0794-7a01-4cd1-b819-9063eca79438 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-206d0794-7a01-4cd1-b819-9063eca79438 {
  display: none;
}
#s-206d0794-7a01-4cd1-b819-9063eca79438, #wrap-s-206d0794-7a01-4cd1-b819-9063eca79438 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-206d0794-7a01-4cd1-b819-9063eca79438 {
  display: none;
}
#s-206d0794-7a01-4cd1-b819-9063eca79438, #wrap-s-206d0794-7a01-4cd1-b819-9063eca79438 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-206d0794-7a01-4cd1-b819-9063eca79438 {
  display: none;
}
#s-206d0794-7a01-4cd1-b819-9063eca79438, #wrap-s-206d0794-7a01-4cd1-b819-9063eca79438 { display:none !important; }}
#s-206d0794-7a01-4cd1-b819-9063eca79438 .shogun-heading-component h1 {
  color: rgba(33, 33, 33, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  
  
  letter-spacing: -2px;
  text-align: left;
}



#s-78cf4908-fbbc-4bae-ab79-45e6b2098e3d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-78cf4908-fbbc-4bae-ab79-45e6b2098e3d .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



#s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029 {
  text-align: center;
}







  img.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shogun-image {
    
    
  }


.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029 .shogun-image-content {
  
    align-items: center;
  
}

.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shg-align-container {
  text-align: center
}

.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shogun-image {
    
    
  }


.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029 .shogun-image-content {
  
    align-items: center;
  
}

.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shg-align-container {
  text-align: center
}

.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shogun-image {
    
    
  }


.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029 .shogun-image-content {
  
    align-items: center;
  
}

.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shg-align-container {
  text-align: center
}

.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shogun-image {
    
    
  }


.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029 .shogun-image-content {
  
    align-items: center;
  
}

.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shg-align-container {
  text-align: center
}

.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shogun-image {
    
    
  }


.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029 .shogun-image-content {
  
    align-items: center;
  
}

.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shg-align-container {
  text-align: center
}

.s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3f5ba3c6-71a8-4f08-a3a0-fc45ba18b029.shogun-image {
  box-sizing: border-box;
}


}
#s-365bda0b-80c9-4d1a-b5da-4b1e6b1314b3 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-365bda0b-80c9-4d1a-b5da-4b1e6b1314b3 {
  display: none;
}
#s-365bda0b-80c9-4d1a-b5da-4b1e6b1314b3, #wrap-s-365bda0b-80c9-4d1a-b5da-4b1e6b1314b3 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-365bda0b-80c9-4d1a-b5da-4b1e6b1314b3 {
  display: none;
}
#s-365bda0b-80c9-4d1a-b5da-4b1e6b1314b3, #wrap-s-365bda0b-80c9-4d1a-b5da-4b1e6b1314b3 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-365bda0b-80c9-4d1a-b5da-4b1e6b1314b3 {
  display: none;
}
#s-365bda0b-80c9-4d1a-b5da-4b1e6b1314b3, #wrap-s-365bda0b-80c9-4d1a-b5da-4b1e6b1314b3 { display:none !important; }}
#s-365bda0b-80c9-4d1a-b5da-4b1e6b1314b3 .shogun-heading-component h1 {
  color: rgba(33, 33, 33, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  
  
  letter-spacing: -2px;
  text-align: left;
}



#s-8793ce21-f2f4-45ab-9da1-3eabca8cae7a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-8793ce21-f2f4-45ab-9da1-3eabca8cae7a .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



#s-cf73591b-6d74-4b6e-9807-5512221f1ed9 {
  background-repeat: no-repeat;
background-size: cover;
border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
min-height: 720px;
background-position: center center;
}
@media (min-width: 1200px){#s-cf73591b-6d74-4b6e-9807-5512221f1ed9 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cf73591b-6d74-4b6e-9807-5512221f1ed9 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-cf73591b-6d74-4b6e-9807-5512221f1ed9 {
  min-height: 480px;
}
}@media (max-width: 767px){#s-cf73591b-6d74-4b6e-9807-5512221f1ed9 {
  min-height: 360px;
}
}







#s-cf73591b-6d74-4b6e-9807-5512221f1ed9 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-cf73591b-6d74-4b6e-9807-5512221f1ed9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a3542297-bd9d-4cf4-a2e7-13b56cccc4fb {
  padding-left: 10%;
padding-right: 10%;
min-height: 720px;
background-color: rgba(247, 181, 168, 1);
}
@media (min-width: 1200px){#s-a3542297-bd9d-4cf4-a2e7-13b56cccc4fb {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a3542297-bd9d-4cf4-a2e7-13b56cccc4fb {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a3542297-bd9d-4cf4-a2e7-13b56cccc4fb {
  min-height: 480px;
}
}@media (max-width: 767px){#s-a3542297-bd9d-4cf4-a2e7-13b56cccc4fb {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
min-height: 100%;
}
}







#s-a3542297-bd9d-4cf4-a2e7-13b56cccc4fb > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-a3542297-bd9d-4cf4-a2e7-13b56cccc4fb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bb35d8bb-c46e-4e5b-9e6d-a1dd09aca64a {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-bb35d8bb-c46e-4e5b-9e6d-a1dd09aca64a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  300 ;
  font-family: "IBM Plex Serif";
  font-style:  normal ;
  font-size: 64px;
  
  letter-spacing: -2px;
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-bb35d8bb-c46e-4e5b-9e6d-a1dd09aca64a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  300 ;
  font-family: "IBM Plex Serif";
  font-style:  normal ;
  font-size: 44px;
  
  letter-spacing: -2px;
  text-align: left;
}


}@media (max-width: 767px){#s-bb35d8bb-c46e-4e5b-9e6d-a1dd09aca64a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  300 ;
  font-family: "IBM Plex Serif";
  font-style:  normal ;
  font-size: 44px;
  
  letter-spacing: -2px;
  text-align: left;
}


}
#s-adfa4e73-2a37-43c9-8493-ddb3b955ac4d {
  padding-left: 25%;
padding-right: 25%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-adfa4e73-2a37-43c9-8493-ddb3b955ac4d {
  display: none;
}
#s-adfa4e73-2a37-43c9-8493-ddb3b955ac4d, #wrap-s-adfa4e73-2a37-43c9-8493-ddb3b955ac4d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-adfa4e73-2a37-43c9-8493-ddb3b955ac4d {
  display: none;
}
#s-adfa4e73-2a37-43c9-8493-ddb3b955ac4d, #wrap-s-adfa4e73-2a37-43c9-8493-ddb3b955ac4d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-adfa4e73-2a37-43c9-8493-ddb3b955ac4d {
  padding-left: 20%;
padding-right: 20%;
display: none;
}
#s-adfa4e73-2a37-43c9-8493-ddb3b955ac4d, #wrap-s-adfa4e73-2a37-43c9-8493-ddb3b955ac4d { display:none !important; }}@media (max-width: 767px){#s-adfa4e73-2a37-43c9-8493-ddb3b955ac4d {
  padding-left: 20px;
padding-right: 20px;
}
}







#s-adfa4e73-2a37-43c9-8493-ddb3b955ac4d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-adfa4e73-2a37-43c9-8493-ddb3b955ac4d.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-6b82a2fb-9585-4ba3-a720-9ad1c63c378c {
  padding-bottom: 30px;
text-align: left;
}

#s-6b82a2fb-9585-4ba3-a720-9ad1c63c378c .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 26px;
  
  
  text-align: left;
}



#s-f108974f-6186-4737-8b98-625d967aef47 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-f108974f-6186-4737-8b98-625d967aef47 .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



#s-c89d8455-030e-43ea-8b08-8f011a3f0b49 {
  text-align: center;
}







  img.s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shogun-image {
    
    
  }


.s-c89d8455-030e-43ea-8b08-8f011a3f0b49 .shogun-image-content {
  
    align-items: center;
  
}

.s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shg-align-container {
  text-align: center
}

.s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shogun-image {
    
    
  }


.s-c89d8455-030e-43ea-8b08-8f011a3f0b49 .shogun-image-content {
  
    align-items: center;
  
}

.s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shg-align-container {
  text-align: center
}

.s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shogun-image {
    
    
  }


.s-c89d8455-030e-43ea-8b08-8f011a3f0b49 .shogun-image-content {
  
    align-items: center;
  
}

.s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shg-align-container {
  text-align: center
}

.s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shogun-image {
    
    
  }


.s-c89d8455-030e-43ea-8b08-8f011a3f0b49 .shogun-image-content {
  
    align-items: center;
  
}

.s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shg-align-container {
  text-align: center
}

.s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shogun-image {
    
    
  }


.s-c89d8455-030e-43ea-8b08-8f011a3f0b49 .shogun-image-content {
  
    align-items: center;
  
}

.s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shg-align-container {
  text-align: center
}

.s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c89d8455-030e-43ea-8b08-8f011a3f0b49.shogun-image {
  box-sizing: border-box;
}


}
#s-8491da9d-e306-4124-8e70-43d1a37670ef {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-8491da9d-e306-4124-8e70-43d1a37670ef {
  display: none;
}
#s-8491da9d-e306-4124-8e70-43d1a37670ef, #wrap-s-8491da9d-e306-4124-8e70-43d1a37670ef { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8491da9d-e306-4124-8e70-43d1a37670ef {
  display: none;
}
#s-8491da9d-e306-4124-8e70-43d1a37670ef, #wrap-s-8491da9d-e306-4124-8e70-43d1a37670ef { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8491da9d-e306-4124-8e70-43d1a37670ef {
  display: none;
}
#s-8491da9d-e306-4124-8e70-43d1a37670ef, #wrap-s-8491da9d-e306-4124-8e70-43d1a37670ef { display:none !important; }}
#s-8491da9d-e306-4124-8e70-43d1a37670ef .shogun-heading-component h1 {
  color: rgba(33, 33, 33, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  
  
  letter-spacing: -2px;
  text-align: left;
}



#s-f71b4fd2-1b18-4d91-b563-ca355eb9000f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-f71b4fd2-1b18-4d91-b563-ca355eb9000f .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



#s-113ec3d6-f439-47cc-91c6-6a8964a9796a {
  text-align: center;
}







  img.s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shogun-image {
    
    
  }


.s-113ec3d6-f439-47cc-91c6-6a8964a9796a .shogun-image-content {
  
    align-items: center;
  
}

.s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shg-align-container {
  text-align: center
}

.s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shogun-image {
    
    
  }


.s-113ec3d6-f439-47cc-91c6-6a8964a9796a .shogun-image-content {
  
    align-items: center;
  
}

.s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shg-align-container {
  text-align: center
}

.s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shogun-image {
    
    
  }


.s-113ec3d6-f439-47cc-91c6-6a8964a9796a .shogun-image-content {
  
    align-items: center;
  
}

.s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shg-align-container {
  text-align: center
}

.s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shogun-image {
    
    
  }


.s-113ec3d6-f439-47cc-91c6-6a8964a9796a .shogun-image-content {
  
    align-items: center;
  
}

.s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shg-align-container {
  text-align: center
}

.s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shogun-image {
    
    
  }


.s-113ec3d6-f439-47cc-91c6-6a8964a9796a .shogun-image-content {
  
    align-items: center;
  
}

.s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shg-align-container {
  text-align: center
}

.s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-113ec3d6-f439-47cc-91c6-6a8964a9796a.shogun-image {
  box-sizing: border-box;
}


}
#s-dbad836b-152e-443c-bcdd-e7b3361f08c1 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-dbad836b-152e-443c-bcdd-e7b3361f08c1 {
  display: none;
}
#s-dbad836b-152e-443c-bcdd-e7b3361f08c1, #wrap-s-dbad836b-152e-443c-bcdd-e7b3361f08c1 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dbad836b-152e-443c-bcdd-e7b3361f08c1 {
  display: none;
}
#s-dbad836b-152e-443c-bcdd-e7b3361f08c1, #wrap-s-dbad836b-152e-443c-bcdd-e7b3361f08c1 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-dbad836b-152e-443c-bcdd-e7b3361f08c1 {
  display: none;
}
#s-dbad836b-152e-443c-bcdd-e7b3361f08c1, #wrap-s-dbad836b-152e-443c-bcdd-e7b3361f08c1 { display:none !important; }}
#s-dbad836b-152e-443c-bcdd-e7b3361f08c1 .shogun-heading-component h1 {
  color: rgba(33, 33, 33, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  
  
  letter-spacing: -2px;
  text-align: left;
}



#s-5a878995-30de-40a4-ba9d-1f4ebc709397 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-5a878995-30de-40a4-ba9d-1f4ebc709397 .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



#s-467bfeaa-8d5a-4c34-b6d1-c591d7184409 {
  background-repeat: no-repeat;
background-size: cover;
border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
min-height: 720px;
background-position: center center;
}
@media (min-width: 1200px){#s-467bfeaa-8d5a-4c34-b6d1-c591d7184409 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-467bfeaa-8d5a-4c34-b6d1-c591d7184409 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-467bfeaa-8d5a-4c34-b6d1-c591d7184409 {
  min-height: 480px;
}
}@media (max-width: 767px){#s-467bfeaa-8d5a-4c34-b6d1-c591d7184409 {
  min-height: 360px;
}
}







#s-467bfeaa-8d5a-4c34-b6d1-c591d7184409 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-467bfeaa-8d5a-4c34-b6d1-c591d7184409.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-660a8f83-6932-448a-a73e-64df7238b421 {
  padding-top: 100px;
padding-left: 25%;
padding-bottom: 100px;
padding-right: 25%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-660a8f83-6932-448a-a73e-64df7238b421 {
  display: none;
}
#s-660a8f83-6932-448a-a73e-64df7238b421, #wrap-s-660a8f83-6932-448a-a73e-64df7238b421 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-660a8f83-6932-448a-a73e-64df7238b421 {
  display: none;
}
#s-660a8f83-6932-448a-a73e-64df7238b421, #wrap-s-660a8f83-6932-448a-a73e-64df7238b421 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-660a8f83-6932-448a-a73e-64df7238b421 {
  padding-top: 60px;
padding-left: 20%;
padding-bottom: 60px;
padding-right: 20%;
display: none;
}
#s-660a8f83-6932-448a-a73e-64df7238b421, #wrap-s-660a8f83-6932-448a-a73e-64df7238b421 { display:none !important; }}@media (max-width: 767px){#s-660a8f83-6932-448a-a73e-64df7238b421 {
  padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
}
}







#s-660a8f83-6932-448a-a73e-64df7238b421 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-660a8f83-6932-448a-a73e-64df7238b421.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e56eaa3b-bcb9-4cf9-b5bf-3d316774cf3f {
  padding-bottom: 30px;
text-align: left;
}

#s-e56eaa3b-bcb9-4cf9-b5bf-3d316774cf3f .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 26px;
  
  
  text-align: left;
}



#s-3f3ae507-93b3-46d5-ba56-ba02573ff113 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-3f3ae507-93b3-46d5-ba56-ba02573ff113 .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



#s-5f427034-791a-4c57-b5e4-771d83810edb {
  text-align: center;
}







  img.s-5f427034-791a-4c57-b5e4-771d83810edb.shogun-image {
    
    
  }


.s-5f427034-791a-4c57-b5e4-771d83810edb .shogun-image-content {
  
    align-items: center;
  
}

.s-5f427034-791a-4c57-b5e4-771d83810edb.shg-align-container {
  text-align: center
}

.s-5f427034-791a-4c57-b5e4-771d83810edb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f427034-791a-4c57-b5e4-771d83810edb.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-5f427034-791a-4c57-b5e4-771d83810edb.shogun-image {
    
    
  }


.s-5f427034-791a-4c57-b5e4-771d83810edb .shogun-image-content {
  
    align-items: center;
  
}

.s-5f427034-791a-4c57-b5e4-771d83810edb.shg-align-container {
  text-align: center
}

.s-5f427034-791a-4c57-b5e4-771d83810edb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f427034-791a-4c57-b5e4-771d83810edb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-5f427034-791a-4c57-b5e4-771d83810edb.shogun-image {
    
    
  }


.s-5f427034-791a-4c57-b5e4-771d83810edb .shogun-image-content {
  
    align-items: center;
  
}

.s-5f427034-791a-4c57-b5e4-771d83810edb.shg-align-container {
  text-align: center
}

.s-5f427034-791a-4c57-b5e4-771d83810edb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f427034-791a-4c57-b5e4-771d83810edb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-5f427034-791a-4c57-b5e4-771d83810edb.shogun-image {
    
    
  }


.s-5f427034-791a-4c57-b5e4-771d83810edb .shogun-image-content {
  
    align-items: center;
  
}

.s-5f427034-791a-4c57-b5e4-771d83810edb.shg-align-container {
  text-align: center
}

.s-5f427034-791a-4c57-b5e4-771d83810edb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f427034-791a-4c57-b5e4-771d83810edb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-5f427034-791a-4c57-b5e4-771d83810edb.shogun-image {
    
    
  }


.s-5f427034-791a-4c57-b5e4-771d83810edb .shogun-image-content {
  
    align-items: center;
  
}

.s-5f427034-791a-4c57-b5e4-771d83810edb.shg-align-container {
  text-align: center
}

.s-5f427034-791a-4c57-b5e4-771d83810edb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f427034-791a-4c57-b5e4-771d83810edb.shogun-image {
  box-sizing: border-box;
}


}
#s-ad4582e6-ad0a-4b76-99f1-89ea7b04f7c0 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-ad4582e6-ad0a-4b76-99f1-89ea7b04f7c0 {
  display: none;
}
#s-ad4582e6-ad0a-4b76-99f1-89ea7b04f7c0, #wrap-s-ad4582e6-ad0a-4b76-99f1-89ea7b04f7c0 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ad4582e6-ad0a-4b76-99f1-89ea7b04f7c0 {
  display: none;
}
#s-ad4582e6-ad0a-4b76-99f1-89ea7b04f7c0, #wrap-s-ad4582e6-ad0a-4b76-99f1-89ea7b04f7c0 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ad4582e6-ad0a-4b76-99f1-89ea7b04f7c0 {
  display: none;
}
#s-ad4582e6-ad0a-4b76-99f1-89ea7b04f7c0, #wrap-s-ad4582e6-ad0a-4b76-99f1-89ea7b04f7c0 { display:none !important; }}
#s-ad4582e6-ad0a-4b76-99f1-89ea7b04f7c0 .shogun-heading-component h1 {
  color: rgba(33, 33, 33, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  
  
  letter-spacing: -2px;
  text-align: left;
}



#s-94fe3ced-14d9-49ee-b603-0dd7c00c8b0d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-94fe3ced-14d9-49ee-b603-0dd7c00c8b0d .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



#s-9bf46e35-1833-4cd7-97fe-d8bf2702033d {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-9bf46e35-1833-4cd7-97fe-d8bf2702033d {
  display: none;
}
#s-9bf46e35-1833-4cd7-97fe-d8bf2702033d, #wrap-s-9bf46e35-1833-4cd7-97fe-d8bf2702033d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9bf46e35-1833-4cd7-97fe-d8bf2702033d {
  display: none;
}
#s-9bf46e35-1833-4cd7-97fe-d8bf2702033d, #wrap-s-9bf46e35-1833-4cd7-97fe-d8bf2702033d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9bf46e35-1833-4cd7-97fe-d8bf2702033d {
  display: none;
}
#s-9bf46e35-1833-4cd7-97fe-d8bf2702033d, #wrap-s-9bf46e35-1833-4cd7-97fe-d8bf2702033d { display:none !important; }}
#s-9bf46e35-1833-4cd7-97fe-d8bf2702033d .shogun-heading-component h1 {
  color: rgba(33, 33, 33, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  
  
  letter-spacing: -2px;
  text-align: left;
}



#s-24ade27a-935e-44db-aef7-94fc9cb6a919 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-24ade27a-935e-44db-aef7-94fc9cb6a919 .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



#s-89b4c605-5e6c-414c-8486-d17db0c27837 {
  background-repeat: no-repeat;
background-size: cover;
border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
min-height: 720px;
background-position: center center;
}
@media (min-width: 1200px){#s-89b4c605-5e6c-414c-8486-d17db0c27837 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-89b4c605-5e6c-414c-8486-d17db0c27837 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-89b4c605-5e6c-414c-8486-d17db0c27837 {
  min-height: 480px;
}
}@media (max-width: 767px){#s-89b4c605-5e6c-414c-8486-d17db0c27837 {
  min-height: 360px;
}
}







#s-89b4c605-5e6c-414c-8486-d17db0c27837 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-89b4c605-5e6c-414c-8486-d17db0c27837.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-62e4069d-68f5-4801-bb88-10ddd9e8bcc2 {
  padding-left: 10%;
padding-right: 10%;
min-height: 720px;
background-color: rgba(247, 181, 168, 1);
}
@media (min-width: 1200px){#s-62e4069d-68f5-4801-bb88-10ddd9e8bcc2 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-62e4069d-68f5-4801-bb88-10ddd9e8bcc2 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-62e4069d-68f5-4801-bb88-10ddd9e8bcc2 {
  min-height: 480px;
}
}@media (max-width: 767px){#s-62e4069d-68f5-4801-bb88-10ddd9e8bcc2 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
min-height: 100%;
}
}







#s-62e4069d-68f5-4801-bb88-10ddd9e8bcc2 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-62e4069d-68f5-4801-bb88-10ddd9e8bcc2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f083c02f-a253-4e21-b9db-9c83b6fa51e3 {
  margin-top: 0px;
margin-bottom: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-f083c02f-a253-4e21-b9db-9c83b6fa51e3 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  300 ;
  font-family: "IBM Plex Serif";
  font-style:  normal ;
  font-size: 64px;
  
  letter-spacing: -2px;
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-f083c02f-a253-4e21-b9db-9c83b6fa51e3 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  300 ;
  font-family: "IBM Plex Serif";
  font-style:  normal ;
  font-size: 44px;
  
  letter-spacing: -2px;
  text-align: left;
}


}@media (max-width: 767px){#s-f083c02f-a253-4e21-b9db-9c83b6fa51e3 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  300 ;
  font-family: "IBM Plex Serif";
  font-style:  normal ;
  font-size: 44px;
  
  letter-spacing: -2px;
  text-align: left;
}


}
#s-bdfd68b5-7e6e-4d8e-b547-5a9dbea3af8d {
  padding-left: 25%;
padding-right: 25%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-bdfd68b5-7e6e-4d8e-b547-5a9dbea3af8d {
  display: none;
}
#s-bdfd68b5-7e6e-4d8e-b547-5a9dbea3af8d, #wrap-s-bdfd68b5-7e6e-4d8e-b547-5a9dbea3af8d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bdfd68b5-7e6e-4d8e-b547-5a9dbea3af8d {
  display: none;
}
#s-bdfd68b5-7e6e-4d8e-b547-5a9dbea3af8d, #wrap-s-bdfd68b5-7e6e-4d8e-b547-5a9dbea3af8d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bdfd68b5-7e6e-4d8e-b547-5a9dbea3af8d {
  padding-left: 20%;
padding-right: 20%;
display: none;
}
#s-bdfd68b5-7e6e-4d8e-b547-5a9dbea3af8d, #wrap-s-bdfd68b5-7e6e-4d8e-b547-5a9dbea3af8d { display:none !important; }}@media (max-width: 767px){#s-bdfd68b5-7e6e-4d8e-b547-5a9dbea3af8d {
  padding-left: 20px;
padding-right: 20px;
}
}







#s-bdfd68b5-7e6e-4d8e-b547-5a9dbea3af8d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bdfd68b5-7e6e-4d8e-b547-5a9dbea3af8d.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2c111296-27b9-4360-8040-21da0ab2abff {
  padding-bottom: 30px;
text-align: left;
}

#s-2c111296-27b9-4360-8040-21da0ab2abff .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 26px;
  
  
  text-align: left;
}



#s-5e4c356e-6ff9-49f4-af60-c481dddf2bb3 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-5e4c356e-6ff9-49f4-af60-c481dddf2bb3 .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



@media (min-width: 0px) {
[id="s-015edda7-5a20-433f-9656-2492e5ed7a98"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-015edda7-5a20-433f-9656-2492e5ed7a98"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-015edda7-5a20-433f-9656-2492e5ed7a98"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-015edda7-5a20-433f-9656-2492e5ed7a98"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d2e881c5-8517-4250-8d82-f8f9575eb821 {
  text-align: center;
}







  img.s-d2e881c5-8517-4250-8d82-f8f9575eb821.shogun-image {
    
    
  }


.s-d2e881c5-8517-4250-8d82-f8f9575eb821 .shogun-image-content {
  
    align-items: center;
  
}

.s-d2e881c5-8517-4250-8d82-f8f9575eb821.shg-align-container {
  text-align: center
}

.s-d2e881c5-8517-4250-8d82-f8f9575eb821.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2e881c5-8517-4250-8d82-f8f9575eb821.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-d2e881c5-8517-4250-8d82-f8f9575eb821.shogun-image {
    
    
  }


.s-d2e881c5-8517-4250-8d82-f8f9575eb821 .shogun-image-content {
  
    align-items: center;
  
}

.s-d2e881c5-8517-4250-8d82-f8f9575eb821.shg-align-container {
  text-align: center
}

.s-d2e881c5-8517-4250-8d82-f8f9575eb821.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2e881c5-8517-4250-8d82-f8f9575eb821.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d2e881c5-8517-4250-8d82-f8f9575eb821.shogun-image {
    
    
  }


.s-d2e881c5-8517-4250-8d82-f8f9575eb821 .shogun-image-content {
  
    align-items: center;
  
}

.s-d2e881c5-8517-4250-8d82-f8f9575eb821.shg-align-container {
  text-align: center
}

.s-d2e881c5-8517-4250-8d82-f8f9575eb821.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2e881c5-8517-4250-8d82-f8f9575eb821.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d2e881c5-8517-4250-8d82-f8f9575eb821.shogun-image {
    
    
  }


.s-d2e881c5-8517-4250-8d82-f8f9575eb821 .shogun-image-content {
  
    align-items: center;
  
}

.s-d2e881c5-8517-4250-8d82-f8f9575eb821.shg-align-container {
  text-align: center
}

.s-d2e881c5-8517-4250-8d82-f8f9575eb821.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2e881c5-8517-4250-8d82-f8f9575eb821.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d2e881c5-8517-4250-8d82-f8f9575eb821.shogun-image {
    
    
  }


.s-d2e881c5-8517-4250-8d82-f8f9575eb821 .shogun-image-content {
  
    align-items: center;
  
}

.s-d2e881c5-8517-4250-8d82-f8f9575eb821.shg-align-container {
  text-align: center
}

.s-d2e881c5-8517-4250-8d82-f8f9575eb821.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2e881c5-8517-4250-8d82-f8f9575eb821.shogun-image {
  box-sizing: border-box;
}


}
#s-800bd645-d08d-41d5-8bf7-70c9079d0783 {
  padding-bottom: 30px;
text-align: left;
}

#s-800bd645-d08d-41d5-8bf7-70c9079d0783 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 26px;
  
  
  text-align: left;
}



#s-097a69f2-9c9a-4ac3-a075-ad54caac1ea5 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-097a69f2-9c9a-4ac3-a075-ad54caac1ea5 .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



#s-0086424e-4aa8-4b4e-bbbc-315326ca5e48 {
  text-align: center;
}







  img.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shogun-image {
    
    
  }


.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48 .shogun-image-content {
  
    align-items: center;
  
}

.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shg-align-container {
  text-align: center
}

.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shogun-image {
    
    
  }


.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48 .shogun-image-content {
  
    align-items: center;
  
}

.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shg-align-container {
  text-align: center
}

.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shogun-image {
    
    
  }


.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48 .shogun-image-content {
  
    align-items: center;
  
}

.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shg-align-container {
  text-align: center
}

.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shogun-image {
    
    
  }


.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48 .shogun-image-content {
  
    align-items: center;
  
}

.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shg-align-container {
  text-align: center
}

.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shogun-image {
    
    
  }


.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48 .shogun-image-content {
  
    align-items: center;
  
}

.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shg-align-container {
  text-align: center
}

.s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0086424e-4aa8-4b4e-bbbc-315326ca5e48.shogun-image {
  box-sizing: border-box;
}


}
#s-673be9b1-136a-476a-ae05-5b362ab5d422 {
  padding-bottom: 30px;
text-align: left;
}

#s-673be9b1-136a-476a-ae05-5b362ab5d422 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 26px;
  
  
  text-align: left;
}



#s-e6790ebe-8233-4f0e-95f9-6316e4d107b2 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-e6790ebe-8233-4f0e-95f9-6316e4d107b2 .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



#s-f9be7100-b387-41d0-ad55-21cafc8157a0 {
  text-align: center;
}







  img.s-f9be7100-b387-41d0-ad55-21cafc8157a0.shogun-image {
    
    
  }


.s-f9be7100-b387-41d0-ad55-21cafc8157a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-f9be7100-b387-41d0-ad55-21cafc8157a0.shg-align-container {
  text-align: center
}

.s-f9be7100-b387-41d0-ad55-21cafc8157a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9be7100-b387-41d0-ad55-21cafc8157a0.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-f9be7100-b387-41d0-ad55-21cafc8157a0.shogun-image {
    
    
  }


.s-f9be7100-b387-41d0-ad55-21cafc8157a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-f9be7100-b387-41d0-ad55-21cafc8157a0.shg-align-container {
  text-align: center
}

.s-f9be7100-b387-41d0-ad55-21cafc8157a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9be7100-b387-41d0-ad55-21cafc8157a0.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f9be7100-b387-41d0-ad55-21cafc8157a0.shogun-image {
    
    
  }


.s-f9be7100-b387-41d0-ad55-21cafc8157a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-f9be7100-b387-41d0-ad55-21cafc8157a0.shg-align-container {
  text-align: center
}

.s-f9be7100-b387-41d0-ad55-21cafc8157a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9be7100-b387-41d0-ad55-21cafc8157a0.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f9be7100-b387-41d0-ad55-21cafc8157a0.shogun-image {
    
    
  }


.s-f9be7100-b387-41d0-ad55-21cafc8157a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-f9be7100-b387-41d0-ad55-21cafc8157a0.shg-align-container {
  text-align: center
}

.s-f9be7100-b387-41d0-ad55-21cafc8157a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9be7100-b387-41d0-ad55-21cafc8157a0.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f9be7100-b387-41d0-ad55-21cafc8157a0.shogun-image {
    
    
  }


.s-f9be7100-b387-41d0-ad55-21cafc8157a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-f9be7100-b387-41d0-ad55-21cafc8157a0.shg-align-container {
  text-align: center
}

.s-f9be7100-b387-41d0-ad55-21cafc8157a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f9be7100-b387-41d0-ad55-21cafc8157a0.shogun-image {
  box-sizing: border-box;
}


}
#s-96aac26f-885e-48ee-8ae1-d2ec591fc7c8 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-96aac26f-885e-48ee-8ae1-d2ec591fc7c8 .shogun-heading-component h4 {
  color: rgba(151, 125, 124, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: left;
}



#s-00647bb8-f07f-4acd-8ba9-3717001fbcc0 {
  text-align: center;
}







  img.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shogun-image {
    
    
  }


.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0 .shogun-image-content {
  
    align-items: center;
  
}

.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shg-align-container {
  text-align: center
}

.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shogun-image {
    
    
  }


.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0 .shogun-image-content {
  
    align-items: center;
  
}

.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shg-align-container {
  text-align: center
}

.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shogun-image {
  box-sizing: border-box;
}


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





  img.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shogun-image {
    
    
  }


.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0 .shogun-image-content {
  
    align-items: center;
  
}

.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shg-align-container {
  text-align: center
}

.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shogun-image {
  box-sizing: border-box;
}


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





  img.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shogun-image {
    
    
  }


.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0 .shogun-image-content {
  
    align-items: center;
  
}

.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shg-align-container {
  text-align: center
}

.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shogun-image {
  box-sizing: border-box;
}


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





  img.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shogun-image {
    
    
  }


.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0 .shogun-image-content {
  
    align-items: center;
  
}

.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shg-align-container {
  text-align: center
}

.s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-00647bb8-f07f-4acd-8ba9-3717001fbcc0.shogun-image {
  box-sizing: border-box;
}


}
@media (max-width: 767px){#s-d5c12b68-0f08-4b22-a277-77bf3a2af7a1 {
  display: none;
}
#s-d5c12b68-0f08-4b22-a277-77bf3a2af7a1, #wrap-s-d5c12b68-0f08-4b22-a277-77bf3a2af7a1 { display:none !important; }}
#s-c043a098-7aae-4720-a2bd-d3e3c45eec93 {
  min-height: 50px;
}








#s-c043a098-7aae-4720-a2bd-d3e3c45eec93 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c043a098-7aae-4720-a2bd-d3e3c45eec93.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2907e1e2-d164-448c-8c24-d0a686862a19 {
  max-width: 6720px;
aspect-ratio: 6720/4480;
text-align: center;
}
@media (max-width: 767px){#s-2907e1e2-d164-448c-8c24-d0a686862a19 {
  display: none;
}
#s-2907e1e2-d164-448c-8c24-d0a686862a19, #wrap-s-2907e1e2-d164-448c-8c24-d0a686862a19 { display:none !important; }}




  #s-2907e1e2-d164-448c-8c24-d0a686862a19 img.shogun-image,
  #s-2907e1e2-d164-448c-8c24-d0a686862a19 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2907e1e2-d164-448c-8c24-d0a686862a19 {
    width: 100%;
    height: auto;
  }



  img.s-2907e1e2-d164-448c-8c24-d0a686862a19.shogun-image {
    
    
  }


.s-2907e1e2-d164-448c-8c24-d0a686862a19 .shogun-image-content {
  
    align-items: center;
  
}

.s-2907e1e2-d164-448c-8c24-d0a686862a19.shg-align-container {
  text-align: center
}

.s-2907e1e2-d164-448c-8c24-d0a686862a19.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2907e1e2-d164-448c-8c24-d0a686862a19.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-2907e1e2-d164-448c-8c24-d0a686862a19 img.shogun-image,
  #s-2907e1e2-d164-448c-8c24-d0a686862a19 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2907e1e2-d164-448c-8c24-d0a686862a19 {
    width: 100%;
    height: auto;
  }



  img.s-2907e1e2-d164-448c-8c24-d0a686862a19.shogun-image {
    
    
  }


.s-2907e1e2-d164-448c-8c24-d0a686862a19 .shogun-image-content {
  
    align-items: center;
  
}

.s-2907e1e2-d164-448c-8c24-d0a686862a19.shg-align-container {
  text-align: center
}

.s-2907e1e2-d164-448c-8c24-d0a686862a19.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2907e1e2-d164-448c-8c24-d0a686862a19.shogun-image {
  box-sizing: border-box;
}


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



  #s-2907e1e2-d164-448c-8c24-d0a686862a19 img.shogun-image,
  #s-2907e1e2-d164-448c-8c24-d0a686862a19 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2907e1e2-d164-448c-8c24-d0a686862a19 {
    width: 100%;
    height: auto;
  }



  img.s-2907e1e2-d164-448c-8c24-d0a686862a19.shogun-image {
    
    
  }


.s-2907e1e2-d164-448c-8c24-d0a686862a19 .shogun-image-content {
  
    align-items: center;
  
}

.s-2907e1e2-d164-448c-8c24-d0a686862a19.shg-align-container {
  text-align: center
}

.s-2907e1e2-d164-448c-8c24-d0a686862a19.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2907e1e2-d164-448c-8c24-d0a686862a19.shogun-image {
  box-sizing: border-box;
}


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



  #s-2907e1e2-d164-448c-8c24-d0a686862a19 img.shogun-image,
  #s-2907e1e2-d164-448c-8c24-d0a686862a19 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2907e1e2-d164-448c-8c24-d0a686862a19 {
    width: 100%;
    height: auto;
  }



  img.s-2907e1e2-d164-448c-8c24-d0a686862a19.shogun-image {
    
    
  }


.s-2907e1e2-d164-448c-8c24-d0a686862a19 .shogun-image-content {
  
    align-items: center;
  
}

.s-2907e1e2-d164-448c-8c24-d0a686862a19.shg-align-container {
  text-align: center
}

.s-2907e1e2-d164-448c-8c24-d0a686862a19.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2907e1e2-d164-448c-8c24-d0a686862a19.shogun-image {
  box-sizing: border-box;
}


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



  #s-2907e1e2-d164-448c-8c24-d0a686862a19 img.shogun-image,
  #s-2907e1e2-d164-448c-8c24-d0a686862a19 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2907e1e2-d164-448c-8c24-d0a686862a19 {
    width: 100%;
    height: auto;
  }



  img.s-2907e1e2-d164-448c-8c24-d0a686862a19.shogun-image {
    
    
  }


.s-2907e1e2-d164-448c-8c24-d0a686862a19 .shogun-image-content {
  
    align-items: center;
  
}

.s-2907e1e2-d164-448c-8c24-d0a686862a19.shg-align-container {
  text-align: center
}

.s-2907e1e2-d164-448c-8c24-d0a686862a19.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2907e1e2-d164-448c-8c24-d0a686862a19.shogun-image {
  box-sizing: border-box;
}


}
#s-d705d63e-0f9d-4794-9366-765ed8a03f81 {
  min-height: 50px;
background-color: rgba(247, 181, 168, 1);
}
@media (max-width: 767px){#s-d705d63e-0f9d-4794-9366-765ed8a03f81 {
  display: none;
}
#s-d705d63e-0f9d-4794-9366-765ed8a03f81, #wrap-s-d705d63e-0f9d-4794-9366-765ed8a03f81 { display:none !important; }}







#s-d705d63e-0f9d-4794-9366-765ed8a03f81 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d705d63e-0f9d-4794-9366-765ed8a03f81.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f351a864-4998-4cbb-b696-188a3d0c57cb {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-f351a864-4998-4cbb-b696-188a3d0c57cb {
  display: none;
}
#s-f351a864-4998-4cbb-b696-188a3d0c57cb, #wrap-s-f351a864-4998-4cbb-b696-188a3d0c57cb { display:none !important; }}
#s-f351a864-4998-4cbb-b696-188a3d0c57cb .shogun-heading-component h1 {
  color: rgba(252, 252, 252, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: left;
}



#s-632dd263-6fe6-4a6f-8b59-e55b468aceef {
  min-height: 50px;
}
@media (max-width: 767px){#s-632dd263-6fe6-4a6f-8b59-e55b468aceef {
  display: none;
}
#s-632dd263-6fe6-4a6f-8b59-e55b468aceef, #wrap-s-632dd263-6fe6-4a6f-8b59-e55b468aceef { display:none !important; }}







#s-632dd263-6fe6-4a6f-8b59-e55b468aceef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-632dd263-6fe6-4a6f-8b59-e55b468aceef.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f7ba1e4c-d87d-4c6a-be89-d384fda38ff4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-f7ba1e4c-d87d-4c6a-be89-d384fda38ff4 {
  display: none;
}
#s-f7ba1e4c-d87d-4c6a-be89-d384fda38ff4, #wrap-s-f7ba1e4c-d87d-4c6a-be89-d384fda38ff4 { display:none !important; }}
#s-f7ba1e4c-d87d-4c6a-be89-d384fda38ff4 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-86db4732-c4ad-402e-a81b-6f6bb83f5376 {
  display: none;
}
#s-86db4732-c4ad-402e-a81b-6f6bb83f5376, #wrap-s-86db4732-c4ad-402e-a81b-6f6bb83f5376 { display:none !important; }}
#s-47349e0d-f21d-4204-a6ce-974e86b51f1a {
  max-width: 6720px;
aspect-ratio: 6720/4480;
text-align: center;
}
@media (max-width: 767px){#s-47349e0d-f21d-4204-a6ce-974e86b51f1a {
  display: none;
}
#s-47349e0d-f21d-4204-a6ce-974e86b51f1a, #wrap-s-47349e0d-f21d-4204-a6ce-974e86b51f1a { display:none !important; }}




  #s-47349e0d-f21d-4204-a6ce-974e86b51f1a img.shogun-image,
  #s-47349e0d-f21d-4204-a6ce-974e86b51f1a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-47349e0d-f21d-4204-a6ce-974e86b51f1a {
    width: 100%;
    height: auto;
  }



  img.s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shogun-image {
    
    
  }


.s-47349e0d-f21d-4204-a6ce-974e86b51f1a .shogun-image-content {
  
    align-items: center;
  
}

.s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shg-align-container {
  text-align: center
}

.s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-47349e0d-f21d-4204-a6ce-974e86b51f1a img.shogun-image,
  #s-47349e0d-f21d-4204-a6ce-974e86b51f1a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-47349e0d-f21d-4204-a6ce-974e86b51f1a {
    width: 100%;
    height: auto;
  }



  img.s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shogun-image {
    
    
  }


.s-47349e0d-f21d-4204-a6ce-974e86b51f1a .shogun-image-content {
  
    align-items: center;
  
}

.s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shg-align-container {
  text-align: center
}

.s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shogun-image {
  box-sizing: border-box;
}


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



  #s-47349e0d-f21d-4204-a6ce-974e86b51f1a img.shogun-image,
  #s-47349e0d-f21d-4204-a6ce-974e86b51f1a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-47349e0d-f21d-4204-a6ce-974e86b51f1a {
    width: 100%;
    height: auto;
  }



  img.s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shogun-image {
    
    
  }


.s-47349e0d-f21d-4204-a6ce-974e86b51f1a .shogun-image-content {
  
    align-items: center;
  
}

.s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shg-align-container {
  text-align: center
}

.s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shogun-image {
  box-sizing: border-box;
}


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



  #s-47349e0d-f21d-4204-a6ce-974e86b51f1a img.shogun-image,
  #s-47349e0d-f21d-4204-a6ce-974e86b51f1a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-47349e0d-f21d-4204-a6ce-974e86b51f1a {
    width: 100%;
    height: auto;
  }



  img.s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shogun-image {
    
    
  }


.s-47349e0d-f21d-4204-a6ce-974e86b51f1a .shogun-image-content {
  
    align-items: center;
  
}

.s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shg-align-container {
  text-align: center
}

.s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shogun-image {
  box-sizing: border-box;
}


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



  #s-47349e0d-f21d-4204-a6ce-974e86b51f1a img.shogun-image,
  #s-47349e0d-f21d-4204-a6ce-974e86b51f1a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-47349e0d-f21d-4204-a6ce-974e86b51f1a {
    width: 100%;
    height: auto;
  }



  img.s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shogun-image {
    
    
  }


.s-47349e0d-f21d-4204-a6ce-974e86b51f1a .shogun-image-content {
  
    align-items: center;
  
}

.s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shg-align-container {
  text-align: center
}

.s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47349e0d-f21d-4204-a6ce-974e86b51f1a.shogun-image {
  box-sizing: border-box;
}


}
#s-7dde6d0c-4d9a-40d0-bece-cd6811ded0d8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-7dde6d0c-4d9a-40d0-bece-cd6811ded0d8 {
  display: none;
}
#s-7dde6d0c-4d9a-40d0-bece-cd6811ded0d8, #wrap-s-7dde6d0c-4d9a-40d0-bece-cd6811ded0d8 { display:none !important; }}
#s-7dde6d0c-4d9a-40d0-bece-cd6811ded0d8 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-329d05ef-176b-4404-a82a-2bf964b70f8a {
  display: none;
}
#s-329d05ef-176b-4404-a82a-2bf964b70f8a, #wrap-s-329d05ef-176b-4404-a82a-2bf964b70f8a { display:none !important; }}
#s-afec7a32-4705-4013-963d-8e7cce0db6a7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-afec7a32-4705-4013-963d-8e7cce0db6a7 {
  display: none;
}
#s-afec7a32-4705-4013-963d-8e7cce0db6a7, #wrap-s-afec7a32-4705-4013-963d-8e7cce0db6a7 { display:none !important; }}
#s-afec7a32-4705-4013-963d-8e7cce0db6a7 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-bd70b2be-cf0d-4349-b422-2de4e6f141a2 {
  display: none;
}
#s-bd70b2be-cf0d-4349-b422-2de4e6f141a2, #wrap-s-bd70b2be-cf0d-4349-b422-2de4e6f141a2 { display:none !important; }}
#s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 {
  max-width: 4529px;
aspect-ratio: 4529/3019;
text-align: center;
}
@media (max-width: 767px){#s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 {
  display: none;
}
#s-aea62bbe-7149-43b0-ac7c-b1c7f421a086, #wrap-s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 { display:none !important; }}




  #s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 img.shogun-image,
  #s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 {
    width: 100%;
    height: auto;
  }



  img.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shogun-image {
    
    
  }


.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 .shogun-image-content {
  
    align-items: center;
  
}

.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shg-align-container {
  text-align: center
}

.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 img.shogun-image,
  #s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 {
    width: 100%;
    height: auto;
  }



  img.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shogun-image {
    
    
  }


.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 .shogun-image-content {
  
    align-items: center;
  
}

.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shg-align-container {
  text-align: center
}

.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shogun-image {
  box-sizing: border-box;
}


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



  #s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 img.shogun-image,
  #s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 {
    width: 100%;
    height: auto;
  }



  img.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shogun-image {
    
    
  }


.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 .shogun-image-content {
  
    align-items: center;
  
}

.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shg-align-container {
  text-align: center
}

.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shogun-image {
  box-sizing: border-box;
}


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



  #s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 img.shogun-image,
  #s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 {
    width: 100%;
    height: auto;
  }



  img.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shogun-image {
    
    
  }


.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 .shogun-image-content {
  
    align-items: center;
  
}

.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shg-align-container {
  text-align: center
}

.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shogun-image {
  box-sizing: border-box;
}


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



  #s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 img.shogun-image,
  #s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 {
    width: 100%;
    height: auto;
  }



  img.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shogun-image {
    
    
  }


.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086 .shogun-image-content {
  
    align-items: center;
  
}

.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shg-align-container {
  text-align: center
}

.s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aea62bbe-7149-43b0-ac7c-b1c7f421a086.shogun-image {
  box-sizing: border-box;
}


}
#s-eac3857e-9940-444d-93ab-bf465a96bc61 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-eac3857e-9940-444d-93ab-bf465a96bc61 {
  display: none;
}
#s-eac3857e-9940-444d-93ab-bf465a96bc61, #wrap-s-eac3857e-9940-444d-93ab-bf465a96bc61 { display:none !important; }}
#s-eac3857e-9940-444d-93ab-bf465a96bc61 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-d7cc53df-c3a8-4fd0-9247-193a4b84bbc1 {
  display: none;
}
#s-d7cc53df-c3a8-4fd0-9247-193a4b84bbc1, #wrap-s-d7cc53df-c3a8-4fd0-9247-193a4b84bbc1 { display:none !important; }}
#s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd {
  max-width: 6720px;
aspect-ratio: 6720/4480;
text-align: center;
}
@media (max-width: 767px){#s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd {
  display: none;
}
#s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd, #wrap-s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd { display:none !important; }}




  #s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd img.shogun-image,
  #s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd {
    width: 100%;
    height: auto;
  }



  img.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shogun-image {
    
    
  }


.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd .shogun-image-content {
  
    align-items: center;
  
}

.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shg-align-container {
  text-align: center
}

.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd img.shogun-image,
  #s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd {
    width: 100%;
    height: auto;
  }



  img.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shogun-image {
    
    
  }


.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd .shogun-image-content {
  
    align-items: center;
  
}

.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shg-align-container {
  text-align: center
}

.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shogun-image {
  box-sizing: border-box;
}


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



  #s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd img.shogun-image,
  #s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd {
    width: 100%;
    height: auto;
  }



  img.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shogun-image {
    
    
  }


.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd .shogun-image-content {
  
    align-items: center;
  
}

.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shg-align-container {
  text-align: center
}

.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shogun-image {
  box-sizing: border-box;
}


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



  #s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd img.shogun-image,
  #s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd {
    width: 100%;
    height: auto;
  }



  img.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shogun-image {
    
    
  }


.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd .shogun-image-content {
  
    align-items: center;
  
}

.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shg-align-container {
  text-align: center
}

.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shogun-image {
  box-sizing: border-box;
}


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



  #s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd img.shogun-image,
  #s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd {
    width: 100%;
    height: auto;
  }



  img.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shogun-image {
    
    
  }


.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd .shogun-image-content {
  
    align-items: center;
  
}

.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shg-align-container {
  text-align: center
}

.s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-86e56b89-8295-4c9f-b59d-31fc0a0f72cd.shogun-image {
  box-sizing: border-box;
}


}
#s-e04604a8-0175-43c5-bc26-e4ad6f22f117 {
  min-height: 50px;
background-color: rgba(247, 181, 168, 1);
}
@media (max-width: 767px){#s-e04604a8-0175-43c5-bc26-e4ad6f22f117 {
  display: none;
}
#s-e04604a8-0175-43c5-bc26-e4ad6f22f117, #wrap-s-e04604a8-0175-43c5-bc26-e4ad6f22f117 { display:none !important; }}







#s-e04604a8-0175-43c5-bc26-e4ad6f22f117 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e04604a8-0175-43c5-bc26-e4ad6f22f117.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-12a53098-3ad7-441f-aaad-3689a841a1be {
  margin-left: 4%;
margin-right: 4%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-12a53098-3ad7-441f-aaad-3689a841a1be .shogun-heading-component h1 {
  color: rgba(252, 252, 252, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: left;
}



#s-ec4da862-91b4-49f4-ad6a-d5045af20345 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-ec4da862-91b4-49f4-ad6a-d5045af20345 {
  display: none;
}
#s-ec4da862-91b4-49f4-ad6a-d5045af20345, #wrap-s-ec4da862-91b4-49f4-ad6a-d5045af20345 { display:none !important; }}
#s-ec4da862-91b4-49f4-ad6a-d5045af20345 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-30abd53c-6633-44e5-8d60-0c7069d876de {
  display: none;
}
#s-30abd53c-6633-44e5-8d60-0c7069d876de, #wrap-s-30abd53c-6633-44e5-8d60-0c7069d876de { display:none !important; }}
#s-5b9339c9-48fd-466a-b2da-36774306152f {
  max-width: 6688px;
aspect-ratio: 6688/4459;
text-align: center;
}
@media (max-width: 767px){#s-5b9339c9-48fd-466a-b2da-36774306152f {
  display: none;
}
#s-5b9339c9-48fd-466a-b2da-36774306152f, #wrap-s-5b9339c9-48fd-466a-b2da-36774306152f { display:none !important; }}




  #s-5b9339c9-48fd-466a-b2da-36774306152f img.shogun-image,
  #s-5b9339c9-48fd-466a-b2da-36774306152f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5b9339c9-48fd-466a-b2da-36774306152f {
    width: 100%;
    height: auto;
  }



  img.s-5b9339c9-48fd-466a-b2da-36774306152f.shogun-image {
    
    
  }


.s-5b9339c9-48fd-466a-b2da-36774306152f .shogun-image-content {
  
    align-items: center;
  
}

.s-5b9339c9-48fd-466a-b2da-36774306152f.shg-align-container {
  text-align: center
}

.s-5b9339c9-48fd-466a-b2da-36774306152f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b9339c9-48fd-466a-b2da-36774306152f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-5b9339c9-48fd-466a-b2da-36774306152f img.shogun-image,
  #s-5b9339c9-48fd-466a-b2da-36774306152f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5b9339c9-48fd-466a-b2da-36774306152f {
    width: 100%;
    height: auto;
  }



  img.s-5b9339c9-48fd-466a-b2da-36774306152f.shogun-image {
    
    
  }


.s-5b9339c9-48fd-466a-b2da-36774306152f .shogun-image-content {
  
    align-items: center;
  
}

.s-5b9339c9-48fd-466a-b2da-36774306152f.shg-align-container {
  text-align: center
}

.s-5b9339c9-48fd-466a-b2da-36774306152f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b9339c9-48fd-466a-b2da-36774306152f.shogun-image {
  box-sizing: border-box;
}


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



  #s-5b9339c9-48fd-466a-b2da-36774306152f img.shogun-image,
  #s-5b9339c9-48fd-466a-b2da-36774306152f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5b9339c9-48fd-466a-b2da-36774306152f {
    width: 100%;
    height: auto;
  }



  img.s-5b9339c9-48fd-466a-b2da-36774306152f.shogun-image {
    
    
  }


.s-5b9339c9-48fd-466a-b2da-36774306152f .shogun-image-content {
  
    align-items: center;
  
}

.s-5b9339c9-48fd-466a-b2da-36774306152f.shg-align-container {
  text-align: center
}

.s-5b9339c9-48fd-466a-b2da-36774306152f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b9339c9-48fd-466a-b2da-36774306152f.shogun-image {
  box-sizing: border-box;
}


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



  #s-5b9339c9-48fd-466a-b2da-36774306152f img.shogun-image,
  #s-5b9339c9-48fd-466a-b2da-36774306152f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5b9339c9-48fd-466a-b2da-36774306152f {
    width: 100%;
    height: auto;
  }



  img.s-5b9339c9-48fd-466a-b2da-36774306152f.shogun-image {
    
    
  }


.s-5b9339c9-48fd-466a-b2da-36774306152f .shogun-image-content {
  
    align-items: center;
  
}

.s-5b9339c9-48fd-466a-b2da-36774306152f.shg-align-container {
  text-align: center
}

.s-5b9339c9-48fd-466a-b2da-36774306152f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b9339c9-48fd-466a-b2da-36774306152f.shogun-image {
  box-sizing: border-box;
}


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



  #s-5b9339c9-48fd-466a-b2da-36774306152f img.shogun-image,
  #s-5b9339c9-48fd-466a-b2da-36774306152f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5b9339c9-48fd-466a-b2da-36774306152f {
    width: 100%;
    height: auto;
  }



  img.s-5b9339c9-48fd-466a-b2da-36774306152f.shogun-image {
    
    
  }


.s-5b9339c9-48fd-466a-b2da-36774306152f .shogun-image-content {
  
    align-items: center;
  
}

.s-5b9339c9-48fd-466a-b2da-36774306152f.shg-align-container {
  text-align: center
}

.s-5b9339c9-48fd-466a-b2da-36774306152f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b9339c9-48fd-466a-b2da-36774306152f.shogun-image {
  box-sizing: border-box;
}


}
#s-be717a29-40a9-480e-94ad-c8c6c59c2e1c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-be717a29-40a9-480e-94ad-c8c6c59c2e1c {
  display: none;
}
#s-be717a29-40a9-480e-94ad-c8c6c59c2e1c, #wrap-s-be717a29-40a9-480e-94ad-c8c6c59c2e1c { display:none !important; }}
#s-be717a29-40a9-480e-94ad-c8c6c59c2e1c .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-209f8398-4356-4422-a654-ba2eddc6dd16 {
  display: none;
}
#s-209f8398-4356-4422-a654-ba2eddc6dd16, #wrap-s-209f8398-4356-4422-a654-ba2eddc6dd16 { display:none !important; }}
#s-0426fd23-938a-48b4-8e45-d0b0d59f6c9f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-0426fd23-938a-48b4-8e45-d0b0d59f6c9f {
  display: none;
}
#s-0426fd23-938a-48b4-8e45-d0b0d59f6c9f, #wrap-s-0426fd23-938a-48b4-8e45-d0b0d59f6c9f { display:none !important; }}
#s-0426fd23-938a-48b4-8e45-d0b0d59f6c9f .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-64c65403-e99d-40a2-b347-f98cdc649980 {
  display: none;
}
#s-64c65403-e99d-40a2-b347-f98cdc649980, #wrap-s-64c65403-e99d-40a2-b347-f98cdc649980 { display:none !important; }}
#s-08563754-fe42-4b50-947d-0eaa3da95f25 {
  max-width: 6720px;
aspect-ratio: 6720/4480;
text-align: center;
}
@media (max-width: 767px){#s-08563754-fe42-4b50-947d-0eaa3da95f25 {
  display: none;
}
#s-08563754-fe42-4b50-947d-0eaa3da95f25, #wrap-s-08563754-fe42-4b50-947d-0eaa3da95f25 { display:none !important; }}




  #s-08563754-fe42-4b50-947d-0eaa3da95f25 img.shogun-image,
  #s-08563754-fe42-4b50-947d-0eaa3da95f25 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-08563754-fe42-4b50-947d-0eaa3da95f25 {
    width: 100%;
    height: auto;
  }



  img.s-08563754-fe42-4b50-947d-0eaa3da95f25.shogun-image {
    
    
  }


.s-08563754-fe42-4b50-947d-0eaa3da95f25 .shogun-image-content {
  
    align-items: center;
  
}

.s-08563754-fe42-4b50-947d-0eaa3da95f25.shg-align-container {
  text-align: center
}

.s-08563754-fe42-4b50-947d-0eaa3da95f25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08563754-fe42-4b50-947d-0eaa3da95f25.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-08563754-fe42-4b50-947d-0eaa3da95f25 img.shogun-image,
  #s-08563754-fe42-4b50-947d-0eaa3da95f25 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-08563754-fe42-4b50-947d-0eaa3da95f25 {
    width: 100%;
    height: auto;
  }



  img.s-08563754-fe42-4b50-947d-0eaa3da95f25.shogun-image {
    
    
  }


.s-08563754-fe42-4b50-947d-0eaa3da95f25 .shogun-image-content {
  
    align-items: center;
  
}

.s-08563754-fe42-4b50-947d-0eaa3da95f25.shg-align-container {
  text-align: center
}

.s-08563754-fe42-4b50-947d-0eaa3da95f25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08563754-fe42-4b50-947d-0eaa3da95f25.shogun-image {
  box-sizing: border-box;
}


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



  #s-08563754-fe42-4b50-947d-0eaa3da95f25 img.shogun-image,
  #s-08563754-fe42-4b50-947d-0eaa3da95f25 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-08563754-fe42-4b50-947d-0eaa3da95f25 {
    width: 100%;
    height: auto;
  }



  img.s-08563754-fe42-4b50-947d-0eaa3da95f25.shogun-image {
    
    
  }


.s-08563754-fe42-4b50-947d-0eaa3da95f25 .shogun-image-content {
  
    align-items: center;
  
}

.s-08563754-fe42-4b50-947d-0eaa3da95f25.shg-align-container {
  text-align: center
}

.s-08563754-fe42-4b50-947d-0eaa3da95f25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08563754-fe42-4b50-947d-0eaa3da95f25.shogun-image {
  box-sizing: border-box;
}


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



  #s-08563754-fe42-4b50-947d-0eaa3da95f25 img.shogun-image,
  #s-08563754-fe42-4b50-947d-0eaa3da95f25 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-08563754-fe42-4b50-947d-0eaa3da95f25 {
    width: 100%;
    height: auto;
  }



  img.s-08563754-fe42-4b50-947d-0eaa3da95f25.shogun-image {
    
    
  }


.s-08563754-fe42-4b50-947d-0eaa3da95f25 .shogun-image-content {
  
    align-items: center;
  
}

.s-08563754-fe42-4b50-947d-0eaa3da95f25.shg-align-container {
  text-align: center
}

.s-08563754-fe42-4b50-947d-0eaa3da95f25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08563754-fe42-4b50-947d-0eaa3da95f25.shogun-image {
  box-sizing: border-box;
}


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



  #s-08563754-fe42-4b50-947d-0eaa3da95f25 img.shogun-image,
  #s-08563754-fe42-4b50-947d-0eaa3da95f25 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-08563754-fe42-4b50-947d-0eaa3da95f25 {
    width: 100%;
    height: auto;
  }



  img.s-08563754-fe42-4b50-947d-0eaa3da95f25.shogun-image {
    
    
  }


.s-08563754-fe42-4b50-947d-0eaa3da95f25 .shogun-image-content {
  
    align-items: center;
  
}

.s-08563754-fe42-4b50-947d-0eaa3da95f25.shg-align-container {
  text-align: center
}

.s-08563754-fe42-4b50-947d-0eaa3da95f25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08563754-fe42-4b50-947d-0eaa3da95f25.shogun-image {
  box-sizing: border-box;
}


}
#s-9cdfa0e7-cacc-44ef-a745-fd8796b27515 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-9cdfa0e7-cacc-44ef-a745-fd8796b27515 {
  display: none;
}
#s-9cdfa0e7-cacc-44ef-a745-fd8796b27515, #wrap-s-9cdfa0e7-cacc-44ef-a745-fd8796b27515 { display:none !important; }}
#s-9cdfa0e7-cacc-44ef-a745-fd8796b27515 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-6e241489-2005-4a3c-8666-121b9d500ab0 {
  display: none;
}
#s-6e241489-2005-4a3c-8666-121b9d500ab0, #wrap-s-6e241489-2005-4a3c-8666-121b9d500ab0 { display:none !important; }}
#s-56d84cb7-980a-4182-a177-ed00ae6a44a2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-56d84cb7-980a-4182-a177-ed00ae6a44a2 {
  display: none;
}
#s-56d84cb7-980a-4182-a177-ed00ae6a44a2, #wrap-s-56d84cb7-980a-4182-a177-ed00ae6a44a2 { display:none !important; }}
#s-56d84cb7-980a-4182-a177-ed00ae6a44a2 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-6bc5a4f8-81c8-470a-9f5d-6bcd8fe86eb6 {
  display: none;
}
#s-6bc5a4f8-81c8-470a-9f5d-6bcd8fe86eb6, #wrap-s-6bc5a4f8-81c8-470a-9f5d-6bcd8fe86eb6 { display:none !important; }}
#s-0f45339d-622a-4ba9-806b-7f792b37c183 {
  max-width: 6720px;
aspect-ratio: 6720/4480;
text-align: center;
}
@media (max-width: 767px){#s-0f45339d-622a-4ba9-806b-7f792b37c183 {
  display: none;
}
#s-0f45339d-622a-4ba9-806b-7f792b37c183, #wrap-s-0f45339d-622a-4ba9-806b-7f792b37c183 { display:none !important; }}




  #s-0f45339d-622a-4ba9-806b-7f792b37c183 img.shogun-image,
  #s-0f45339d-622a-4ba9-806b-7f792b37c183 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0f45339d-622a-4ba9-806b-7f792b37c183 {
    width: 100%;
    height: auto;
  }



  img.s-0f45339d-622a-4ba9-806b-7f792b37c183.shogun-image {
    
    
  }


.s-0f45339d-622a-4ba9-806b-7f792b37c183 .shogun-image-content {
  
    align-items: center;
  
}

.s-0f45339d-622a-4ba9-806b-7f792b37c183.shg-align-container {
  text-align: center
}

.s-0f45339d-622a-4ba9-806b-7f792b37c183.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f45339d-622a-4ba9-806b-7f792b37c183.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-0f45339d-622a-4ba9-806b-7f792b37c183 img.shogun-image,
  #s-0f45339d-622a-4ba9-806b-7f792b37c183 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0f45339d-622a-4ba9-806b-7f792b37c183 {
    width: 100%;
    height: auto;
  }



  img.s-0f45339d-622a-4ba9-806b-7f792b37c183.shogun-image {
    
    
  }


.s-0f45339d-622a-4ba9-806b-7f792b37c183 .shogun-image-content {
  
    align-items: center;
  
}

.s-0f45339d-622a-4ba9-806b-7f792b37c183.shg-align-container {
  text-align: center
}

.s-0f45339d-622a-4ba9-806b-7f792b37c183.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f45339d-622a-4ba9-806b-7f792b37c183.shogun-image {
  box-sizing: border-box;
}


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



  #s-0f45339d-622a-4ba9-806b-7f792b37c183 img.shogun-image,
  #s-0f45339d-622a-4ba9-806b-7f792b37c183 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0f45339d-622a-4ba9-806b-7f792b37c183 {
    width: 100%;
    height: auto;
  }



  img.s-0f45339d-622a-4ba9-806b-7f792b37c183.shogun-image {
    
    
  }


.s-0f45339d-622a-4ba9-806b-7f792b37c183 .shogun-image-content {
  
    align-items: center;
  
}

.s-0f45339d-622a-4ba9-806b-7f792b37c183.shg-align-container {
  text-align: center
}

.s-0f45339d-622a-4ba9-806b-7f792b37c183.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f45339d-622a-4ba9-806b-7f792b37c183.shogun-image {
  box-sizing: border-box;
}


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



  #s-0f45339d-622a-4ba9-806b-7f792b37c183 img.shogun-image,
  #s-0f45339d-622a-4ba9-806b-7f792b37c183 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0f45339d-622a-4ba9-806b-7f792b37c183 {
    width: 100%;
    height: auto;
  }



  img.s-0f45339d-622a-4ba9-806b-7f792b37c183.shogun-image {
    
    
  }


.s-0f45339d-622a-4ba9-806b-7f792b37c183 .shogun-image-content {
  
    align-items: center;
  
}

.s-0f45339d-622a-4ba9-806b-7f792b37c183.shg-align-container {
  text-align: center
}

.s-0f45339d-622a-4ba9-806b-7f792b37c183.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f45339d-622a-4ba9-806b-7f792b37c183.shogun-image {
  box-sizing: border-box;
}


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



  #s-0f45339d-622a-4ba9-806b-7f792b37c183 img.shogun-image,
  #s-0f45339d-622a-4ba9-806b-7f792b37c183 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0f45339d-622a-4ba9-806b-7f792b37c183 {
    width: 100%;
    height: auto;
  }



  img.s-0f45339d-622a-4ba9-806b-7f792b37c183.shogun-image {
    
    
  }


.s-0f45339d-622a-4ba9-806b-7f792b37c183 .shogun-image-content {
  
    align-items: center;
  
}

.s-0f45339d-622a-4ba9-806b-7f792b37c183.shg-align-container {
  text-align: center
}

.s-0f45339d-622a-4ba9-806b-7f792b37c183.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f45339d-622a-4ba9-806b-7f792b37c183.shogun-image {
  box-sizing: border-box;
}


}
#s-5a42ee0e-f3f8-45b7-a77d-4ca9d416114e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-5a42ee0e-f3f8-45b7-a77d-4ca9d416114e {
  display: none;
}
#s-5a42ee0e-f3f8-45b7-a77d-4ca9d416114e, #wrap-s-5a42ee0e-f3f8-45b7-a77d-4ca9d416114e { display:none !important; }}
#s-5a42ee0e-f3f8-45b7-a77d-4ca9d416114e .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-d53774f7-8909-48f2-89b4-a8045a661601 {
  display: none;
}
#s-d53774f7-8909-48f2-89b4-a8045a661601, #wrap-s-d53774f7-8909-48f2-89b4-a8045a661601 { display:none !important; }}
#s-f3a5642b-77bc-4fe8-a163-f0e27740597d {
  max-width: 4480px;
aspect-ratio: 2/3;
text-align: center;
}
@media (max-width: 767px){#s-f3a5642b-77bc-4fe8-a163-f0e27740597d {
  display: none;
}
#s-f3a5642b-77bc-4fe8-a163-f0e27740597d, #wrap-s-f3a5642b-77bc-4fe8-a163-f0e27740597d { display:none !important; }}




  #s-f3a5642b-77bc-4fe8-a163-f0e27740597d img.shogun-image,
  #s-f3a5642b-77bc-4fe8-a163-f0e27740597d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f3a5642b-77bc-4fe8-a163-f0e27740597d {
    width: 100%;
    height: auto;
  }



  img.s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shogun-image {
    
    
  }


.s-f3a5642b-77bc-4fe8-a163-f0e27740597d .shogun-image-content {
  
    align-items: center;
  
}

.s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shg-align-container {
  text-align: center
}

.s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-f3a5642b-77bc-4fe8-a163-f0e27740597d img.shogun-image,
  #s-f3a5642b-77bc-4fe8-a163-f0e27740597d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f3a5642b-77bc-4fe8-a163-f0e27740597d {
    width: 100%;
    height: auto;
  }



  img.s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shogun-image {
    
    
  }


.s-f3a5642b-77bc-4fe8-a163-f0e27740597d .shogun-image-content {
  
    align-items: center;
  
}

.s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shg-align-container {
  text-align: center
}

.s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shogun-image {
  box-sizing: border-box;
}


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



  #s-f3a5642b-77bc-4fe8-a163-f0e27740597d img.shogun-image,
  #s-f3a5642b-77bc-4fe8-a163-f0e27740597d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f3a5642b-77bc-4fe8-a163-f0e27740597d {
    width: 100%;
    height: auto;
  }



  img.s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shogun-image {
    
    
  }


.s-f3a5642b-77bc-4fe8-a163-f0e27740597d .shogun-image-content {
  
    align-items: center;
  
}

.s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shg-align-container {
  text-align: center
}

.s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shogun-image {
  box-sizing: border-box;
}


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



  #s-f3a5642b-77bc-4fe8-a163-f0e27740597d img.shogun-image,
  #s-f3a5642b-77bc-4fe8-a163-f0e27740597d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f3a5642b-77bc-4fe8-a163-f0e27740597d {
    width: 100%;
    height: auto;
  }



  img.s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shogun-image {
    
    
  }


.s-f3a5642b-77bc-4fe8-a163-f0e27740597d .shogun-image-content {
  
    align-items: center;
  
}

.s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shg-align-container {
  text-align: center
}

.s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shogun-image {
  box-sizing: border-box;
}


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



  #s-f3a5642b-77bc-4fe8-a163-f0e27740597d img.shogun-image,
  #s-f3a5642b-77bc-4fe8-a163-f0e27740597d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f3a5642b-77bc-4fe8-a163-f0e27740597d {
    width: 100%;
    height: auto;
  }



  img.s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shogun-image {
    
    
  }


.s-f3a5642b-77bc-4fe8-a163-f0e27740597d .shogun-image-content {
  
    align-items: center;
  
}

.s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shg-align-container {
  text-align: center
}

.s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f3a5642b-77bc-4fe8-a163-f0e27740597d.shogun-image {
  box-sizing: border-box;
}


}
#s-86f5baa8-49e4-4c61-8821-258064cbceab {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-86f5baa8-49e4-4c61-8821-258064cbceab {
  display: none;
}
#s-86f5baa8-49e4-4c61-8821-258064cbceab, #wrap-s-86f5baa8-49e4-4c61-8821-258064cbceab { display:none !important; }}
#s-86f5baa8-49e4-4c61-8821-258064cbceab .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-c31d490d-cc8d-452a-808b-2ad5e51ad47a {
  display: none;
}
#s-c31d490d-cc8d-452a-808b-2ad5e51ad47a, #wrap-s-c31d490d-cc8d-452a-808b-2ad5e51ad47a { display:none !important; }}
#s-5cbd5317-6832-4acb-b56f-14c725a9c89b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-5cbd5317-6832-4acb-b56f-14c725a9c89b {
  display: none;
}
#s-5cbd5317-6832-4acb-b56f-14c725a9c89b, #wrap-s-5cbd5317-6832-4acb-b56f-14c725a9c89b { display:none !important; }}
#s-5cbd5317-6832-4acb-b56f-14c725a9c89b .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-eaeeb9eb-ed03-43bd-82b5-c14b4e65c84a {
  display: none;
}
#s-eaeeb9eb-ed03-43bd-82b5-c14b4e65c84a, #wrap-s-eaeeb9eb-ed03-43bd-82b5-c14b4e65c84a { display:none !important; }}
#s-f4770eb3-dff0-4233-aac2-999af84fc2b3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-f4770eb3-dff0-4233-aac2-999af84fc2b3 {
  display: none;
}
#s-f4770eb3-dff0-4233-aac2-999af84fc2b3, #wrap-s-f4770eb3-dff0-4233-aac2-999af84fc2b3 { display:none !important; }}
#s-f4770eb3-dff0-4233-aac2-999af84fc2b3 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-4c4eba62-c244-4f28-b0e6-54b2e7c9ee9b {
  display: none;
}
#s-4c4eba62-c244-4f28-b0e6-54b2e7c9ee9b, #wrap-s-4c4eba62-c244-4f28-b0e6-54b2e7c9ee9b { display:none !important; }}
#s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 {
  max-width: 4480px;
aspect-ratio: 2/3;
text-align: center;
}
@media (max-width: 767px){#s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 {
  display: none;
}
#s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8, #wrap-s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 { display:none !important; }}




  #s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 img.shogun-image,
  #s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 {
    width: 100%;
    height: auto;
  }



  img.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shogun-image {
    
    
  }


.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 .shogun-image-content {
  
    align-items: center;
  
}

.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shg-align-container {
  text-align: center
}

.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 img.shogun-image,
  #s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 {
    width: 100%;
    height: auto;
  }



  img.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shogun-image {
    
    
  }


.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 .shogun-image-content {
  
    align-items: center;
  
}

.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shg-align-container {
  text-align: center
}

.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shogun-image {
  box-sizing: border-box;
}


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



  #s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 img.shogun-image,
  #s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 {
    width: 100%;
    height: auto;
  }



  img.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shogun-image {
    
    
  }


.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 .shogun-image-content {
  
    align-items: center;
  
}

.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shg-align-container {
  text-align: center
}

.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shogun-image {
  box-sizing: border-box;
}


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



  #s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 img.shogun-image,
  #s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 {
    width: 100%;
    height: auto;
  }



  img.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shogun-image {
    
    
  }


.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 .shogun-image-content {
  
    align-items: center;
  
}

.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shg-align-container {
  text-align: center
}

.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shogun-image {
  box-sizing: border-box;
}


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



  #s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 img.shogun-image,
  #s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 {
    width: 100%;
    height: auto;
  }



  img.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shogun-image {
    
    
  }


.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8 .shogun-image-content {
  
    align-items: center;
  
}

.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shg-align-container {
  text-align: center
}

.s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-deb672f6-cbb9-4d9c-8f10-8b29ca84b4b8.shogun-image {
  box-sizing: border-box;
}


}
#s-34beb1d7-cee9-4ab7-a791-5e53969bdcb0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-34beb1d7-cee9-4ab7-a791-5e53969bdcb0 {
  display: none;
}
#s-34beb1d7-cee9-4ab7-a791-5e53969bdcb0, #wrap-s-34beb1d7-cee9-4ab7-a791-5e53969bdcb0 { display:none !important; }}
#s-34beb1d7-cee9-4ab7-a791-5e53969bdcb0 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-dc21866a-7bf4-41e8-b737-297e709c3498 {
  display: none;
}
#s-dc21866a-7bf4-41e8-b737-297e709c3498, #wrap-s-dc21866a-7bf4-41e8-b737-297e709c3498 { display:none !important; }}
#s-b9268c76-5b2d-4868-89b7-4fbb9315d974 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-b9268c76-5b2d-4868-89b7-4fbb9315d974 {
  display: none;
}
#s-b9268c76-5b2d-4868-89b7-4fbb9315d974, #wrap-s-b9268c76-5b2d-4868-89b7-4fbb9315d974 { display:none !important; }}
#s-b9268c76-5b2d-4868-89b7-4fbb9315d974 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-9558f83a-16a0-44c4-a8fb-16cd1fef2cb0 {
  display: none;
}
#s-9558f83a-16a0-44c4-a8fb-16cd1fef2cb0, #wrap-s-9558f83a-16a0-44c4-a8fb-16cd1fef2cb0 { display:none !important; }}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

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