.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-32d1c112-c9f7-4774-93f0-51a057f29fd4 {
  min-height: 50px;
}








#s-32d1c112-c9f7-4774-93f0-51a057f29fd4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-32d1c112-c9f7-4774-93f0-51a057f29fd4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-a3288214-4ef1-4caf-b47e-7c2469e3ba36 {
  text-align: center;
}







  #s-a3288214-4ef1-4caf-b47e-7c2469e3ba36 img.shogun-image {
    

    
    
    
  }


#s-a3288214-4ef1-4caf-b47e-7c2469e3ba36 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-f5fc3893-8709-4e3f-bd7d-d28260100c3b {
  margin-top: 19px;
margin-bottom: 19px;
}

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

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

#s-9bc2d4f5-6864-4175-8f45-347f056d5d34 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9bc2d4f5-6864-4175-8f45-347f056d5d34 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}



.shg-social-alignable {
  display: inline-block;
}

.shg-social-container {
  display: flex;
}

.shg-social-element {
  display: inline-block;
  border: none !important;
  padding: 0px !important;
}

#s-c28c3d84-5a34-4c1f-bca1-033d4204841b {
  margin-top: 20px;
margin-bottom: 20px;
text-align: left;
}

#s-ea6d16af-f0e2-432c-bf77-35f7908c8448 {
  min-height: 50px;
}








#s-ea6d16af-f0e2-432c-bf77-35f7908c8448 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ea6d16af-f0e2-432c-bf77-35f7908c8448.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-12241f36-80b2-4dc2-a73e-fdfd10a4160f {
  margin-top: 24px;
margin-bottom: 24px;
text-align: center;
}







  #s-12241f36-80b2-4dc2-a73e-fdfd10a4160f img.shogun-image {
    

    
    
    
  }


#s-12241f36-80b2-4dc2-a73e-fdfd10a4160f .shogun-image-content {
  
    align-items: center;
  
}

#s-02171592-1f25-456b-b055-6b27b4224167 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-02171592-1f25-456b-b055-6b27b4224167 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-3fe64a5a-4408-4738-9e4e-4573be782ed7 {
  margin-top: 24px;
margin-bottom: 24px;
}
@media (max-width: 767px){#s-3fe64a5a-4408-4738-9e4e-4573be782ed7 {
  margin-bottom: 15px;
}
}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

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

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

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

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

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

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

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

#s-f06b858a-951d-4924-8a0e-6a8d3ddf855d {
  margin-top: 0px;
margin-bottom: 24px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f06b858a-951d-4924-8a0e-6a8d3ddf855d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f06b858a-951d-4924-8a0e-6a8d3ddf855d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f06b858a-951d-4924-8a0e-6a8d3ddf855d-root {
    text-align: center;
  }


#s-f06b858a-951d-4924-8a0e-6a8d3ddf855d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f06b858a-951d-4924-8a0e-6a8d3ddf855d-root {
    text-align: center;
  }


#s-f06b858a-951d-4924-8a0e-6a8d3ddf855d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f06b858a-951d-4924-8a0e-6a8d3ddf855d-root {
    text-align: center;
  }


#s-f06b858a-951d-4924-8a0e-6a8d3ddf855d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f06b858a-951d-4924-8a0e-6a8d3ddf855d-root {
    text-align: center;
  }


#s-f06b858a-951d-4924-8a0e-6a8d3ddf855d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f06b858a-951d-4924-8a0e-6a8d3ddf855d-root {
    text-align: center;
  }


#s-f06b858a-951d-4924-8a0e-6a8d3ddf855d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-f06b858a-951d-4924-8a0e-6a8d3ddf855d-root {
    text-align: center;
  }


#s-f06b858a-951d-4924-8a0e-6a8d3ddf855d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-1ea55574-4a2f-4447-827c-e7267268818c {
  min-height: 50px;
}








#s-1ea55574-4a2f-4447-827c-e7267268818c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1ea55574-4a2f-4447-827c-e7267268818c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4d95d4e1-0ae4-4774-9ff7-d8b8f286f3d3 {
  margin-top: 24px;
margin-bottom: 24px;
max-width: 2040px;
aspect-ratio: 2040/1360;
text-align: center;
}





  #s-4d95d4e1-0ae4-4774-9ff7-d8b8f286f3d3 img.shogun-image,
  #s-4d95d4e1-0ae4-4774-9ff7-d8b8f286f3d3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4d95d4e1-0ae4-4774-9ff7-d8b8f286f3d3 {
    width: 100%;
    height: auto;
  }



  #s-4d95d4e1-0ae4-4774-9ff7-d8b8f286f3d3 img.shogun-image {
    

    
    
    
  }


#s-4d95d4e1-0ae4-4774-9ff7-d8b8f286f3d3 .shogun-image-content {
  
    align-items: center;
  
}

#s-533a5c1c-481a-40af-aba8-e873d8f76667 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-533a5c1c-481a-40af-aba8-e873d8f76667 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-41d978f9-ba98-4023-9ddf-f115e85d275e {
  margin-top: 24px;
margin-bottom: 24px;
}
@media (max-width: 767px){#s-41d978f9-ba98-4023-9ddf-f115e85d275e {
  margin-bottom: 15px;
}
}
#s-f83d1209-36e5-47e1-bef9-f08fc84d1ca8 {
  margin-bottom: 24px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f83d1209-36e5-47e1-bef9-f08fc84d1ca8:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f83d1209-36e5-47e1-bef9-f08fc84d1ca8:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f83d1209-36e5-47e1-bef9-f08fc84d1ca8-root {
    text-align: center;
  }


