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

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

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

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

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

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

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

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

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

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

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

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

#s-aea3e509-2a46-4202-82ee-641c0b75f624 {
  min-height: 50px;
}








#s-aea3e509-2a46-4202-82ee-641c0b75f624 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aea3e509-2a46-4202-82ee-641c0b75f624.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-2b578c85-a9e9-4561-8ab8-67d6ea430d7e {
  margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-2b578c85-a9e9-4561-8ab8-67d6ea430d7e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2b578c85-a9e9-4561-8ab8-67d6ea430d7e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-2b578c85-a9e9-4561-8ab8-67d6ea430d7e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-2b578c85-a9e9-4561-8ab8-67d6ea430d7e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.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 {
  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-d7988d01-2e96-4bf0-899f-ed74d8ee04af {
  text-align: center;
}
@media (max-width: 767px){#s-d7988d01-2e96-4bf0-899f-ed74d8ee04af {
  margin-left: 25px;
margin-right: 25px;
}
}






  #s-d7988d01-2e96-4bf0-899f-ed74d8ee04af img.shogun-image {
    

    
    
    
  }


#s-d7988d01-2e96-4bf0-899f-ed74d8ee04af .shogun-image-content {
  
    align-items: center;
  
}

#s-6d9a01ff-bb2e-4936-8719-598ad3dc148b {
  padding-top: 40px;
padding-left: 40px;
padding-bottom: 0px;
padding-right: 40px;
min-height: 50px;
background-color: rgba(248, 236, 207, 1);
}








#s-6d9a01ff-bb2e-4936-8719-598ad3dc148b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6d9a01ff-bb2e-4936-8719-598ad3dc148b.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-e09c7227-571d-48a1-add9-7103cfa842b2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-e09c7227-571d-48a1-add9-7103cfa842b2 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e09c7227-571d-48a1-add9-7103cfa842b2 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e09c7227-571d-48a1-add9-7103cfa842b2 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-e09c7227-571d-48a1-add9-7103cfa842b2 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
}
#s-e09c7227-571d-48a1-add9-7103cfa842b2 .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  letter-spacing: 1px;
  
}



.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-05a92e03-b994-49b7-981f-894fa60fa73b {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-0bc10452-2c67-4106-acd7-3b890add3af7 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
max-width: 950px;
}
@media (min-width: 768px) and (max-width: 991px){#s-0bc10452-2c67-4106-acd7-3b890add3af7 {
  display: none;
}
#s-0bc10452-2c67-4106-acd7-3b890add3af7, #wrap-s-0bc10452-2c67-4106-acd7-3b890add3af7 { display:none !important; }}
@media (min-width: 0px) {
[id="s-0bc10452-2c67-4106-acd7-3b890add3af7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-0bc10452-2c67-4106-acd7-3b890add3af7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.8333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-0bc10452-2c67-4106-acd7-3b890add3af7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.8333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-0bc10452-2c67-4106-acd7-3b890add3af7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.8333333333333334px);
}

}

#s-30541580-0aa4-4964-9ed7-39d278be666d {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-30541580-0aa4-4964-9ed7-39d278be666d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-30541580-0aa4-4964-9ed7-39d278be666d.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-4a2b508f-7675-4f48-a93f-fb457280d69e {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-4a2b508f-7675-4f48-a93f-fb457280d69e img.shogun-image {
    

    
    
    
  }


#s-4a2b508f-7675-4f48-a93f-fb457280d69e .shogun-image-content {
  
    align-items: center;
  
}

#s-536dcb86-1858-4e81-ab2c-c1ac2e20a947 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-536dcb86-1858-4e81-ab2c-c1ac2e20a947 .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-a53a0ec4-4e38-4ba7-9417-316682edeacc {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-a53a0ec4-4e38-4ba7-9417-316682edeacc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a53a0ec4-4e38-4ba7-9417-316682edeacc.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-24f9c57b-2abf-48ee-b8b3-4c4c0d3bbf1e {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-24f9c57b-2abf-48ee-b8b3-4c4c0d3bbf1e img.shogun-image {
    

    
    
    
  }


#s-24f9c57b-2abf-48ee-b8b3-4c4c0d3bbf1e .shogun-image-content {
  
    align-items: center;
  
}

#s-05f7593a-6b95-4809-bb91-0ea2694946d6 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-05f7593a-6b95-4809-bb91-0ea2694946d6 .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-6150b453-33c8-4cb1-8ea5-b06dcae5568b {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-6150b453-33c8-4cb1-8ea5-b06dcae5568b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6150b453-33c8-4cb1-8ea5-b06dcae5568b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-75eb954d-db82-482d-add0-98f8e53eac11 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-75eb954d-db82-482d-add0-98f8e53eac11 img.shogun-image {
    

    
    
    
  }


#s-75eb954d-db82-482d-add0-98f8e53eac11 .shogun-image-content {
  
    align-items: center;
  
}

#s-814402fc-f4af-4114-97ac-69bce0706010 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-814402fc-f4af-4114-97ac-69bce0706010 .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-2f9c117e-da8c-4dd2-8a31-7f17ce75f904 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-2f9c117e-da8c-4dd2-8a31-7f17ce75f904 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2f9c117e-da8c-4dd2-8a31-7f17ce75f904.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-6c9bcc49-83e8-4488-add3-a2dcb5774886 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-6c9bcc49-83e8-4488-add3-a2dcb5774886 img.shogun-image {
    

    
    
    
  }


