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

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

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

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

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

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

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

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

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

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

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

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

#s-2be0c22b-f36d-473f-a041-b7a1631d13a7 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-2be0c22b-f36d-473f-a041-b7a1631d13a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2be0c22b-f36d-473f-a041-b7a1631d13a7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-68e90489-8b26-4784-a32c-88a57a31f620 {
  padding-left: 0%;
padding-right: 0%;
}
@media (min-width: 1200px){#s-68e90489-8b26-4784-a32c-88a57a31f620 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-68e90489-8b26-4784-a32c-88a57a31f620 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-68e90489-8b26-4784-a32c-88a57a31f620 {
  
}
}@media (max-width: 767px){#s-68e90489-8b26-4784-a32c-88a57a31f620 {
  
}
}







#s-68e90489-8b26-4784-a32c-88a57a31f620 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-68e90489-8b26-4784-a32c-88a57a31f620.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-44182f12-b877-4862-8c69-b97a6b2f46d6 {
  max-width: 9686px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-44182f12-b877-4862-8c69-b97a6b2f46d6 {
  display: none;
}
#s-44182f12-b877-4862-8c69-b97a6b2f46d6, #wrap-s-44182f12-b877-4862-8c69-b97a6b2f46d6 { display: none !important; }}@media (max-width: 767px){#s-44182f12-b877-4862-8c69-b97a6b2f46d6 {
  display: none;
}
#s-44182f12-b877-4862-8c69-b97a6b2f46d6, #wrap-s-44182f12-b877-4862-8c69-b97a6b2f46d6 { display: none !important; }}







#s-44182f12-b877-4862-8c69-b97a6b2f46d6 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

/* 
  Shopify base css adds display none to empty divs
  This causes items in the second column position to shift when
  the first column is empty. In order to overwrite that style,
  we have to manually set empty divs in the column to display block 
  so the whole element holds its positioning on published pages.
*/

.shg-row > div:empty {
  display: block;
}

#s-186f2541-81ed-40a9-9a8a-fdcf90f76c0a {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-186f2541-81ed-40a9-9a8a-fdcf90f76c0a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-186f2541-81ed-40a9-9a8a-fdcf90f76c0a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-186f2541-81ed-40a9-9a8a-fdcf90f76c0a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-186f2541-81ed-40a9-9a8a-fdcf90f76c0a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e5cf6e95-7ddc-4e5d-8876-a9b825ee9dbc {
  min-height: 50px;
}








#s-e5cf6e95-7ddc-4e5d-8876-a9b825ee9dbc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e5cf6e95-7ddc-4e5d-8876-a9b825ee9dbc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-ba7bff48-9846-4d66-8f25-83776c0e35b3 {
  padding-top: 0px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-ba7bff48-9846-4d66-8f25-83776c0e35b3 {
  padding-bottom: 10px;
text-align: center;
}
}
#s-ba7bff48-9846-4d66-8f25-83776c0e35b3 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (max-width: 767px){#s-ba7bff48-9846-4d66-8f25-83776c0e35b3 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.2em;
  
  text-align: center;
}


}
#s-ba5df388-ba7b-4cb6-85ef-4b22fc354e66 {
  padding-top: 0px;
padding-bottom: 20px;
text-align: left;
}
@media (max-width: 767px){#s-ba5df388-ba7b-4cb6-85ef-4b22fc354e66 {
  text-align: center;
}
}
#s-ba5df388-ba7b-4cb6-85ef-4b22fc354e66 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (max-width: 767px){#s-ba5df388-ba7b-4cb6-85ef-4b22fc354e66 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: center;
}


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

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

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

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

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

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

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

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

#s-6b857cbe-0e4e-441f-b421-5aa611ac8902 {
  margin-top: 20px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(26, 87, 69, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-6b857cbe-0e4e-441f-b421-5aa611ac8902:hover {background-color: rgba(26, 87, 69, 0.87) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-6b857cbe-0e4e-441f-b421-5aa611ac8902:active {background-color: rgba(26, 87, 69, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-6b857cbe-0e4e-441f-b421-5aa611ac8902 {
  margin-top: 10px;
display: none;
}
#s-6b857cbe-0e4e-441f-b421-5aa611ac8902, #wrap-s-6b857cbe-0e4e-441f-b421-5aa611ac8902 { display: none !important; }}

  #s-6b857cbe-0e4e-441f-b421-5aa611ac8902-root {
    text-align: left;
  }


#s-6b857cbe-0e4e-441f-b421-5aa611ac8902.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6b857cbe-0e4e-441f-b421-5aa611ac8902-root {
    text-align: left;
  }


#s-6b857cbe-0e4e-441f-b421-5aa611ac8902.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6b857cbe-0e4e-441f-b421-5aa611ac8902-root {
    text-align: left;
  }


#s-6b857cbe-0e4e-441f-b421-5aa611ac8902.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6b857cbe-0e4e-441f-b421-5aa611ac8902-root {
    text-align: left;
  }


#s-6b857cbe-0e4e-441f-b421-5aa611ac8902.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6b857cbe-0e4e-441f-b421-5aa611ac8902-root {
    text-align: left;
  }


#s-6b857cbe-0e4e-441f-b421-5aa611ac8902.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-62641bb9-dfdf-455f-82c9-4e7d5dd99e72 {
  min-height: 50px;
}








#s-62641bb9-dfdf-455f-82c9-4e7d5dd99e72 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-62641bb9-dfdf-455f-82c9-4e7d5dd99e72.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b6107ead-96b3-4e99-b854-5eafbfc8bd3e {
  background-repeat: no-repeat;
background-size: cover;
padding-top: 32px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
min-height: 50px;
background-position: center center;
}
@media (min-width: 1200px){#s-b6107ead-96b3-4e99-b854-5eafbfc8bd3e {
  display: none;
}
#s-b6107ead-96b3-4e99-b854-5eafbfc8bd3e, #wrap-s-b6107ead-96b3-4e99-b854-5eafbfc8bd3e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b6107ead-96b3-4e99-b854-5eafbfc8bd3e {
  display: none;
}
#s-b6107ead-96b3-4e99-b854-5eafbfc8bd3e, #wrap-s-b6107ead-96b3-4e99-b854-5eafbfc8bd3e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b6107ead-96b3-4e99-b854-5eafbfc8bd3e {
  display: none;
}
#s-b6107ead-96b3-4e99-b854-5eafbfc8bd3e, #wrap-s-b6107ead-96b3-4e99-b854-5eafbfc8bd3e { display: none !important; }}







#s-b6107ead-96b3-4e99-b854-5eafbfc8bd3e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b6107ead-96b3-4e99-b854-5eafbfc8bd3e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-84f90a34-4bc9-4e9f-9286-044757182df7 {
  margin-top: 0px;
padding-top: 0px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-84f90a34-4bc9-4e9f-9286-044757182df7 {
  padding-bottom: 10px;
text-align: center;
}
}
#s-84f90a34-4bc9-4e9f-9286-044757182df7 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (max-width: 767px){#s-84f90a34-4bc9-4e9f-9286-044757182df7 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.2em;
  
  text-align: center;
}


}
#s-d04fe2ba-e155-41d1-90b4-d3f27a9284b8 {
  padding-top: 0px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-d04fe2ba-e155-41d1-90b4-d3f27a9284b8 {
  text-align: center;
}
}
#s-d04fe2ba-e155-41d1-90b4-d3f27a9284b8 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (max-width: 767px){#s-d04fe2ba-e155-41d1-90b4-d3f27a9284b8 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: center;
}


}
#s-bad1661a-3506-4f50-a941-3b9a94f2b4b3 {
  margin-top: 10px;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 10px;
padding-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(26, 87, 69, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-bad1661a-3506-4f50-a941-3b9a94f2b4b3:hover {background-color: rgba(26, 87, 69, 0.89) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-bad1661a-3506-4f50-a941-3b9a94f2b4b3:active {background-color: rgba(26, 87, 69, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-bad1661a-3506-4f50-a941-3b9a94f2b4b3 {
  display: none;
}
#s-bad1661a-3506-4f50-a941-3b9a94f2b4b3, #wrap-s-bad1661a-3506-4f50-a941-3b9a94f2b4b3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bad1661a-3506-4f50-a941-3b9a94f2b4b3 {
  display: none;
}
#s-bad1661a-3506-4f50-a941-3b9a94f2b4b3, #wrap-s-bad1661a-3506-4f50-a941-3b9a94f2b4b3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bad1661a-3506-4f50-a941-3b9a94f2b4b3 {
  display: none;
}
#s-bad1661a-3506-4f50-a941-3b9a94f2b4b3, #wrap-s-bad1661a-3506-4f50-a941-3b9a94f2b4b3 { display: none !important; }}

  #s-bad1661a-3506-4f50-a941-3b9a94f2b4b3-root {
    text-align: center;
  }


#s-bad1661a-3506-4f50-a941-3b9a94f2b4b3.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-bad1661a-3506-4f50-a941-3b9a94f2b4b3-root {
    text-align: center;
  }


#s-bad1661a-3506-4f50-a941-3b9a94f2b4b3.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-bad1661a-3506-4f50-a941-3b9a94f2b4b3-root {
    text-align: center;
  }


#s-bad1661a-3506-4f50-a941-3b9a94f2b4b3.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-bad1661a-3506-4f50-a941-3b9a94f2b4b3-root {
    text-align: center;
  }


#s-bad1661a-3506-4f50-a941-3b9a94f2b4b3.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-bad1661a-3506-4f50-a941-3b9a94f2b4b3-root {
    text-align: center;
  }


#s-bad1661a-3506-4f50-a941-3b9a94f2b4b3.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
.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;
  height: inherit;
  position: relative;
}

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

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

.shogun-image-content {
  display: flex;
  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;
}

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-84b94540-e984-4c5b-84f0-0f5dc48115cc {
  max-width: 2000px;
text-align: center;
}



.shg-image-margin-container-s-84b94540-e984-4c5b-84f0-0f5dc48115cc {
  
  
  
  
}

#s-84b94540-e984-4c5b-84f0-0f5dc48115cc {
  margin: 0 !important;
  overflow: hidden;
}






.s-84b94540-e984-4c5b-84f0-0f5dc48115cc .shogun-image-content {
  
    align-items: center;
  
}

.s-84b94540-e984-4c5b-84f0-0f5dc48115cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84b94540-e984-4c5b-84f0-0f5dc48115cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84b94540-e984-4c5b-84f0-0f5dc48115cc.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-84b94540-e984-4c5b-84f0-0f5dc48115cc {
  
  
  
  
}