#s-f83d1209-36e5-47e1-bef9-f08fc84d1ca8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f83d1209-36e5-47e1-bef9-f08fc84d1ca8-root {
    text-align: center;
  }


#s-f83d1209-36e5-47e1-bef9-f08fc84d1ca8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f83d1209-36e5-47e1-bef9-f08fc84d1ca8-root {
    text-align: center;
  }


#s-f83d1209-36e5-47e1-bef9-f08fc84d1ca8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f83d1209-36e5-47e1-bef9-f08fc84d1ca8-root {
    text-align: center;
  }


#s-f83d1209-36e5-47e1-bef9-f08fc84d1ca8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f83d1209-36e5-47e1-bef9-f08fc84d1ca8-root {
    text-align: center;
  }


#s-f83d1209-36e5-47e1-bef9-f08fc84d1ca8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-f83d1209-36e5-47e1-bef9-f08fc84d1ca8-root {
    text-align: center;
  }


#s-f83d1209-36e5-47e1-bef9-f08fc84d1ca8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-b857311d-fa2d-4b4c-a72a-e5b15b053a5a {
  min-height: 50px;
}








#s-b857311d-fa2d-4b4c-a72a-e5b15b053a5a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b857311d-fa2d-4b4c-a72a-e5b15b053a5a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d2631a9d-aae0-49de-918c-b7e9d699eaa9 {
  margin-top: 24px;
margin-bottom: 24px;
text-align: center;
}







  #s-d2631a9d-aae0-49de-918c-b7e9d699eaa9 img.shogun-image {
    

    
    
    
  }


#s-d2631a9d-aae0-49de-918c-b7e9d699eaa9 .shogun-image-content {
  
    align-items: center;
  
}

#s-789ecde9-91aa-44ec-9936-5941c3e6b5cc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-789ecde9-91aa-44ec-9936-5941c3e6b5cc .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-da31f40d-4d98-4d86-994e-e861c87850dc {
  margin-top: 24px;
margin-bottom: 24px;
}
@media (max-width: 767px){#s-da31f40d-4d98-4d86-994e-e861c87850dc {
  margin-bottom: 15px;
}
}
#s-79226ce0-7f70-4dcd-8094-c8cbfc650798 {
  margin-bottom: 24px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-79226ce0-7f70-4dcd-8094-c8cbfc650798:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-79226ce0-7f70-4dcd-8094-c8cbfc650798:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-79226ce0-7f70-4dcd-8094-c8cbfc650798-root {
    text-align: center;
  }


#s-79226ce0-7f70-4dcd-8094-c8cbfc650798.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-79226ce0-7f70-4dcd-8094-c8cbfc650798-root {
    text-align: center;
  }


#s-79226ce0-7f70-4dcd-8094-c8cbfc650798.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-79226ce0-7f70-4dcd-8094-c8cbfc650798-root {
    text-align: center;
  }


#s-79226ce0-7f70-4dcd-8094-c8cbfc650798.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-79226ce0-7f70-4dcd-8094-c8cbfc650798-root {
    text-align: center;
  }


#s-79226ce0-7f70-4dcd-8094-c8cbfc650798.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-79226ce0-7f70-4dcd-8094-c8cbfc650798-root {
    text-align: center;
  }


#s-79226ce0-7f70-4dcd-8094-c8cbfc650798.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-79226ce0-7f70-4dcd-8094-c8cbfc650798-root {
    text-align: center;
  }


#s-79226ce0-7f70-4dcd-8094-c8cbfc650798.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-8a0f9a2d-9cba-4a91-a43b-d9f446368723 {
  min-height: 50px;
}








#s-8a0f9a2d-9cba-4a91-a43b-d9f446368723 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8a0f9a2d-9cba-4a91-a43b-d9f446368723.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3f0ea7d6-c585-4d43-8321-5ac359ef796f {
  margin-top: 24px;
margin-bottom: 24px;
text-align: center;
}







  #s-3f0ea7d6-c585-4d43-8321-5ac359ef796f img.shogun-image {
    

    
    
    
  }


#s-3f0ea7d6-c585-4d43-8321-5ac359ef796f .shogun-image-content {
  
    align-items: center;
  
}

#s-1fe01091-7721-4dc1-b9db-cc9c46d6ac77 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-1fe01091-7721-4dc1-b9db-cc9c46d6ac77 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-3277c868-84fd-42f5-9e53-2ae9f3bf7906 {
  margin-top: 24px;
margin-bottom: 24px;
}
@media (max-width: 767px){#s-3277c868-84fd-42f5-9e53-2ae9f3bf7906 {
  margin-bottom: 15px;
}
}
#s-3a0552f6-0626-4dbe-a5bc-8a8631b0ea5a {
  margin-bottom: 24px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-3a0552f6-0626-4dbe-a5bc-8a8631b0ea5a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3a0552f6-0626-4dbe-a5bc-8a8631b0ea5a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3a0552f6-0626-4dbe-a5bc-8a8631b0ea5a-root {
    text-align: center;
  }


#s-3a0552f6-0626-4dbe-a5bc-8a8631b0ea5a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3a0552f6-0626-4dbe-a5bc-8a8631b0ea5a-root {
    text-align: center;
  }