#s-6c9bcc49-83e8-4488-add3-a2dcb5774886 .shogun-image-content {
  
    align-items: center;
  
}

#s-c136b39f-aca5-4eaa-ae73-183a61732f59 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c136b39f-aca5-4eaa-ae73-183a61732f59 .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-53becb7c-8ce3-4e50-af0e-3df9c6d3e8cc {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-53becb7c-8ce3-4e50-af0e-3df9c6d3e8cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-53becb7c-8ce3-4e50-af0e-3df9c6d3e8cc.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-9ed57587-41be-45a4-9c5f-8ad5d3eddf0d {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-9ed57587-41be-45a4-9c5f-8ad5d3eddf0d img.shogun-image {
    

    
    
    
  }


#s-9ed57587-41be-45a4-9c5f-8ad5d3eddf0d .shogun-image-content {
  
    align-items: center;
  
}

#s-b2e598d7-4821-411c-bdf0-d8ba58bebce5 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-b2e598d7-4821-411c-bdf0-d8ba58bebce5 .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-3f99c1f4-f5fa-499a-9e36-85729fa065ff {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-3f99c1f4-f5fa-499a-9e36-85729fa065ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3f99c1f4-f5fa-499a-9e36-85729fa065ff.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-97e33b2d-a28a-4160-bdd2-1f2be9448818 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-97e33b2d-a28a-4160-bdd2-1f2be9448818 img.shogun-image {
    

    
    
    
  }


#s-97e33b2d-a28a-4160-bdd2-1f2be9448818 .shogun-image-content {
  
    align-items: center;
  
}

#s-89bfcf57-bc6b-46b1-a966-b134f2046ed0 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-89bfcf57-bc6b-46b1-a966-b134f2046ed0 .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-7dd05b6b-0590-4bc8-a9d6-118200627bf4 {
  margin-left: 20px;
margin-right: 20px;
}
@media (min-width: 1200px){#s-7dd05b6b-0590-4bc8-a9d6-118200627bf4 {
  display: none;
}
#s-7dd05b6b-0590-4bc8-a9d6-118200627bf4, #wrap-s-7dd05b6b-0590-4bc8-a9d6-118200627bf4 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7dd05b6b-0590-4bc8-a9d6-118200627bf4 {
  display: none;
}
#s-7dd05b6b-0590-4bc8-a9d6-118200627bf4, #wrap-s-7dd05b6b-0590-4bc8-a9d6-118200627bf4 { display:none !important; }}@media (max-width: 767px){#s-7dd05b6b-0590-4bc8-a9d6-118200627bf4 {
  display: none;
}
#s-7dd05b6b-0590-4bc8-a9d6-118200627bf4, #wrap-s-7dd05b6b-0590-4bc8-a9d6-118200627bf4 { display:none !important; }}
@media (min-width: 0px) {
[id="s-7dd05b6b-0590-4bc8-a9d6-118200627bf4"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 1.0px);
}

}

@media (min-width: 768px) {
[id="s-7dd05b6b-0590-4bc8-a9d6-118200627bf4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 1.5px);
}

}

@media (min-width: 992px) {
[id="s-7dd05b6b-0590-4bc8-a9d6-118200627bf4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 1.5px);
}

}

@media (min-width: 1200px) {
[id="s-7dd05b6b-0590-4bc8-a9d6-118200627bf4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 1.5px);
}

}

#s-043db6f7-5810-46d8-9973-7138583cc30b {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-043db6f7-5810-46d8-9973-7138583cc30b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-043db6f7-5810-46d8-9973-7138583cc30b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-02f5d240-5866-4499-8cb1-0cbf9387e575 {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-02f5d240-5866-4499-8cb1-0cbf9387e575 img.shogun-image {
    

    
    
    
  }


#s-02f5d240-5866-4499-8cb1-0cbf9387e575 .shogun-image-content {
  
    align-items: center;
  
}