#s-84b94540-e984-4c5b-84f0-0f5dc48115cc {
  margin: 0 !important;
  overflow: hidden;
}






.s-84b94540-e984-4c5b-84f0-0f5dc48115cc .shogun-image-content {
  
    align-items: center;
  
}

.s-84b94540-e984-4c5b-84f0-0f5dc48115cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84b94540-e984-4c5b-84f0-0f5dc48115cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84b94540-e984-4c5b-84f0-0f5dc48115cc.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-84b94540-e984-4c5b-84f0-0f5dc48115cc {
  
  
  
  
}

#s-84b94540-e984-4c5b-84f0-0f5dc48115cc {
  margin: 0 !important;
  overflow: hidden;
}






.s-84b94540-e984-4c5b-84f0-0f5dc48115cc .shogun-image-content {
  
    align-items: center;
  
}

.s-84b94540-e984-4c5b-84f0-0f5dc48115cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84b94540-e984-4c5b-84f0-0f5dc48115cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84b94540-e984-4c5b-84f0-0f5dc48115cc.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-84b94540-e984-4c5b-84f0-0f5dc48115cc {
  
  
  
  
}

#s-84b94540-e984-4c5b-84f0-0f5dc48115cc {
  margin: 0 !important;
  overflow: hidden;
}






.s-84b94540-e984-4c5b-84f0-0f5dc48115cc .shogun-image-content {
  
    align-items: center;
  
}

.s-84b94540-e984-4c5b-84f0-0f5dc48115cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84b94540-e984-4c5b-84f0-0f5dc48115cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84b94540-e984-4c5b-84f0-0f5dc48115cc.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-84b94540-e984-4c5b-84f0-0f5dc48115cc {
  
  
  
  
}

#s-84b94540-e984-4c5b-84f0-0f5dc48115cc {
  margin: 0 !important;
  overflow: hidden;
}






.s-84b94540-e984-4c5b-84f0-0f5dc48115cc .shogun-image-content {
  
    align-items: center;
  
}

.s-84b94540-e984-4c5b-84f0-0f5dc48115cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-84b94540-e984-4c5b-84f0-0f5dc48115cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84b94540-e984-4c5b-84f0-0f5dc48115cc.shogun-image {
  box-sizing: border-box;
}




}
#s-25e3e8c6-fc2f-431c-948f-864334823e09 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-25e3e8c6-fc2f-431c-948f-864334823e09 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-25e3e8c6-fc2f-431c-948f-864334823e09.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5919e4e8-99eb-4930-a4ed-d23c2f7f0a9b {
  padding-top: 64px;
padding-bottom: 5px;
min-height: 50px;
background-color: rgba(237, 243, 238, 1);
}
@media (min-width: 1200px){#s-5919e4e8-99eb-4930-a4ed-d23c2f7f0a9b {
  padding-top: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5919e4e8-99eb-4930-a4ed-d23c2f7f0a9b {
  padding-top: 40px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5919e4e8-99eb-4930-a4ed-d23c2f7f0a9b {
  padding-top: 40px;
display: none;
}
#s-5919e4e8-99eb-4930-a4ed-d23c2f7f0a9b, #wrap-s-5919e4e8-99eb-4930-a4ed-d23c2f7f0a9b { display: none !important; }}@media (max-width: 767px){#s-5919e4e8-99eb-4930-a4ed-d23c2f7f0a9b {
  padding-top: 32px;
padding-bottom: 0px;
display: none;
}
#s-5919e4e8-99eb-4930-a4ed-d23c2f7f0a9b, #wrap-s-5919e4e8-99eb-4930-a4ed-d23c2f7f0a9b { display: none !important; }}







#s-5919e4e8-99eb-4930-a4ed-d23c2f7f0a9b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5919e4e8-99eb-4930-a4ed-d23c2f7f0a9b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
  margin-top: 0px;
margin-bottom: 0px;
max-width: 700px;
aspect-ratio: 3185/136;
text-align: center;
}



.shg-image-margin-container-s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

#s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shg-image-content-wrapper {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }

    #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shogun-image-link {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 700px;
  }



  img.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image {
    
    
    
    max-height: 700px;
  }


.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
      --shg-aspect-ratio: calc(3185/136); 
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container {
      position: relative;
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 700px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
  
  
  
  
}

#s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shg-image-content-wrapper {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }

    #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shogun-image-link {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 700px;
  }



  img.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image {
    
    
    
    max-height: 700px;
  }


.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
      --shg-aspect-ratio: calc(3185/136); 
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container {
      position: relative;
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 700px;
    }
  }

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

.shg-image-margin-container-s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
  
  
  
  
}

#s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shg-image-content-wrapper {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }

    #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shogun-image-link {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 700px;
  }



  img.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image {
    
    
    
    max-height: 700px;
  }


.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
      --shg-aspect-ratio: calc(3185/136); 
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container {
      position: relative;
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 700px;
    }
  }

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

.shg-image-margin-container-s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
  
  
  
  
}

#s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shg-image-content-wrapper {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }

    #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shogun-image-link {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 700px;
  }



  img.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image {
    
    
    
    max-height: 700px;
  }


.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
      --shg-aspect-ratio: calc(3185/136); 
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container {
      position: relative;
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 700px;
    }
  }

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

.shg-image-margin-container-s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
  
  
  
  
}

#s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shg-image-content-wrapper {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }

    #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shogun-image-link {
      aspect-ratio: 3185/136;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 700px;
  }



  img.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image {
    
    
    
    max-height: 700px;
  }


.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 {
      --shg-aspect-ratio: calc(3185/136); 
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container {
      position: relative;
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e1b41db-40ff-4cbe-ba5a-afaa265e57c3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 700px;
    }
  }

}
#s-47927378-afe3-49c8-8640-6abf3965aa8c {
  margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-bottom: 20px;
max-width: 800px;
text-align: center;
}

#s-47927378-afe3-49c8-8640-6abf3965aa8c .shogun-heading-component h1 {
  color: rgba(70, 69, 65, 1);
  font-weight:  500 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  
  
}



.shogun-table-wrapper {
  overflow: auto;
}

table.shogun-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

thead.shogun-table-column-container {
  font-weight: bold;
}

td.shogun-table-column {
  padding: 10px;
}

td.shogun-table-row {
  padding: 10px;
  min-height: 45px;
}

td.shogun-table-column:only-child, td.shogun-table-row:only-child {
  width: 100%;
}

@media (min-width: 768px) and (max-width: 991px){#s-c12f6eed-6bdb-4159-844d-e60d9b1e975a {
  display: none;
}
#s-c12f6eed-6bdb-4159-844d-e60d9b1e975a, #wrap-s-c12f6eed-6bdb-4159-844d-e60d9b1e975a { display: none !important; }}@media (max-width: 767px){#s-c12f6eed-6bdb-4159-844d-e60d9b1e975a {
  display: none;
}
#s-c12f6eed-6bdb-4159-844d-e60d9b1e975a, #wrap-s-c12f6eed-6bdb-4159-844d-e60d9b1e975a { display: none !important; }}
#s-c12f6eed-6bdb-4159-844d-e60d9b1e975a .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-c12f6eed-6bdb-4159-844d-e60d9b1e975a table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-c12f6eed-6bdb-4159-844d-e60d9b1e975a td.shogun-table-column {
  background-color: #fff;
  padding: 0px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-c12f6eed-6bdb-4159-844d-e60d9b1e975a td.shogun-table-row {
  background-color: rgba(31, 102, 81, 0);
  padding: 5px;
}

#s-c12f6eed-6bdb-4159-844d-e60d9b1e975a td.shogun-table-column, #s-c12f6eed-6bdb-4159-844d-e60d9b1e975a td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-2e89ec5c-0b24-4787-b1d5-9e1b38987f17 {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-2e89ec5c-0b24-4787-b1d5-9e1b38987f17 img.shogun-image {
    

    
    
    
  }


#s-2e89ec5c-0b24-4787-b1d5-9e1b38987f17 .shogun-image-content {
  
    align-items: center;
  
}

#s-a6ffdeef-cd97-483e-9388-40e5496c5785 {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-a6ffdeef-cd97-483e-9388-40e5496c5785 img.shogun-image {
    

    
    
    
  }


#s-a6ffdeef-cd97-483e-9388-40e5496c5785 .shogun-image-content {
  
    align-items: center;
  
}

#s-09aa38e0-c564-458f-8c15-ee8950a9e068 {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-09aa38e0-c564-458f-8c15-ee8950a9e068 img.shogun-image {
    

    
    
    
  }


#s-09aa38e0-c564-458f-8c15-ee8950a9e068 .shogun-image-content {
  
    align-items: center;
  
}

#s-6210adc5-e046-4106-8b66-33bc29e381fa {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-6210adc5-e046-4106-8b66-33bc29e381fa img.shogun-image {
    

    
    
    
  }


#s-6210adc5-e046-4106-8b66-33bc29e381fa .shogun-image-content {
  
    align-items: center;
  
}

#s-92c904da-5ef2-4756-8307-1a4ea1ea1b4f {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-92c904da-5ef2-4756-8307-1a4ea1ea1b4f img.shogun-image {
    

    
    
    
  }


#s-92c904da-5ef2-4756-8307-1a4ea1ea1b4f .shogun-image-content {
  
    align-items: center;
  
}

#s-6d6d9629-5dfd-4434-b089-8cee6c9b036e {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-6d6d9629-5dfd-4434-b089-8cee6c9b036e img.shogun-image {
    

    
    
    
  }


#s-6d6d9629-5dfd-4434-b089-8cee6c9b036e .shogun-image-content {
  
    align-items: center;
  
}

#s-1917d150-fa2c-4f16-97f5-4060112fb40b {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-1917d150-fa2c-4f16-97f5-4060112fb40b img.shogun-image {
    

    
    
    
  }


#s-1917d150-fa2c-4f16-97f5-4060112fb40b .shogun-image-content {
  
    align-items: center;
  
}

#s-b9ee208e-8390-40e0-b215-271d4329d4fc {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-b9ee208e-8390-40e0-b215-271d4329d4fc img.shogun-image {
    

    
    
    
  }


#s-b9ee208e-8390-40e0-b215-271d4329d4fc .shogun-image-content {
  
    align-items: center;
  
}