#s-3a0552f6-0626-4dbe-a5bc-8a8631b0ea5a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3a0552f6-0626-4dbe-a5bc-8a8631b0ea5a-root {
    text-align: center;
  }


#s-3a0552f6-0626-4dbe-a5bc-8a8631b0ea5a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3a0552f6-0626-4dbe-a5bc-8a8631b0ea5a-root {
    text-align: center;
  }


#s-3a0552f6-0626-4dbe-a5bc-8a8631b0ea5a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3a0552f6-0626-4dbe-a5bc-8a8631b0ea5a-root {
    text-align: center;
  }


#s-3a0552f6-0626-4dbe-a5bc-8a8631b0ea5a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-3a0552f6-0626-4dbe-a5bc-8a8631b0ea5a-root {
    text-align: center;
  }


#s-3a0552f6-0626-4dbe-a5bc-8a8631b0ea5a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-1f988ea3-1a3e-4850-ba18-b69a943e3437 {
  min-height: 50px;
}








#s-1f988ea3-1a3e-4850-ba18-b69a943e3437 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1f988ea3-1a3e-4850-ba18-b69a943e3437.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8702a9f7-d9d8-4172-b0e6-14c43fbea658 {
  margin-top: 24px;
margin-bottom: 24px;
text-align: center;
}







  #s-8702a9f7-d9d8-4172-b0e6-14c43fbea658 img.shogun-image {
    

    
    
    
  }


#s-8702a9f7-d9d8-4172-b0e6-14c43fbea658 .shogun-image-content {
  
    align-items: center;
  
}

#s-22688f54-8a43-4738-a9a1-13857ca5014a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-22688f54-8a43-4738-a9a1-13857ca5014a .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-05dc7cae-6116-43ec-930e-e89e43245c6f {
  margin-top: 24px;
margin-bottom: 24px;
}
@media (max-width: 767px){#s-05dc7cae-6116-43ec-930e-e89e43245c6f {
  margin-bottom: 15px;
}
}
#s-38f83e83-0bf9-4f8b-878f-07f7f57844a3 {
  margin-bottom: 24px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-38f83e83-0bf9-4f8b-878f-07f7f57844a3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-38f83e83-0bf9-4f8b-878f-07f7f57844a3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-38f83e83-0bf9-4f8b-878f-07f7f57844a3-root {
    text-align: center;
  }


#s-38f83e83-0bf9-4f8b-878f-07f7f57844a3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-38f83e83-0bf9-4f8b-878f-07f7f57844a3-root {
    text-align: center;
  }


#s-38f83e83-0bf9-4f8b-878f-07f7f57844a3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-38f83e83-0bf9-4f8b-878f-07f7f57844a3-root {
    text-align: center;
  }


#s-38f83e83-0bf9-4f8b-878f-07f7f57844a3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-38f83e83-0bf9-4f8b-878f-07f7f57844a3-root {
    text-align: center;
  }


#s-38f83e83-0bf9-4f8b-878f-07f7f57844a3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-38f83e83-0bf9-4f8b-878f-07f7f57844a3-root {
    text-align: center;
  }


#s-38f83e83-0bf9-4f8b-878f-07f7f57844a3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-38f83e83-0bf9-4f8b-878f-07f7f57844a3-root {
    text-align: center;
  }


#s-38f83e83-0bf9-4f8b-878f-07f7f57844a3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-88e745da-427a-4a6c-9b15-dcf504474d87 {
  min-height: 50px;
}








#s-88e745da-427a-4a6c-9b15-dcf504474d87 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-88e745da-427a-4a6c-9b15-dcf504474d87.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6ffa3b23-44ad-4746-8286-bd4775d8b8e5 {
  margin-top: 24px;
margin-bottom: 24px;
text-align: center;
}







  #s-6ffa3b23-44ad-4746-8286-bd4775d8b8e5 img.shogun-image {
    

    
    
    
  }


#s-6ffa3b23-44ad-4746-8286-bd4775d8b8e5 .shogun-image-content {
  
    align-items: center;
  
}

#s-94fd3667-2e17-44d3-a48d-3c9eab6a7c54 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-94fd3667-2e17-44d3-a48d-3c9eab6a7c54 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-1fa3d744-3458-4a9a-9ebc-ddbda55f8d48 {
  margin-top: 24px;
margin-bottom: 24px;
}
@media (max-width: 767px){#s-1fa3d744-3458-4a9a-9ebc-ddbda55f8d48 {
  margin-bottom: 15px;
}
}
#s-859e39df-b60d-46d3-b42c-0740fa642463 {
  margin-bottom: 24px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-859e39df-b60d-46d3-b42c-0740fa642463:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-859e39df-b60d-46d3-b42c-0740fa642463:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-859e39df-b60d-46d3-b42c-0740fa642463-root {
    text-align: center;
  }


#s-859e39df-b60d-46d3-b42c-0740fa642463.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-859e39df-b60d-46d3-b42c-0740fa642463-root {
    text-align: center;
  }


#s-859e39df-b60d-46d3-b42c-0740fa642463.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-859e39df-b60d-46d3-b42c-0740fa642463-root {
    text-align: center;
  }


#s-859e39df-b60d-46d3-b42c-0740fa642463.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-859e39df-b60d-46d3-b42c-0740fa642463-root {
    text-align: center;
  }


#s-859e39df-b60d-46d3-b42c-0740fa642463.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-859e39df-b60d-46d3-b42c-0740fa642463-root {
    text-align: center;
  }