#s-5d784be2-92de-48a8-a7a6-ae5c1c4845a4 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5d784be2-92de-48a8-a7a6-ae5c1c4845a4 .shogun-heading-component h1 {
  color: rgba(211, 100, 88, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-132119de-7964-4271-b1c4-45ff76603189 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-132119de-7964-4271-b1c4-45ff76603189 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-132119de-7964-4271-b1c4-45ff76603189.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-573e1bc3-d7f9-4318-82ed-9430ca49c8aa {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-573e1bc3-d7f9-4318-82ed-9430ca49c8aa img.shogun-image {
    

    
    
    
  }


#s-573e1bc3-d7f9-4318-82ed-9430ca49c8aa .shogun-image-content {
  
    align-items: center;
  
}

#s-04a226ca-5f1b-4961-b91c-88cd955e0291 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-04a226ca-5f1b-4961-b91c-88cd955e0291 .shogun-heading-component h1 {
  color: rgba(211, 100, 88, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-c0bdd543-395f-4a30-89b5-1314f823f9bc {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-c0bdd543-395f-4a30-89b5-1314f823f9bc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c0bdd543-395f-4a30-89b5-1314f823f9bc.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-73be4da7-54db-462d-a0ea-10a1692de39b {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-73be4da7-54db-462d-a0ea-10a1692de39b img.shogun-image {
    

    
    
    
  }


#s-73be4da7-54db-462d-a0ea-10a1692de39b .shogun-image-content {
  
    align-items: center;
  
}

#s-6f9ccd7c-3be2-435e-9ea6-7395fa6e67ab {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-6f9ccd7c-3be2-435e-9ea6-7395fa6e67ab .shogun-heading-component h1 {
  color: rgba(211, 100, 88, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-8769e8c1-043d-41b0-ac96-a4d4b82255ce {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-8769e8c1-043d-41b0-ac96-a4d4b82255ce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8769e8c1-043d-41b0-ac96-a4d4b82255ce.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-21bc02bb-5913-4810-9f6e-fe963e57bb1d {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
text-align: center;
}







  #s-21bc02bb-5913-4810-9f6e-fe963e57bb1d img.shogun-image {
    

    
    
    
  }


#s-21bc02bb-5913-4810-9f6e-fe963e57bb1d .shogun-image-content {
  
    align-items: center;
  
}

#s-cceed68f-5648-47c6-8639-9b1ceb58ab7f {
  margin-left: 10px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-cceed68f-5648-47c6-8639-9b1ceb58ab7f .shogun-heading-component h1 {
  color: rgba(211, 100, 88, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 24px;
  line-height: 0.9em;
  
  
}



#s-419cdb0e-e4f0-4069-af42-c6f267118b80 {
  margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-419cdb0e-e4f0-4069-af42-c6f267118b80 {
  display: none;
}
#s-419cdb0e-e4f0-4069-af42-c6f267118b80, #wrap-s-419cdb0e-e4f0-4069-af42-c6f267118b80 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-419cdb0e-e4f0-4069-af42-c6f267118b80 {
  display: none;
}
#s-419cdb0e-e4f0-4069-af42-c6f267118b80, #wrap-s-419cdb0e-e4f0-4069-af42-c6f267118b80 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-419cdb0e-e4f0-4069-af42-c6f267118b80 {
  
}
}







#s-419cdb0e-e4f0-4069-af42-c6f267118b80 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-419cdb0e-e4f0-4069-af42-c6f267118b80.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ed474ea6-fd39-48d0-a9b8-274105357225 {
  margin-bottom: 10px;
min-height: 50px;
}








#s-ed474ea6-fd39-48d0-a9b8-274105357225 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ed474ea6-fd39-48d0-a9b8-274105357225.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-43b0dc06-fe84-4b61-9c49-9ade627a9c7c {
  padding-top: 10px;
}

@media (min-width: 0px) {
[id="s-43b0dc06-fe84-4b61-9c49-9ade627a9c7c"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-43b0dc06-fe84-4b61-9c49-9ade627a9c7c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-43b0dc06-fe84-4b61-9c49-9ade627a9c7c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-43b0dc06-fe84-4b61-9c49-9ade627a9c7c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-8f858482-ed59-4aa6-a846-019cc6be3c6e {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-8f858482-ed59-4aa6-a846-019cc6be3c6e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8f858482-ed59-4aa6-a846-019cc6be3c6e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-82b7ccc2-6841-48d9-8349-dd8d3dc83f9e {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-82b7ccc2-6841-48d9-8349-dd8d3dc83f9e .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-584004ce-482d-4a76-a10d-4188b72f88d8 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-584004ce-482d-4a76-a10d-4188b72f88d8 .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-7cfe108b-e08d-4808-8bc0-eba77df43366 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-7cfe108b-e08d-4808-8bc0-eba77df43366 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7cfe108b-e08d-4808-8bc0-eba77df43366.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c6efdda1-a706-4e35-9b85-4cddfb883056 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c6efdda1-a706-4e35-9b85-4cddfb883056 .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-298ddb18-c4de-423e-bdcf-19779fe87bb1 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-298ddb18-c4de-423e-bdcf-19779fe87bb1 .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-17e6ec0a-36b1-470f-8d77-4f9e186e5cea {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-17e6ec0a-36b1-470f-8d77-4f9e186e5cea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17e6ec0a-36b1-470f-8d77-4f9e186e5cea.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a80af735-2a5e-4e6d-bc21-fa410b5e8ea2 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-a80af735-2a5e-4e6d-bc21-fa410b5e8ea2 .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-8f2e8582-1761-4aab-9897-7de7110e9929 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-8f2e8582-1761-4aab-9897-7de7110e9929 .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



@media (min-width: 0px) {
[id="s-5f8805cb-0dba-432e-b3cd-01688b0c5b6e"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-5f8805cb-0dba-432e-b3cd-01688b0c5b6e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-5f8805cb-0dba-432e-b3cd-01688b0c5b6e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-5f8805cb-0dba-432e-b3cd-01688b0c5b6e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-a6880e2e-8daf-4e57-b6a5-18025ee8b4e7 {
  margin-top: 15px;
margin-bottom: 15px;
min-height: 50px;
}








#s-a6880e2e-8daf-4e57-b6a5-18025ee8b4e7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a6880e2e-8daf-4e57-b6a5-18025ee8b4e7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9f1983b8-56f0-44cd-9eab-5d37da76c376 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-9f1983b8-56f0-44cd-9eab-5d37da76c376 .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-c17fcc0a-e3e3-4841-ba1f-fd02d1cda81c {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c17fcc0a-e3e3-4841-ba1f-fd02d1cda81c .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-f6b1bdcf-0e7d-446b-9a5f-88b8dde98d56 {
  margin-top: 15px;
margin-bottom: 15px;
min-height: 50px;
}








#s-f6b1bdcf-0e7d-446b-9a5f-88b8dde98d56 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f6b1bdcf-0e7d-446b-9a5f-88b8dde98d56.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f57f380f-8eb7-497a-97fd-3a1b48b4504f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-f57f380f-8eb7-497a-97fd-3a1b48b4504f .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-698b7e27-b5cc-4457-9be6-f1a5a8a0dcbe {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-698b7e27-b5cc-4457-9be6-f1a5a8a0dcbe .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-c9d9c6ca-294a-4e90-a1c7-fe9b05270611 {
  min-height: 50px;
}








#s-c9d9c6ca-294a-4e90-a1c7-fe9b05270611 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c9d9c6ca-294a-4e90-a1c7-fe9b05270611.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-596ab02d-3d9a-432a-bd6c-a18a9a9a9bda {
  text-align: center;
}







  #s-596ab02d-3d9a-432a-bd6c-a18a9a9a9bda img.shogun-image {
    

    
    
    
  }


#s-596ab02d-3d9a-432a-bd6c-a18a9a9a9bda .shogun-image-content {
  
    align-items: center;
  
}

#s-564dfef5-d610-4617-bf44-75711c90cb04 {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-564dfef5-d610-4617-bf44-75711c90cb04 {
  margin-left: 0px;
margin-right: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-564dfef5-d610-4617-bf44-75711c90cb04 {
  margin-right: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-564dfef5-d610-4617-bf44-75711c90cb04 {
  margin-left: 150px;
margin-right: 150px;
}
}@media (max-width: 767px){#s-564dfef5-d610-4617-bf44-75711c90cb04 {
  padding-left: 30px;
padding-right: 30px;
}
}






  #s-564dfef5-d610-4617-bf44-75711c90cb04 img.shogun-image {
    

    
    
    
  }


