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

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

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

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

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

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

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

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

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

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

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

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

#s-4172d947-11bd-422a-aa5c-a2215ea5e45b {
  min-height: 50px;
background-color: rgba(249, 249, 244, 0);
}
@media (max-width: 767px){#s-4172d947-11bd-422a-aa5c-a2215ea5e45b {
  display: none;
}
#s-4172d947-11bd-422a-aa5c-a2215ea5e45b, #wrap-s-4172d947-11bd-422a-aa5c-a2215ea5e45b, #wrap-content-s-4172d947-11bd-422a-aa5c-a2215ea5e45b { display: none !important; }}







#s-4172d947-11bd-422a-aa5c-a2215ea5e45b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4172d947-11bd-422a-aa5c-a2215ea5e45b.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;
}

/* 
  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-8b557c7f-e2f1-4ba1-9231-cb6086643009 {
  margin-left: 0%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-8b557c7f-e2f1-4ba1-9231-cb6086643009"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8b557c7f-e2f1-4ba1-9231-cb6086643009"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-8b557c7f-e2f1-4ba1-9231-cb6086643009"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-8b557c7f-e2f1-4ba1-9231-cb6086643009"] > .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;
  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-8aaa8b2c-83bf-433a-a15c-123c8f223567 {
  text-align: center;
}

#s-8aaa8b2c-83bf-433a-a15c-123c8f223567 {
  overflow: hidden;
  
  
}







  #s-8aaa8b2c-83bf-433a-a15c-123c8f223567 img.shogun-image {
    

    
    
    
  }


#s-8aaa8b2c-83bf-433a-a15c-123c8f223567 .shogun-image-content {
  
    justify-content: center;
  
}

#s-8a855712-b850-4191-abed-c5f15652abd1 {
  min-height: 50px;
}








#s-8a855712-b850-4191-abed-c5f15652abd1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8a855712-b850-4191-abed-c5f15652abd1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.shg-default-text-content p {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: rgba(0, 0, 0, 1);
  font-family: "Assistant, sans-serif";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-42b87194-950d-4b17-88ea-e9d6008e0b46 {
  padding-left: 8%;
padding-right: 8%;
}

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

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

#s-1566c989-b7f7-48dc-9081-3ae1dccb942a {
  text-align: center;
}
@media (max-width: 767px){#s-1566c989-b7f7-48dc-9081-3ae1dccb942a {
  display: none;
}
#s-1566c989-b7f7-48dc-9081-3ae1dccb942a, #wrap-s-1566c989-b7f7-48dc-9081-3ae1dccb942a, #wrap-content-s-1566c989-b7f7-48dc-9081-3ae1dccb942a { display: none !important; }}
#s-1566c989-b7f7-48dc-9081-3ae1dccb942a .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-77decfd0-6480-4ad6-aa9e-ab9ec86c488c {
  text-align: center;
}

#s-77decfd0-6480-4ad6-aa9e-ab9ec86c488c {
  overflow: hidden;
  
  
}







  #s-77decfd0-6480-4ad6-aa9e-ab9ec86c488c img.shogun-image {
    

    
    
    
  }


#s-77decfd0-6480-4ad6-aa9e-ab9ec86c488c .shogun-image-content {
  
    justify-content: center;
  
}

#s-3d0bf061-1b5a-4419-9baf-53404cb6d2ea {
  min-height: 50px;
}








#s-3d0bf061-1b5a-4419-9baf-53404cb6d2ea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3d0bf061-1b5a-4419-9baf-53404cb6d2ea.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-48a49e57-bad9-4ba5-ae7a-e0f1e1f5fda6 {
  padding-left: 8%;
padding-right: 8%;
}

#s-f34d82d7-1e3e-4dde-860d-2f567b5d846a {
  text-align: center;
}
@media (max-width: 767px){#s-f34d82d7-1e3e-4dde-860d-2f567b5d846a {
  display: none;
}
#s-f34d82d7-1e3e-4dde-860d-2f567b5d846a, #wrap-s-f34d82d7-1e3e-4dde-860d-2f567b5d846a, #wrap-content-s-f34d82d7-1e3e-4dde-860d-2f567b5d846a { display: none !important; }}
#s-f34d82d7-1e3e-4dde-860d-2f567b5d846a .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-cde9e87d-55c7-464d-a321-0f697ebadffe {
  text-align: center;
}

#s-cde9e87d-55c7-464d-a321-0f697ebadffe {
  overflow: hidden;
  
  
}







  #s-cde9e87d-55c7-464d-a321-0f697ebadffe img.shogun-image {
    

    
    
    
  }


#s-cde9e87d-55c7-464d-a321-0f697ebadffe .shogun-image-content {
  
    justify-content: center;
  
}

#s-9b6ea6e8-18cd-4707-a93e-8ed1c7f5c72a {
  min-height: 50px;
}








#s-9b6ea6e8-18cd-4707-a93e-8ed1c7f5c72a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9b6ea6e8-18cd-4707-a93e-8ed1c7f5c72a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-96ef3527-375b-46fd-8e33-28defef61fc8 {
  padding-left: 8%;
padding-right: 8%;
}

#s-a8961316-c44e-4432-846f-1557ee8b4b05 {
  text-align: center;
}
@media (max-width: 767px){#s-a8961316-c44e-4432-846f-1557ee8b4b05 {
  display: none;
}
#s-a8961316-c44e-4432-846f-1557ee8b4b05, #wrap-s-a8961316-c44e-4432-846f-1557ee8b4b05, #wrap-content-s-a8961316-c44e-4432-846f-1557ee8b4b05 { display: none !important; }}
#s-a8961316-c44e-4432-846f-1557ee8b4b05 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


#s-a8961316-c44e-4432-846f-1557ee8b4b05 .shogun-heading-component h3 a {
  color: #000;
}


#s-d2b1b3cc-d74d-4f70-96f7-5d7074a50419 {
  background-attachment: fixed;
min-height: 50px;
background-color: rgba(249, 249, 244, 0);
}
@media (min-width: 1200px){#s-d2b1b3cc-d74d-4f70-96f7-5d7074a50419 {
  display: none;
}
#s-d2b1b3cc-d74d-4f70-96f7-5d7074a50419, #wrap-s-d2b1b3cc-d74d-4f70-96f7-5d7074a50419, #wrap-content-s-d2b1b3cc-d74d-4f70-96f7-5d7074a50419 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d2b1b3cc-d74d-4f70-96f7-5d7074a50419 {
  display: none;
}
#s-d2b1b3cc-d74d-4f70-96f7-5d7074a50419, #wrap-s-d2b1b3cc-d74d-4f70-96f7-5d7074a50419, #wrap-content-s-d2b1b3cc-d74d-4f70-96f7-5d7074a50419 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d2b1b3cc-d74d-4f70-96f7-5d7074a50419 {
  display: none;
}
#s-d2b1b3cc-d74d-4f70-96f7-5d7074a50419, #wrap-s-d2b1b3cc-d74d-4f70-96f7-5d7074a50419, #wrap-content-s-d2b1b3cc-d74d-4f70-96f7-5d7074a50419 { display: none !important; }}







#s-d2b1b3cc-d74d-4f70-96f7-5d7074a50419 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d2b1b3cc-d74d-4f70-96f7-5d7074a50419.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6ee31fda-ed7e-42ec-a25c-18bae1cd4944 {
  margin-bottom: -10px;
background-color: rgba(244, 244, 242, 0);
}
@media (max-width: 767px){#s-6ee31fda-ed7e-42ec-a25c-18bae1cd4944 {
  display: none;
}
#s-6ee31fda-ed7e-42ec-a25c-18bae1cd4944, #wrap-s-6ee31fda-ed7e-42ec-a25c-18bae1cd4944, #wrap-content-s-6ee31fda-ed7e-42ec-a25c-18bae1cd4944 { display: none !important; }}
@media (min-width: 0px) {
[id="s-6ee31fda-ed7e-42ec-a25c-18bae1cd4944"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-6ee31fda-ed7e-42ec-a25c-18bae1cd4944"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6ee31fda-ed7e-42ec-a25c-18bae1cd4944"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6ee31fda-ed7e-42ec-a25c-18bae1cd4944"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-73a7b61e-ac17-4eac-9b04-4f956e942870 {
  text-align: center;
}
@media (max-width: 767px){#s-73a7b61e-ac17-4eac-9b04-4f956e942870 {
  display: none;
}
#s-73a7b61e-ac17-4eac-9b04-4f956e942870, #wrap-s-73a7b61e-ac17-4eac-9b04-4f956e942870, #wrap-content-s-73a7b61e-ac17-4eac-9b04-4f956e942870 { display: none !important; }}
#s-73a7b61e-ac17-4eac-9b04-4f956e942870 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-72af26c8-7bda-4d8f-ada4-f00f60fc37f4 {
  text-align: center;
}
@media (max-width: 767px){#s-72af26c8-7bda-4d8f-ada4-f00f60fc37f4 {
  display: none;
}
#s-72af26c8-7bda-4d8f-ada4-f00f60fc37f4, #wrap-s-72af26c8-7bda-4d8f-ada4-f00f60fc37f4, #wrap-content-s-72af26c8-7bda-4d8f-ada4-f00f60fc37f4 { display: none !important; }}
#s-72af26c8-7bda-4d8f-ada4-f00f60fc37f4 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-72af26c8-7bda-4d8f-ada4-f00f60fc37f4 .shogun-heading-component h2 a {
  color: #000;
}


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

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

#s-2a503f9a-f6d4-48dc-8566-64bcd6dfd243 {
  margin-left: 7%;
margin-right: 7%;
}

#s-2a503f9a-f6d4-48dc-8566-64bcd6dfd243 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-d6b11bf0-78c7-4fe7-b431-907d4cf4631a {
  background-color: rgba(244, 244, 242, 0);
}

@media (min-width: 0px) {
[id="s-d6b11bf0-78c7-4fe7-b431-907d4cf4631a"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-d6b11bf0-78c7-4fe7-b431-907d4cf4631a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d6b11bf0-78c7-4fe7-b431-907d4cf4631a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d6b11bf0-78c7-4fe7-b431-907d4cf4631a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-097d162d-2e91-4fbb-b438-194551b55ab3 {
  text-align: center;
}

#s-097d162d-2e91-4fbb-b438-194551b55ab3 {
  overflow: hidden;
  
  
}







  #s-097d162d-2e91-4fbb-b438-194551b55ab3 img.shogun-image {
    

    
    
    
  }


#s-097d162d-2e91-4fbb-b438-194551b55ab3 .shogun-image-content {
  
    justify-content: center;
  
}

#s-cd6cda73-41c0-47fe-89c4-ca9620cebd31 {
  text-align: center;
}

#s-cd6cda73-41c0-47fe-89c4-ca9620cebd31 {
  overflow: hidden;
  
  
}







  #s-cd6cda73-41c0-47fe-89c4-ca9620cebd31 img.shogun-image {
    

    
    
    
  }


#s-cd6cda73-41c0-47fe-89c4-ca9620cebd31 .shogun-image-content {
  
    justify-content: center;
  
}

#s-dd951153-4935-48b6-b23e-0b5418b47635 {
  text-align: center;
}
@media (max-width: 767px){#s-dd951153-4935-48b6-b23e-0b5418b47635 {
  display: none;
}
#s-dd951153-4935-48b6-b23e-0b5418b47635, #wrap-s-dd951153-4935-48b6-b23e-0b5418b47635, #wrap-content-s-dd951153-4935-48b6-b23e-0b5418b47635 { display: none !important; }}
#s-dd951153-4935-48b6-b23e-0b5418b47635 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-001a70f7-5c4b-4a94-9ef9-8cd13e044a13 {
  text-align: center;
}

#s-001a70f7-5c4b-4a94-9ef9-8cd13e044a13 {
  overflow: hidden;
  
  
}







  #s-001a70f7-5c4b-4a94-9ef9-8cd13e044a13 img.shogun-image {
    

    
    
    
  }


#s-001a70f7-5c4b-4a94-9ef9-8cd13e044a13 .shogun-image-content {
  
    justify-content: center;
  
}

#s-13451cb6-cbfd-447c-878e-e5da624a90c5 {
  text-align: center;
}
@media (max-width: 767px){#s-13451cb6-cbfd-447c-878e-e5da624a90c5 {
  display: none;
}
#s-13451cb6-cbfd-447c-878e-e5da624a90c5, #wrap-s-13451cb6-cbfd-447c-878e-e5da624a90c5, #wrap-content-s-13451cb6-cbfd-447c-878e-e5da624a90c5 { display: none !important; }}
#s-13451cb6-cbfd-447c-878e-e5da624a90c5 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-13451cb6-cbfd-447c-878e-e5da624a90c5 .shogun-heading-component h2 a {
  color: #000;
}


#s-d7dab520-480e-47a1-b69b-020aa109a85a {
  padding-bottom: 20px;
background-color: rgba(244, 244, 242, 0);
}

@media (min-width: 0px) {
[id="s-d7dab520-480e-47a1-b69b-020aa109a85a"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 768px) {
[id="s-d7dab520-480e-47a1-b69b-020aa109a85a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-d7dab520-480e-47a1-b69b-020aa109a85a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-d7dab520-480e-47a1-b69b-020aa109a85a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-3cfaaae0-cca4-4690-8029-498d5b51bc90 {
  min-height: 50px;
}








#s-3cfaaae0-cca4-4690-8029-498d5b51bc90 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3cfaaae0-cca4-4690-8029-498d5b51bc90.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9184c258-e53f-4299-a5ba-925db4405469 {
  padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-9184c258-e53f-4299-a5ba-925db4405469 {
  display: none;
}
#s-9184c258-e53f-4299-a5ba-925db4405469, #wrap-s-9184c258-e53f-4299-a5ba-925db4405469, #wrap-content-s-9184c258-e53f-4299-a5ba-925db4405469 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9184c258-e53f-4299-a5ba-925db4405469 {
  display: none;
}
#s-9184c258-e53f-4299-a5ba-925db4405469, #wrap-s-9184c258-e53f-4299-a5ba-925db4405469, #wrap-content-s-9184c258-e53f-4299-a5ba-925db4405469 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9184c258-e53f-4299-a5ba-925db4405469 {
  display: none;
}
#s-9184c258-e53f-4299-a5ba-925db4405469, #wrap-s-9184c258-e53f-4299-a5ba-925db4405469, #wrap-content-s-9184c258-e53f-4299-a5ba-925db4405469 { display: none !important; }}
#s-9184c258-e53f-4299-a5ba-925db4405469 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  
  
  text-align: center;
}



#s-af97b213-a3b1-41ff-9349-0cb490a8901a {
  min-height: 50px;
}








#s-af97b213-a3b1-41ff-9349-0cb490a8901a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-af97b213-a3b1-41ff-9349-0cb490a8901a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2d05fa93-86f2-4d6f-95f0-a686b26a7bb9 {
  padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-2d05fa93-86f2-4d6f-95f0-a686b26a7bb9 {
  display: none;
}
#s-2d05fa93-86f2-4d6f-95f0-a686b26a7bb9, #wrap-s-2d05fa93-86f2-4d6f-95f0-a686b26a7bb9, #wrap-content-s-2d05fa93-86f2-4d6f-95f0-a686b26a7bb9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2d05fa93-86f2-4d6f-95f0-a686b26a7bb9 {
  display: none;
}
#s-2d05fa93-86f2-4d6f-95f0-a686b26a7bb9, #wrap-s-2d05fa93-86f2-4d6f-95f0-a686b26a7bb9, #wrap-content-s-2d05fa93-86f2-4d6f-95f0-a686b26a7bb9 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2d05fa93-86f2-4d6f-95f0-a686b26a7bb9 {
  display: none;
}
#s-2d05fa93-86f2-4d6f-95f0-a686b26a7bb9, #wrap-s-2d05fa93-86f2-4d6f-95f0-a686b26a7bb9, #wrap-content-s-2d05fa93-86f2-4d6f-95f0-a686b26a7bb9 { display: none !important; }}
#s-2d05fa93-86f2-4d6f-95f0-a686b26a7bb9 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-fe8ce822-ecae-465c-8d98-ba9c4ed26804 {
  text-align: center;
}
@media (max-width: 767px){#s-fe8ce822-ecae-465c-8d98-ba9c4ed26804 {
  display: none;
}
#s-fe8ce822-ecae-465c-8d98-ba9c4ed26804, #wrap-s-fe8ce822-ecae-465c-8d98-ba9c4ed26804, #wrap-content-s-fe8ce822-ecae-465c-8d98-ba9c4ed26804 { display: none !important; }}
#s-fe8ce822-ecae-465c-8d98-ba9c4ed26804 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-5f5e5a54-2852-49a9-b132-b304071687e6 {
  min-height: 50px;
}








#s-5f5e5a54-2852-49a9-b132-b304071687e6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5f5e5a54-2852-49a9-b132-b304071687e6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-70137756-aa9a-4065-b37b-d6fdeca648a2 {
  padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-70137756-aa9a-4065-b37b-d6fdeca648a2 {
  display: none;
}
#s-70137756-aa9a-4065-b37b-d6fdeca648a2, #wrap-s-70137756-aa9a-4065-b37b-d6fdeca648a2, #wrap-content-s-70137756-aa9a-4065-b37b-d6fdeca648a2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-70137756-aa9a-4065-b37b-d6fdeca648a2 {
  display: none;
}
#s-70137756-aa9a-4065-b37b-d6fdeca648a2, #wrap-s-70137756-aa9a-4065-b37b-d6fdeca648a2, #wrap-content-s-70137756-aa9a-4065-b37b-d6fdeca648a2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-70137756-aa9a-4065-b37b-d6fdeca648a2 {
  display: none;
}
#s-70137756-aa9a-4065-b37b-d6fdeca648a2, #wrap-s-70137756-aa9a-4065-b37b-d6fdeca648a2, #wrap-content-s-70137756-aa9a-4065-b37b-d6fdeca648a2 { display: none !important; }}
#s-70137756-aa9a-4065-b37b-d6fdeca648a2 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-7c894d1f-e34a-4c1f-bf55-9c7f33d0c546 {
  text-align: center;
}
@media (max-width: 767px){#s-7c894d1f-e34a-4c1f-bf55-9c7f33d0c546 {
  display: none;
}
#s-7c894d1f-e34a-4c1f-bf55-9c7f33d0c546, #wrap-s-7c894d1f-e34a-4c1f-bf55-9c7f33d0c546, #wrap-content-s-7c894d1f-e34a-4c1f-bf55-9c7f33d0c546 { display: none !important; }}
#s-7c894d1f-e34a-4c1f-bf55-9c7f33d0c546 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-7c894d1f-e34a-4c1f-bf55-9c7f33d0c546 .shogun-heading-component h2 a {
  color: #000;
}


#s-745507f6-afca-477d-9483-b9f23c77dc46 {
  min-height: 50px;
background-color: rgba(249, 249, 244, 0);
}








#s-745507f6-afca-477d-9483-b9f23c77dc46 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-745507f6-afca-477d-9483-b9f23c77dc46.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-33dd7b7a-863d-4cfe-b23b-64703e8e87df {
  margin-top: 50px;
margin-left: 5%;
margin-bottom: 50px;
margin-right: 5%;
background-color: rgba(249, 249, 244, 0);
}
@media (max-width: 767px){#s-33dd7b7a-863d-4cfe-b23b-64703e8e87df {
  display: none;
}
#s-33dd7b7a-863d-4cfe-b23b-64703e8e87df, #wrap-s-33dd7b7a-863d-4cfe-b23b-64703e8e87df, #wrap-content-s-33dd7b7a-863d-4cfe-b23b-64703e8e87df { display: none !important; }}
@media (min-width: 0px) {
[id="s-33dd7b7a-863d-4cfe-b23b-64703e8e87df"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-33dd7b7a-863d-4cfe-b23b-64703e8e87df"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-33dd7b7a-863d-4cfe-b23b-64703e8e87df"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-33dd7b7a-863d-4cfe-b23b-64703e8e87df"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-e3efda95-08d4-4462-810c-3d5501a67fef {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-e3efda95-08d4-4462-810c-3d5501a67fef .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-381f2c65-0f24-4bd2-80bb-2e191fa82420 {
  min-height: 50px;
background-color: rgba(249, 249, 244, 0);
}








#s-381f2c65-0f24-4bd2-80bb-2e191fa82420 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-381f2c65-0f24-4bd2-80bb-2e191fa82420.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-041daa56-5d3e-4945-ba40-e79ff8bebdc8 {
  min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}








#s-041daa56-5d3e-4945-ba40-e79ff8bebdc8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-041daa56-5d3e-4945-ba40-e79ff8bebdc8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-07c462c2-6d07-41e5-a57a-a624a43c65f5 {
  min-height: 100px;
background-color: rgba(244, 244, 242, 0);
}








#s-07c462c2-6d07-41e5-a57a-a624a43c65f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-07c462c2-6d07-41e5-a57a-a624a43c65f5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1c2d6f6b-2a4d-4410-b7ae-1de87763c549 {
  margin-left: 7%;
margin-right: 7%;
}

#s-1c2d6f6b-2a4d-4410-b7ae-1de87763c549 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-27236c2f-3d28-48e2-a089-e07148303b2b {
  min-height: 50px;
background-color: rgba(244, 244, 242, 0);
}








#s-27236c2f-3d28-48e2-a089-e07148303b2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-27236c2f-3d28-48e2-a089-e07148303b2b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-450639ed-8298-452c-822f-804af4f3dcda {
  background-color: rgba(0, 0, 0, 0);
}

@media (min-width: 0px) {
[id="s-450639ed-8298-452c-822f-804af4f3dcda"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-450639ed-8298-452c-822f-804af4f3dcda"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-450639ed-8298-452c-822f-804af4f3dcda"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-450639ed-8298-452c-822f-804af4f3dcda"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-7f9fb81e-fb75-466c-86f4-d7ecfe56c43e {
  margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-7f9fb81e-fb75-466c-86f4-d7ecfe56c43e {
  overflow: hidden;
  
  
      max-width: 100px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}







  #s-7f9fb81e-fb75-466c-86f4-d7ecfe56c43e img.shogun-image {
    

    
    
    
  }


#s-7f9fb81e-fb75-466c-86f4-d7ecfe56c43e .shogun-image-content {
  
    justify-content: center;
  
}

#s-285affcc-66bd-421a-8aca-7cdd83b9a16e {
  margin-left: 90px;
margin-right: 90px;
}

@media (min-width: 0px) {
[id="s-285affcc-66bd-421a-8aca-7cdd83b9a16e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 768px) {
[id="s-285affcc-66bd-421a-8aca-7cdd83b9a16e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 992px) {
[id="s-285affcc-66bd-421a-8aca-7cdd83b9a16e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 1200px) {
[id="s-285affcc-66bd-421a-8aca-7cdd83b9a16e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.0px);
}

}

#s-238b1004-a1eb-49e4-8f73-1e39f06c8061 {
  text-align: center;
}

#s-238b1004-a1eb-49e4-8f73-1e39f06c8061 {
  overflow: hidden;
  
  
}







  #s-238b1004-a1eb-49e4-8f73-1e39f06c8061 img.shogun-image {
    

    
    
    
  }


#s-238b1004-a1eb-49e4-8f73-1e39f06c8061 .shogun-image-content {
  
    justify-content: center;
  
}

#s-1e070100-4261-410b-8541-8bc62e981b83 {
  padding-left: 0%;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-1e070100-4261-410b-8541-8bc62e981b83"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1e070100-4261-410b-8541-8bc62e981b83"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1e070100-4261-410b-8541-8bc62e981b83"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1e070100-4261-410b-8541-8bc62e981b83"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-7e0f72ea-77e7-46fd-ba2b-40d16425bf83 {
  padding-left: 8%;
padding-right: 8%;
}

#s-fe1b1148-fea7-48bd-8430-a525048867c5 {
  margin-top: 20px;
margin-left: 7%;
margin-right: 7%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-fe1b1148-fea7-48bd-8430-a525048867c5 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 48px;
  
  
  text-align: left;
}



#s-f3185fe6-9db2-4d05-b8cd-7fe39cf9f79d {
  padding-top: 5%;
padding-left: 7%;
padding-bottom: 5%;
padding-right: 7%;
}

#s-7272e686-811b-4b72-b078-70526ffd5652 {
  margin-left: 4%;
min-height: 50px;
}
@media (max-width: 767px){#s-7272e686-811b-4b72-b078-70526ffd5652 {
  display: none;
}
#s-7272e686-811b-4b72-b078-70526ffd5652, #wrap-s-7272e686-811b-4b72-b078-70526ffd5652, #wrap-content-s-7272e686-811b-4b72-b078-70526ffd5652 { display: none !important; }}







#s-7272e686-811b-4b72-b078-70526ffd5652 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7272e686-811b-4b72-b078-70526ffd5652.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e87dc143-4bbb-4c78-878e-6fd2107e6ecc {
  margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-e87dc143-4bbb-4c78-878e-6fd2107e6ecc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e87dc143-4bbb-4c78-878e-6fd2107e6ecc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e87dc143-4bbb-4c78-878e-6fd2107e6ecc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e87dc143-4bbb-4c78-878e-6fd2107e6ecc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

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

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

.shg-btn-text {
  font-weight: normal;
  font-family: "Assistant, sans-serif";
}

.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-36817c97-d9de-4fb5-8780-74131a4cb9fe {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
background-color: rgba(37, 37, 37, 0);
hover-type: color;
text-align: left;
}
#s-36817c97-d9de-4fb5-8780-74131a4cb9fe:hover {text-decoration: none !important;
background-image: none !important;
background-color: rgba(0, 0, 0, 1) !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-36817c97-d9de-4fb5-8780-74131a4cb9fe:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-36817c97-d9de-4fb5-8780-74131a4cb9fe-root {
    text-align: left;
  }


#s-36817c97-d9de-4fb5-8780-74131a4cb9fe.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-36817c97-d9de-4fb5-8780-74131a4cb9fe-root {
    text-align: left;
  }


#s-36817c97-d9de-4fb5-8780-74131a4cb9fe.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-36817c97-d9de-4fb5-8780-74131a4cb9fe-root {
    text-align: left;
  }


#s-36817c97-d9de-4fb5-8780-74131a4cb9fe.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-36817c97-d9de-4fb5-8780-74131a4cb9fe-root {
    text-align: left;
  }


#s-36817c97-d9de-4fb5-8780-74131a4cb9fe.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-36817c97-d9de-4fb5-8780-74131a4cb9fe-root {
    text-align: left;
  }


#s-36817c97-d9de-4fb5-8780-74131a4cb9fe.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
#s-df5ea421-0b82-48c0-aba8-90f8bed1b011 {
  border-style: solid;
padding-top: 10px;
padding-left: 26px;
padding-bottom: 10px;
padding-right: 26px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
background-color: rgba(37, 37, 37, 0);
hover-type: color;
text-align: left;
}
#s-df5ea421-0b82-48c0-aba8-90f8bed1b011:hover {text-decoration: none !important;
background-image: none !important;
background-color: rgba(0, 0, 0, 1) !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-df5ea421-0b82-48c0-aba8-90f8bed1b011:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-df5ea421-0b82-48c0-aba8-90f8bed1b011-root {
    text-align: left;
  }


#s-df5ea421-0b82-48c0-aba8-90f8bed1b011.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-df5ea421-0b82-48c0-aba8-90f8bed1b011-root {
    text-align: left;
  }


#s-df5ea421-0b82-48c0-aba8-90f8bed1b011.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-df5ea421-0b82-48c0-aba8-90f8bed1b011-root {
    text-align: left;
  }


#s-df5ea421-0b82-48c0-aba8-90f8bed1b011.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-df5ea421-0b82-48c0-aba8-90f8bed1b011-root {
    text-align: left;
  }


#s-df5ea421-0b82-48c0-aba8-90f8bed1b011.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-df5ea421-0b82-48c0-aba8-90f8bed1b011-root {
    text-align: left;
  }


#s-df5ea421-0b82-48c0-aba8-90f8bed1b011.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
#s-f6da4b64-fe31-4627-8ebd-40865d9788d5 {
  margin-left: 7%;
margin-right: 7%;
min-height: 50px;
}
@media (min-width: 1200px){#s-f6da4b64-fe31-4627-8ebd-40865d9788d5 {
  display: none;
}
#s-f6da4b64-fe31-4627-8ebd-40865d9788d5, #wrap-s-f6da4b64-fe31-4627-8ebd-40865d9788d5, #wrap-content-s-f6da4b64-fe31-4627-8ebd-40865d9788d5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f6da4b64-fe31-4627-8ebd-40865d9788d5 {
  display: none;
}
#s-f6da4b64-fe31-4627-8ebd-40865d9788d5, #wrap-s-f6da4b64-fe31-4627-8ebd-40865d9788d5, #wrap-content-s-f6da4b64-fe31-4627-8ebd-40865d9788d5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f6da4b64-fe31-4627-8ebd-40865d9788d5 {
  display: none;
}
#s-f6da4b64-fe31-4627-8ebd-40865d9788d5, #wrap-s-f6da4b64-fe31-4627-8ebd-40865d9788d5, #wrap-content-s-f6da4b64-fe31-4627-8ebd-40865d9788d5 { display: none !important; }}







#s-f6da4b64-fe31-4627-8ebd-40865d9788d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f6da4b64-fe31-4627-8ebd-40865d9788d5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-120a62a7-e794-4751-9500-ce9e471314b6 {
  min-height: 50px;
}








#s-120a62a7-e794-4751-9500-ce9e471314b6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-120a62a7-e794-4751-9500-ce9e471314b6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-68ba3715-bec4-4e11-b7c8-b64878cd76e5 {
  border-style: solid;
margin-bottom: 25px;
padding-top: 10px;
padding-left: 26px;
padding-bottom: 10px;
padding-right: 29px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
background-color: rgba(37, 37, 37, 0);
hover-type: color;
text-align: left;
}
#s-68ba3715-bec4-4e11-b7c8-b64878cd76e5:hover {text-decoration: none !important;
background-image: none !important;
background-color: rgba(0, 0, 0, 1) !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-68ba3715-bec4-4e11-b7c8-b64878cd76e5:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-68ba3715-bec4-4e11-b7c8-b64878cd76e5-root {
    text-align: left;
  }


#s-68ba3715-bec4-4e11-b7c8-b64878cd76e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-68ba3715-bec4-4e11-b7c8-b64878cd76e5-root {
    text-align: left;
  }


#s-68ba3715-bec4-4e11-b7c8-b64878cd76e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-68ba3715-bec4-4e11-b7c8-b64878cd76e5-root {
    text-align: left;
  }


#s-68ba3715-bec4-4e11-b7c8-b64878cd76e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-68ba3715-bec4-4e11-b7c8-b64878cd76e5-root {
    text-align: left;
  }


#s-68ba3715-bec4-4e11-b7c8-b64878cd76e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-68ba3715-bec4-4e11-b7c8-b64878cd76e5-root {
    text-align: left;
  }


#s-68ba3715-bec4-4e11-b7c8-b64878cd76e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-88a7189f-43ad-4e61-8f9b-b5db38a59a34 {
  min-height: 50px;
background-color: rgba(244, 244, 242, 0);
}








#s-88a7189f-43ad-4e61-8f9b-b5db38a59a34 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-88a7189f-43ad-4e61-8f9b-b5db38a59a34.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-65a4918e-e957-45c3-8f82-6e25005f739b {
  min-height: 100px;
}








#s-65a4918e-e957-45c3-8f82-6e25005f739b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-65a4918e-e957-45c3-8f82-6e25005f739b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7d93b65e-c001-41db-8eed-90bb206e16c8 {
  margin-left: 7%;
margin-right: 7%;
}

#s-7d93b65e-c001-41db-8eed-90bb206e16c8 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-8d29a9d5-901f-47d3-be1e-e7f3832fd488 {
  background-color: rgba(0, 0, 0, 0);
}

@media (min-width: 0px) {
[id="s-8d29a9d5-901f-47d3-be1e-e7f3832fd488"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8d29a9d5-901f-47d3-be1e-e7f3832fd488"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8d29a9d5-901f-47d3-be1e-e7f3832fd488"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8d29a9d5-901f-47d3-be1e-e7f3832fd488"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-25c2d12f-d888-4838-917c-268689fcb6d9 {
  margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
max-width: 100px;
text-align: center;
}

#s-25c2d12f-d888-4838-917c-268689fcb6d9 {
  overflow: hidden;
  
  
      max-width: 100px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}







  #s-25c2d12f-d888-4838-917c-268689fcb6d9 img.shogun-image {
    

    
    
    
  }


#s-25c2d12f-d888-4838-917c-268689fcb6d9 .shogun-image-content {
  
    justify-content: center;
  
}

#s-e36af762-934d-4902-8a72-45c46d37d8e5 {
  min-height: 25px;
}








#s-e36af762-934d-4902-8a72-45c46d37d8e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e36af762-934d-4902-8a72-45c46d37d8e5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dd2d2a93-a843-4eda-90de-7b61cf506e42 {
  text-align: center;
}

#s-dd2d2a93-a843-4eda-90de-7b61cf506e42 {
  overflow: hidden;
  
  
}







  #s-dd2d2a93-a843-4eda-90de-7b61cf506e42 img.shogun-image {
    

    
    
    
  }


#s-dd2d2a93-a843-4eda-90de-7b61cf506e42 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-c20c4980-3079-4424-b13f-0cebcadc48fb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c20c4980-3079-4424-b13f-0cebcadc48fb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c20c4980-3079-4424-b13f-0cebcadc48fb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c20c4980-3079-4424-b13f-0cebcadc48fb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-2053791d-9814-45be-9247-639151e8bb12 {
  padding-left: 8%;
padding-right: 8%;
}

#s-3408d770-08a6-4405-826a-4fbd1189dff6 {
  margin-top: 20px;
margin-left: 8%;
margin-right: 8%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-3408d770-08a6-4405-826a-4fbd1189dff6 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 48px;
  
  
  text-align: left;
}



#s-2f38e7e3-2fcf-4963-aaf4-d5374df7a7b1 {
  padding-top: 5%;
padding-left: 8%;
padding-bottom: 5%;
padding-right: 8%;
}

#s-c30c45f4-af04-4785-8516-5de1abb4ecf3 {
  margin-left: 7%;
margin-right: 7%;
min-height: 50px;
}
@media (min-width: 1200px){#s-c30c45f4-af04-4785-8516-5de1abb4ecf3 {
  display: none;
}
#s-c30c45f4-af04-4785-8516-5de1abb4ecf3, #wrap-s-c30c45f4-af04-4785-8516-5de1abb4ecf3, #wrap-content-s-c30c45f4-af04-4785-8516-5de1abb4ecf3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c30c45f4-af04-4785-8516-5de1abb4ecf3 {
  display: none;
}
#s-c30c45f4-af04-4785-8516-5de1abb4ecf3, #wrap-s-c30c45f4-af04-4785-8516-5de1abb4ecf3, #wrap-content-s-c30c45f4-af04-4785-8516-5de1abb4ecf3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c30c45f4-af04-4785-8516-5de1abb4ecf3 {
  display: none;
}
#s-c30c45f4-af04-4785-8516-5de1abb4ecf3, #wrap-s-c30c45f4-af04-4785-8516-5de1abb4ecf3, #wrap-content-s-c30c45f4-af04-4785-8516-5de1abb4ecf3 { display: none !important; }}







#s-c30c45f4-af04-4785-8516-5de1abb4ecf3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c30c45f4-af04-4785-8516-5de1abb4ecf3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-801e5a43-87a1-4af7-bddb-8b7ff6bf4867 {
  margin-bottom: 35px;
}
@media (max-width: 767px){#s-801e5a43-87a1-4af7-bddb-8b7ff6bf4867 {
  display: none;
}
#s-801e5a43-87a1-4af7-bddb-8b7ff6bf4867, #wrap-s-801e5a43-87a1-4af7-bddb-8b7ff6bf4867, #wrap-content-s-801e5a43-87a1-4af7-bddb-8b7ff6bf4867 { display: none !important; }}
@media (min-width: 0px) {
[id="s-801e5a43-87a1-4af7-bddb-8b7ff6bf4867"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-801e5a43-87a1-4af7-bddb-8b7ff6bf4867"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-801e5a43-87a1-4af7-bddb-8b7ff6bf4867"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-801e5a43-87a1-4af7-bddb-8b7ff6bf4867"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-8e745a6d-4b7a-46d9-82e2-902c4999011f {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
text-decoration: none;
background-image: none;
hover-type: color;
background-color: rgba(37, 37, 37, 0);
color: rgba(0, 0, 0, 1);
text-align: left;
}
#s-8e745a6d-4b7a-46d9-82e2-902c4999011f:hover {text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;
background-color: rgba(0, 0, 0, 1) !important;}#s-8e745a6d-4b7a-46d9-82e2-902c4999011f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8e745a6d-4b7a-46d9-82e2-902c4999011f-root {
    text-align: left;
  }


#s-8e745a6d-4b7a-46d9-82e2-902c4999011f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8e745a6d-4b7a-46d9-82e2-902c4999011f-root {
    text-align: left;
  }


#s-8e745a6d-4b7a-46d9-82e2-902c4999011f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8e745a6d-4b7a-46d9-82e2-902c4999011f-root {
    text-align: left;
  }


#s-8e745a6d-4b7a-46d9-82e2-902c4999011f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8e745a6d-4b7a-46d9-82e2-902c4999011f-root {
    text-align: left;
  }


#s-8e745a6d-4b7a-46d9-82e2-902c4999011f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8e745a6d-4b7a-46d9-82e2-902c4999011f-root {
    text-align: left;
  }


#s-8e745a6d-4b7a-46d9-82e2-902c4999011f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-d81b9ee5-bb9b-4974-b021-84e4bf6047df {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
text-decoration: none;
background-image: none;
hover-type: color;
background-color: rgba(37, 37, 37, 0);
color: rgba(0, 0, 0, 1);
text-align: left;
}
#s-d81b9ee5-bb9b-4974-b021-84e4bf6047df:hover {text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;
background-color: rgba(0, 0, 0, 1) !important;}#s-d81b9ee5-bb9b-4974-b021-84e4bf6047df:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d81b9ee5-bb9b-4974-b021-84e4bf6047df-root {
    text-align: left;
  }


#s-d81b9ee5-bb9b-4974-b021-84e4bf6047df.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d81b9ee5-bb9b-4974-b021-84e4bf6047df-root {
    text-align: left;
  }


#s-d81b9ee5-bb9b-4974-b021-84e4bf6047df.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d81b9ee5-bb9b-4974-b021-84e4bf6047df-root {
    text-align: left;
  }


#s-d81b9ee5-bb9b-4974-b021-84e4bf6047df.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d81b9ee5-bb9b-4974-b021-84e4bf6047df-root {
    text-align: left;
  }


#s-d81b9ee5-bb9b-4974-b021-84e4bf6047df.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d81b9ee5-bb9b-4974-b021-84e4bf6047df-root {
    text-align: left;
  }


#s-d81b9ee5-bb9b-4974-b021-84e4bf6047df.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-1bcb5acc-beef-457d-bc89-2c3d9c48b6e7 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
text-decoration: none;
background-image: none;
hover-type: color;
background-color: rgba(37, 37, 37, 0);
color: rgba(0, 0, 0, 1);
text-align: left;
}
#s-1bcb5acc-beef-457d-bc89-2c3d9c48b6e7:hover {text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;
background-color: rgba(0, 0, 0, 1) !important;}#s-1bcb5acc-beef-457d-bc89-2c3d9c48b6e7:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-1bcb5acc-beef-457d-bc89-2c3d9c48b6e7-root {
    text-align: left;
  }


#s-1bcb5acc-beef-457d-bc89-2c3d9c48b6e7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1bcb5acc-beef-457d-bc89-2c3d9c48b6e7-root {
    text-align: left;
  }


#s-1bcb5acc-beef-457d-bc89-2c3d9c48b6e7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1bcb5acc-beef-457d-bc89-2c3d9c48b6e7-root {
    text-align: left;
  }


#s-1bcb5acc-beef-457d-bc89-2c3d9c48b6e7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1bcb5acc-beef-457d-bc89-2c3d9c48b6e7-root {
    text-align: left;
  }


#s-1bcb5acc-beef-457d-bc89-2c3d9c48b6e7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1bcb5acc-beef-457d-bc89-2c3d9c48b6e7-root {
    text-align: left;
  }


#s-1bcb5acc-beef-457d-bc89-2c3d9c48b6e7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-0c7f2f7f-b8c7-468f-84bb-56906e562a6b {
  margin-bottom: 35px;
}

@media (min-width: 0px) {
[id="s-0c7f2f7f-b8c7-468f-84bb-56906e562a6b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0c7f2f7f-b8c7-468f-84bb-56906e562a6b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0c7f2f7f-b8c7-468f-84bb-56906e562a6b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0c7f2f7f-b8c7-468f-84bb-56906e562a6b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c1733bb1-6eb1-4b82-9cce-e9d88d6b84ac {
  border-style: solid;
margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 19px;
padding-bottom: 10px;
padding-right: 30px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
text-decoration: none;
background-image: none;
hover-type: color;
background-color: rgba(37, 37, 37, 0);
color: rgba(0, 0, 0, 1);
text-align: left;
}
#s-c1733bb1-6eb1-4b82-9cce-e9d88d6b84ac:hover {text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;
background-color: rgba(0, 0, 0, 1) !important;}#s-c1733bb1-6eb1-4b82-9cce-e9d88d6b84ac:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c1733bb1-6eb1-4b82-9cce-e9d88d6b84ac-root {
    text-align: left;
  }


#s-c1733bb1-6eb1-4b82-9cce-e9d88d6b84ac.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c1733bb1-6eb1-4b82-9cce-e9d88d6b84ac-root {
    text-align: left;
  }


#s-c1733bb1-6eb1-4b82-9cce-e9d88d6b84ac.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c1733bb1-6eb1-4b82-9cce-e9d88d6b84ac-root {
    text-align: left;
  }


#s-c1733bb1-6eb1-4b82-9cce-e9d88d6b84ac.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c1733bb1-6eb1-4b82-9cce-e9d88d6b84ac-root {
    text-align: left;
  }


#s-c1733bb1-6eb1-4b82-9cce-e9d88d6b84ac.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c1733bb1-6eb1-4b82-9cce-e9d88d6b84ac-root {
    text-align: left;
  }


#s-c1733bb1-6eb1-4b82-9cce-e9d88d6b84ac.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-4ba31f3f-90a4-41a0-b785-55401d75af76 {
  margin-left: 4%;
margin-right: 4%;
min-height: 50px;
}
@media (min-width: 1200px){#s-4ba31f3f-90a4-41a0-b785-55401d75af76 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4ba31f3f-90a4-41a0-b785-55401d75af76 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-4ba31f3f-90a4-41a0-b785-55401d75af76 {
  
}
}@media (max-width: 767px){#s-4ba31f3f-90a4-41a0-b785-55401d75af76 {
  display: none;
}
#s-4ba31f3f-90a4-41a0-b785-55401d75af76, #wrap-s-4ba31f3f-90a4-41a0-b785-55401d75af76, #wrap-content-s-4ba31f3f-90a4-41a0-b785-55401d75af76 { display: none !important; }}







#s-4ba31f3f-90a4-41a0-b785-55401d75af76 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4ba31f3f-90a4-41a0-b785-55401d75af76.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-f48f02a6-b3b8-42f9-97b6-86d88af6a9e8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f48f02a6-b3b8-42f9-97b6-86d88af6a9e8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-f48f02a6-b3b8-42f9-97b6-86d88af6a9e8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-f48f02a6-b3b8-42f9-97b6-86d88af6a9e8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-2798f278-5762-414b-b959-dc5154051a0c {
  min-height: 50px;
}








#s-2798f278-5762-414b-b959-dc5154051a0c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2798f278-5762-414b-b959-dc5154051a0c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ff9c6570-7175-4d7e-ade5-4e817d338f73 {
  border-style: solid;
margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 29px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
text-decoration: none;
background-image: none;
hover-type: color;
background-color: rgba(37, 37, 37, 0);
color: rgba(0, 0, 0, 1);
text-align: left;
}
#s-ff9c6570-7175-4d7e-ade5-4e817d338f73:hover {text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;
background-color: rgba(0, 0, 0, 1) !important;}#s-ff9c6570-7175-4d7e-ade5-4e817d338f73:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ff9c6570-7175-4d7e-ade5-4e817d338f73-root {
    text-align: left;
  }


#s-ff9c6570-7175-4d7e-ade5-4e817d338f73.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ff9c6570-7175-4d7e-ade5-4e817d338f73-root {
    text-align: left;
  }


#s-ff9c6570-7175-4d7e-ade5-4e817d338f73.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ff9c6570-7175-4d7e-ade5-4e817d338f73-root {
    text-align: left;
  }


#s-ff9c6570-7175-4d7e-ade5-4e817d338f73.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ff9c6570-7175-4d7e-ade5-4e817d338f73-root {
    text-align: left;
  }


#s-ff9c6570-7175-4d7e-ade5-4e817d338f73.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ff9c6570-7175-4d7e-ade5-4e817d338f73-root {
    text-align: left;
  }


#s-ff9c6570-7175-4d7e-ade5-4e817d338f73.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
#s-5992538d-b7d4-4ff0-aae5-fa31cb1d0b05 {
  min-height: 50px;
}








#s-5992538d-b7d4-4ff0-aae5-fa31cb1d0b05 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5992538d-b7d4-4ff0-aae5-fa31cb1d0b05.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b5655b16-a3ff-411f-a980-69b802c481c4 {
  min-height: 50px;
background-color: rgba(244, 244, 242, 0);
}








#s-b5655b16-a3ff-411f-a980-69b802c481c4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b5655b16-a3ff-411f-a980-69b802c481c4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b2f0e255-53d7-4186-b692-da50d9ccbf0c {
  min-height: 100px;
}








#s-b2f0e255-53d7-4186-b692-da50d9ccbf0c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b2f0e255-53d7-4186-b692-da50d9ccbf0c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0161cc80-9bf9-4cfd-b935-251c6b716fbe {
  margin-left: 7%;
margin-right: 7%;
}

#s-0161cc80-9bf9-4cfd-b935-251c6b716fbe hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-a16f6c59-1f35-4673-ad23-247ecef96bea {
  background-color: rgba(0, 0, 0, 0);
}

@media (min-width: 0px) {
[id="s-a16f6c59-1f35-4673-ad23-247ecef96bea"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a16f6c59-1f35-4673-ad23-247ecef96bea"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a16f6c59-1f35-4673-ad23-247ecef96bea"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a16f6c59-1f35-4673-ad23-247ecef96bea"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f83abbd0-eb6d-467f-a395-b52c319bebbb {
  margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
max-width: 120px;
text-align: center;
}

#s-f83abbd0-eb6d-467f-a395-b52c319bebbb {
  overflow: hidden;
  
  
      max-width: 120px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}







  #s-f83abbd0-eb6d-467f-a395-b52c319bebbb img.shogun-image {
    

    
    
    
  }


#s-f83abbd0-eb6d-467f-a395-b52c319bebbb .shogun-image-content {
  
    justify-content: center;
  
}

#s-195df4bd-3c06-422a-a7ab-ef77bf54c0d8 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-fa53d772-0eb6-4484-9231-fa125324ceb4 {
  text-align: center;
}

#s-fa53d772-0eb6-4484-9231-fa125324ceb4 {
  overflow: hidden;
  
  
}







  #s-fa53d772-0eb6-4484-9231-fa125324ceb4 img.shogun-image {
    

    
    
    
  }


#s-fa53d772-0eb6-4484-9231-fa125324ceb4 .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-a2a3c08c-4982-4fff-a322-d86aa67b4d06"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a2a3c08c-4982-4fff-a322-d86aa67b4d06"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a2a3c08c-4982-4fff-a322-d86aa67b4d06"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a2a3c08c-4982-4fff-a322-d86aa67b4d06"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-f9488a6e-1e76-40e5-b965-c3afb3cc860a {
  padding-left: 8%;
padding-right: 8%;
}

#s-21a1875d-be7f-4e74-be44-73584f6102ea {
  margin-top: 20px;
margin-left: 8%;
margin-right: 8%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-21a1875d-be7f-4e74-be44-73584f6102ea .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 48px;
  
  
  text-align: left;
}



#s-ce7e1422-c197-4c57-9b43-8a9ffc1a45d6 {
  padding-top: 5%;
padding-left: 8%;
padding-bottom: 5%;
padding-right: 8%;
}

#s-ecdd64db-c667-408a-9625-f363b66a3f9f {
  border-style: solid;
margin-left: 4%;
margin-bottom: 36px;
margin-right: 8%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 2px;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
background-color: rgba(37, 37, 37, 0);
text-align: left;
}
#s-ecdd64db-c667-408a-9625-f363b66a3f9f:hover {text-decoration: none !important;
background-image: none !important;
background-color: rgba(0, 0, 0, 1) !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-ecdd64db-c667-408a-9625-f363b66a3f9f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ecdd64db-c667-408a-9625-f363b66a3f9f-root {
    text-align: left;
  }


#s-ecdd64db-c667-408a-9625-f363b66a3f9f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ecdd64db-c667-408a-9625-f363b66a3f9f-root {
    text-align: left;
  }


#s-ecdd64db-c667-408a-9625-f363b66a3f9f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ecdd64db-c667-408a-9625-f363b66a3f9f-root {
    text-align: left;
  }


#s-ecdd64db-c667-408a-9625-f363b66a3f9f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ecdd64db-c667-408a-9625-f363b66a3f9f-root {
    text-align: left;
  }


#s-ecdd64db-c667-408a-9625-f363b66a3f9f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ecdd64db-c667-408a-9625-f363b66a3f9f-root {
    text-align: left;
  }


#s-ecdd64db-c667-408a-9625-f363b66a3f9f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
#s-2c1ef8ff-b82f-48af-8582-e5aa3c7f36cd {
  min-height: 50px;
}








#s-2c1ef8ff-b82f-48af-8582-e5aa3c7f36cd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2c1ef8ff-b82f-48af-8582-e5aa3c7f36cd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-12fbaf6e-5433-411a-821f-851ec67edf9d {
  margin-left: 5%;
margin-right: 5%;
}

#s-12fbaf6e-5433-411a-821f-851ec67edf9d hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

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

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

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

/* <-- User Content Animations */

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

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

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