#s-859e39df-b60d-46d3-b42c-0740fa642463.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-859e39df-b60d-46d3-b42c-0740fa642463-root {
    text-align: center;
  }


#s-859e39df-b60d-46d3-b42c-0740fa642463.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-555b0798-0d1f-4f47-a75f-1eb82cc7996c {
  min-height: 50px;
}








#s-555b0798-0d1f-4f47-a75f-1eb82cc7996c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-555b0798-0d1f-4f47-a75f-1eb82cc7996c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-767f7fad-f88b-41a8-831d-d754cf833750 {
  margin-top: 24px;
margin-bottom: 24px;
text-align: center;
}







  #s-767f7fad-f88b-41a8-831d-d754cf833750 img.shogun-image {
    

    
    
    
  }


#s-767f7fad-f88b-41a8-831d-d754cf833750 .shogun-image-content {
  
    align-items: center;
  
}

#s-dada4382-c203-4cb2-943c-541173b7023a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-dada4382-c203-4cb2-943c-541173b7023a .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-f7a8475f-04f5-4806-8b46-66e414707a09 {
  margin-top: 24px;
margin-bottom: 24px;
}
@media (max-width: 767px){#s-f7a8475f-04f5-4806-8b46-66e414707a09 {
  margin-bottom: 15px;
}
}
#s-ba4be40d-3f61-425a-9dca-58a81d093d12 {
  margin-bottom: 24px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-ba4be40d-3f61-425a-9dca-58a81d093d12:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ba4be40d-3f61-425a-9dca-58a81d093d12:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ba4be40d-3f61-425a-9dca-58a81d093d12-root {
    text-align: center;
  }


#s-ba4be40d-3f61-425a-9dca-58a81d093d12.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ba4be40d-3f61-425a-9dca-58a81d093d12-root {
    text-align: center;
  }


#s-ba4be40d-3f61-425a-9dca-58a81d093d12.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ba4be40d-3f61-425a-9dca-58a81d093d12-root {
    text-align: center;
  }


#s-ba4be40d-3f61-425a-9dca-58a81d093d12.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ba4be40d-3f61-425a-9dca-58a81d093d12-root {
    text-align: center;
  }


#s-ba4be40d-3f61-425a-9dca-58a81d093d12.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ba4be40d-3f61-425a-9dca-58a81d093d12-root {
    text-align: center;
  }


#s-ba4be40d-3f61-425a-9dca-58a81d093d12.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-ba4be40d-3f61-425a-9dca-58a81d093d12-root {
    text-align: center;
  }


#s-ba4be40d-3f61-425a-9dca-58a81d093d12.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-f6f78838-d137-4a10-8bf1-9c6d96300939 {
  min-height: 50px;
}








#s-f6f78838-d137-4a10-8bf1-9c6d96300939 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f6f78838-d137-4a10-8bf1-9c6d96300939.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-da70e634-fe20-47d2-9d71-0b1e712200cd {
  margin-top: 24px;
margin-bottom: 24px;
text-align: center;
}







  #s-da70e634-fe20-47d2-9d71-0b1e712200cd img.shogun-image {
    

    
    
    
  }


#s-da70e634-fe20-47d2-9d71-0b1e712200cd .shogun-image-content {
  
    align-items: center;
  
}

#s-cefd00a8-67f2-408d-87ac-3026f5a913aa {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-cefd00a8-67f2-408d-87ac-3026f5a913aa .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-837b23e1-8e68-45c6-8eee-6cad9508a36f {
  margin-top: 24px;
margin-bottom: 24px;
}
@media (max-width: 767px){#s-837b23e1-8e68-45c6-8eee-6cad9508a36f {
  margin-bottom: 15px;
}
}
#s-63ef7c57-7cad-4320-ad52-9081417c2d04 {
  margin-bottom: 24px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-63ef7c57-7cad-4320-ad52-9081417c2d04:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-63ef7c57-7cad-4320-ad52-9081417c2d04:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-63ef7c57-7cad-4320-ad52-9081417c2d04-root {
    text-align: center;
  }


#s-63ef7c57-7cad-4320-ad52-9081417c2d04.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-63ef7c57-7cad-4320-ad52-9081417c2d04-root {
    text-align: center;
  }


#s-63ef7c57-7cad-4320-ad52-9081417c2d04.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-63ef7c57-7cad-4320-ad52-9081417c2d04-root {
    text-align: center;
  }


#s-63ef7c57-7cad-4320-ad52-9081417c2d04.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-63ef7c57-7cad-4320-ad52-9081417c2d04-root {
    text-align: center;
  }


#s-63ef7c57-7cad-4320-ad52-9081417c2d04.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-63ef7c57-7cad-4320-ad52-9081417c2d04-root {
    text-align: center;
  }


#s-63ef7c57-7cad-4320-ad52-9081417c2d04.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-63ef7c57-7cad-4320-ad52-9081417c2d04-root {
    text-align: center;
  }


#s-63ef7c57-7cad-4320-ad52-9081417c2d04.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-e737443e-ee2e-42e0-b18f-82c0b4c06d3f {
  min-height: 50px;
}








#s-e737443e-ee2e-42e0-b18f-82c0b4c06d3f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e737443e-ee2e-42e0-b18f-82c0b4c06d3f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9a4c4363-70cb-4a1d-bcf2-52c2738d0f53 {
  margin-top: 24px;
