.shg-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  /**
   * 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: flex;
  width: 100%;
}

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  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-e0c59662-29c1-4e1c-9e7a-2d103b4a6cf7 {
  min-height: 50px;
}








#s-e0c59662-29c1-4e1c-9e7a-2d103b4a6cf7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e0c59662-29c1-4e1c-9e7a-2d103b4a6cf7.shg-box.shg-c {
  justify-content: center;
}

#s-e0d6d589-bffd-4fd0-baa8-541c56e4a634 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 50px;
background-position: center center;
}

#s-e0d6d589-bffd-4fd0-baa8-541c56e4a634 {
  background-image: url(https://i.shgcdn.com/776c8dcf-ff8d-4b97-9736-5803a2f5412c/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-e0d6d589-bffd-4fd0-baa8-541c56e4a634 > .shg-box-overlay {
  background-color: rgba(55, 69, 50, 0.66);
  opacity: 0.8;
  display: block;
}#s-e0d6d589-bffd-4fd0-baa8-541c56e4a634.shg-box.shg-c {
  justify-content: center;
}

#s-990b1298-c09a-47b9-8e57-347325b9548a {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
padding-left: 25px;
padding-right: 25px;
max-width: 1200px;
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  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-5cfe1432-0a7d-462b-9a45-425347409b9c {
  margin-top: 50px;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
}

@media (min-width: 0px) {
[id="s-5cfe1432-0a7d-462b-9a45-425347409b9c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5cfe1432-0a7d-462b-9a45-425347409b9c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-5cfe1432-0a7d-462b-9a45-425347409b9c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-5cfe1432-0a7d-462b-9a45-425347409b9c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-contain {
  font-family: "object-fit: contain;";
  -o-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;
  flex-direction: column;
  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-de5fe5e7-0c8c-45d6-9521-244672e960a4 {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}
@media (max-width: 767px){#s-de5fe5e7-0c8c-45d6-9521-244672e960a4 {
  margin-left: auto;
margin-right: auto;
}
}
#s-de5fe5e7-0c8c-45d6-9521-244672e960a4 {
  overflow: hidden;
  
  
      max-width: 1080px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-de5fe5e7-0c8c-45d6-9521-244672e960a4 img.shogun-image,
  #s-de5fe5e7-0c8c-45d6-9521-244672e960a4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-de5fe5e7-0c8c-45d6-9521-244672e960a4 {
    width: 100%;
    height: auto;
  }



  #s-de5fe5e7-0c8c-45d6-9521-244672e960a4 img.shogun-image {
    

    
    
    
  }


#s-de5fe5e7-0c8c-45d6-9521-244672e960a4 .shogun-image-content {
  
    justify-content: center;
  
}

#s-e7728e63-6db2-4b7d-b1bf-e9b15d4c880b {
  min-height: 50px;
}








#s-e7728e63-6db2-4b7d-b1bf-e9b15d4c880b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e7728e63-6db2-4b7d-b1bf-e9b15d4c880b.shg-box.shg-c {
  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;
  
  
  text-transform: none;
  
  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-91dbea77-804d-48c5-8517-f025823ea8e4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-91dbea77-804d-48c5-8517-f025823ea8e4 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  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 {
  
  
  
}

.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 ::-moz-selection, .shg-default-text-content *::-moz-selection {
  background: #accef7;
}
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

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

.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 {
  
  
  
}

.shg-theme-text-content p {
  
  
  
}

#s-e8d2276d-3acd-45ce-9a5c-592a0d890a83 {
  padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 7px;
text-align: left;
background-color: rgba(106, 132, 95, 0);
}

#s-e8d2276d-3acd-45ce-9a5c-592a0d890a83 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Lato";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-a4327c3a-7571-454a-b75a-c51d52782294 .shogun-icon-wrapper {
  text-align: center;
}


#s-a4327c3a-7571-454a-b75a-c51d52782294 .shogun-icon-wrapper > .shogun-icon {

  font-size: 30px !important;
  color: rgba(255, 145, 0, 1);
}

#s-0408362f-d29d-4234-8108-b7c1229f58da .shogun-icon-wrapper {
  text-align: center;
}


#s-0408362f-d29d-4234-8108-b7c1229f58da .shogun-icon-wrapper > .shogun-icon {

  font-size: 30px !important;
  color: rgba(255, 145, 0, 1);
}

#s-96209f81-cbfa-4c52-94d3-6d538448c4db .shogun-icon-wrapper {
  text-align: center;
}


#s-96209f81-cbfa-4c52-94d3-6d538448c4db .shogun-icon-wrapper > .shogun-icon {

  font-size: 30px !important;
  color: rgba(255, 145, 0, 1);
}

#s-60372af4-12d5-42f3-a1c4-0170cc0632f0 .shogun-icon-wrapper {
  text-align: center;
}


#s-60372af4-12d5-42f3-a1c4-0170cc0632f0 .shogun-icon-wrapper > .shogun-icon {

  font-size: 30px !important;
  color: rgba(255, 145, 0, 1);
}

#s-4c4a7115-bb0a-48d4-b2f1-6fcd294b8a0b .shogun-icon-wrapper {
  text-align: center;
}


#s-4c4a7115-bb0a-48d4-b2f1-6fcd294b8a0b .shogun-icon-wrapper > .shogun-icon {

  font-size: 30px !important;
  color: rgba(255, 145, 0, 1);
}

#s-ab942b63-0df2-4e5f-a273-6c659f956363 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-ab942b63-0df2-4e5f-a273-6c659f956363"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-ab942b63-0df2-4e5f-a273-6c659f956363"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ab942b63-0df2-4e5f-a273-6c659f956363"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ab942b63-0df2-4e5f-a273-6c659f956363"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-9b5b16c6-e986-413d-8b72-47b293df0678 .shogun-icon-wrapper {
  text-align: center;
}


#s-9b5b16c6-e986-413d-8b72-47b293df0678 .shogun-icon-wrapper > .shogun-icon {

  font-size: 30px !important;
  color: rgba(180, 101, 0, 1);
}

#s-160fda18-2db5-4d5c-884b-503106a088af .shogun-icon-wrapper {
  text-align: center;
}


#s-160fda18-2db5-4d5c-884b-503106a088af .shogun-icon-wrapper > .shogun-icon {

  font-size: 30px !important;
  color: rgba(180, 101, 0, 1);
}

.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 {
  
  
}

.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-b13b0048-9e2d-4732-88f3-496c45f74ffa {
  box-shadow:-1px -1px 6px 3px rgba(68, 38, 0, 0.63);
padding-top: 7px;
padding-left: 25px;
padding-bottom: 7px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 41px;
background-color: rgba(255, 145, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
letter-spacing: 0px;
line-height: 1.5em;
color: rgba(255, 255, 255, 1);
}
#s-b13b0048-9e2d-4732-88f3-496c45f74ffa:hover {box-shadow:0px 0px 0px 0px  !important;
background-color: rgba(180, 101, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-b13b0048-9e2d-4732-88f3-496c45f74ffa:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZjVkYTg2MTAtYWE2NS00ZjIyLWE5NWMtOGQyYzJiZWFmMDc1IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZmRkMTk3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmRkMTk3O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNmNWRhODYxMC1hYTY1LTRmMjItYTk1Yy04ZDJjMmJlYWYwNzUpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#fdd197"}, {"id"=>2, "pos"=>1, "color"=>"#fdd197"}] !important;}

  #s-b13b0048-9e2d-4732-88f3-496c45f74ffa-root {
    text-align: center;
  }


#s-b13b0048-9e2d-4732-88f3-496c45f74ffa.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-b13b0048-9e2d-4732-88f3-496c45f74ffa-root {
    text-align: center;
  }


#s-b13b0048-9e2d-4732-88f3-496c45f74ffa.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b13b0048-9e2d-4732-88f3-496c45f74ffa-root {
    text-align: center;
  }


#s-b13b0048-9e2d-4732-88f3-496c45f74ffa.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b13b0048-9e2d-4732-88f3-496c45f74ffa-root {
    text-align: center;
  }


#s-b13b0048-9e2d-4732-88f3-496c45f74ffa.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-b13b0048-9e2d-4732-88f3-496c45f74ffa-root {
    text-align: center;
  }


#s-b13b0048-9e2d-4732-88f3-496c45f74ffa.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  block ;
}
}
#s-b873d499-73ca-44d7-871d-32db16182656 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-b873d499-73ca-44d7-871d-32db16182656"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-b873d499-73ca-44d7-871d-32db16182656"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b873d499-73ca-44d7-871d-32db16182656"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b873d499-73ca-44d7-871d-32db16182656"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-1603cb10-41c2-4407-94d3-5cc7ab2e4d69 .shogun-icon-wrapper {
  text-align: center;
}


#s-1603cb10-41c2-4407-94d3-5cc7ab2e4d69 .shogun-icon-wrapper > .shogun-icon {

  font-size: 30px !important;
  color: rgba(180, 101, 0, 1);
}

#s-bf85af3a-9881-474e-87e0-4212ef701404 .shogun-icon-wrapper {
  text-align: center;
}


#s-bf85af3a-9881-474e-87e0-4212ef701404 .shogun-icon-wrapper > .shogun-icon {

  font-size: 30px !important;
  color: rgba(180, 101, 0, 1);
}

#s-b2a2517c-77c2-4da0-ab82-2c476f92ad9d {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(238, 232, 218, 1);
}








#s-b2a2517c-77c2-4da0-ab82-2c476f92ad9d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b2a2517c-77c2-4da0-ab82-2c476f92ad9d.shg-box.shg-c {
  justify-content: center;
}

#s-7238d189-dbb9-44d2-9344-4fbaa1f243c1 {
  margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 412px;
}

@media (min-width: 0px) {
[id="s-7238d189-dbb9-44d2-9344-4fbaa1f243c1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-7238d189-dbb9-44d2-9344-4fbaa1f243c1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7238d189-dbb9-44d2-9344-4fbaa1f243c1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7238d189-dbb9-44d2-9344-4fbaa1f243c1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-32443cf7-b3e9-4de0-a296-20a7dd911fe6"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-32443cf7-b3e9-4de0-a296-20a7dd911fe6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-32443cf7-b3e9-4de0-a296-20a7dd911fe6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-32443cf7-b3e9-4de0-a296-20a7dd911fe6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a8eae9d7-5126-463d-abe7-1c91e0193e0c {
  text-align: center;
}

#s-a8eae9d7-5126-463d-abe7-1c91e0193e0c {
  overflow: hidden;
  
  
}







  #s-a8eae9d7-5126-463d-abe7-1c91e0193e0c img.shogun-image {
    

    
    
    
  }


#s-a8eae9d7-5126-463d-abe7-1c91e0193e0c .shogun-image-content {
  
    justify-content: center;
  
}

#s-b3019e3f-dc4b-46fd-ac8a-88440e90e787 {
  text-align: center;
}

#s-b3019e3f-dc4b-46fd-ac8a-88440e90e787 {
  overflow: hidden;
  
  
}







  #s-b3019e3f-dc4b-46fd-ac8a-88440e90e787 img.shogun-image {
    

    
    
    
  }


#s-b3019e3f-dc4b-46fd-ac8a-88440e90e787 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-34047ffc-1223-42fe-b615-352502e3fc7c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-34047ffc-1223-42fe-b615-352502e3fc7c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-34047ffc-1223-42fe-b615-352502e3fc7c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-34047ffc-1223-42fe-b615-352502e3fc7c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0ba715ab-99ed-4bf2-9e5e-196bec6d1f4e {
  text-align: center;
}

#s-0ba715ab-99ed-4bf2-9e5e-196bec6d1f4e {
  overflow: hidden;
  
  
}







  #s-0ba715ab-99ed-4bf2-9e5e-196bec6d1f4e img.shogun-image {
    

    
    
    
  }


#s-0ba715ab-99ed-4bf2-9e5e-196bec6d1f4e .shogun-image-content {
  
    justify-content: center;
  
}

#s-f8a29d0b-c1c5-47ef-ba9e-81fd9aa9e4ed {
  text-align: center;
}

#s-f8a29d0b-c1c5-47ef-ba9e-81fd9aa9e4ed {
  overflow: hidden;
  
  
}







  #s-f8a29d0b-c1c5-47ef-ba9e-81fd9aa9e4ed img.shogun-image {
    

    
    
    
  }


#s-f8a29d0b-c1c5-47ef-ba9e-81fd9aa9e4ed .shogun-image-content {
  
    justify-content: center;
  
}

#s-f413923d-1adc-494d-80fc-345687167fdc {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 50px;
padding-left: 5%;
padding-bottom: 50px;
padding-right: 5%;
min-height: 50px;
background-color: rgba(238, 232, 218, 0);
}








#s-f413923d-1adc-494d-80fc-345687167fdc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f413923d-1adc-494d-80fc-345687167fdc.shg-box.shg-c {
  justify-content: center;
}

#s-b526fab2-cc27-4d36-ac8d-b0b914a88629 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1000px;
}








#s-b526fab2-cc27-4d36-ac8d-b0b914a88629 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b526fab2-cc27-4d36-ac8d-b0b914a88629.shg-box.shg-c {
  justify-content: center;
}

#s-ae927be9-3423-4690-9e56-fc2c91f39d17 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ae927be9-3423-4690-9e56-fc2c91f39d17 .shogun-heading-component h2 {
  color: rgba(106, 132, 95, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-28c4e1fc-a5b6-4794-bb5f-1158f77868c8 {
  margin-left: auto;
margin-right: auto;
max-width: 900px;
}

@media (min-width: 0px) {
[id="s-504991d2-b195-4d45-9e48-a0e70fde3fdf"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-504991d2-b195-4d45-9e48-a0e70fde3fdf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-504991d2-b195-4d45-9e48-a0e70fde3fdf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-504991d2-b195-4d45-9e48-a0e70fde3fdf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-868a1149-f597-4f1a-aa8f-65faec0b205e {
  text-align: center;
}

#s-868a1149-f597-4f1a-aa8f-65faec0b205e {
  overflow: hidden;
  
  
}







  #s-868a1149-f597-4f1a-aa8f-65faec0b205e img.shogun-image {
    

    
    
    
  }


#s-868a1149-f597-4f1a-aa8f-65faec0b205e .shogun-image-content {
  
    justify-content: center;
  
}

#s-cc6b3974-ab6e-4333-bbec-74f86185203e {
  text-align: center;
}

#s-cc6b3974-ab6e-4333-bbec-74f86185203e {
  overflow: hidden;
  
  
}







  #s-cc6b3974-ab6e-4333-bbec-74f86185203e img.shogun-image {
    

    
    
    
  }


#s-cc6b3974-ab6e-4333-bbec-74f86185203e .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-e1580a6a-b130-4725-83a7-fb6108d9e80d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-e1580a6a-b130-4725-83a7-fb6108d9e80d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e1580a6a-b130-4725-83a7-fb6108d9e80d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e1580a6a-b130-4725-83a7-fb6108d9e80d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-3058f0f9-915b-451e-b83b-368b928e2388 {
  text-align: center;
}

#s-3058f0f9-915b-451e-b83b-368b928e2388 {
  overflow: hidden;
  
  
}







  #s-3058f0f9-915b-451e-b83b-368b928e2388 img.shogun-image {
    

    
    
    
  }


#s-3058f0f9-915b-451e-b83b-368b928e2388 .shogun-image-content {
  
    justify-content: center;
  
}

#s-4ca7329f-3407-45a9-ae1f-507f73d73b1d {
  text-align: center;
}

#s-4ca7329f-3407-45a9-ae1f-507f73d73b1d {
  overflow: hidden;
  
  
}







  #s-4ca7329f-3407-45a9-ae1f-507f73d73b1d img.shogun-image {
    

    
    
    
  }


#s-4ca7329f-3407-45a9-ae1f-507f73d73b1d .shogun-image-content {
  
    justify-content: center;
  
}

#s-9664bb54-2d63-4f12-8ad3-e08856cd4cef {
  margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-bottom: 50px;
min-height: 50px;
max-width: 1000px;
}








#s-9664bb54-2d63-4f12-8ad3-e08856cd4cef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9664bb54-2d63-4f12-8ad3-e08856cd4cef.shg-box.shg-c {
  justify-content: center;
}

#s-7e86157c-78e4-4666-84b2-36c45a4064f8 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1000px;
}








#s-7e86157c-78e4-4666-84b2-36c45a4064f8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7e86157c-78e4-4666-84b2-36c45a4064f8.shg-box.shg-c {
  justify-content: center;
}

#s-734e630c-c669-42be-99cf-a2048899841c {
  box-shadow:0px 0px 0px 0px rgba(180, 101, 0, 1);
margin-top: 20px;
margin-bottom: 20px;
padding-top: 7px;
padding-left: 25px;
padding-bottom: 7px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 41px;
background-color: rgba(255, 145, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
letter-spacing: 0px;
line-height: 1.5em;
color: rgba(255, 255, 255, 1);
}
#s-734e630c-c669-42be-99cf-a2048899841c:hover {box-shadow:0px 0px 0px 0px  !important;
background-color: rgba(180, 101, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-734e630c-c669-42be-99cf-a2048899841c:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iOWYwNDBkMzAtY2MxNi00Yzc1LThhMGUtZGU2Nzk1NTg2ODQ2IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZmRkMTk3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmRkMTk3O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM5ZjA0MGQzMC1jYzE2LTRjNzUtOGEwZS1kZTY3OTU1ODY4NDYpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#fdd197"}, {"id"=>2, "pos"=>1, "color"=>"#fdd197"}] !important;}

  #s-734e630c-c669-42be-99cf-a2048899841c-root {
    text-align: center;
  }


#s-734e630c-c669-42be-99cf-a2048899841c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-734e630c-c669-42be-99cf-a2048899841c-root {
    text-align: center;
  }


#s-734e630c-c669-42be-99cf-a2048899841c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-734e630c-c669-42be-99cf-a2048899841c-root {
    text-align: center;
  }


#s-734e630c-c669-42be-99cf-a2048899841c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-734e630c-c669-42be-99cf-a2048899841c-root {
    text-align: center;
  }


#s-734e630c-c669-42be-99cf-a2048899841c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-734e630c-c669-42be-99cf-a2048899841c-root {
    text-align: center;
  }


#s-734e630c-c669-42be-99cf-a2048899841c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}
#s-b5351a91-928b-4225-b53d-4d3d11557aff {
  margin-top: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b5351a91-928b-4225-b53d-4d3d11557aff .shogun-heading-component h1 {
  color: rgba(55, 69, 50, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-c6e6df43-f208-478c-9af5-cdd2d5d3b54f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c6e6df43-f208-478c-9af5-cdd2d5d3b54f .shogun-heading-component h3 {
  color: rgba(55, 69, 50, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-3fa44479-ff93-421c-98d3-53279882059b {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

@media (min-width: 0px) {
[id="s-3fa44479-ff93-421c-98d3-53279882059b"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-3fa44479-ff93-421c-98d3-53279882059b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-3fa44479-ff93-421c-98d3-53279882059b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-3fa44479-ff93-421c-98d3-53279882059b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-6ccda20f-17d7-449e-ba08-a9c1197a8571 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 7px;
text-align: center;
}

#s-6ccda20f-17d7-449e-ba08-a9c1197a8571 {
  overflow: hidden;
  
  
}







  #s-6ccda20f-17d7-449e-ba08-a9c1197a8571 img.shogun-image {
    

    
    
    
  }


#s-6ccda20f-17d7-449e-ba08-a9c1197a8571 .shogun-image-content {
  
    justify-content: center;
  
}

#s-4169356b-dbce-4f66-8dce-bd26c970ef96 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 7px;
text-align: center;
}

#s-4169356b-dbce-4f66-8dce-bd26c970ef96 {
  overflow: hidden;
  
  
}







  #s-4169356b-dbce-4f66-8dce-bd26c970ef96 img.shogun-image {
    

    
    
    
  }


#s-4169356b-dbce-4f66-8dce-bd26c970ef96 .shogun-image-content {
  
    justify-content: center;
  
}

#s-bf4968fc-6346-4932-bc48-5da0a1c7f799 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 7px;
text-align: center;
}

#s-bf4968fc-6346-4932-bc48-5da0a1c7f799 {
  overflow: hidden;
  
  
}







  #s-bf4968fc-6346-4932-bc48-5da0a1c7f799 img.shogun-image {
    

    
    
    
  }


#s-bf4968fc-6346-4932-bc48-5da0a1c7f799 .shogun-image-content {
  
    justify-content: center;
  
}

#s-a1baeafc-33e8-416d-a09c-a172678db453 {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
max-width: 800px;
}

@media (min-width: 0px) {
[id="s-a1baeafc-33e8-416d-a09c-a172678db453"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-a1baeafc-33e8-416d-a09c-a172678db453"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-a1baeafc-33e8-416d-a09c-a172678db453"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-a1baeafc-33e8-416d-a09c-a172678db453"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-8b51076f-4554-467c-827a-a7804c56441b {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 7px;
text-align: center;
}

#s-8b51076f-4554-467c-827a-a7804c56441b {
  overflow: hidden;
  
  
}







  #s-8b51076f-4554-467c-827a-a7804c56441b img.shogun-image {
    

    
    
    
  }


#s-8b51076f-4554-467c-827a-a7804c56441b .shogun-image-content {
  
    justify-content: center;
  
}

#s-fccf4924-926e-46f3-a962-c4d728d410a8 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 7px;
text-align: center;
}

#s-fccf4924-926e-46f3-a962-c4d728d410a8 {
  overflow: hidden;
  
  
}







  #s-fccf4924-926e-46f3-a962-c4d728d410a8 img.shogun-image {
    

    
    
    
  }


#s-fccf4924-926e-46f3-a962-c4d728d410a8 .shogun-image-content {
  
    justify-content: center;
  
}

#s-8e37680e-06b9-49de-9a56-8427929d0d2e {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 7px;
text-align: center;
}

#s-8e37680e-06b9-49de-9a56-8427929d0d2e {
  overflow: hidden;
  
  
}







  #s-8e37680e-06b9-49de-9a56-8427929d0d2e img.shogun-image {
    

    
    
    
  }


#s-8e37680e-06b9-49de-9a56-8427929d0d2e .shogun-image-content {
  
    justify-content: center;
  
}

#s-646ce593-60e6-472e-bb10-05b9b2ea2c11 {
  box-shadow:0px 0px 0px 0px rgba(180, 101, 0, 1);
margin-top: 45px;
margin-bottom: 20px;
padding-top: 7px;
padding-left: 25px;
padding-bottom: 7px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 41px;
background-color: rgba(255, 145, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
letter-spacing: 0px;
line-height: 1.5em;
color: rgba(255, 255, 255, 1);
}
#s-646ce593-60e6-472e-bb10-05b9b2ea2c11:hover {box-shadow:0px 0px 0px 0px  !important;
background-color: rgba(180, 101, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-646ce593-60e6-472e-bb10-05b9b2ea2c11:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYzA1ZDUxYzQtNjE4OC00NzM0LThlZDYtMGMzNzM4YWM3NmY5IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZmRkMTk3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmRkMTk3O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNjMDVkNTFjNC02MTg4LTQ3MzQtOGVkNi0wYzM3MzhhYzc2ZjkpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#fdd197"}, {"id"=>2, "pos"=>1, "color"=>"#fdd197"}] !important;}

  #s-646ce593-60e6-472e-bb10-05b9b2ea2c11-root {
    text-align: center;
  }


#s-646ce593-60e6-472e-bb10-05b9b2ea2c11.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-646ce593-60e6-472e-bb10-05b9b2ea2c11-root {
    text-align: center;
  }


#s-646ce593-60e6-472e-bb10-05b9b2ea2c11.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-646ce593-60e6-472e-bb10-05b9b2ea2c11-root {
    text-align: center;
  }


#s-646ce593-60e6-472e-bb10-05b9b2ea2c11.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-646ce593-60e6-472e-bb10-05b9b2ea2c11-root {
    text-align: center;
  }


#s-646ce593-60e6-472e-bb10-05b9b2ea2c11.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-646ce593-60e6-472e-bb10-05b9b2ea2c11-root {
    text-align: center;
  }


#s-646ce593-60e6-472e-bb10-05b9b2ea2c11.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}
#s-6fde2c62-3f80-4395-a626-ff6935b07def {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
background-attachment: scroll;
}








#s-6fde2c62-3f80-4395-a626-ff6935b07def > .shg-box-overlay {
  background-color: rgba(180, 101, 0, 1);
  opacity: 0.8;
  display: block;
}#s-6fde2c62-3f80-4395-a626-ff6935b07def.shg-box.shg-c {
  justify-content: center;
}

#s-4b845e74-4a76-4ad0-a283-5d1780e3ddab {
  margin-top: 35px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-top: 15px;
padding-left: 5%;
padding-bottom: 15px;
padding-right: 5%;
min-height: 50px;
max-width: 1000px;
}








#s-4b845e74-4a76-4ad0-a283-5d1780e3ddab > .shg-box-overlay {
  background-color: rgba(180, 101, 0, 1);
  opacity: 0;
  display: block;
}#s-4b845e74-4a76-4ad0-a283-5d1780e3ddab.shg-box.shg-c {
  justify-content: center;
}

#s-ea5891f1-4a56-45a7-bc25-df12eb6ce501 {
  margin-top: 20px;
}

#s-ea5891f1-4a56-45a7-bc25-df12eb6ce501 .shogun-icon-wrapper {
  text-align: center;
}


#s-ea5891f1-4a56-45a7-bc25-df12eb6ce501 .shogun-icon-wrapper > .shogun-icon {

  font-size: 55px !important;
  color: rgba(255, 255, 255, 1);
}

#s-1ee12517-d3f3-41c2-b78e-005eaa1794d4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1ee12517-d3f3-41c2-b78e-005eaa1794d4 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 42px;
  
  
  
}



.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-5e726358-0066-414c-a5c9-35980015c85f hr {
  border-top: 1px solid rgba(221, 221, 221, 0.36);
}

@media (min-width: 0px) {
[id="s-8f8ee966-e558-46b9-85d6-afa85dec176c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8f8ee966-e558-46b9-85d6-afa85dec176c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-8f8ee966-e558-46b9-85d6-afa85dec176c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-8f8ee966-e558-46b9-85d6-afa85dec176c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-8f8ee966-e558-46b9-85d6-afa85dec176c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-8f8ee966-e558-46b9-85d6-afa85dec176c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-8f8ee966-e558-46b9-85d6-afa85dec176c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-8f8ee966-e558-46b9-85d6-afa85dec176c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-8f8ee966-e558-46b9-85d6-afa85dec176c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-8f8ee966-e558-46b9-85d6-afa85dec176c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

#s-ac46ac14-a50d-479d-9f60-45dd880c3637 {
  margin-top: 15px;
margin-bottom: 15px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ac46ac14-a50d-479d-9f60-45dd880c3637 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-1a231d18-cdec-4114-a818-38d465307429 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 7px;
text-align: center;
}

#s-1a231d18-cdec-4114-a818-38d465307429 {
  overflow: hidden;
  
  
}







  #s-1a231d18-cdec-4114-a818-38d465307429 img.shogun-image {
    

    
    
    
  }


#s-1a231d18-cdec-4114-a818-38d465307429 .shogun-image-content {
  
    justify-content: center;
  
}

#s-169b588a-e446-45bc-b507-7deef03fa2fb {
  margin-top: 10px;
opacity: 0.7;
}

#s-8061d5c4-74b4-43f2-881e-110dca16e019 hr {
  border-top: 1px solid rgba(221, 221, 221, 0.36);
}

@media (min-width: 0px) {
[id="s-2373c342-a88e-4086-9e29-19f9c5d8be5a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2373c342-a88e-4086-9e29-19f9c5d8be5a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-2373c342-a88e-4086-9e29-19f9c5d8be5a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-2373c342-a88e-4086-9e29-19f9c5d8be5a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-2373c342-a88e-4086-9e29-19f9c5d8be5a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-2373c342-a88e-4086-9e29-19f9c5d8be5a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-2373c342-a88e-4086-9e29-19f9c5d8be5a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-2373c342-a88e-4086-9e29-19f9c5d8be5a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-2373c342-a88e-4086-9e29-19f9c5d8be5a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-2373c342-a88e-4086-9e29-19f9c5d8be5a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

#s-50ef5ea5-fd2b-4ade-a8c8-b5b85fdd456f {
  margin-top: 15px;
margin-bottom: 15px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-50ef5ea5-fd2b-4ade-a8c8-b5b85fdd456f .shogun-heading-component h1 {
  color: rgba(253, 252, 251, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-5f582e61-0173-4e43-9f1d-e38a7d51f916 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 7px;
text-align: center;
}

#s-5f582e61-0173-4e43-9f1d-e38a7d51f916 {
  overflow: hidden;
  
  
}







  #s-5f582e61-0173-4e43-9f1d-e38a7d51f916 img.shogun-image {
    

    
    
    
  }


#s-5f582e61-0173-4e43-9f1d-e38a7d51f916 .shogun-image-content {
  
    justify-content: center;
  
}

#s-33322c54-8da2-4437-aa4e-72820b1a5b27 {
  margin-top: 10px;
opacity: 0.7;
}

#s-3b36bcfb-953c-4c56-ba25-a7962af2c7c7 hr {
  border-top: 1px solid rgba(221, 221, 221, 0.36);
}

@media (min-width: 0px) {
[id="s-1b895a72-8195-4afa-bcd9-86a89674253d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1b895a72-8195-4afa-bcd9-86a89674253d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-1b895a72-8195-4afa-bcd9-86a89674253d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-1b895a72-8195-4afa-bcd9-86a89674253d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-1b895a72-8195-4afa-bcd9-86a89674253d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-1b895a72-8195-4afa-bcd9-86a89674253d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-1b895a72-8195-4afa-bcd9-86a89674253d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-1b895a72-8195-4afa-bcd9-86a89674253d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-1b895a72-8195-4afa-bcd9-86a89674253d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-1b895a72-8195-4afa-bcd9-86a89674253d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

#s-8dbe767b-deec-421c-9df9-cc908285c474 {
  margin-top: 15px;
margin-bottom: 15px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8dbe767b-deec-421c-9df9-cc908285c474 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-37dd1588-90d2-479a-9967-4bc12185e492 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 7px;
text-align: center;
}

#s-37dd1588-90d2-479a-9967-4bc12185e492 {
  overflow: hidden;
  
  
}







  #s-37dd1588-90d2-479a-9967-4bc12185e492 img.shogun-image {
    

    
    
    
  }


#s-37dd1588-90d2-479a-9967-4bc12185e492 .shogun-image-content {
  
    justify-content: center;
  
}

#s-63ce6e44-5c8b-4236-8bb1-ee9c200fc7eb {
  margin-top: 10px;
opacity: 0.7;
}

#s-040f23f0-9c20-4769-9479-83f2e757c56a hr {
  border-top: 1px solid rgba(221, 221, 221, 0.36);
}

@media (min-width: 0px) {
[id="s-33d470f5-ab52-4d00-9c11-8eb539d001f4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-33d470f5-ab52-4d00-9c11-8eb539d001f4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-33d470f5-ab52-4d00-9c11-8eb539d001f4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-33d470f5-ab52-4d00-9c11-8eb539d001f4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-33d470f5-ab52-4d00-9c11-8eb539d001f4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-33d470f5-ab52-4d00-9c11-8eb539d001f4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-33d470f5-ab52-4d00-9c11-8eb539d001f4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-33d470f5-ab52-4d00-9c11-8eb539d001f4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-33d470f5-ab52-4d00-9c11-8eb539d001f4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-33d470f5-ab52-4d00-9c11-8eb539d001f4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

#s-e07b2b0f-3b7d-4f9b-87b8-e7672f4085a8 {
  margin-top: 15px;
margin-bottom: 15px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e07b2b0f-3b7d-4f9b-87b8-e7672f4085a8 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-24ba2448-7376-49cc-b463-00060399dc8c {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 7px;
text-align: center;
}

#s-24ba2448-7376-49cc-b463-00060399dc8c {
  overflow: hidden;
  
  
}







  #s-24ba2448-7376-49cc-b463-00060399dc8c img.shogun-image {
    

    
    
    
  }


#s-24ba2448-7376-49cc-b463-00060399dc8c .shogun-image-content {
  
    justify-content: center;
  
}

#s-ad681cdf-3f1d-4d9b-91d2-89159a6bbef2 {
  margin-top: 10px;
opacity: 0.7;
}

#s-80f58847-34a2-4958-8014-a9cb422398c2 hr {
  border-top: 1px solid rgba(221, 221, 221, 0.36);
}

#s-ba009e92-4cde-428f-a9c4-e671309ffb29 {
  box-shadow:0px 0px 0px 0px rgba(180, 101, 0, 1);
margin-top: 20px;
margin-bottom: 20px;
padding-top: 7px;
padding-left: 25px;
padding-bottom: 7px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 41px;
background-color: rgba(255, 145, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
letter-spacing: 0px;
line-height: 1.5em;
color: rgba(255, 255, 255, 1);
}
#s-ba009e92-4cde-428f-a9c4-e671309ffb29:hover {box-shadow:0px 0px 0px 0px  !important;
background-color: rgba(180, 101, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-ba009e92-4cde-428f-a9c4-e671309ffb29:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYjg5NWU4NDEtZWQyZi00MmM1LWE1ZmMtMGFkYzYzZDhjOGRlIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZmRkMTk3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmRkMTk3O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiODk1ZTg0MS1lZDJmLTQyYzUtYTVmYy0wYWRjNjNkOGM4ZGUpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#fdd197"}, {"id"=>2, "pos"=>1, "color"=>"#fdd197"}] !important;}

  #s-ba009e92-4cde-428f-a9c4-e671309ffb29-root {
    text-align: center;
  }


#s-ba009e92-4cde-428f-a9c4-e671309ffb29.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ba009e92-4cde-428f-a9c4-e671309ffb29-root {
    text-align: center;
  }


#s-ba009e92-4cde-428f-a9c4-e671309ffb29.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ba009e92-4cde-428f-a9c4-e671309ffb29-root {
    text-align: center;
  }


#s-ba009e92-4cde-428f-a9c4-e671309ffb29.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ba009e92-4cde-428f-a9c4-e671309ffb29-root {
    text-align: center;
  }


#s-ba009e92-4cde-428f-a9c4-e671309ffb29.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ba009e92-4cde-428f-a9c4-e671309ffb29-root {
    text-align: center;
  }


#s-ba009e92-4cde-428f-a9c4-e671309ffb29.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}
#s-01f4abf5-0dc2-4ee2-a435-4ab625f4ca47 {
  padding-top: 50px;
padding-bottom: 50px;
min-height: 50px;
background-color: rgba(238, 232, 218, 0.51);
}








#s-01f4abf5-0dc2-4ee2-a435-4ab625f4ca47 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-01f4abf5-0dc2-4ee2-a435-4ab625f4ca47.shg-box.shg-c {
  justify-content: center;
}

#s-adfc51cc-0e4a-49e2-9230-7797b70dac7b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-adfc51cc-0e4a-49e2-9230-7797b70dac7b .shogun-heading-component h2 {
  color: rgba(55, 69, 50, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  
  
  
}



#s-0fc6eecc-0b1d-4e5e-99fa-4f07fc7a640e {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 30px;
padding-right: 30px;
max-width: 960px;
}

@media (min-width: 0px) {
[id="s-0fc6eecc-0b1d-4e5e-99fa-4f07fc7a640e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0fc6eecc-0b1d-4e5e-99fa-4f07fc7a640e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-0fc6eecc-0b1d-4e5e-99fa-4f07fc7a640e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-0fc6eecc-0b1d-4e5e-99fa-4f07fc7a640e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-0188a620-dfbc-447c-af40-88d66c0cefa7 {
  text-align: center;
}

#s-9036b5c8-7f42-4bc9-b262-2802cc93cdbe {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 48px;
text-align: center;
}

#s-9036b5c8-7f42-4bc9-b262-2802cc93cdbe {
  overflow: hidden;
  
  
}







  #s-9036b5c8-7f42-4bc9-b262-2802cc93cdbe img.shogun-image {
    

    
    
    
  }


#s-9036b5c8-7f42-4bc9-b262-2802cc93cdbe .shogun-image-content {
  
    justify-content: center;
  
}

#s-c61d72e8-89ca-45cb-b4ff-81eac6d656d1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c61d72e8-89ca-45cb-b4ff-81eac6d656d1 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-3a8305ce-e027-437b-897e-df4ef60ebb9f {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 48px;
text-align: center;
}

#s-3a8305ce-e027-437b-897e-df4ef60ebb9f {
  overflow: hidden;
  
  
}







  #s-3a8305ce-e027-437b-897e-df4ef60ebb9f img.shogun-image {
    

    
    
    
  }


#s-3a8305ce-e027-437b-897e-df4ef60ebb9f .shogun-image-content {
  
    justify-content: center;
  
}

#s-37acf77a-19f5-4208-901e-21d97e43e948 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-37acf77a-19f5-4208-901e-21d97e43e948 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-d6b4da31-c36c-4d81-ac6b-c9067c6b235f {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 48px;
text-align: center;
}

#s-d6b4da31-c36c-4d81-ac6b-c9067c6b235f {
  overflow: hidden;
  
  
}







  #s-d6b4da31-c36c-4d81-ac6b-c9067c6b235f img.shogun-image {
    

    
    
    
  }


#s-d6b4da31-c36c-4d81-ac6b-c9067c6b235f .shogun-image-content {
  
    justify-content: center;
  
}

#s-8782f069-bfec-48fb-8c93-389635126587 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-8782f069-bfec-48fb-8c93-389635126587 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-bcada62a-d491-47f7-b991-0dee5f13c6f8 {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 50px;
background-position: center center;
}








#s-bcada62a-d491-47f7-b991-0dee5f13c6f8 > .shg-box-overlay {
  background-color: rgba(55, 69, 50, 1);
  opacity: 0.4;
  display: block;
}#s-bcada62a-d491-47f7-b991-0dee5f13c6f8.shg-box.shg-c {
  justify-content: center;
}

#s-7b9cf726-7434-4595-87e7-c61e776c80d1 {
  background-repeat: repeat;
background-size: contain;
margin-left: auto;
margin-right: auto;
padding-top: 50px;
padding-bottom: 50px;
min-height: 50px;
background-position: center center;
}








#s-7b9cf726-7434-4595-87e7-c61e776c80d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0.7;
  display: block;
}#s-7b9cf726-7434-4595-87e7-c61e776c80d1.shg-box.shg-c {
  justify-content: center;
}

#s-4db5df7a-374a-42ad-bb28-e07914dbf18e {
  padding-top: 4px;
padding-left: 25px;
padding-bottom: 4px;
padding-right: 25px;
text-align: center;
}

#s-4db5df7a-374a-42ad-bb28-e07914dbf18e .shogun-heading-component h1 {
  color: rgba(55, 69, 50, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 45px;
  
  
  
}



#s-6a620ce0-2841-4294-9243-0cd666f89f89 {
  padding-top: 10px;
padding-left: 25px;
padding-bottom: 35px;
padding-right: 25px;
text-align: center;
}

#s-6a620ce0-2841-4294-9243-0cd666f89f89 .shogun-heading-component h3 {
  color: rgba(106, 132, 95, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-85be0cfd-92ca-44a2-8b8b-6ffe740e5870 {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
max-width: 900px;
}

@media (min-width: 0px) {
[id="s-85be0cfd-92ca-44a2-8b8b-6ffe740e5870"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-85be0cfd-92ca-44a2-8b8b-6ffe740e5870"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-85be0cfd-92ca-44a2-8b8b-6ffe740e5870"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-85be0cfd-92ca-44a2-8b8b-6ffe740e5870"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1c5bfcde-5a65-4b70-91df-3cd1d9055013 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}

#s-1c5bfcde-5a65-4b70-91df-3cd1d9055013 {
  overflow: hidden;
  
  
      max-width: 1080px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-1c5bfcde-5a65-4b70-91df-3cd1d9055013 img.shogun-image,
  #s-1c5bfcde-5a65-4b70-91df-3cd1d9055013 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1c5bfcde-5a65-4b70-91df-3cd1d9055013 {
    width: 100%;
    height: auto;
  }



  #s-1c5bfcde-5a65-4b70-91df-3cd1d9055013 img.shogun-image {
    

    
    
    
  }


#s-1c5bfcde-5a65-4b70-91df-3cd1d9055013 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-6bf3fab6-b9fe-458d-9015-60f1338a4696"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6bf3fab6-b9fe-458d-9015-60f1338a4696"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6bf3fab6-b9fe-458d-9015-60f1338a4696"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6bf3fab6-b9fe-458d-9015-60f1338a4696"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-9870e30b-8fec-4289-ab38-68f501e42f8f .shogun-icon-wrapper {
  text-align: center;
}


#s-9870e30b-8fec-4289-ab38-68f501e42f8f .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(255, 145, 0, 1);
}

#s-cc7c5129-1c6f-4cb4-be72-4231b2ab4945 .shogun-icon-wrapper {
  text-align: center;
}


#s-cc7c5129-1c6f-4cb4-be72-4231b2ab4945 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(255, 145, 0, 1);
}

#s-d8a4e062-541a-418d-80ac-72962aff8844 {
  box-shadow:0px 0px 0px 0px rgba(180, 101, 0, 1);
margin-top: 20px;
margin-bottom: 20px;
padding-top: 15px;
padding-left: 34px;
padding-bottom: 15px;
padding-right: 34px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 41px;
background-color: rgba(255, 145, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
letter-spacing: 0px;
line-height: 1.5em;
color: rgba(255, 255, 255, 1);
}
#s-d8a4e062-541a-418d-80ac-72962aff8844:hover {box-shadow:0px 0px 0px 0px  !important;
background-color: rgba(180, 101, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-d8a4e062-541a-418d-80ac-72962aff8844:active {background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZmMwNTkyYTMtZTI3NC00MjQwLWE0OTEtM2I4NTlmNjM5NTQ3IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZmRkMTk3O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmRkMTk3O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNmYzA1OTJhMy1lMjc0LTQyNDAtYTQ5MS0zYjg1OWY2Mzk1NDcpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
hover-type: gradient !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#fdd197"}, {"id"=>2, "pos"=>1, "color"=>"#fdd197"}] !important;}

  #s-d8a4e062-541a-418d-80ac-72962aff8844-root {
    text-align: center;
  }


#s-d8a4e062-541a-418d-80ac-72962aff8844.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d8a4e062-541a-418d-80ac-72962aff8844-root {
    text-align: center;
  }


#s-d8a4e062-541a-418d-80ac-72962aff8844.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d8a4e062-541a-418d-80ac-72962aff8844-root {
    text-align: center;
  }


#s-d8a4e062-541a-418d-80ac-72962aff8844.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d8a4e062-541a-418d-80ac-72962aff8844-root {
    text-align: center;
  }


#s-d8a4e062-541a-418d-80ac-72962aff8844.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d8a4e062-541a-418d-80ac-72962aff8844-root {
    text-align: center;
  }


#s-d8a4e062-541a-418d-80ac-72962aff8844.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 25px;
  
  
  
  display:  inline-block ;
}
}
@media (min-width: 0px) {
[id="s-590d589e-ff4a-4a79-b95a-5737efa5fc93"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-590d589e-ff4a-4a79-b95a-5737efa5fc93"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-590d589e-ff4a-4a79-b95a-5737efa5fc93"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-590d589e-ff4a-4a79-b95a-5737efa5fc93"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-06375bd2-342c-4d7a-a03f-a1c7b4a13431 .shogun-icon-wrapper {
  text-align: center;
}


#s-06375bd2-342c-4d7a-a03f-a1c7b4a13431 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(255, 145, 0, 1);
}

#s-0a17317d-9493-4303-ba09-a4ab4ae7eefe .shogun-icon-wrapper {
  text-align: center;
}


#s-0a17317d-9493-4303-ba09-a4ab4ae7eefe .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(255, 145, 0, 1);
}

#s-408b025d-fe72-4e79-8f22-8efca2792ce6 hr {
  border-top: 2px solid #ddd;
}

#s-7bcaf228-f08c-4a5e-88c4-84c26eb871b3 {
  padding-left: 25px;
padding-right: 25px;
}

/*
  $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;
  -webkit-user-select: none;
     -moz-user-select: none;
          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;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen
       and (min-width: 1024px)
       and (max-height: 1366px)
       and (-webkit-min-device-pixel-ratio: 1.5)
       and (hover: none)
       and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}