#s-db15797e-cd2b-4ec5-8923-251c5e153295 {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-db15797e-cd2b-4ec5-8923-251c5e153295 img.shogun-image {
    

    
    
    
  }


#s-db15797e-cd2b-4ec5-8923-251c5e153295 .shogun-image-content {
  
    align-items: center;
  
}

#s-dbfb0aa0-c4f5-4645-b51b-9eb049e2b87b {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-dbfb0aa0-c4f5-4645-b51b-9eb049e2b87b img.shogun-image {
    

    
    
    
  }


#s-dbfb0aa0-c4f5-4645-b51b-9eb049e2b87b .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-760481ae-e8f9-4115-a5b6-cb56b538501c {
  display: none;
}
#s-760481ae-e8f9-4115-a5b6-cb56b538501c, #wrap-s-760481ae-e8f9-4115-a5b6-cb56b538501c { display: none !important; }}@media (max-width: 767px){#s-760481ae-e8f9-4115-a5b6-cb56b538501c {
  display: none;
}
#s-760481ae-e8f9-4115-a5b6-cb56b538501c, #wrap-s-760481ae-e8f9-4115-a5b6-cb56b538501c { display: none !important; }}
#s-760481ae-e8f9-4115-a5b6-cb56b538501c .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-760481ae-e8f9-4115-a5b6-cb56b538501c table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-760481ae-e8f9-4115-a5b6-cb56b538501c td.shogun-table-column {
  background-color: #fff;
  padding: 0px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-760481ae-e8f9-4115-a5b6-cb56b538501c td.shogun-table-row {
  background-color: rgba(31, 102, 81, 0);
  padding: 5px;
}

#s-760481ae-e8f9-4115-a5b6-cb56b538501c td.shogun-table-column, #s-760481ae-e8f9-4115-a5b6-cb56b538501c td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-cf7a3d43-a637-4598-8815-ab8c80e13b59 {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-cf7a3d43-a637-4598-8815-ab8c80e13b59 img.shogun-image {
    

    
    
    
  }


#s-cf7a3d43-a637-4598-8815-ab8c80e13b59 .shogun-image-content {
  
    align-items: center;
  
}

#s-270fd588-58c3-4567-a342-da4d98c89351 {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-270fd588-58c3-4567-a342-da4d98c89351 img.shogun-image {
    

    
    
    
  }


#s-270fd588-58c3-4567-a342-da4d98c89351 .shogun-image-content {
  
    align-items: center;
  
}

#s-6581c0ac-0546-4421-b462-3b28cdd0a28f {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-6581c0ac-0546-4421-b462-3b28cdd0a28f img.shogun-image {
    

    
    
    
  }


#s-6581c0ac-0546-4421-b462-3b28cdd0a28f .shogun-image-content {
  
    align-items: center;
  
}

#s-10765fa1-9fa2-42f0-ab19-05a7da74bb8c {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-10765fa1-9fa2-42f0-ab19-05a7da74bb8c img.shogun-image {
    

    
    
    
  }


#s-10765fa1-9fa2-42f0-ab19-05a7da74bb8c .shogun-image-content {
  
    align-items: center;
  
}

#s-86ec04fb-488e-41ee-92b0-c544205df53d {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-86ec04fb-488e-41ee-92b0-c544205df53d img.shogun-image {
    

    
    
    
  }


#s-86ec04fb-488e-41ee-92b0-c544205df53d .shogun-image-content {
  
    align-items: center;
  
}

#s-5fb90c85-6013-4c92-af8f-53ffc7c2307f {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-5fb90c85-6013-4c92-af8f-53ffc7c2307f img.shogun-image {
    

    
    
    
  }


#s-5fb90c85-6013-4c92-af8f-53ffc7c2307f .shogun-image-content {
  
    align-items: center;
  
}

#s-efdf3111-536f-474d-9201-849dd67d3261 {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-efdf3111-536f-474d-9201-849dd67d3261 img.shogun-image {
    

    
    
    
  }


#s-efdf3111-536f-474d-9201-849dd67d3261 .shogun-image-content {
  
    align-items: center;
  
}

#s-ea119224-d908-4dec-99e1-5183a4798967 {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-ea119224-d908-4dec-99e1-5183a4798967 img.shogun-image {
    

    
    
    
  }


#s-ea119224-d908-4dec-99e1-5183a4798967 .shogun-image-content {
  
    align-items: center;
  
}

#s-91ee62f8-6d7b-4add-aac8-0873d7b7a151 {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-91ee62f8-6d7b-4add-aac8-0873d7b7a151 img.shogun-image {
    

    
    
    
  }


#s-91ee62f8-6d7b-4add-aac8-0873d7b7a151 .shogun-image-content {
  
    align-items: center;
  
}

#s-8be668a2-48e5-44d0-8903-a47f65c011c7 {
  max-width: 300px;
aspect-ratio: 1/1;
text-align: center;
}







  #s-8be668a2-48e5-44d0-8903-a47f65c011c7 img.shogun-image {
    

    
    
    
  }


#s-8be668a2-48e5-44d0-8903-a47f65c011c7 .shogun-image-content {
  
    align-items: center;
  
}

#s-e5f7f1b6-d540-4251-af37-a26102d13410 {
  padding-top: 5px;
padding-bottom: 5px;
min-height: 50px;
background-color: rgba(237, 243, 238, 1);
}
@media (min-width: 1200px){#s-e5f7f1b6-d540-4251-af37-a26102d13410 {
  display: none;
}
#s-e5f7f1b6-d540-4251-af37-a26102d13410, #wrap-s-e5f7f1b6-d540-4251-af37-a26102d13410 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e5f7f1b6-d540-4251-af37-a26102d13410 {
  display: none;
}
#s-e5f7f1b6-d540-4251-af37-a26102d13410, #wrap-s-e5f7f1b6-d540-4251-af37-a26102d13410 { display: none !important; }}@media (max-width: 767px){#s-e5f7f1b6-d540-4251-af37-a26102d13410 {
  padding-bottom: 0px;
}
}







#s-e5f7f1b6-d540-4251-af37-a26102d13410 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e5f7f1b6-d540-4251-af37-a26102d13410.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-784fc1ff-46e3-4909-8f26-ce5d5baa022c {
  display: none;
}
#s-784fc1ff-46e3-4909-8f26-ce5d5baa022c, #wrap-s-784fc1ff-46e3-4909-8f26-ce5d5baa022c { display: none !important; }}@media (max-width: 767px){#s-784fc1ff-46e3-4909-8f26-ce5d5baa022c {
  display: none;
}
#s-784fc1ff-46e3-4909-8f26-ce5d5baa022c, #wrap-s-784fc1ff-46e3-4909-8f26-ce5d5baa022c { display: none !important; }}
#s-784fc1ff-46e3-4909-8f26-ce5d5baa022c .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-784fc1ff-46e3-4909-8f26-ce5d5baa022c table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-784fc1ff-46e3-4909-8f26-ce5d5baa022c td.shogun-table-column {
  background-color: #fff;
  padding: 0px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-784fc1ff-46e3-4909-8f26-ce5d5baa022c td.shogun-table-row {
  background-color: rgba(31, 102, 81, 1);
  padding: 5px;
}

#s-784fc1ff-46e3-4909-8f26-ce5d5baa022c td.shogun-table-column, #s-784fc1ff-46e3-4909-8f26-ce5d5baa022c td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-d16010dc-ef74-44f2-a27c-deadb4380244 {
  max-width: 300px;
text-align: center;
}







  #s-d16010dc-ef74-44f2-a27c-deadb4380244 img.shogun-image {
    

    
    
    
  }


#s-d16010dc-ef74-44f2-a27c-deadb4380244 .shogun-image-content {
  
    align-items: center;
  
}

#s-9617d97f-c273-4fb3-9443-ea645bd5905c {
  max-width: 300px;
text-align: center;
}







  #s-9617d97f-c273-4fb3-9443-ea645bd5905c img.shogun-image {
    

    
    
    
  }


#s-9617d97f-c273-4fb3-9443-ea645bd5905c .shogun-image-content {
  
    align-items: center;
  
}

#s-dcbdd683-6156-4312-95bd-71ed506c8f1d {
  max-width: 300px;
text-align: center;
}







  #s-dcbdd683-6156-4312-95bd-71ed506c8f1d img.shogun-image {
    

    
    
    
  }


#s-dcbdd683-6156-4312-95bd-71ed506c8f1d .shogun-image-content {
  
    align-items: center;
  
}

#s-87cb9721-60f7-4af6-92e1-7c3c46df967f {
  max-width: 300px;
text-align: center;
}







  #s-87cb9721-60f7-4af6-92e1-7c3c46df967f img.shogun-image {
    

    
    
    
  }


#s-87cb9721-60f7-4af6-92e1-7c3c46df967f .shogun-image-content {
  
    align-items: center;
  
}

#s-cf673950-dc6f-452d-92bc-1a3b2209c35d {
  max-width: 300px;
text-align: center;
}







  #s-cf673950-dc6f-452d-92bc-1a3b2209c35d img.shogun-image {
    

    
    
    
  }


#s-cf673950-dc6f-452d-92bc-1a3b2209c35d .shogun-image-content {
  
    align-items: center;
  
}

#s-12ede7b4-37d6-44df-aa71-40c1bdbeeb96 {
  max-width: 300px;
text-align: center;
}







  #s-12ede7b4-37d6-44df-aa71-40c1bdbeeb96 img.shogun-image {
    

    
    
    
  }


#s-12ede7b4-37d6-44df-aa71-40c1bdbeeb96 .shogun-image-content {
  
    align-items: center;
  
}

#s-331f2943-97c5-4318-a164-30abc9d5af9e {
  max-width: 300px;
text-align: center;
}







  #s-331f2943-97c5-4318-a164-30abc9d5af9e img.shogun-image {
    

    
    
    
  }


#s-331f2943-97c5-4318-a164-30abc9d5af9e .shogun-image-content {
  
    align-items: center;
  
}

#s-fa1a3017-8cdf-45bb-b5eb-5f63c6c2dd76 {
  max-width: 300px;
text-align: center;
}







  #s-fa1a3017-8cdf-45bb-b5eb-5f63c6c2dd76 img.shogun-image {
    

    
    
    
  }


#s-fa1a3017-8cdf-45bb-b5eb-5f63c6c2dd76 .shogun-image-content {
  
    align-items: center;
  
}

#s-c1249e8d-310d-4089-b9f3-680c79a8a3be {
  max-width: 300px;