margin-bottom: 24px;
text-align: center;
}







  #s-9a4c4363-70cb-4a1d-bcf2-52c2738d0f53 img.shogun-image {
    

    
    
    
  }


#s-9a4c4363-70cb-4a1d-bcf2-52c2738d0f53 .shogun-image-content {
  
    align-items: center;
  
}

#s-005a56fe-f543-47bb-9a4c-0f020789b300 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-005a56fe-f543-47bb-9a4c-0f020789b300 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-903736b8-60e7-4485-ac65-bbbea661241a {
  margin-top: 24px;
margin-bottom: 24px;
}
@media (max-width: 767px){#s-903736b8-60e7-4485-ac65-bbbea661241a {
  margin-bottom: 15px;
}
}
#s-94ad8598-3f03-49fd-b81e-f2c05a5b08a8 {
  margin-bottom: 24px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-94ad8598-3f03-49fd-b81e-f2c05a5b08a8:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-94ad8598-3f03-49fd-b81e-f2c05a5b08a8:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-94ad8598-3f03-49fd-b81e-f2c05a5b08a8-root {
    text-align: center;
  }


#s-94ad8598-3f03-49fd-b81e-f2c05a5b08a8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-94ad8598-3f03-49fd-b81e-f2c05a5b08a8-root {
    text-align: center;
  }


#s-94ad8598-3f03-49fd-b81e-f2c05a5b08a8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-94ad8598-3f03-49fd-b81e-f2c05a5b08a8-root {
    text-align: center;
  }


#s-94ad8598-3f03-49fd-b81e-f2c05a5b08a8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-94ad8598-3f03-49fd-b81e-f2c05a5b08a8-root {
    text-align: center;
  }


#s-94ad8598-3f03-49fd-b81e-f2c05a5b08a8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-94ad8598-3f03-49fd-b81e-f2c05a5b08a8-root {
    text-align: center;
  }


#s-94ad8598-3f03-49fd-b81e-f2c05a5b08a8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
  #s-94ad8598-3f03-49fd-b81e-f2c05a5b08a8-root {
    text-align: center;
  }


#s-94ad8598-3f03-49fd-b81e-f2c05a5b08a8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-eea5371b-d2d8-4194-9af3-3a6f4fbe8979 {
  min-height: 50px;
}








#s-eea5371b-d2d8-4194-9af3-3a6f4fbe8979 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eea5371b-d2d8-4194-9af3-3a6f4fbe8979.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-722284cf-557b-4e4e-abac-d3d9815839f0 {
  margin-top: 24px;
margin-bottom: 24px;
text-align: center;
}







  #s-722284cf-557b-4e4e-abac-d3d9815839f0 img.shogun-image {
    

    
    
    
  }


#s-722284cf-557b-4e4e-abac-d3d9815839f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-616a89a7-7942-4f90-801c-b8c9002ce028 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-616a89a7-7942-4f90-801c-b8c9002ce028 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-abff8484-d823-4133-af09-a7f5e528a277 {
  margin-top: 24px;
margin-bottom: 24px;
}
@media (max-width: 767px){#s-abff8484-d823-4133-af09-a7f5e528a277 {
  margin-bottom: 15px;
}
}
#s-1f410646-e13f-417a-8487-e9a12211c2da {
  margin-bottom: 24px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-1f410646-e13f-417a-8487-e9a12211c2da:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1f410646-e13f-417a-8487-e9a12211c2da:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-1f410646-e13f-417a-8487-e9a12211c2da-root {
    text-align: center;
  }


#s-1f410646-e13f-417a-8487-e9a12211c2da.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1f410646-e13f-417a-8487-e9a12211c2da-root {
    text-align: center;
  }


#s-1f410646-e13f-417a-8487-e9a12211c2da.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1f410646-e13f-417a-8487-e9a12211c2da-root {
    text-align: center;
  }


#s-1f410646-e13f-417a-8487-e9a12211c2da.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1f410646-e13f-417a-8487-e9a12211c2da-root {
    text-align: center;
  }


#s-1f410646-e13f-417a-8487-e9a12211c2da.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1f410646-e13f-417a-8487-e9a12211c2da-root {
    text-align: center;
  }


#s-1f410646-e13f-417a-8487-e9a12211c2da.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-1f410646-e13f-417a-8487-e9a12211c2da-root {
    text-align: center;
  }


#s-1f410646-e13f-417a-8487-e9a12211c2da.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-e753b5c8-4501-406d-ac3e-ec37339f8b71 {
  min-height: 50px;
}








#s-e753b5c8-4501-406d-ac3e-ec37339f8b71 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e753b5c8-4501-406d-ac3e-ec37339f8b71.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7f4df488-7e1d-4692-ac1f-7b975a4a544b {
  margin-top: 24px;
margin-bottom: 24px;
text-align: center;
}







  #s-7f4df488-7e1d-4692-ac1f-7b975a4a544b img.shogun-image {
    

    
    
    
  }


#s-7f4df488-7e1d-4692-ac1f-7b975a4a544b .shogun-image-content {
  
    align-items: center;
  
}

#s-5f4db7c8-cce4-4a1d-804d-e953bb2a024d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-5f4db7c8-cce4-4a1d-804d-e953bb2a024d .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-01d08409-d5d4-400a-b285-a054733a8dea {
  margin-top: 24px;