#s-564dfef5-d610-4617-bf44-75711c90cb04 .shogun-image-content {
  
    align-items: center;
  
}

#s-3acc48c7-bd77-404e-b571-0f2fc9875701 {
  margin-top: 20px;
margin-left: 50px;
margin-right: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-3acc48c7-bd77-404e-b571-0f2fc9875701 {
  display: none;
}
#s-3acc48c7-bd77-404e-b571-0f2fc9875701, #wrap-s-3acc48c7-bd77-404e-b571-0f2fc9875701 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3acc48c7-bd77-404e-b571-0f2fc9875701 {
  display: none;
}
#s-3acc48c7-bd77-404e-b571-0f2fc9875701, #wrap-s-3acc48c7-bd77-404e-b571-0f2fc9875701 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3acc48c7-bd77-404e-b571-0f2fc9875701 {
  
}
}@media (max-width: 767px){#s-3acc48c7-bd77-404e-b571-0f2fc9875701 {
  
}
}







#s-3acc48c7-bd77-404e-b571-0f2fc9875701 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3acc48c7-bd77-404e-b571-0f2fc9875701.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-082e73c8-e1ef-45ba-a44a-88147f6f5d2d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-082e73c8-e1ef-45ba-a44a-88147f6f5d2d .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-a0fd1090-9a0c-4327-b03d-0fde5032455c {
  margin-bottom: 20px;
min-height: 50px;
max-width: 700px;
}








#s-a0fd1090-9a0c-4327-b03d-0fde5032455c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0fd1090-9a0c-4327-b03d-0fde5032455c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b5f89675-75fc-40b7-a4bb-f0d2db01c064 {
  margin-left: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-b5f89675-75fc-40b7-a4bb-f0d2db01c064"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b5f89675-75fc-40b7-a4bb-f0d2db01c064"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-b5f89675-75fc-40b7-a4bb-f0d2db01c064"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-b5f89675-75fc-40b7-a4bb-f0d2db01c064"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-ba7af21b-8721-414d-9daa-9c297e28f795 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-ba7af21b-8721-414d-9daa-9c297e28f795 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ba7af21b-8721-414d-9daa-9c297e28f795.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-c213bf16-68d1-4955-944d-426d37321753 {
  text-align: center;
}







  #s-c213bf16-68d1-4955-944d-426d37321753 img.shogun-image {
    

    
    
    
  }


#s-c213bf16-68d1-4955-944d-426d37321753 .shogun-image-content {
  
    align-items: center;
  
}

#s-9bba74ea-75a1-471c-bbcf-4e9b27fb748c {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-9bba74ea-75a1-471c-bbcf-4e9b27fb748c .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-c55d8a71-a4bc-4d80-aeab-2c0a28c38611 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-c55d8a71-a4bc-4d80-aeab-2c0a28c38611 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c55d8a71-a4bc-4d80-aeab-2c0a28c38611.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1d398878-a761-4e62-be7d-66bdc5f837e3 {
  text-align: center;
}







  #s-1d398878-a761-4e62-be7d-66bdc5f837e3 img.shogun-image {
    

    
    
    
  }