text-align: center;
}







  #s-c1249e8d-310d-4089-b9f3-680c79a8a3be img.shogun-image {
    

    
    
    
  }


#s-c1249e8d-310d-4089-b9f3-680c79a8a3be .shogun-image-content {
  
    align-items: center;
  
}

#s-4f79cf17-070a-48f4-a505-d01cef8b0fd5 {
  max-width: 300px;
text-align: center;
}







  #s-4f79cf17-070a-48f4-a505-d01cef8b0fd5 img.shogun-image {
    

    
    
    
  }


#s-4f79cf17-070a-48f4-a505-d01cef8b0fd5 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-980352c9-3b01-46d2-8b20-6770352e281a {
  display: none;
}
#s-980352c9-3b01-46d2-8b20-6770352e281a, #wrap-s-980352c9-3b01-46d2-8b20-6770352e281a { display: none !important; }}@media (max-width: 767px){#s-980352c9-3b01-46d2-8b20-6770352e281a {
  display: none;
}
#s-980352c9-3b01-46d2-8b20-6770352e281a, #wrap-s-980352c9-3b01-46d2-8b20-6770352e281a { display: none !important; }}
#s-980352c9-3b01-46d2-8b20-6770352e281a .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-980352c9-3b01-46d2-8b20-6770352e281a table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-980352c9-3b01-46d2-8b20-6770352e281a td.shogun-table-column {
  background-color: #fff;
  padding: 0px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-980352c9-3b01-46d2-8b20-6770352e281a td.shogun-table-row {
  background-color: rgba(31, 102, 81, 1);
  padding: 5px;
}

#s-980352c9-3b01-46d2-8b20-6770352e281a td.shogun-table-column, #s-980352c9-3b01-46d2-8b20-6770352e281a td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-913fc923-6e03-4fcd-b1b9-05b04758e22b {
  max-width: 300px;
text-align: center;
}







  #s-913fc923-6e03-4fcd-b1b9-05b04758e22b img.shogun-image {
    

    
    
    
  }


#s-913fc923-6e03-4fcd-b1b9-05b04758e22b .shogun-image-content {
  
    align-items: center;
  
}

#s-851d5c0e-e6ea-4dab-8ed5-9e83985e9d7c {
  max-width: 300px;
text-align: center;
}







  #s-851d5c0e-e6ea-4dab-8ed5-9e83985e9d7c img.shogun-image {
    

    
    
    
  }


#s-851d5c0e-e6ea-4dab-8ed5-9e83985e9d7c .shogun-image-content {
  
    align-items: center;
  
}

#s-d053d809-0e12-40f7-a2b5-9597a322c72f {
  max-width: 300px;
text-align: center;
}







  #s-d053d809-0e12-40f7-a2b5-9597a322c72f img.shogun-image {
    

    
    
    
  }


#s-d053d809-0e12-40f7-a2b5-9597a322c72f .shogun-image-content {
  
    align-items: center;
  
}

#s-e7af1a15-b47d-4578-a3ec-77c90ab9d7bb {
  max-width: 300px;
text-align: center;
}







  #s-e7af1a15-b47d-4578-a3ec-77c90ab9d7bb img.shogun-image {
    

    
    
    
  }


#s-e7af1a15-b47d-4578-a3ec-77c90ab9d7bb .shogun-image-content {
  
    align-items: center;
  
}

#s-6c5f4722-9359-4a90-9487-027e4e6591ae {
  max-width: 300px;
text-align: center;
}







  #s-6c5f4722-9359-4a90-9487-027e4e6591ae img.shogun-image {
    

    
    
    
  }


#s-6c5f4722-9359-4a90-9487-027e4e6591ae .shogun-image-content {
  
    align-items: center;
  
}

#s-04af714c-a87a-40b7-b95d-502098d86ca8 {
  max-width: 300px;
text-align: center;
}







  #s-04af714c-a87a-40b7-b95d-502098d86ca8 img.shogun-image {
    

    
    
    
  }


#s-04af714c-a87a-40b7-b95d-502098d86ca8 .shogun-image-content {
  
    align-items: center;
  
}

#s-baa4bb04-65a7-40fb-ab16-5ee1d14b0b9c {
  max-width: 300px;
text-align: center;
}







  #s-baa4bb04-65a7-40fb-ab16-5ee1d14b0b9c img.shogun-image {
    

    
    
    
  }


#s-baa4bb04-65a7-40fb-ab16-5ee1d14b0b9c .shogun-image-content {
  
    align-items: center;
  
}

#s-d6b58364-1391-41bb-a247-16d136761b40 {
  max-width: 300px;
text-align: center;
}







  #s-d6b58364-1391-41bb-a247-16d136761b40 img.shogun-image {
    

    
    
    
  }


#s-d6b58364-1391-41bb-a247-16d136761b40 .shogun-image-content {
  
    align-items: center;
  
}

#s-33dcf5a6-b67f-4187-a837-f8f427598f9a {
  max-width: 300px;
text-align: center;
}







  #s-33dcf5a6-b67f-4187-a837-f8f427598f9a img.shogun-image {
    

    
    
    
  }


#s-33dcf5a6-b67f-4187-a837-f8f427598f9a .shogun-image-content {
  
    align-items: center;
  
}

#s-7777e6fb-9cf2-49c6-814b-72311287cdf1 {
  max-width: 300px;
text-align: center;
}







  #s-7777e6fb-9cf2-49c6-814b-72311287cdf1 img.shogun-image {
    

    
    
    
  }


#s-7777e6fb-9cf2-49c6-814b-72311287cdf1 .shogun-image-content {
  
    align-items: center;
  
}

#s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
  margin-top: 20px;
margin-bottom: 20px;
max-width: 310px;
aspect-ratio: 1612/329;
text-align: center;
}



.shg-image-margin-container-s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
  
  
  margin-top: 20px;
  margin-bottom: 20px;
}

#s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shg-image-content-wrapper {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }

    #s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shogun-image-link {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bec23b7d-d7fa-4686-94e0-c1487989de63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 310px;
  }



  img.s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image {
    
    
    
    max-height: 310px;
  }


.s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shogun-image-content {
  
    align-items: center;
  
}

.s-bec23b7d-d7fa-4686-94e0-c1487989de63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
      --shg-aspect-ratio: calc(1612/329); 
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container {
      position: relative;
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 310px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
  
  
  
  
}

#s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shg-image-content-wrapper {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }

    #s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shogun-image-link {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bec23b7d-d7fa-4686-94e0-c1487989de63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 310px;
  }



  img.s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image {
    
    
    
    max-height: 310px;
  }


.s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shogun-image-content {
  
    align-items: center;
  
}

.s-bec23b7d-d7fa-4686-94e0-c1487989de63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
      --shg-aspect-ratio: calc(1612/329); 
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container {
      position: relative;
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 310px;
    }
  }

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

.shg-image-margin-container-s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
  
  
  
  
}

#s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shg-image-content-wrapper {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }

    #s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shogun-image-link {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bec23b7d-d7fa-4686-94e0-c1487989de63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 310px;
  }



  img.s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image {
    
    
    
    max-height: 310px;
  }


.s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shogun-image-content {
  
    align-items: center;
  
}

.s-bec23b7d-d7fa-4686-94e0-c1487989de63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
      --shg-aspect-ratio: calc(1612/329); 
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container {
      position: relative;
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 310px;
    }
  }

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

.shg-image-margin-container-s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
  
  
  
  
}

#s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shg-image-content-wrapper {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }

    #s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shogun-image-link {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bec23b7d-d7fa-4686-94e0-c1487989de63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 310px;
  }



  img.s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image {
    
    
    
    max-height: 310px;
  }


.s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shogun-image-content {
  
    align-items: center;
  
}

.s-bec23b7d-d7fa-4686-94e0-c1487989de63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
      --shg-aspect-ratio: calc(1612/329); 
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container {
      position: relative;
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 310px;
    }
  }

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

.shg-image-margin-container-s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
  
  
  
  
}

#s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shg-image-content-wrapper {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }

    #s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shogun-image-link {
      aspect-ratio: 1612/329;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-bec23b7d-d7fa-4686-94e0-c1487989de63 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 310px;
  }



  img.s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image {
    
    
    
    max-height: 310px;
  }


.s-bec23b7d-d7fa-4686-94e0-c1487989de63 .shogun-image-content {
  
    align-items: center;
  
}

.s-bec23b7d-d7fa-4686-94e0-c1487989de63.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bec23b7d-d7fa-4686-94e0-c1487989de63 {
      --shg-aspect-ratio: calc(1612/329); 
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container {
      position: relative;
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bec23b7d-d7fa-4686-94e0-c1487989de63 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 310px;
    }
  }

}
#s-296ed8be-c531-49c8-8855-da4ec3d0f520 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-296ed8be-c531-49c8-8855-da4ec3d0f520 {
  display: none;
}
#s-296ed8be-c531-49c8-8855-da4ec3d0f520, #wrap-s-296ed8be-c531-49c8-8855-da4ec3d0f520 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-296ed8be-c531-49c8-8855-da4ec3d0f520 {
  display: none;
}
#s-296ed8be-c531-49c8-8855-da4ec3d0f520, #wrap-s-296ed8be-c531-49c8-8855-da4ec3d0f520 { display: none !important; }}







#s-296ed8be-c531-49c8-8855-da4ec3d0f520 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-296ed8be-c531-49c8-8855-da4ec3d0f520.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-284bf6c6-b4a8-45cc-a5fc-8082ba4add75"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 768px) {
[id="s-284bf6c6-b4a8-45cc-a5fc-8082ba4add75"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-284bf6c6-b4a8-45cc-a5fc-8082ba4add75"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-284bf6c6-b4a8-45cc-a5fc-8082ba4add75"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-23d5f4d6-3744-4d7a-9563-5453177c9079 {
  max-width: 1240px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-23d5f4d6-3744-4d7a-9563-5453177c9079 img.shogun-image,
  #s-23d5f4d6-3744-4d7a-9563-5453177c9079 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-23d5f4d6-3744-4d7a-9563-5453177c9079 {
    width: 100%;
    height: auto;
  }



  #s-23d5f4d6-3744-4d7a-9563-5453177c9079 img.shogun-image {
    

    
    
    
  }


#s-23d5f4d6-3744-4d7a-9563-5453177c9079 .shogun-image-content {
  
    align-items: center;
  
}