margin-bottom: 24px;
}
@media (max-width: 767px){#s-01d08409-d5d4-400a-b285-a054733a8dea {
  margin-bottom: 15px;
}
}
#s-10d1afc9-5634-44ac-8123-5b51b810a57a {
  margin-bottom: 24px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-10d1afc9-5634-44ac-8123-5b51b810a57a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-10d1afc9-5634-44ac-8123-5b51b810a57a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-10d1afc9-5634-44ac-8123-5b51b810a57a-root {
    text-align: center;
  }


#s-10d1afc9-5634-44ac-8123-5b51b810a57a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-10d1afc9-5634-44ac-8123-5b51b810a57a-root {
    text-align: center;
  }


#s-10d1afc9-5634-44ac-8123-5b51b810a57a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-10d1afc9-5634-44ac-8123-5b51b810a57a-root {
    text-align: center;
  }


#s-10d1afc9-5634-44ac-8123-5b51b810a57a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-10d1afc9-5634-44ac-8123-5b51b810a57a-root {
    text-align: center;
  }


#s-10d1afc9-5634-44ac-8123-5b51b810a57a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-10d1afc9-5634-44ac-8123-5b51b810a57a-root {
    text-align: center;
  }


#s-10d1afc9-5634-44ac-8123-5b51b810a57a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-10d1afc9-5634-44ac-8123-5b51b810a57a-root {
    text-align: center;
  }


#s-10d1afc9-5634-44ac-8123-5b51b810a57a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

.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-f25c6a60-49bc-4900-b62f-b0fba75af6f2 {
  margin-top: 30px;
margin-bottom: 30px;
background-color: rgba(201, 201, 201, 1);
}

@media (min-width: 0px) {
[id="s-f25c6a60-49bc-4900-b62f-b0fba75af6f2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f25c6a60-49bc-4900-b62f-b0fba75af6f2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f25c6a60-49bc-4900-b62f-b0fba75af6f2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f25c6a60-49bc-4900-b62f-b0fba75af6f2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1cb05004-ee52-4b40-af5c-6a9e3bdc7a57 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}
@media (max-width: 767px){#s-1cb05004-ee52-4b40-af5c-6a9e3bdc7a57 {
  padding-bottom: 0px;
}
}




  #s-1cb05004-ee52-4b40-af5c-6a9e3bdc7a57 img.shogun-image,
  #s-1cb05004-ee52-4b40-af5c-6a9e3bdc7a57 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1cb05004-ee52-4b40-af5c-6a9e3bdc7a57 {
    width: 100%;
    height: auto;
  }



  #s-1cb05004-ee52-4b40-af5c-6a9e3bdc7a57 img.shogun-image {
    

    
    
    
  }


#s-1cb05004-ee52-4b40-af5c-6a9e3bdc7a57 .shogun-image-content {
  
    align-items: center;
  
}

#s-233315b4-5cd0-49f6-8225-c3a4853b60ae {
  margin-top: 15px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-align: left;
}
@media (min-width: 1200px){#s-233315b4-5cd0-49f6-8225-c3a4853b60ae {
  padding-left: 0px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-233315b4-5cd0-49f6-8225-c3a4853b60ae {
  padding-left: 0px;
padding-right: 40px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-233315b4-5cd0-49f6-8225-c3a4853b60ae {
  padding-left: 0px;
padding-right: 30px;
}
}
#s-233315b4-5cd0-49f6-8225-c3a4853b60ae .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-6397c27a-8a87-4fa0-a41b-43e3af2c8288 {
  padding-bottom: 40px;
padding-right: 40px;
}
@media (max-width: 767px){#s-6397c27a-8a87-4fa0-a41b-43e3af2c8288 {
  padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
}
}
#s-81fb6cd6-a66f-427c-a1b4-7af5544cb552 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-81fb6cd6-a66f-427c-a1b4-7af5544cb552:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-81fb6cd6-a66f-427c-a1b4-7af5544cb552:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-81fb6cd6-a66f-427c-a1b4-7af5544cb552-root {
    text-align: center;
  }


#s-81fb6cd6-a66f-427c-a1b4-7af5544cb552.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-81fb6cd6-a66f-427c-a1b4-7af5544cb552-root {
    text-align: center;
  }


#s-81fb6cd6-a66f-427c-a1b4-7af5544cb552.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-81fb6cd6-a66f-427c-a1b4-7af5544cb552-root {
    text-align: center;
  }


#s-81fb6cd6-a66f-427c-a1b4-7af5544cb552.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-81fb6cd6-a66f-427c-a1b4-7af5544cb552-root {
    text-align: center;
  }


#s-81fb6cd6-a66f-427c-a1b4-7af5544cb552.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-81fb6cd6-a66f-427c-a1b4-7af5544cb552-root {
    text-align: center;
  }


#s-81fb6cd6-a66f-427c-a1b4-7af5544cb552.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
  #s-81fb6cd6-a66f-427c-a1b4-7af5544cb552-root {
    text-align: center;
  }


#s-81fb6cd6-a66f-427c-a1b4-7af5544cb552.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-5f9675ee-ed13-4c37-8380-b274aa53f346 {
  margin-top: 30px;
margin-bottom: 30px;
background-color: rgba(201, 201, 201, 1);
}