#s-1d398878-a761-4e62-be7d-66bdc5f837e3 .shogun-image-content {
  
    align-items: center;
  
}

#s-c5b88555-cb0f-4b52-ac7a-541115afa250 {
  text-align: center;
}

#s-c5b88555-cb0f-4b52-ac7a-541115afa250 .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-e63dfa3d-2f27-401c-a079-be313aeeb600 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-e63dfa3d-2f27-401c-a079-be313aeeb600 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e63dfa3d-2f27-401c-a079-be313aeeb600.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-6def4da2-ea90-4498-bc8b-a10dc23e9699 {
  text-align: center;
}







  #s-6def4da2-ea90-4498-bc8b-a10dc23e9699 img.shogun-image {
    

    
    
    
  }


#s-6def4da2-ea90-4498-bc8b-a10dc23e9699 .shogun-image-content {
  
    align-items: center;
  
}

#s-36a46f57-0201-40f3-956c-f2b63c229e76 {
  text-align: center;
}

#s-36a46f57-0201-40f3-956c-f2b63c229e76 .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 26px;
  line-height: 0.9em;
  
  
}



#s-06a5806d-c14d-4fcc-b2f5-66b3d6ad1cb4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-06a5806d-c14d-4fcc-b2f5-66b3d6ad1cb4 .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-e43bde0b-5290-4231-ac87-f00e827666f8 {
  margin-top: 40px;
margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 991px){#s-e43bde0b-5290-4231-ac87-f00e827666f8 {
  display: none;
}
#s-e43bde0b-5290-4231-ac87-f00e827666f8, #wrap-s-e43bde0b-5290-4231-ac87-f00e827666f8 { display:none !important; }}@media (max-width: 767px){#s-e43bde0b-5290-4231-ac87-f00e827666f8 {
  display: none;
}
#s-e43bde0b-5290-4231-ac87-f00e827666f8, #wrap-s-e43bde0b-5290-4231-ac87-f00e827666f8 { display:none !important; }}
@media (min-width: 0px) {
[id="s-e43bde0b-5290-4231-ac87-f00e827666f8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e43bde0b-5290-4231-ac87-f00e827666f8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-e43bde0b-5290-4231-ac87-f00e827666f8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e43bde0b-5290-4231-ac87-f00e827666f8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-e43bde0b-5290-4231-ac87-f00e827666f8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e43bde0b-5290-4231-ac87-f00e827666f8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-e43bde0b-5290-4231-ac87-f00e827666f8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-9f9973bb-266d-4abc-9bd1-1f11e8391b7c {
  margin-left: 50px;
margin-right: 50px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9f9973bb-266d-4abc-9bd1-1f11e8391b7c {
  
}
}@media (max-width: 767px){#s-9f9973bb-266d-4abc-9bd1-1f11e8391b7c {
  
}
}







#s-9f9973bb-266d-4abc-9bd1-1f11e8391b7c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9f9973bb-266d-4abc-9bd1-1f11e8391b7c.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-2f551be0-6415-4f14-ab8c-5445d7dae9b0"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-2f551be0-6415-4f14-ab8c-5445d7dae9b0"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-2f551be0-6415-4f14-ab8c-5445d7dae9b0"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-2f551be0-6415-4f14-ab8c-5445d7dae9b0"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

#s-e0777258-7bc5-48ae-8f6e-efedaa817625 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-e0777258-7bc5-48ae-8f6e-efedaa817625 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e0777258-7bc5-48ae-8f6e-efedaa817625.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-30057b44-b19c-4660-ade8-9e42dd0b456f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-30057b44-b19c-4660-ade8-9e42dd0b456f .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-e349a598-4b6e-4e19-a8ce-41b78958cf3f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-e349a598-4b6e-4e19-a8ce-41b78958cf3f .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-f1bd9d0c-70b0-41a4-aa4f-20fc09a0a270 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-f1bd9d0c-70b0-41a4-aa4f-20fc09a0a270 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f1bd9d0c-70b0-41a4-aa4f-20fc09a0a270.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9ec6096e-8333-4793-b90f-a50e31fde15f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-9ec6096e-8333-4793-b90f-a50e31fde15f .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-00f3c783-a8fc-41de-ac5a-9038a477f068 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-00f3c783-a8fc-41de-ac5a-9038a477f068 .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-43e62316-1899-48c0-995a-f5db969ebe88 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-43e62316-1899-48c0-995a-f5db969ebe88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43e62316-1899-48c0-995a-f5db969ebe88.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-32be4e83-f934-4dd8-aad4-9cb1203cc900 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-32be4e83-f934-4dd8-aad4-9cb1203cc900 .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-36174dcf-69d1-4ca7-be52-76074621e8c8 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-36174dcf-69d1-4ca7-be52-76074621e8c8 .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-ec1b766d-8913-409c-94ae-e5a7e0807334 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-ec1b766d-8913-409c-94ae-e5a7e0807334 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ec1b766d-8913-409c-94ae-e5a7e0807334.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-93ea06f6-130a-4a79-8037-7635ae9b56ba {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-93ea06f6-130a-4a79-8037-7635ae9b56ba .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-e95a5e4f-508e-4f6d-97db-d2179ec78005 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-e95a5e4f-508e-4f6d-97db-d2179ec78005 .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-2b8d2317-e333-41a3-8f98-d9b1597166b5 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-2b8d2317-e333-41a3-8f98-d9b1597166b5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2b8d2317-e333-41a3-8f98-d9b1597166b5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ef124a98-1727-443c-931d-198895bd395a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ef124a98-1727-443c-931d-198895bd395a .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  300 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-e914d3ef-3805-4a62-968d-7f0f0c45b543 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-e914d3ef-3805-4a62-968d-7f0f0c45b543 .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-f6648b50-e5cc-406e-a7ec-6aeb3b8e7e3d {
  min-height: 50px;
}