#s-631c0b88-71bf-4c6b-a876-2794038ae7c1 {
  max-width: 2000px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-631c0b88-71bf-4c6b-a876-2794038ae7c1 img.shogun-image,
  #s-631c0b88-71bf-4c6b-a876-2794038ae7c1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-631c0b88-71bf-4c6b-a876-2794038ae7c1 {
    width: 100%;
    height: auto;
  }



  #s-631c0b88-71bf-4c6b-a876-2794038ae7c1 img.shogun-image {
    

    
    
    
  }


#s-631c0b88-71bf-4c6b-a876-2794038ae7c1 .shogun-image-content {
  
    align-items: center;
  
}

#s-a5babcc0-074c-4543-86ee-1d00207901ab {
  max-width: 935px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-a5babcc0-074c-4543-86ee-1d00207901ab img.shogun-image,
  #s-a5babcc0-074c-4543-86ee-1d00207901ab .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a5babcc0-074c-4543-86ee-1d00207901ab {
    width: 100%;
    height: auto;
  }



  #s-a5babcc0-074c-4543-86ee-1d00207901ab img.shogun-image {
    

    
    
    
  }


#s-a5babcc0-074c-4543-86ee-1d00207901ab .shogun-image-content {
  
    align-items: center;
  
}

#s-2dbf1ef4-435c-4738-b06d-e320b8beb3c5 {
  margin-top: 5px;
}

@media (min-width: 0px) {
[id="s-2dbf1ef4-435c-4738-b06d-e320b8beb3c5"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 768px) {
[id="s-2dbf1ef4-435c-4738-b06d-e320b8beb3c5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-2dbf1ef4-435c-4738-b06d-e320b8beb3c5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-2dbf1ef4-435c-4738-b06d-e320b8beb3c5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-527c0250-6ca5-426f-af8e-129c2c578b85 {
  max-width: 1925px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-527c0250-6ca5-426f-af8e-129c2c578b85 img.shogun-image,
  #s-527c0250-6ca5-426f-af8e-129c2c578b85 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-527c0250-6ca5-426f-af8e-129c2c578b85 {
    width: 100%;
    height: auto;
  }



  #s-527c0250-6ca5-426f-af8e-129c2c578b85 img.shogun-image {
    

    
    
    
  }


#s-527c0250-6ca5-426f-af8e-129c2c578b85 .shogun-image-content {
  
    align-items: center;
  
}

#s-72f3ba3c-b327-4826-88e3-1d922fcd1c99 {
  max-width: 1164px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-72f3ba3c-b327-4826-88e3-1d922fcd1c99 img.shogun-image,
  #s-72f3ba3c-b327-4826-88e3-1d922fcd1c99 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-72f3ba3c-b327-4826-88e3-1d922fcd1c99 {
    width: 100%;
    height: auto;
  }



  #s-72f3ba3c-b327-4826-88e3-1d922fcd1c99 img.shogun-image {
    

    
    
    
  }


#s-72f3ba3c-b327-4826-88e3-1d922fcd1c99 .shogun-image-content {
  
    align-items: center;
  
}

#s-8d75d7c1-9db9-40f6-b2c4-0a814576040e {
  max-width: 1160px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-8d75d7c1-9db9-40f6-b2c4-0a814576040e img.shogun-image,
  #s-8d75d7c1-9db9-40f6-b2c4-0a814576040e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8d75d7c1-9db9-40f6-b2c4-0a814576040e {
    width: 100%;
    height: auto;
  }



  #s-8d75d7c1-9db9-40f6-b2c4-0a814576040e img.shogun-image {
    

    
    
    
  }


#s-8d75d7c1-9db9-40f6-b2c4-0a814576040e .shogun-image-content {
  
    align-items: center;
  
}

#s-9425f88e-cbed-4c4b-b3f8-0ed1bd0bc83f {
  margin-top: 5px;
margin-bottom: 5px;
}

@media (min-width: 0px) {
[id="s-9425f88e-cbed-4c4b-b3f8-0ed1bd0bc83f"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 768px) {
[id="s-9425f88e-cbed-4c4b-b3f8-0ed1bd0bc83f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-9425f88e-cbed-4c4b-b3f8-0ed1bd0bc83f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-9425f88e-cbed-4c4b-b3f8-0ed1bd0bc83f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-8222fb2a-f7bb-4e17-a1e3-e4843056f6e3 {
  max-width: 718px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-8222fb2a-f7bb-4e17-a1e3-e4843056f6e3 img.shogun-image,
  #s-8222fb2a-f7bb-4e17-a1e3-e4843056f6e3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8222fb2a-f7bb-4e17-a1e3-e4843056f6e3 {
    width: 100%;
    height: auto;
  }



  #s-8222fb2a-f7bb-4e17-a1e3-e4843056f6e3 img.shogun-image {
    

    
    
    
  }


#s-8222fb2a-f7bb-4e17-a1e3-e4843056f6e3 .shogun-image-content {
  
    align-items: center;
  
}

#s-1a5cded1-6aa9-4103-94e1-5a307e1c398d {
  max-width: 1044px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-1a5cded1-6aa9-4103-94e1-5a307e1c398d img.shogun-image,
  #s-1a5cded1-6aa9-4103-94e1-5a307e1c398d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1a5cded1-6aa9-4103-94e1-5a307e1c398d {
    width: 100%;
    height: auto;
  }



  #s-1a5cded1-6aa9-4103-94e1-5a307e1c398d img.shogun-image {
    

    
    
    
  }


#s-1a5cded1-6aa9-4103-94e1-5a307e1c398d .shogun-image-content {
  
    align-items: center;
  
}

#s-2bbcdf44-6fba-41c1-86da-fd9c3534b006 {
  max-width: 689px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-2bbcdf44-6fba-41c1-86da-fd9c3534b006 img.shogun-image,
  #s-2bbcdf44-6fba-41c1-86da-fd9c3534b006 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2bbcdf44-6fba-41c1-86da-fd9c3534b006 {
    width: 100%;
    height: auto;
  }



  #s-2bbcdf44-6fba-41c1-86da-fd9c3534b006 img.shogun-image {
    

    
    
    
  }


#s-2bbcdf44-6fba-41c1-86da-fd9c3534b006 .shogun-image-content {
  
    align-items: center;
  
}

#s-fb067064-55bd-4602-9c7c-60fcbb4e4ea6 {
  margin-left: auto;
margin-right: auto;
padding-top: 64px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(26, 87, 69, 1);
}
@media (max-width: 767px){#s-fb067064-55bd-4602-9c7c-60fcbb4e4ea6 {
  padding-top: 32px;
}
}







#s-fb067064-55bd-4602-9c7c-60fcbb4e4ea6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fb067064-55bd-4602-9c7c-60fcbb4e4ea6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2b28444f-efc4-4ff8-9565-b790a134bc0b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-2b28444f-efc4-4ff8-9565-b790a134bc0b {
  margin-left: 5%;
margin-right: 5%;
padding-top: 0px;
padding-bottom: 30px;
}
}
#s-2b28444f-efc4-4ff8-9565-b790a134bc0b .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1.2em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-2b28444f-efc4-4ff8-9565-b790a134bc0b .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.2em;
  
  
}


}@media (max-width: 767px){#s-2b28444f-efc4-4ff8-9565-b790a134bc0b .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.2em;
  
  
}


}
#s-5a4d329c-12d0-48c2-8a55-2a3c457b4e15 {
  margin-left: auto;
margin-right: auto;
padding-top: 32px;
padding-bottom: 32px;
min-height: 50px;
background-color: rgba(26, 87, 69, 1);
}
@media (max-width: 767px){#s-5a4d329c-12d0-48c2-8a55-2a3c457b4e15 {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-5a4d329c-12d0-48c2-8a55-2a3c457b4e15 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5a4d329c-12d0-48c2-8a55-2a3c457b4e15.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9a22c35e-9a71-46d0-8933-9e7c6ee8fe28 {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}

@media (min-width: 0px) {
[id="s-9a22c35e-9a71-46d0-8933-9e7c6ee8fe28"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9a22c35e-9a71-46d0-8933-9e7c6ee8fe28"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9a22c35e-9a71-46d0-8933-9e7c6ee8fe28"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9a22c35e-9a71-46d0-8933-9e7c6ee8fe28"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-10e743f7-3294-45c5-997a-bc86b374fa78 {
  min-height: 50px;
}








#s-10e743f7-3294-45c5-997a-bc86b374fa78 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-10e743f7-3294-45c5-997a-bc86b374fa78.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 550px;
aspect-ratio: 1/1;
text-align: center;
}
@media (max-width: 767px){#s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
  margin-top: 0px;
margin-bottom: 0px;
}
}


.shg-image-margin-container-s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

#s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 550px;
  }



  img.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image {
    
    
    
    max-height: 550px;
  }


.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shogun-image-content {
  
    align-items: center;
  
}

.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container {
      position: relative;
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 550px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
  
  
  
  
}

#s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 550px;
  }



  img.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image {
    
    
    
    max-height: 550px;
  }


.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shogun-image-content {
  
    align-items: center;
  
}

.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container {
      position: relative;
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 550px;
    }
  }

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

.shg-image-margin-container-s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
  
  
  
  
}

#s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 550px;
  }



  img.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image {
    
    
    
    max-height: 550px;
  }


.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shogun-image-content {
  
    align-items: center;
  
}

.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container {
      position: relative;
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 550px;
    }
  }

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

.shg-image-margin-container-s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
  
  
  
  
}

#s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 550px;
  }



  img.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image {
    
    
    
    max-height: 550px;
  }


.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shogun-image-content {
  
    align-items: center;
  
}

.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container {
      position: relative;
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 550px;
    }
  }

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

.shg-image-margin-container-s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

#s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 550px;
  }



  img.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image {
    
    
    
    max-height: 550px;
  }


.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e .shogun-image-content {
  
    align-items: center;
  
}

.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container {
      position: relative;
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef1113d4-dcac-4f3f-98d2-bcf065de9a6e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 550px;
    }
  }

}
#s-67527879-bfae-43fc-899b-676fe1471506 {
  margin-left: 0%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-67527879-bfae-43fc-899b-676fe1471506 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-67527879-bfae-43fc-899b-676fe1471506 {
  margin-top: -20px;
margin-left: 5%;
padding-top: 32px;
padding-bottom: 32px;
}
}