@media (min-width: 0px) {
[id="s-5f9675ee-ed13-4c37-8380-b274aa53f346"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5f9675ee-ed13-4c37-8380-b274aa53f346"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5f9675ee-ed13-4c37-8380-b274aa53f346"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5f9675ee-ed13-4c37-8380-b274aa53f346"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-30539518-76d0-4785-9ade-e24f02156a13 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}
@media (max-width: 767px){#s-30539518-76d0-4785-9ade-e24f02156a13 {
  padding-bottom: 0px;
}
}




  #s-30539518-76d0-4785-9ade-e24f02156a13 img.shogun-image,
  #s-30539518-76d0-4785-9ade-e24f02156a13 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-30539518-76d0-4785-9ade-e24f02156a13 {
    width: 100%;
    height: auto;
  }



  #s-30539518-76d0-4785-9ade-e24f02156a13 img.shogun-image {
    

    
    
    
  }


#s-30539518-76d0-4785-9ade-e24f02156a13 .shogun-image-content {
  
    align-items: center;
  
}

#s-22eab81c-726a-4d4f-88a9-64974c79cf9a {
  margin-top: 15px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-align: left;
}
@media (min-width: 1200px){#s-22eab81c-726a-4d4f-88a9-64974c79cf9a {
  padding-left: 0px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-22eab81c-726a-4d4f-88a9-64974c79cf9a {
  padding-left: 0px;
padding-right: 40px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-22eab81c-726a-4d4f-88a9-64974c79cf9a {
  padding-left: 0px;
padding-right: 30px;
}
}
#s-22eab81c-726a-4d4f-88a9-64974c79cf9a .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-821d1b4c-d5f7-48a8-8d87-83d009832501 {
  padding-bottom: 40px;
padding-right: 40px;
}
@media (max-width: 767px){#s-821d1b4c-d5f7-48a8-8d87-83d009832501 {
  padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
}
}
#s-3ac93aaa-4340-4f63-94f1-3968e585bb23 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-3ac93aaa-4340-4f63-94f1-3968e585bb23:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3ac93aaa-4340-4f63-94f1-3968e585bb23:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3ac93aaa-4340-4f63-94f1-3968e585bb23-root {
    text-align: center;
  }


#s-3ac93aaa-4340-4f63-94f1-3968e585bb23.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3ac93aaa-4340-4f63-94f1-3968e585bb23-root {
    text-align: center;
  }


#s-3ac93aaa-4340-4f63-94f1-3968e585bb23.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3ac93aaa-4340-4f63-94f1-3968e585bb23-root {
    text-align: center;
  }


#s-3ac93aaa-4340-4f63-94f1-3968e585bb23.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3ac93aaa-4340-4f63-94f1-3968e585bb23-root {
    text-align: center;
  }


#s-3ac93aaa-4340-4f63-94f1-3968e585bb23.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3ac93aaa-4340-4f63-94f1-3968e585bb23-root {
    text-align: center;
  }


#s-3ac93aaa-4340-4f63-94f1-3968e585bb23.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
  #s-3ac93aaa-4340-4f63-94f1-3968e585bb23-root {
    text-align: center;
  }


#s-3ac93aaa-4340-4f63-94f1-3968e585bb23.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-d05402ca-85bc-4ecb-a27a-86742d31afce {
  min-height: 50px;
}








#s-d05402ca-85bc-4ecb-a27a-86742d31afce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d05402ca-85bc-4ecb-a27a-86742d31afce.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ce678d2f-a922-4b32-8805-851b7d620659 {
  margin-top: 24px;
margin-bottom: 24px;
text-align: center;
}







  #s-ce678d2f-a922-4b32-8805-851b7d620659 img.shogun-image {
    

    
    
    
  }


#s-ce678d2f-a922-4b32-8805-851b7d620659 .shogun-image-content {
  
    align-items: center;
  
}

#s-447d43f9-b11d-4eb2-9bec-6dbd2d9fb8f7 {
  margin-top: 0px;
margin-bottom: 24px;
padding-top: 10px;
padding-left: 33px;
padding-bottom: 10px;
padding-right: 33px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-447d43f9-b11d-4eb2-9bec-6dbd2d9fb8f7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-447d43f9-b11d-4eb2-9bec-6dbd2d9fb8f7:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-447d43f9-b11d-4eb2-9bec-6dbd2d9fb8f7-root {
    text-align: center;
  }


#s-447d43f9-b11d-4eb2-9bec-6dbd2d9fb8f7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-447d43f9-b11d-4eb2-9bec-6dbd2d9fb8f7-root {
    text-align: center;
  }


#s-447d43f9-b11d-4eb2-9bec-6dbd2d9fb8f7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-447d43f9-b11d-4eb2-9bec-6dbd2d9fb8f7-root {
    text-align: center;
  }


#s-447d43f9-b11d-4eb2-9bec-6dbd2d9fb8f7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-447d43f9-b11d-4eb2-9bec-6dbd2d9fb8f7-root {
    text-align: center;
  }


#s-447d43f9-b11d-4eb2-9bec-6dbd2d9fb8f7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-447d43f9-b11d-4eb2-9bec-6dbd2d9fb8f7-root {
    text-align: center;
  }


#s-447d43f9-b11d-4eb2-9bec-6dbd2d9fb8f7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-8bb71bca-5d92-4c24-9c07-4ec45939cd3e {
  min-height: 50px;
}








#s-8bb71bca-5d92-4c24-9c07-4ec45939cd3e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8bb71bca-5d92-4c24-9c07-4ec45939cd3e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e79e7efb-ee4d-4284-85ba-24c0060b42da {
  margin-top: 24px;