#s-f6648b50-e5cc-406e-a7ec-6aeb3b8e7e3d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f6648b50-e5cc-406e-a7ec-6aeb3b8e7e3d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7fcf41a8-957f-4770-a285-6038c7b5cf1d {
  text-align: center;
}







  #s-7fcf41a8-957f-4770-a285-6038c7b5cf1d img.shogun-image {
    

    
    
    
  }


#s-7fcf41a8-957f-4770-a285-6038c7b5cf1d .shogun-image-content {
  
    align-items: center;
  
}

#s-c636ac1d-a6a4-4bc8-9867-ef3c051e1346 {
  text-align: center;
}
@media (max-width: 767px){#s-c636ac1d-a6a4-4bc8-9867-ef3c051e1346 {
  display: none;
}
#s-c636ac1d-a6a4-4bc8-9867-ef3c051e1346, #wrap-s-c636ac1d-a6a4-4bc8-9867-ef3c051e1346 { display:none !important; }}






  #s-c636ac1d-a6a4-4bc8-9867-ef3c051e1346 img.shogun-image {
    

    
    
    
  }


#s-c636ac1d-a6a4-4bc8-9867-ef3c051e1346 .shogun-image-content {
  
    align-items: center;
  
}

#s-a68bcc27-f859-4fa0-b952-430b45e55442 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-a68bcc27-f859-4fa0-b952-430b45e55442 .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-bb756ad4-ea38-43c4-a28e-d764657dab53 {
  margin-bottom: 20px;
min-height: 50px;
max-width: 700px;
}








#s-bb756ad4-ea38-43c4-a28e-d764657dab53 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bb756ad4-ea38-43c4-a28e-d764657dab53.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-64452bc5-19cd-459a-93e6-07f533d6612f {
  margin-left: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-64452bc5-19cd-459a-93e6-07f533d6612f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-64452bc5-19cd-459a-93e6-07f533d6612f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-64452bc5-19cd-459a-93e6-07f533d6612f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-64452bc5-19cd-459a-93e6-07f533d6612f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-11410524-d0d3-4c35-96c6-60d184c541c5 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-11410524-d0d3-4c35-96c6-60d184c541c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-11410524-d0d3-4c35-96c6-60d184c541c5.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-4aa81984-0536-4f8f-a6f7-19fce06602e4 {
  text-align: center;
}







  #s-4aa81984-0536-4f8f-a6f7-19fce06602e4 img.shogun-image {
    

    
    
    
  }


#s-4aa81984-0536-4f8f-a6f7-19fce06602e4 .shogun-image-content {
  
    align-items: center;
  
}

#s-8e515546-d60b-42fb-8375-2f85cb7d5b9b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-8e515546-d60b-42fb-8375-2f85cb7d5b9b .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-16312d10-2e64-450f-82fa-cca5c4c218d0 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-16312d10-2e64-450f-82fa-cca5c4c218d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-16312d10-2e64-450f-82fa-cca5c4c218d0.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-16ce22e1-ebbd-461a-aec6-ea9a9f8aae34 {
  text-align: center;
}







  #s-16ce22e1-ebbd-461a-aec6-ea9a9f8aae34 img.shogun-image {
    

    
    
    
  }


#s-16ce22e1-ebbd-461a-aec6-ea9a9f8aae34 .shogun-image-content {
  
    align-items: center;
  
}

#s-22a02b01-f44a-4e7a-a899-7b5431e65b08 {
  text-align: center;
}

#s-22a02b01-f44a-4e7a-a899-7b5431e65b08 .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-02ca9dc0-b87c-4819-a3a8-a42cab3241ea {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-02ca9dc0-b87c-4819-a3a8-a42cab3241ea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-02ca9dc0-b87c-4819-a3a8-a42cab3241ea.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-b120dc7d-47d7-407d-86c8-880a9e4fb24d {
  text-align: center;
}







  #s-b120dc7d-47d7-407d-86c8-880a9e4fb24d img.shogun-image {
    

    
    
    
  }


#s-b120dc7d-47d7-407d-86c8-880a9e4fb24d .shogun-image-content {
  
    align-items: center;
  
}

#s-1e32bf2e-8a2e-4ac2-b0fb-b75ab12ea2dd {
  text-align: center;
}

#s-1e32bf2e-8a2e-4ac2-b0fb-b75ab12ea2dd .shogun-heading-component h1 {
  color: rgba(228, 155, 40, 1);
  font-weight:  normal ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 22px;
  line-height: 0.9em;
  
  
}



#s-765dcad5-7437-431d-a60e-e93da3a132d1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-765dcad5-7437-431d-a60e-e93da3a132d1 .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 30px;
  
  letter-spacing: 2px;
  text-align: left;
}