#s-67527879-bfae-43fc-899b-676fe1471506 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-67527879-bfae-43fc-899b-676fe1471506.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-63977872-341e-41c0-a1c6-c64ef4a9c980 {
  display: none;
}
#s-63977872-341e-41c0-a1c6-c64ef4a9c980, #wrap-s-63977872-341e-41c0-a1c6-c64ef4a9c980 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-63977872-341e-41c0-a1c6-c64ef4a9c980 {
  display: none;
}
#s-63977872-341e-41c0-a1c6-c64ef4a9c980, #wrap-s-63977872-341e-41c0-a1c6-c64ef4a9c980 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-63977872-341e-41c0-a1c6-c64ef4a9c980 {
  display: none;
}
#s-63977872-341e-41c0-a1c6-c64ef4a9c980, #wrap-s-63977872-341e-41c0-a1c6-c64ef4a9c980 { display: none !important; }}
@media (min-width: 0px) {
[id="s-63977872-341e-41c0-a1c6-c64ef4a9c980"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-63977872-341e-41c0-a1c6-c64ef4a9c980"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-63977872-341e-41c0-a1c6-c64ef4a9c980"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-63977872-341e-41c0-a1c6-c64ef4a9c980"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-63977872-341e-41c0-a1c6-c64ef4a9c980"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-63977872-341e-41c0-a1c6-c64ef4a9c980"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-63977872-341e-41c0-a1c6-c64ef4a9c980"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-4357a9ea-23b4-457b-adeb-c2857f76fb30 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-4357a9ea-23b4-457b-adeb-c2857f76fb30 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 50px;
  
  
  text-align: left;
}



#s-276b1257-9379-4383-be9f-e8f247e24874 {
  margin-left: -70%;
padding-top: 5px;
padding-bottom: 0px;
text-align: left;
}

#s-276b1257-9379-4383-be9f-e8f247e24874 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce {
  display: none;
}
#s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce, #wrap-s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce { display: none !important; }}
@media (min-width: 0px) {
[id="s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7cfa8c32-6957-4a5d-aaa7-464b8d7b66ce"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-1ebb8ec7-2580-4766-a329-2209e7e1254a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-1ebb8ec7-2580-4766-a329-2209e7e1254a {
  display: none;
}
#s-1ebb8ec7-2580-4766-a329-2209e7e1254a, #wrap-s-1ebb8ec7-2580-4766-a329-2209e7e1254a { display: none !important; }}
#s-1ebb8ec7-2580-4766-a329-2209e7e1254a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: center;
}



#s-20b11bf5-c9be-4b6e-b338-683977513b3e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-20b11bf5-c9be-4b6e-b338-683977513b3e {
  display: none;
}
#s-20b11bf5-c9be-4b6e-b338-683977513b3e, #wrap-s-20b11bf5-c9be-4b6e-b338-683977513b3e { display: none !important; }}
#s-20b11bf5-c9be-4b6e-b338-683977513b3e .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 34px;
  
  
  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: ;
  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-91628ffb-e2ea-47bf-a469-50361fadef1a {
  margin-top: 15px;
}

#s-99d7487d-daf2-4473-a401-479bea33d242 {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(248, 246, 241, 1);
}








#s-99d7487d-daf2-4473-a401-479bea33d242 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-99d7487d-daf2-4473-a401-479bea33d242.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  
  
  
  
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-439623c4-020b-441c-93d0-aa7bee9538c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  
  
  
  
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-439623c4-020b-441c-93d0-aa7bee9538c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  
  
  
  
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-439623c4-020b-441c-93d0-aa7bee9538c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  
  
  
  
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-439623c4-020b-441c-93d0-aa7bee9538c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  
  
  
  
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-439623c4-020b-441c-93d0-aa7bee9538c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-439623c4-020b-441c-93d0-aa7bee9538c4.shogun-image {
  box-sizing: border-box;
}




}
#s-e81973b9-809d-4898-af77-e6f4dd028835 {
  margin-top: 5px;
}

#s-4aa311a2-18e7-425d-b849-cf9226809633 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-4aa311a2-18e7-425d-b849-cf9226809633 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b {
  margin-top: 15px;
}
@media (min-width: 1200px){#s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b {
  display: none;
}
#s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b, #wrap-s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b {
  display: none;
}
#s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b, #wrap-s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b {
  display: none;
}
#s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b, #wrap-s-c77e5ae0-7b15-4ebd-a1c7-464cb067956b { display: none !important; }}
#s-894e3c8d-b5cb-49a6-8f68-437a1f675506 {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(248, 246, 241, 1);
}
@media (min-width: 1200px){#s-894e3c8d-b5cb-49a6-8f68-437a1f675506 {
  display: none;
}
#s-894e3c8d-b5cb-49a6-8f68-437a1f675506, #wrap-s-894e3c8d-b5cb-49a6-8f68-437a1f675506 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-894e3c8d-b5cb-49a6-8f68-437a1f675506 {
  display: none;
}
#s-894e3c8d-b5cb-49a6-8f68-437a1f675506, #wrap-s-894e3c8d-b5cb-49a6-8f68-437a1f675506 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-894e3c8d-b5cb-49a6-8f68-437a1f675506 {
  display: none;
}
#s-894e3c8d-b5cb-49a6-8f68-437a1f675506, #wrap-s-894e3c8d-b5cb-49a6-8f68-437a1f675506 { display: none !important; }}







#s-894e3c8d-b5cb-49a6-8f68-437a1f675506 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-894e3c8d-b5cb-49a6-8f68-437a1f675506.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  
  
  
  
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  
  
  
  
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  
  
  
  
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  
  
  
  
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  
  
  
  
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4 .shogun-image-content {
  
    align-items: center;
  
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c0a424c-7930-4eca-adaf-2bfdb99153a4.shogun-image {
  box-sizing: border-box;
}




}
#s-d2e78a71-d797-46b1-b90f-7f7e3d543218 {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d2e78a71-d797-46b1-b90f-7f7e3d543218 .shogun-heading-component h1 {
  color: rgba(70, 69, 65, 1);
  font-weight:  normal ;
  font-family: "Centra No2 Bold Italic";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-c69d9ed6-ebe4-4241-b0a2-566edfed3077 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-c69d9ed6-ebe4-4241-b0a2-566edfed3077 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-a0323ff5-3ec3-49a8-b03a-2e25ad8e3786 {
  margin-left: auto;
margin-right: auto;
padding-top: 32px;
padding-bottom: 32px;
min-height: 50px;
background-color: rgba(248, 246, 241, 1);
}
@media (max-width: 767px){#s-a0323ff5-3ec3-49a8-b03a-2e25ad8e3786 {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-a0323ff5-3ec3-49a8-b03a-2e25ad8e3786 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a0323ff5-3ec3-49a8-b03a-2e25ad8e3786.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-373c8877-cc09-4902-a587-67e7816e3f21 {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}

@media (min-width: 0px) {
[id="s-373c8877-cc09-4902-a587-67e7816e3f21"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-373c8877-cc09-4902-a587-67e7816e3f21"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-373c8877-cc09-4902-a587-67e7816e3f21"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-373c8877-cc09-4902-a587-67e7816e3f21"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-373c8877-cc09-4902-a587-67e7816e3f21"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-57c6750b-8016-4e1c-9ef8-a578c79368aa {
  margin-left: 0%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-57c6750b-8016-4e1c-9ef8-a578c79368aa {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-57c6750b-8016-4e1c-9ef8-a578c79368aa {
  margin-top: -20px;
margin-left: 5%;
padding-top: 32px;
padding-bottom: 32px;
}
}







#s-57c6750b-8016-4e1c-9ef8-a578c79368aa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-57c6750b-8016-4e1c-9ef8-a578c79368aa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-92d02735-7d9b-4875-b48e-c198d6da3da2 {
  display: none;
}
#s-92d02735-7d9b-4875-b48e-c198d6da3da2, #wrap-s-92d02735-7d9b-4875-b48e-c198d6da3da2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-92d02735-7d9b-4875-b48e-c198d6da3da2 {
  display: none;
}
#s-92d02735-7d9b-4875-b48e-c198d6da3da2, #wrap-s-92d02735-7d9b-4875-b48e-c198d6da3da2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-92d02735-7d9b-4875-b48e-c198d6da3da2 {
  display: none;
}
#s-92d02735-7d9b-4875-b48e-c198d6da3da2, #wrap-s-92d02735-7d9b-4875-b48e-c198d6da3da2 { display: none !important; }}
@media (min-width: 0px) {
[id="s-92d02735-7d9b-4875-b48e-c198d6da3da2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-92d02735-7d9b-4875-b48e-c198d6da3da2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-92d02735-7d9b-4875-b48e-c198d6da3da2"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-92d02735-7d9b-4875-b48e-c198d6da3da2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-92d02735-7d9b-4875-b48e-c198d6da3da2"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-92d02735-7d9b-4875-b48e-c198d6da3da2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-92d02735-7d9b-4875-b48e-c198d6da3da2"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-0ab05a38-cefd-44d6-86cf-782f2fd1246b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-0ab05a38-cefd-44d6-86cf-782f2fd1246b .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 50px;
  
  
  text-align: left;
}



#s-a38cdd49-61cd-4e47-9cc2-4fd29c68cd8c {
  margin-left: -70%;
padding-top: 5px;
padding-bottom: 0px;
text-align: left;
}

#s-a38cdd49-61cd-4e47-9cc2-4fd29c68cd8c .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2 {
  display: none;
}
#s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2, #wrap-s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2 { display: none !important; }}
@media (min-width: 0px) {
[id="s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9ea06fa3-2e53-44f2-9e6f-c4a52abb43f2"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-88b1b2b2-cb0c-4660-abf1-283924123b91 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-88b1b2b2-cb0c-4660-abf1-283924123b91 {
  display: none;
}
#s-88b1b2b2-cb0c-4660-abf1-283924123b91, #wrap-s-88b1b2b2-cb0c-4660-abf1-283924123b91 { display: none !important; }}
#s-88b1b2b2-cb0c-4660-abf1-283924123b91 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: center;
}



#s-93ab1806-8d13-463d-bd09-192aa931d344 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-93ab1806-8d13-463d-bd09-192aa931d344 {
  display: none;
}
#s-93ab1806-8d13-463d-bd09-192aa931d344, #wrap-s-93ab1806-8d13-463d-bd09-192aa931d344 { display: none !important; }}
#s-93ab1806-8d13-463d-bd09-192aa931d344 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}


@media (min-width: 1200px){#s-93ab1806-8d13-463d-bd09-192aa931d344 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-93ab1806-8d13-463d-bd09-192aa931d344 .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}
#s-2dc3c150-0cbe-429c-b043-6abd1f8b2ffd {
  margin-top: 15px;
}