margin-bottom: 24px;
max-width: 2040px;
aspect-ratio: 2040/1196;
text-align: center;
}





  #s-e79e7efb-ee4d-4284-85ba-24c0060b42da img.shogun-image,
  #s-e79e7efb-ee4d-4284-85ba-24c0060b42da .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e79e7efb-ee4d-4284-85ba-24c0060b42da {
    width: 100%;
    height: auto;
  }



  #s-e79e7efb-ee4d-4284-85ba-24c0060b42da img.shogun-image {
    

    
    
    
  }


#s-e79e7efb-ee4d-4284-85ba-24c0060b42da .shogun-image-content {
  
    align-items: center;
  
}

#s-8145909c-0b66-4842-a102-4b070f20910f {
  margin-top: 0px;
margin-bottom: 24px;
padding-top: 10px;
padding-left: 33px;
padding-bottom: 10px;
padding-right: 33px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-8145909c-0b66-4842-a102-4b070f20910f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8145909c-0b66-4842-a102-4b070f20910f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8145909c-0b66-4842-a102-4b070f20910f-root {
    text-align: center;
  }


#s-8145909c-0b66-4842-a102-4b070f20910f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8145909c-0b66-4842-a102-4b070f20910f-root {
    text-align: center;
  }


#s-8145909c-0b66-4842-a102-4b070f20910f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8145909c-0b66-4842-a102-4b070f20910f-root {
    text-align: center;
  }


#s-8145909c-0b66-4842-a102-4b070f20910f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8145909c-0b66-4842-a102-4b070f20910f-root {
    text-align: center;
  }


#s-8145909c-0b66-4842-a102-4b070f20910f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8145909c-0b66-4842-a102-4b070f20910f-root {
    text-align: center;
  }


#s-8145909c-0b66-4842-a102-4b070f20910f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-e779f68f-f97b-468a-9014-70eb47522db4 {
  min-height: 50px;
}








#s-e779f68f-f97b-468a-9014-70eb47522db4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e779f68f-f97b-468a-9014-70eb47522db4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ec4a119f-1cc8-4306-903b-85b1a0fa32e0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ec4a119f-1cc8-4306-903b-85b1a0fa32e0 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-2aef7ec2-d9dd-4a2d-8387-eb3f2a010ac0 {
  margin-bottom: 40px;
}

@media (min-width: 0px) {
[id="s-212f985d-c732-45bb-af01-490708bd4063"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-212f985d-c732-45bb-af01-490708bd4063"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-212f985d-c732-45bb-af01-490708bd4063"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-212f985d-c732-45bb-af01-490708bd4063"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-2df7cbca-dc8e-4409-ac79-c146fdc03155 {
  max-width: 854px;
aspect-ratio: 854/500;
text-align: center;
}





  #s-2df7cbca-dc8e-4409-ac79-c146fdc03155 img.shogun-image,
  #s-2df7cbca-dc8e-4409-ac79-c146fdc03155 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2df7cbca-dc8e-4409-ac79-c146fdc03155 {
    width: 100%;
    height: auto;
  }



  #s-2df7cbca-dc8e-4409-ac79-c146fdc03155 img.shogun-image {
    

    
    
    
  }


#s-2df7cbca-dc8e-4409-ac79-c146fdc03155 .shogun-image-content {
  
    align-items: center;
  
}

#s-6bd5ad35-058a-4259-9344-5cad5f2c7f7d {
  margin-top: 15px;
margin-bottom: 15px;
}

#s-375d5f22-f71f-4d73-81f6-8cdf9d377847 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-4a528c11-dbe1-4561-b60f-f8502ae2f223 {
  max-width: 854px;
aspect-ratio: 854/500;
text-align: center;
}





  #s-4a528c11-dbe1-4561-b60f-f8502ae2f223 img.shogun-image,
  #s-4a528c11-dbe1-4561-b60f-f8502ae2f223 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4a528c11-dbe1-4561-b60f-f8502ae2f223 {
    width: 100%;
    height: auto;
  }



  #s-4a528c11-dbe1-4561-b60f-f8502ae2f223 img.shogun-image {
    

    
    
    
  }


#s-4a528c11-dbe1-4561-b60f-f8502ae2f223 .shogun-image-content {
  
    align-items: center;
  
}

#s-6bb02c7b-21c7-43b5-8530-dd1d10140451 {
  margin-top: 15px;
margin-bottom: 15px;
}

#s-151f5148-0817-461d-901b-445fd19428c7 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-731b3888-bbe4-445e-9807-4fadb457f234 {
  max-width: 854px;
aspect-ratio: 854/500;
text-align: center;
}





  #s-731b3888-bbe4-445e-9807-4fadb457f234 img.shogun-image,
  #s-731b3888-bbe4-445e-9807-4fadb457f234 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-731b3888-bbe4-445e-9807-4fadb457f234 {
    width: 100%;
    height: auto;
  }



  #s-731b3888-bbe4-445e-9807-4fadb457f234 img.shogun-image {
    

    
    
    
  }


#s-731b3888-bbe4-445e-9807-4fadb457f234 .shogun-image-content {
  
    align-items: center;
  
}

#s-bcd3d2f0-6283-4588-9a1d-88be176d2e76 {
  margin-top: 15px;
margin-bottom: 15px;
}

#s-7f7badbc-aefd-4a02-b629-6f4921d9e316 {
  margin-top: 10px;
margin-bottom: 10px;
}

/*
  $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}