#s-d100d61d-e22b-4e2e-8b15-14769303a581 {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-d100d61d-e22b-4e2e-8b15-14769303a581 {
  margin-left: 0px;
margin-right: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d100d61d-e22b-4e2e-8b15-14769303a581 {
  margin-right: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d100d61d-e22b-4e2e-8b15-14769303a581 {
  
}
}@media (max-width: 767px){#s-d100d61d-e22b-4e2e-8b15-14769303a581 {
  padding-left: 50px;
padding-right: 50px;
}
}






  #s-d100d61d-e22b-4e2e-8b15-14769303a581 img.shogun-image {
    

    
    
    
  }


#s-d100d61d-e22b-4e2e-8b15-14769303a581 .shogun-image-content {
  
    align-items: center;
  
}

#s-7b743c00-601d-4fee-8c5a-276504adff53 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 40px;
padding-bottom: 0px;
padding-right: 40px;
min-height: 50px;
}








#s-7b743c00-601d-4fee-8c5a-276504adff53 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7b743c00-601d-4fee-8c5a-276504adff53.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1288a044-12b5-4998-9ae7-e2f305dfdaf2 {
  text-align: center;
}
@media (min-width: 1200px){#s-1288a044-12b5-4998-9ae7-e2f305dfdaf2 {
  display: none;
}
#s-1288a044-12b5-4998-9ae7-e2f305dfdaf2, #wrap-s-1288a044-12b5-4998-9ae7-e2f305dfdaf2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1288a044-12b5-4998-9ae7-e2f305dfdaf2 {
  display: none;
}
#s-1288a044-12b5-4998-9ae7-e2f305dfdaf2, #wrap-s-1288a044-12b5-4998-9ae7-e2f305dfdaf2 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1288a044-12b5-4998-9ae7-e2f305dfdaf2 {
  display: none;
}
#s-1288a044-12b5-4998-9ae7-e2f305dfdaf2, #wrap-s-1288a044-12b5-4998-9ae7-e2f305dfdaf2 { display:none !important; }}






  #s-1288a044-12b5-4998-9ae7-e2f305dfdaf2 img.shogun-image {
    

    
    
    
  }


#s-1288a044-12b5-4998-9ae7-e2f305dfdaf2 .shogun-image-content {
  
    align-items: center;
  
}

#s-e06a6a51-d0a4-4295-a9e6-8dd5f46e4a57 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-e06a6a51-d0a4-4295-a9e6-8dd5f46e4a57 {
  display: none;
}
#s-e06a6a51-d0a4-4295-a9e6-8dd5f46e4a57, #wrap-s-e06a6a51-d0a4-4295-a9e6-8dd5f46e4a57 { display:none !important; }}






  #s-e06a6a51-d0a4-4295-a9e6-8dd5f46e4a57 img.shogun-image {
    

    
    
    
  }


#s-e06a6a51-d0a4-4295-a9e6-8dd5f46e4a57 .shogun-image-content {
  
    align-items: center;
  
}

#s-e6f61831-7456-4945-86d4-512b5e88c94a {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-e6f61831-7456-4945-86d4-512b5e88c94a {
  margin-bottom: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e6f61831-7456-4945-86d4-512b5e88c94a {
  margin-top: 15px;
margin-bottom: 15px;
}
}@media (max-width: 767px){#s-e6f61831-7456-4945-86d4-512b5e88c94a {
  margin-left: 25px;
margin-right: 25px;
padding-top: 20px;
padding-bottom: 20px;
}
}
#s-e6f61831-7456-4945-86d4-512b5e88c94a .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  
  
  letter-spacing: 1px;
  text-align: center;
}


@media (min-width: 1200px){#s-e6f61831-7456-4945-86d4-512b5e88c94a .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 40px;
  
  letter-spacing: 1px;
  text-align: center;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-e6f61831-7456-4945-86d4-512b5e88c94a .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  letter-spacing: 1px;
  text-align: center;
}


}@media (max-width: 767px){#s-e6f61831-7456-4945-86d4-512b5e88c94a .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  letter-spacing: 1px;
  text-align: center;
}


}
#s-76127b87-bb60-484b-a388-a41dc5e27ed2 {
  margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
max-width: 1000px;
}
@media (min-width: 768px) and (max-width: 991px){#s-76127b87-bb60-484b-a388-a41dc5e27ed2 {
  
}
}@media (max-width: 767px){#s-76127b87-bb60-484b-a388-a41dc5e27ed2 {
  
}
}
@media (min-width: 0px) {
[id="s-76127b87-bb60-484b-a388-a41dc5e27ed2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-76127b87-bb60-484b-a388-a41dc5e27ed2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-76127b87-bb60-484b-a388-a41dc5e27ed2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-76127b87-bb60-484b-a388-a41dc5e27ed2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-0f154da6-6ba4-474a-99c2-a2576fee18b3 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-0f154da6-6ba4-474a-99c2-a2576fee18b3 {
  
}
}@media (max-width: 767px){#s-0f154da6-6ba4-474a-99c2-a2576fee18b3 {
  
}
}






  #s-0f154da6-6ba4-474a-99c2-a2576fee18b3 img.shogun-image {
    

    
    
    
  }