#s-117ec948-01ae-4c30-a4c2-ab0cb97cd135 {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-117ec948-01ae-4c30-a4c2-ab0cb97cd135 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-117ec948-01ae-4c30-a4c2-ab0cb97cd135.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  
  
  
  
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  
  
  
  
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  
  
  
  
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  
  
  
  
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  
  
  
  
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0787ca67-1232-4a6b-8a49-a52ab2e108f7.shogun-image {
  box-sizing: border-box;
}




}
#s-ffd11042-3e00-4580-a3c9-d7744b984401 {
  margin-top: 5px;
}

#s-9dd0e45b-f29d-4b27-ad7c-a2f5b5cfa819 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-9dd0e45b-f29d-4b27-ad7c-a2f5b5cfa819 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-8649da10-3e59-4819-9710-07900bdb8bfc {
  margin-top: 15px;
}
@media (min-width: 1200px){#s-8649da10-3e59-4819-9710-07900bdb8bfc {
  display: none;
}
#s-8649da10-3e59-4819-9710-07900bdb8bfc, #wrap-s-8649da10-3e59-4819-9710-07900bdb8bfc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8649da10-3e59-4819-9710-07900bdb8bfc {
  display: none;
}
#s-8649da10-3e59-4819-9710-07900bdb8bfc, #wrap-s-8649da10-3e59-4819-9710-07900bdb8bfc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8649da10-3e59-4819-9710-07900bdb8bfc {
  display: none;
}
#s-8649da10-3e59-4819-9710-07900bdb8bfc, #wrap-s-8649da10-3e59-4819-9710-07900bdb8bfc { display: none !important; }}
#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f {
  display: none;
}
#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f, #wrap-s-79d50543-9cde-43de-b4f0-9858d5dfbf7f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f {
  display: none;
}
#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f, #wrap-s-79d50543-9cde-43de-b4f0-9858d5dfbf7f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f {
  display: none;
}
#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f, #wrap-s-79d50543-9cde-43de-b4f0-9858d5dfbf7f { display: none !important; }}







#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-79d50543-9cde-43de-b4f0-9858d5dfbf7f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  
  
  
  
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 .shogun-image-content {
  
    align-items: center;
  
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  
  
  
  
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 .shogun-image-content {
  
    align-items: center;
  
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  
  
  
  
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 .shogun-image-content {
  
    align-items: center;
  
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  
  
  
  
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 .shogun-image-content {
  
    align-items: center;
  
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  
  
  
  
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035 .shogun-image-content {
  
    align-items: center;
  
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6cdc85fa-31c9-4a14-a318-4eadcdf5d035.shogun-image {
  box-sizing: border-box;
}




}
#s-fe80f3ed-f134-4ed8-896c-c83a10120f15 {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-fe80f3ed-f134-4ed8-896c-c83a10120f15 .shogun-heading-component h1 {
  color: rgba(70, 69, 65, 1);
  font-weight:  normal ;
  font-family: "Centra No2 Bold Italic";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-afe2ca6d-4ac9-4e0c-aa75-2bd7fa805851 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-afe2ca6d-4ac9-4e0c-aa75-2bd7fa805851 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-fab4ca91-e5f9-47d4-bea0-24ca3a6aae4d {
  min-height: 50px;
}








#s-fab4ca91-e5f9-47d4-bea0-24ca3a6aae4d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fab4ca91-e5f9-47d4-bea0-24ca3a6aae4d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 550px;
aspect-ratio: 1/1;
text-align: center;
}
@media (max-width: 767px){#s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
  margin-top: 0px;
margin-bottom: 0px;
}
}


.shg-image-margin-container-s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

#s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dd33a04c-409a-460e-ab38-f5b553f86d89 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 550px;
  }



  img.s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image {
    
    
    
    max-height: 550px;
  }


.s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shogun-image-content {
  
    align-items: center;
  
}

.s-dd33a04c-409a-460e-ab38-f5b553f86d89.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container {
      position: relative;
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 550px;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
  
  
  
  
}

#s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dd33a04c-409a-460e-ab38-f5b553f86d89 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 550px;
  }



  img.s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image {
    
    
    
    max-height: 550px;
  }


.s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shogun-image-content {
  
    align-items: center;
  
}

.s-dd33a04c-409a-460e-ab38-f5b553f86d89.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container {
      position: relative;
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 550px;
    }
  }

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

.shg-image-margin-container-s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
  
  
  
  
}

#s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dd33a04c-409a-460e-ab38-f5b553f86d89 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 550px;
  }



  img.s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image {
    
    
    
    max-height: 550px;
  }


.s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shogun-image-content {
  
    align-items: center;
  
}

.s-dd33a04c-409a-460e-ab38-f5b553f86d89.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container {
      position: relative;
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 550px;
    }
  }

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

.shg-image-margin-container-s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
  
  
  
  
}

#s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dd33a04c-409a-460e-ab38-f5b553f86d89 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 550px;
  }



  img.s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image {
    
    
    
    max-height: 550px;
  }


.s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shogun-image-content {
  
    align-items: center;
  
}

.s-dd33a04c-409a-460e-ab38-f5b553f86d89.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container {
      position: relative;
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 550px;
    }
  }

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

.shg-image-margin-container-s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
  
  
  margin-top: 0px;
  margin-bottom: 0px;
}

#s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
  margin: 0 !important;
  overflow: hidden;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-dd33a04c-409a-460e-ab38-f5b553f86d89 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    
    max-height: 550px;
  }



  img.s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image {
    
    
    
    max-height: 550px;
  }


.s-dd33a04c-409a-460e-ab38-f5b553f86d89 .shogun-image-content {
  
    align-items: center;
  
}

.s-dd33a04c-409a-460e-ab38-f5b553f86d89.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dd33a04c-409a-460e-ab38-f5b553f86d89 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container {
      position: relative;
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dd33a04c-409a-460e-ab38-f5b553f86d89 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 550px;
    }
  }

}
#s-7456be86-2a3d-4521-9e9c-fe3ea49eb215 {
  margin-left: auto;
margin-right: auto;
padding-top: 32px;
padding-bottom: 32px;
min-height: 50px;
background-color: rgba(26, 87, 69, 1);
}
@media (max-width: 767px){#s-7456be86-2a3d-4521-9e9c-fe3ea49eb215 {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-7456be86-2a3d-4521-9e9c-fe3ea49eb215 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7456be86-2a3d-4521-9e9c-fe3ea49eb215.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4e08e58d-bc17-4296-840d-c974caa3427b {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}

@media (min-width: 0px) {
[id="s-4e08e58d-bc17-4296-840d-c974caa3427b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4e08e58d-bc17-4296-840d-c974caa3427b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4e08e58d-bc17-4296-840d-c974caa3427b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4e08e58d-bc17-4296-840d-c974caa3427b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-803841ef-56e7-4022-94ee-09336321fe83 {
  min-height: 50px;
}








#s-803841ef-56e7-4022-94ee-09336321fe83 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-803841ef-56e7-4022-94ee-09336321fe83.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f0944023-995f-4134-ac12-c9c67c42a72d {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 0px;
max-width: 550px;
text-align: center;
}
@media (max-width: 767px){#s-f0944023-995f-4134-ac12-c9c67c42a72d {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-2cc4b7d6-7ccb-413b-bb8f-e7a19c7ed045 {
  margin-left: 0%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-2cc4b7d6-7ccb-413b-bb8f-e7a19c7ed045 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-2cc4b7d6-7ccb-413b-bb8f-e7a19c7ed045 {
  margin-top: -20px;
margin-left: 5%;
padding-top: 32px;
padding-bottom: 32px;
}
}







#s-2cc4b7d6-7ccb-413b-bb8f-e7a19c7ed045 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2cc4b7d6-7ccb-413b-bb8f-e7a19c7ed045.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-b34a0620-e317-4561-8dce-1206cbca9e06 {
  display: none;
}
#s-b34a0620-e317-4561-8dce-1206cbca9e06, #wrap-s-b34a0620-e317-4561-8dce-1206cbca9e06 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b34a0620-e317-4561-8dce-1206cbca9e06 {
  display: none;
}
#s-b34a0620-e317-4561-8dce-1206cbca9e06, #wrap-s-b34a0620-e317-4561-8dce-1206cbca9e06 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b34a0620-e317-4561-8dce-1206cbca9e06 {
  display: none;
}
#s-b34a0620-e317-4561-8dce-1206cbca9e06, #wrap-s-b34a0620-e317-4561-8dce-1206cbca9e06 { display: none !important; }}
@media (min-width: 0px) {
[id="s-b34a0620-e317-4561-8dce-1206cbca9e06"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-b34a0620-e317-4561-8dce-1206cbca9e06"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-b34a0620-e317-4561-8dce-1206cbca9e06"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b34a0620-e317-4561-8dce-1206cbca9e06"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-b34a0620-e317-4561-8dce-1206cbca9e06"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b34a0620-e317-4561-8dce-1206cbca9e06"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-b34a0620-e317-4561-8dce-1206cbca9e06"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-662f7388-24fa-42fe-809e-3b436755fde6 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-662f7388-24fa-42fe-809e-3b436755fde6 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 50px;
  
  
  text-align: left;
}



#s-3352b398-d0c4-4075-a4ed-b7063b930e8b {
  margin-left: -70%;
padding-top: 5px;
padding-bottom: 0px;
text-align: left;
}

#s-3352b398-d0c4-4075-a4ed-b7063b930e8b .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-fc24e5d6-2b98-4baf-a925-629e102e807e {
  display: none;
}
#s-fc24e5d6-2b98-4baf-a925-629e102e807e, #wrap-s-fc24e5d6-2b98-4baf-a925-629e102e807e { display: none !important; }}
@media (min-width: 0px) {
[id="s-fc24e5d6-2b98-4baf-a925-629e102e807e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fc24e5d6-2b98-4baf-a925-629e102e807e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fc24e5d6-2b98-4baf-a925-629e102e807e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fc24e5d6-2b98-4baf-a925-629e102e807e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fc24e5d6-2b98-4baf-a925-629e102e807e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fc24e5d6-2b98-4baf-a925-629e102e807e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fc24e5d6-2b98-4baf-a925-629e102e807e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-91defb63-bf05-4f6f-b9d3-550de51dfa69 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-91defb63-bf05-4f6f-b9d3-550de51dfa69 {
  display: none;
}
#s-91defb63-bf05-4f6f-b9d3-550de51dfa69, #wrap-s-91defb63-bf05-4f6f-b9d3-550de51dfa69 { display: none !important; }}
#s-91defb63-bf05-4f6f-b9d3-550de51dfa69 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 70px;
  
  
  text-align: center;
}