#s-0f154da6-6ba4-474a-99c2-a2576fee18b3 .shogun-image-content {
  
    align-items: center;
  
}

#s-f827d9ed-b5c0-47dd-80bf-cc95616365e5 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-f827d9ed-b5c0-47dd-80bf-cc95616365e5 {
  
}
}@media (max-width: 767px){#s-f827d9ed-b5c0-47dd-80bf-cc95616365e5 {
  
}
}






  #s-f827d9ed-b5c0-47dd-80bf-cc95616365e5 img.shogun-image {
    

    
    
    
  }


#s-f827d9ed-b5c0-47dd-80bf-cc95616365e5 .shogun-image-content {
  
    align-items: center;
  
}

#s-89f3bb4f-28ed-4274-bbdb-5dde22281450 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-89f3bb4f-28ed-4274-bbdb-5dde22281450 {
  
}
}@media (max-width: 767px){#s-89f3bb4f-28ed-4274-bbdb-5dde22281450 {
  
}
}






  #s-89f3bb4f-28ed-4274-bbdb-5dde22281450 img.shogun-image {
    

    
    
    
  }


#s-89f3bb4f-28ed-4274-bbdb-5dde22281450 .shogun-image-content {
  
    align-items: center;
  
}

#s-32aad38b-0dc4-47c6-b394-5cd1cf1071b9 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-32aad38b-0dc4-47c6-b394-5cd1cf1071b9 {
  
}
}@media (max-width: 767px){#s-32aad38b-0dc4-47c6-b394-5cd1cf1071b9 {
  
}
}






  #s-32aad38b-0dc4-47c6-b394-5cd1cf1071b9 img.shogun-image {
    

    
    
    
  }


#s-32aad38b-0dc4-47c6-b394-5cd1cf1071b9 .shogun-image-content {
  
    align-items: center;
  
}

#s-38215fc7-47e7-4f01-af73-e2712f905ae0 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 40px;
padding-right: 40px;
min-height: 50px;
}








#s-38215fc7-47e7-4f01-af73-e2712f905ae0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-38215fc7-47e7-4f01-af73-e2712f905ae0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-74e4bbc5-52ee-4870-afcd-467d3f328a2a {
  text-align: center;
}
@media (min-width: 1200px){#s-74e4bbc5-52ee-4870-afcd-467d3f328a2a {
  display: none;
}
#s-74e4bbc5-52ee-4870-afcd-467d3f328a2a, #wrap-s-74e4bbc5-52ee-4870-afcd-467d3f328a2a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-74e4bbc5-52ee-4870-afcd-467d3f328a2a {
  display: none;
}
#s-74e4bbc5-52ee-4870-afcd-467d3f328a2a, #wrap-s-74e4bbc5-52ee-4870-afcd-467d3f328a2a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-74e4bbc5-52ee-4870-afcd-467d3f328a2a {
  display: none;
}
#s-74e4bbc5-52ee-4870-afcd-467d3f328a2a, #wrap-s-74e4bbc5-52ee-4870-afcd-467d3f328a2a { display:none !important; }}






  #s-74e4bbc5-52ee-4870-afcd-467d3f328a2a img.shogun-image {
    

    
    
    
  }


#s-74e4bbc5-52ee-4870-afcd-467d3f328a2a .shogun-image-content {
  
    align-items: center;
  
}

#s-6d63bcf9-7630-4eb0-9cbb-bec92e00c73e {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
@media (max-width: 767px){#s-6d63bcf9-7630-4eb0-9cbb-bec92e00c73e {
  display: none;
}
#s-6d63bcf9-7630-4eb0-9cbb-bec92e00c73e, #wrap-s-6d63bcf9-7630-4eb0-9cbb-bec92e00c73e { display:none !important; }}






  #s-6d63bcf9-7630-4eb0-9cbb-bec92e00c73e img.shogun-image {
    

    
    
    
  }


#s-6d63bcf9-7630-4eb0-9cbb-bec92e00c73e .shogun-image-content {
  
    align-items: center;
  
}

#s-5b99fba5-4201-4f55-9a31-aaf5510da036 {
  padding-top: 20px;
padding-left: 150px;
padding-bottom: 20px;
padding-right: 150px;
text-align: center;
}
@media (max-width: 767px){#s-5b99fba5-4201-4f55-9a31-aaf5510da036 {
  padding-left: 0px;
padding-right: 0px;
}
}
#s-5b99fba5-4201-4f55-9a31-aaf5510da036 .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  
  
  letter-spacing: 1px;
  text-align: center;
}


@media (min-width: 1200px){#s-5b99fba5-4201-4f55-9a31-aaf5510da036 .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 40px;
  
  letter-spacing: 1px;
  text-align: center;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-5b99fba5-4201-4f55-9a31-aaf5510da036 .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  letter-spacing: 1px;
  text-align: center;
}


}@media (max-width: 767px){#s-5b99fba5-4201-4f55-9a31-aaf5510da036 .shogun-heading-component h1 {
  color: rgba(203, 90, 53, 1);
  font-weight:  900 ;
  font-family: "Londrina Solid";
  font-style:  normal ;
  font-size: 36px;
  
  letter-spacing: 1px;
  text-align: center;
}


}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

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

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

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

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