#s-7d1468c9-c4f7-47db-b974-c74831e274ce {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-7d1468c9-c4f7-47db-b974-c74831e274ce {
  display: none;
}
#s-7d1468c9-c4f7-47db-b974-c74831e274ce, #wrap-s-7d1468c9-c4f7-47db-b974-c74831e274ce { display: none !important; }}
#s-7d1468c9-c4f7-47db-b974-c74831e274ce .shogun-heading-component h1 {
  color: rgba(253, 252, 252, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}


@media (min-width: 1200px){#s-7d1468c9-c4f7-47db-b974-c74831e274ce .shogun-heading-component h1 {
  color: rgba(253, 252, 252, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-7d1468c9-c4f7-47db-b974-c74831e274ce .shogun-heading-component h1 {
  color: rgba(253, 252, 252, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


}
#s-02eaf9fe-c989-49a5-b66d-a461f5a975ed {
  margin-top: 15px;
}

#s-37aff8cd-2168-439e-9e01-98d49a4ba44b {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(248, 246, 241, 1);
}








#s-37aff8cd-2168-439e-9e01-98d49a4ba44b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-37aff8cd-2168-439e-9e01-98d49a4ba44b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  
  
  
  
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b .shogun-image-content {
  
    align-items: center;
  
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  
  
  
  
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b .shogun-image-content {
  
    align-items: center;
  
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  
  
  
  
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b .shogun-image-content {
  
    align-items: center;
  
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  
  
  
  
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b .shogun-image-content {
  
    align-items: center;
  
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  
  
  
  
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b .shogun-image-content {
  
    align-items: center;
  
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7ee64ee-2238-4a7e-a96f-581f63647a0b.shogun-image {
  box-sizing: border-box;
}




}
#s-1787e186-ad34-4911-a6ec-16e2f41eb4fb {
  margin-top: 5px;
}

#s-3e0431ab-d056-4342-910f-5cbd8171d719 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-3e0431ab-d056-4342-910f-5cbd8171d719 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-d4fda23a-79ba-4956-bdbd-62a95942e736 {
  margin-top: 15px;
}
@media (min-width: 1200px){#s-d4fda23a-79ba-4956-bdbd-62a95942e736 {
  display: none;
}
#s-d4fda23a-79ba-4956-bdbd-62a95942e736, #wrap-s-d4fda23a-79ba-4956-bdbd-62a95942e736 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d4fda23a-79ba-4956-bdbd-62a95942e736 {
  display: none;
}
#s-d4fda23a-79ba-4956-bdbd-62a95942e736, #wrap-s-d4fda23a-79ba-4956-bdbd-62a95942e736 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d4fda23a-79ba-4956-bdbd-62a95942e736 {
  display: none;
}
#s-d4fda23a-79ba-4956-bdbd-62a95942e736, #wrap-s-d4fda23a-79ba-4956-bdbd-62a95942e736 { display: none !important; }}
#s-c8ae3422-5890-4ba2-98ce-55d1e881f999 {
  margin-top: 25px;
margin-right: 0%;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(31, 102, 81, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(248, 246, 241, 1);
}
@media (min-width: 1200px){#s-c8ae3422-5890-4ba2-98ce-55d1e881f999 {
  display: none;
}
#s-c8ae3422-5890-4ba2-98ce-55d1e881f999, #wrap-s-c8ae3422-5890-4ba2-98ce-55d1e881f999 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c8ae3422-5890-4ba2-98ce-55d1e881f999 {
  display: none;
}
#s-c8ae3422-5890-4ba2-98ce-55d1e881f999, #wrap-s-c8ae3422-5890-4ba2-98ce-55d1e881f999 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c8ae3422-5890-4ba2-98ce-55d1e881f999 {
  display: none;
}
#s-c8ae3422-5890-4ba2-98ce-55d1e881f999, #wrap-s-c8ae3422-5890-4ba2-98ce-55d1e881f999 { display: none !important; }}







#s-c8ae3422-5890-4ba2-98ce-55d1e881f999 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c8ae3422-5890-4ba2-98ce-55d1e881f999.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  max-width: 130px;
text-align: left;
}



.shg-image-margin-container-s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  
  
  
  
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){

.shg-image-margin-container-s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  
  
  
  
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  
  
  
  
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  
  
  
  
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
  box-sizing: border-box;
}




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

.shg-image-margin-container-s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  
  
  
  
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 {
  margin: 0 !important;
  overflow: hidden;
}





  img.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
    
    
    
    max-height: 130px;
  }


.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671 .shogun-image-content {
  
    align-items: center;
  
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd0d3722-1a23-4fc4-b484-ad06b40f6671.shogun-image {
  box-sizing: border-box;
}




}
#s-80746aa0-e25e-4ac2-93c8-2d3bd58497ee {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-80746aa0-e25e-4ac2-93c8-2d3bd58497ee .shogun-heading-component h1 {
  color: rgba(70, 69, 65, 1);
  font-weight:  normal ;
  font-family: "Centra No2 Bold Italic";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-9cf8d0b5-a98d-4f07-bdb1-05ad907c25f0 {
  margin-top: -20px;
margin-bottom: -40px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-9cf8d0b5-a98d-4f07-bdb1-05ad907c25f0 .shogun-heading-component h1 {
  color: rgba(31, 102, 81, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



#s-bd107956-eb64-4e95-b6fd-5c19711f99f0 {
  padding-top: 40px;
padding-left: 5%;
padding-bottom: 40px;
padding-right: 5%;
min-height: 50px;
background-color: rgba(237, 243, 238, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-bd107956-eb64-4e95-b6fd-5c19711f99f0 {
  padding-top: 20px;
padding-bottom: 20px;
}
}@media (max-width: 767px){#s-bd107956-eb64-4e95-b6fd-5c19711f99f0 {
  margin-bottom: 0px;
padding-top: 15px;
padding-bottom: 15px;
}
}







#s-bd107956-eb64-4e95-b6fd-5c19711f99f0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bd107956-eb64-4e95-b6fd-5c19711f99f0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-720503fd-1d56-4dba-b214-9d32ec012dc9 {
  min-height: 50px;
}








#s-720503fd-1d56-4dba-b214-9d32ec012dc9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-720503fd-1d56-4dba-b214-9d32ec012dc9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0bc1ad8b-1786-4bfe-9820-0d90dca6f1a4 {
  min-height: 50px;
}








#s-0bc1ad8b-1786-4bfe-9820-0d90dca6f1a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0bc1ad8b-1786-4bfe-9820-0d90dca6f1a4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-06e035d1-ca50-44fd-a024-d86906e6a874"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-06e035d1-ca50-44fd-a024-d86906e6a874"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-06e035d1-ca50-44fd-a024-d86906e6a874"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-06e035d1-ca50-44fd-a024-d86906e6a874"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-06e035d1-ca50-44fd-a024-d86906e6a874"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-06e035d1-ca50-44fd-a024-d86906e6a874"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-06e035d1-ca50-44fd-a024-d86906e6a874"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

}

#s-51124d14-4a2f-4e69-b0a8-049eeea3cba9 {
  min-height: 50px;
}








#s-51124d14-4a2f-4e69-b0a8-049eeea3cba9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-51124d14-4a2f-4e69-b0a8-049eeea3cba9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7cd9ea6f-bc4c-4c02-be2a-a9b6c73fa82e {
  padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}
@media (min-width: 768px) and (max-width: 991px){#s-7cd9ea6f-bc4c-4c02-be2a-a9b6c73fa82e {
  text-align: center;
}
}@media (max-width: 767px){#s-7cd9ea6f-bc4c-4c02-be2a-a9b6c73fa82e {
  text-align: center;
}
}
#s-7cd9ea6f-bc4c-4c02-be2a-a9b6c73fa82e .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: right;
}


@media (min-width: 768px) and (max-width: 991px){#s-7cd9ea6f-bc4c-4c02-be2a-a9b6c73fa82e .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


}@media (max-width: 767px){#s-7cd9ea6f-bc4c-4c02-be2a-a9b6c73fa82e .shogun-heading-component h1 {
  color: rgba(38, 38, 38, 1);
  font-weight:  800 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: center;
}


}
#s-a0f68288-b997-4aeb-904c-3ba83c35c7f5 {
  min-height: 50px;
}








#s-a0f68288-b997-4aeb-904c-3ba83c35c7f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a0f68288-b997-4aeb-904c-3ba83c35c7f5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d92df9a4-8e1e-4fe1-868f-89308c29a4b6 {
  padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(31, 102, 81, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-d92df9a4-8e1e-4fe1-868f-89308c29a4b6:hover {background-color: rgba(31, 102, 81, 0.86) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-d92df9a4-8e1e-4fe1-868f-89308c29a4b6:active {background-color: rgba(31, 102, 81, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}@media (min-width: 768px) and (max-width: 991px){#s-d92df9a4-8e1e-4fe1-868f-89308c29a4b6 {
  text-align: center;
}
}@media (max-width: 767px){#s-d92df9a4-8e1e-4fe1-868f-89308c29a4b6 {
  margin-top: 20px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
}

  #s-d92df9a4-8e1e-4fe1-868f-89308c29a4b6-root {
    text-align: left;
  }


#s-d92df9a4-8e1e-4fe1-868f-89308c29a4b6.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d92df9a4-8e1e-4fe1-868f-89308c29a4b6-root {
    text-align: left;
  }


#s-d92df9a4-8e1e-4fe1-868f-89308c29a4b6.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d92df9a4-8e1e-4fe1-868f-89308c29a4b6-root {
    text-align: left;
  }


#s-d92df9a4-8e1e-4fe1-868f-89308c29a4b6.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d92df9a4-8e1e-4fe1-868f-89308c29a4b6-root {
    text-align: center;
  }


#s-d92df9a4-8e1e-4fe1-868f-89308c29a4b6.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d92df9a4-8e1e-4fe1-868f-89308c29a4b6-root {
    text-align: center;
  }


#s-d92df9a4-8e1e-4fe1-868f-89308c29a4b6.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: 700;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}

/* <-- User Content Animations */

.shogun-form-error-msg,
.shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}
