.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-8b4c827b-e821-4197-a810-5aa02710b1cf {
  margin-left: 10px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
}
@media (max-width: 767px){#s-8b4c827b-e821-4197-a810-5aa02710b1cf {
  display: none;
}
#s-8b4c827b-e821-4197-a810-5aa02710b1cf, #wrap-s-8b4c827b-e821-4197-a810-5aa02710b1cf { display:none !important; }}







#s-8b4c827b-e821-4197-a810-5aa02710b1cf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8b4c827b-e821-4197-a810-5aa02710b1cf.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;
}

@media (min-width: 0px) {
[id="s-802cd79c-9b3e-4174-8296-ec82ac292dde"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-802cd79c-9b3e-4174-8296-ec82ac292dde"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-802cd79c-9b3e-4174-8296-ec82ac292dde"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-802cd79c-9b3e-4174-8296-ec82ac292dde"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.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-25cddc28-fc9b-47e5-bee0-4b49831f164d {
  text-align: center;
}







  #s-25cddc28-fc9b-47e5-bee0-4b49831f164d img.shogun-image {
    

    
    
    
  }


#s-25cddc28-fc9b-47e5-bee0-4b49831f164d .shogun-image-content {
  
    align-items: 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-379306f8-3dc0-4e5a-bcd3-6f0f95fe8eef {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-379306f8-3dc0-4e5a-bcd3-6f0f95fe8eef .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-b178d2a4-cbe9-4568-bb9e-92df68af6e6a {
  text-align: center;
}







  #s-b178d2a4-cbe9-4568-bb9e-92df68af6e6a img.shogun-image {
    

    
    
    
  }


#s-b178d2a4-cbe9-4568-bb9e-92df68af6e6a .shogun-image-content {
  
    align-items: center;
  
}

#s-09348e03-6912-4a87-979e-e06267a91735 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-09348e03-6912-4a87-979e-e06267a91735 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-39850e3b-2436-4df2-abce-e09389875f69 {
  text-align: center;
}







  #s-39850e3b-2436-4df2-abce-e09389875f69 img.shogun-image {
    

    
    
    
  }


#s-39850e3b-2436-4df2-abce-e09389875f69 .shogun-image-content {
  
    align-items: center;
  
}

#s-3f259900-91af-4191-bcfb-3945f477c37f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3f259900-91af-4191-bcfb-3945f477c37f .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-3cc1c734-5da6-4e90-a9e7-209d2b70f7d1 {
  text-align: center;
}







  #s-3cc1c734-5da6-4e90-a9e7-209d2b70f7d1 img.shogun-image {
    

    
    
    
  }


#s-3cc1c734-5da6-4e90-a9e7-209d2b70f7d1 .shogun-image-content {
  
    align-items: center;
  
}

#s-f2778911-9110-4188-b4e7-23881ebec4f6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f2778911-9110-4188-b4e7-23881ebec4f6 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-143705bf-3e94-4eb8-b108-a44e38164b06 {
  text-align: center;
}







  #s-143705bf-3e94-4eb8-b108-a44e38164b06 img.shogun-image {
    

    
    
    
  }


#s-143705bf-3e94-4eb8-b108-a44e38164b06 .shogun-image-content {
  
    align-items: center;
  
}

#s-1efff5d5-53cd-4fde-8f75-e8a719039c01 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1efff5d5-53cd-4fde-8f75-e8a719039c01 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-b9704fd0-cb1d-467b-bc47-c7f1fe065099 {
  text-align: center;
}







  #s-b9704fd0-cb1d-467b-bc47-c7f1fe065099 img.shogun-image {
    

    
    
    
  }


#s-b9704fd0-cb1d-467b-bc47-c7f1fe065099 .shogun-image-content {
  
    align-items: center;
  
}

#s-a1e325b4-099f-4d65-a379-22c6726a011b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a1e325b4-099f-4d65-a379-22c6726a011b .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-8fad4f5d-9a6b-47b2-bdec-ab06bf5d227d {
  margin-left: 50px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
}
@media (max-width: 767px){#s-8fad4f5d-9a6b-47b2-bdec-ab06bf5d227d {
  display: none;
}
#s-8fad4f5d-9a6b-47b2-bdec-ab06bf5d227d, #wrap-s-8fad4f5d-9a6b-47b2-bdec-ab06bf5d227d { display:none !important; }}







#s-8fad4f5d-9a6b-47b2-bdec-ab06bf5d227d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8fad4f5d-9a6b-47b2-bdec-ab06bf5d227d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0fbe9e83-f73c-47ba-ad85-edd98e70268d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0fbe9e83-f73c-47ba-ad85-edd98e70268d .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.shogun-tabs.shogun-modern {
  padding-left: 10px;
  padding-right: 5px;
  overflow: hidden;
  transform: translate(0px, 0px);
}

.shogun-tabs li {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.shogun-tabs.shogun-modern li {
  width: 200px;
  height: 45px;
  margin: 0 5px 0 0;
}

.shogun-tabs.shogun-rounded li {
  margin-bottom: 0;
  float: left;
  box-sizing: border-box;
  margin-right: 2px;
  line-height: 1.42857143;
  position: relative;
  display: block;
  overflow: visible;
}

.shogun-tabs.shogun-rounded li .shogun-tab-box {
  padding: 10px 15px !important;
  border-radius: 4px 4px 0 0;
}

.shogun-tabs.shogun-modern li .shogun-tab-box {
  padding: 12px 5px !important;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .shogun-tabs.shogun-rounded li .shogun-tab-box {
    padding: 10px 5px !important;
    text-align: center;
  }

  .shogun-tabs.shogun-modern li .shogun-tab-box {
    padding: 12px 15px !important;
  }
}

.shogun-tabs.shogun-rounded .shogun-tab-box {
  border-bottom: none !important;
}

.shogun-tabs.shogun-modern li.active {
  z-index: 40;
}

.shogun-tabs.shogun-modern li .shogun-tab-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  content: "";
  transform: perspective(100px) rotateX(30deg);
  -webkit-transform: perspective(100px) rotateX(30deg);
}

.shogun-tabs.shogun-modern li.shogun-tab-active .shogun-tab-box::after {
  border-bottom: none !important;
  height: 46px;
}

.shogun-tabs-body {
  padding-top: 10px;
}

.shogun-tabs-body.shogun-rounded {
  margin-top: 0px !important;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.shogun-tabs-body > .shogun-tab-content {
  display: none;
}

.shogun-tabs-body > .shogun-tab-content.shogun-tab-active {
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
  display: block;
}

.shogun-tab-border {
  position: absolute;
}

.shogun-tab-title {
  white-space: nowrap;
  text-align: center;

  display: inline-block;
  width: 100%;
}

.shogun-tabs.shogun-modern .shogun-tab-title {
  /** Hack for Safari weird bug */
  /* https://stackoverflow.com/questions/18146511/bug-in-css3-rotatey-transition-on-safari */
  transform: translateZ(1000px);
}


  #s-9e0804dd-2c34-4658-9e6a-9079f509fe10 .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid rgba(221, 221, 221, 1);
  }
  #s-9e0804dd-2c34-4658-9e6a-9079f509fe10 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: #F4F4F4;
    border: 1px solid rgba(221, 221, 221, 1);
  }
#s-9e0804dd-2c34-4658-9e6a-9079f509fe10 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(61, 66, 70, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-9e0804dd-2c34-4658-9e6a-9079f509fe10 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: #555;
}

#s-9e0804dd-2c34-4658-9e6a-9079f509fe10 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: #F4F4F4;
}

#s-9e0804dd-2c34-4658-9e6a-9079f509fe10 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(221, 221, 221, 1);
}

#s-97cfe75c-a552-4ea2-944b-d819fa40c40b {
  margin-left: 10px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
}








#s-97cfe75c-a552-4ea2-944b-d819fa40c40b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-97cfe75c-a552-4ea2-944b-d819fa40c40b.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: ;
  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-694bde79-e1cd-4180-a55b-2bed5a248f5b {
  margin-left: 10px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
}








#s-694bde79-e1cd-4180-a55b-2bed5a248f5b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-694bde79-e1cd-4180-a55b-2bed5a248f5b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5dd78150-b26c-4dc1-a1c3-b130bf7a48e3 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
}








#s-5dd78150-b26c-4dc1-a1c3-b130bf7a48e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5dd78150-b26c-4dc1-a1c3-b130bf7a48e3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fdc30a76-0b85-4c3e-babd-1baaa64f68d7 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
}








#s-fdc30a76-0b85-4c3e-babd-1baaa64f68d7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fdc30a76-0b85-4c3e-babd-1baaa64f68d7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3c27ead5-d4ab-406b-9c68-69cc65e83525 {
  padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-3c27ead5-d4ab-406b-9c68-69cc65e83525"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3c27ead5-d4ab-406b-9c68-69cc65e83525"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-3c27ead5-d4ab-406b-9c68-69cc65e83525"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-3c27ead5-d4ab-406b-9c68-69cc65e83525"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-fb2cdb21-3864-4e30-b831-3ac6b6432c7b {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
text-align: center;
}







  #s-fb2cdb21-3864-4e30-b831-3ac6b6432c7b img.shogun-image {
    

    
    
    
  }


#s-fb2cdb21-3864-4e30-b831-3ac6b6432c7b .shogun-image-content {
  
    align-items: center;
  
}

#s-32f3c385-84fe-4365-8ff1-bcfbd3a6b671 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-32f3c385-84fe-4365-8ff1-bcfbd3a6b671 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-ef788a50-71c0-4252-9d95-31f914c7efc7 {
  margin-left: 5px;
margin-right: 5px;
}

#s-01a44de0-73ed-44d9-8bd2-75a5a3e3006d {
  text-align: center;
}







  #s-01a44de0-73ed-44d9-8bd2-75a5a3e3006d img.shogun-image {
    

    
    
    
  }


#s-01a44de0-73ed-44d9-8bd2-75a5a3e3006d .shogun-image-content {
  
    align-items: center;
  
}

#s-3369850a-8283-4581-baae-2120897cbed3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3369850a-8283-4581-baae-2120897cbed3 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-a8470ed0-d305-4e95-979a-e65f75b909c2 {
  margin-left: 5px;
margin-right: 5px;
}

#s-9c4f8658-85f7-4d95-9eb8-f57813c9bb61 {
  text-align: center;
}







  #s-9c4f8658-85f7-4d95-9eb8-f57813c9bb61 img.shogun-image {
    

    
    
    
  }


#s-9c4f8658-85f7-4d95-9eb8-f57813c9bb61 .shogun-image-content {
  
    align-items: center;
  
}

#s-201899a6-73d6-45db-abe7-6b7c435b79cf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-201899a6-73d6-45db-abe7-6b7c435b79cf .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-6bac96d4-8b75-493d-a38d-ed3e1c132a20 {
  margin-left: 5px;
margin-right: 5px;
}

#s-ef72a4ec-d108-4d64-b373-25b4841794fe {
  margin-left: 10px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
}








#s-ef72a4ec-d108-4d64-b373-25b4841794fe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ef72a4ec-d108-4d64-b373-25b4841794fe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-11a3a5dc-1422-44a3-925e-4ca3f00e7a06 {
  min-height: 50px;
}








#s-11a3a5dc-1422-44a3-925e-4ca3f00e7a06 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-11a3a5dc-1422-44a3-925e-4ca3f00e7a06.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

@media (min-width: 1200px){#s-08b6c181-5f3b-4729-aca6-3018c2829066 {
  display: none;
}
#s-08b6c181-5f3b-4729-aca6-3018c2829066, #wrap-s-08b6c181-5f3b-4729-aca6-3018c2829066 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-08b6c181-5f3b-4729-aca6-3018c2829066 {
  display: none;
}
#s-08b6c181-5f3b-4729-aca6-3018c2829066, #wrap-s-08b6c181-5f3b-4729-aca6-3018c2829066 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-08b6c181-5f3b-4729-aca6-3018c2829066 {
  display: none;
}
#s-08b6c181-5f3b-4729-aca6-3018c2829066, #wrap-s-08b6c181-5f3b-4729-aca6-3018c2829066 { display:none !important; }}
#s-08b6c181-5f3b-4729-aca6-3018c2829066 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-08b6c181-5f3b-4729-aca6-3018c2829066 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-08b6c181-5f3b-4729-aca6-3018c2829066 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-08b6c181-5f3b-4729-aca6-3018c2829066 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-08b6c181-5f3b-4729-aca6-3018c2829066 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: left;
  font-family: Montserrat;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
}

#s-08b6c181-5f3b-4729-aca6-3018c2829066 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-6371f9a1-97ad-4d9d-a991-cf98dc3c553d {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-1211771a-3b72-41df-875f-b873e5ea6f05 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-82dcbc65-d4a7-43c1-9758-19d04ae72d4e {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-a2a54d07-6faf-430a-8d8b-94247bb72359 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-65110fba-b94c-4148-acdd-3f0d6b064128 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-e0a685e9-da15-4319-8b70-0b576038a517 {
  text-align: center;
}







  #s-e0a685e9-da15-4319-8b70-0b576038a517 img.shogun-image {
    

    
    
    
  }


#s-e0a685e9-da15-4319-8b70-0b576038a517 .shogun-image-content {
  
    align-items: center;
  
}

#s-5a6132a3-dd1e-4969-8d82-df04d4c0ea40 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-b55122c8-9cc5-476c-b173-bfd11486a191 {
  text-align: center;
}







  #s-b55122c8-9cc5-476c-b173-bfd11486a191 img.shogun-image {
    

    
    
    
  }


#s-b55122c8-9cc5-476c-b173-bfd11486a191 .shogun-image-content {
  
    align-items: center;
  
}

#s-0ab8eb92-c581-4fa7-badb-2c59df78ec15 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-f97790aa-e6c9-4202-aa75-d3b4164b1303 {
  text-align: center;
}







  #s-f97790aa-e6c9-4202-aa75-d3b4164b1303 img.shogun-image {
    

    
    
    
  }


#s-f97790aa-e6c9-4202-aa75-d3b4164b1303 .shogun-image-content {
  
    align-items: center;
  
}

#s-a69d85a6-745e-4964-85d5-d3b8039a423e {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-c5d97854-4ad0-4635-b47f-274b928ca12f {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-2eb4070a-72ad-4d66-9d01-5a2af5cc8ad8 {
  margin-top: 0px;
margin-left: 0px;
margin-right: 0px;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-2eb4070a-72ad-4d66-9d01-5a2af5cc8ad8 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2eb4070a-72ad-4d66-9d01-5a2af5cc8ad8 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2eb4070a-72ad-4d66-9d01-5a2af5cc8ad8 {
  
}
}@media (max-width: 767px){#s-2eb4070a-72ad-4d66-9d01-5a2af5cc8ad8 {
  
}
}







#s-2eb4070a-72ad-4d66-9d01-5a2af5cc8ad8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2eb4070a-72ad-4d66-9d01-5a2af5cc8ad8.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-d19c2566-4ce5-42f7-8926-409b05af69a1 {
  margin-top: 100px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
background-color: rgba(26, 26, 26, 0);
}
@media (min-width: 1200px){#s-d19c2566-4ce5-42f7-8926-409b05af69a1 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d19c2566-4ce5-42f7-8926-409b05af69a1 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d19c2566-4ce5-42f7-8926-409b05af69a1 {
  
}
}@media (max-width: 767px){#s-d19c2566-4ce5-42f7-8926-409b05af69a1 {
  
}
}
@media (min-width: 0px) {
[id="s-d19c2566-4ce5-42f7-8926-409b05af69a1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d19c2566-4ce5-42f7-8926-409b05af69a1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d19c2566-4ce5-42f7-8926-409b05af69a1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d19c2566-4ce5-42f7-8926-409b05af69a1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d19c2566-4ce5-42f7-8926-409b05af69a1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d19c2566-4ce5-42f7-8926-409b05af69a1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d19c2566-4ce5-42f7-8926-409b05af69a1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-8b4d039a-6e3a-45c8-be42-ca12f5133bae {
  margin-left: 0px;
margin-right: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8b4d039a-6e3a-45c8-be42-ca12f5133bae .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-87c40ce8-5490-4086-aec7-78911d1e10b3 {
  margin-left: 50px;
margin-bottom: 100px;
margin-right: 50px;
}

@media (min-width: 0px) {
[id="s-87c40ce8-5490-4086-aec7-78911d1e10b3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-87c40ce8-5490-4086-aec7-78911d1e10b3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-87c40ce8-5490-4086-aec7-78911d1e10b3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-87c40ce8-5490-4086-aec7-78911d1e10b3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-f761829a-7535-4e55-b121-e50c2255ad5b {
  margin-bottom: 10px;
margin-right: 0px;
}

#s-f761829a-7535-4e55-b121-e50c2255ad5b .shogun-icon-wrapper {
  text-align: center;
}


#s-f761829a-7535-4e55-b121-e50c2255ad5b .shogun-icon-wrapper > .shogun-icon {

  font-size: 38px !important;
  color: rgba(125, 153, 156, 1);
}

#s-08012399-9faa-4207-b984-1d1947f8444c {
  margin-left: 0px;
margin-right: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-08012399-9faa-4207-b984-1d1947f8444c .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-ce068bfd-ec0f-4053-be0d-ce7fa9196290 {
  margin-left: 0px;
margin-right: 0px;
}

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

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

#s-2536faf3-c59c-4635-849f-f6c649395c3e hr {
  border-top: 1px solid rgba(232, 233, 232, 1);
}

#s-9b27660b-fca0-4057-9370-d598427aafab {
  margin-top: 0px;
margin-bottom: 10px;
margin-right: 0px;
}

#s-9b27660b-fca0-4057-9370-d598427aafab .shogun-icon-wrapper {
  text-align: center;
}


#s-9b27660b-fca0-4057-9370-d598427aafab .shogun-icon-wrapper > .shogun-icon {

  font-size: 38px !important;
  color: rgba(125, 153, 156, 1);
}

#s-23c48aa3-b62a-4258-83a4-1d4822bef9aa {
  margin-left: 0px;
margin-right: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-23c48aa3-b62a-4258-83a4-1d4822bef9aa .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-6ac152a5-79f6-46b4-ba32-2b1b4c34b2ba {
  margin-left: 0px;
margin-right: 0px;
}

#s-7965605c-8e3a-439a-b21f-ab379264382f {
  margin-top: 50px;
margin-bottom: 50px;
text-align: center;
}







  #s-7965605c-8e3a-439a-b21f-ab379264382f img.shogun-image {
    

    
    
    
  }


#s-7965605c-8e3a-439a-b21f-ab379264382f .shogun-image-content {
  
    align-items: center;
  
}

#s-0f07949a-94c4-4f90-8132-ec5a483d1416 {
  margin-bottom: 10px;
margin-right: 0px;
}

#s-0f07949a-94c4-4f90-8132-ec5a483d1416 .shogun-icon-wrapper {
  text-align: center;
}


#s-0f07949a-94c4-4f90-8132-ec5a483d1416 .shogun-icon-wrapper > .shogun-icon {

  font-size: 38px !important;
  color: rgba(125, 153, 156, 1);
}

#s-e2d55f31-f3ac-4afc-a180-8619fe8d437e {
  margin-left: 0px;
margin-right: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e2d55f31-f3ac-4afc-a180-8619fe8d437e .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-773318e8-5bbd-4f48-825c-2f025c32ac9c {
  margin-left: 0px;
margin-right: 0px;
}

#s-dbeb9416-165a-4c4d-99fe-aef477a95065 hr {
  border-top: 1px solid rgba(232, 233, 232, 1);
}

#s-0d77a8a3-d950-4730-89c2-48bd670abda8 {
  margin-top: 0px;
margin-bottom: 10px;
margin-right: 0px;
}

#s-0d77a8a3-d950-4730-89c2-48bd670abda8 .shogun-icon-wrapper {
  text-align: center;
}


#s-0d77a8a3-d950-4730-89c2-48bd670abda8 .shogun-icon-wrapper > .shogun-icon {

  font-size: 38px !important;
  color: rgba(125, 153, 156, 1);
}

#s-ae7c6517-4be3-4322-8f95-5ece883720dd {
  margin-left: 0px;
margin-right: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ae7c6517-4be3-4322-8f95-5ece883720dd .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-7a19bb4d-0063-4230-8b92-1763e7a19535 {
  margin-left: 0px;
margin-right: 0px;
}

#s-378c780a-f916-4ed3-b932-e5b65f099e79 {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
}








#s-378c780a-f916-4ed3-b932-e5b65f099e79 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-378c780a-f916-4ed3-b932-e5b65f099e79.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3e2e6971-3466-4b66-a091-72903fbd195b {
  margin-left: 10px;
margin-right: 10px;
}

#s-77b5edc6-71e7-4fd4-9998-3cf611253bb6 {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}
@media (max-width: 767px){#s-77b5edc6-71e7-4fd4-9998-3cf611253bb6 {
  display: none;
}
#s-77b5edc6-71e7-4fd4-9998-3cf611253bb6, #wrap-s-77b5edc6-71e7-4fd4-9998-3cf611253bb6 { display:none !important; }}







#s-77b5edc6-71e7-4fd4-9998-3cf611253bb6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-77b5edc6-71e7-4fd4-9998-3cf611253bb6.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-27e40281-acc2-41c1-8eac-0f3b7ae07f77 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-27e40281-acc2-41c1-8eac-0f3b7ae07f77 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-27e40281-acc2-41c1-8eac-0f3b7ae07f77 .shg-sld-nav-button.shg-sld-left,
#s-27e40281-acc2-41c1-8eac-0f3b7ae07f77 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-57ab032a-e81d-4c15-a70b-5df89cc454a8 {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-57ab032a-e81d-4c15-a70b-5df89cc454a8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-57ab032a-e81d-4c15-a70b-5df89cc454a8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-57ab032a-e81d-4c15-a70b-5df89cc454a8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-57ab032a-e81d-4c15-a70b-5df89cc454a8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

#s-68b199fd-36ad-4830-b24e-9a147f739524 {
  text-align: center;
}







  #s-68b199fd-36ad-4830-b24e-9a147f739524 img.shogun-image {
    

    
    
    
  }


#s-68b199fd-36ad-4830-b24e-9a147f739524 .shogun-image-content {
  
    align-items: center;
  
}

#s-b0c8d148-4756-4f8d-b038-f839f1d7997f {
  text-align: center;
}







  #s-b0c8d148-4756-4f8d-b038-f839f1d7997f img.shogun-image {
    

    
    
    
  }


#s-b0c8d148-4756-4f8d-b038-f839f1d7997f .shogun-image-content {
  
    align-items: center;
  
}

#s-5f1c4428-31f6-498e-a6b1-6b092e837c91 {
  text-align: center;
}







  #s-5f1c4428-31f6-498e-a6b1-6b092e837c91 img.shogun-image {
    

    
    
    
  }


#s-5f1c4428-31f6-498e-a6b1-6b092e837c91 .shogun-image-content {
  
    align-items: center;
  
}

#s-22b989ac-aae0-4741-8c90-0a38e6c8c648 {
  text-align: center;
}







  #s-22b989ac-aae0-4741-8c90-0a38e6c8c648 img.shogun-image {
    

    
    
    
  }


#s-22b989ac-aae0-4741-8c90-0a38e6c8c648 .shogun-image-content {
  
    align-items: center;
  
}

#s-1b9d5378-b67f-4c36-bb21-f3ee5606c29c {
  text-align: center;
}







  #s-1b9d5378-b67f-4c36-bb21-f3ee5606c29c img.shogun-image {
    

    
    
    
  }


#s-1b9d5378-b67f-4c36-bb21-f3ee5606c29c .shogun-image-content {
  
    align-items: center;
  
}

#s-3af19cbb-2933-4be9-96c2-bc1f59e0985f {
  text-align: center;
}







  #s-3af19cbb-2933-4be9-96c2-bc1f59e0985f img.shogun-image {
    

    
    
    
  }


#s-3af19cbb-2933-4be9-96c2-bc1f59e0985f .shogun-image-content {
  
    align-items: center;
  
}

#s-67d83260-b1e8-489f-aa2f-34d589a32b11 {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-67d83260-b1e8-489f-aa2f-34d589a32b11"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-67d83260-b1e8-489f-aa2f-34d589a32b11"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-67d83260-b1e8-489f-aa2f-34d589a32b11"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-67d83260-b1e8-489f-aa2f-34d589a32b11"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

#s-ce440c69-b54a-4e48-94be-222c9ade5dc6 {
  text-align: center;
}







  #s-ce440c69-b54a-4e48-94be-222c9ade5dc6 img.shogun-image {
    

    
    
    
  }


#s-ce440c69-b54a-4e48-94be-222c9ade5dc6 .shogun-image-content {
  
    align-items: center;
  
}

#s-618f9dfc-3296-4494-b17e-884bc2b60d67 {
  text-align: center;
}







  #s-618f9dfc-3296-4494-b17e-884bc2b60d67 img.shogun-image {
    

    
    
    
  }


#s-618f9dfc-3296-4494-b17e-884bc2b60d67 .shogun-image-content {
  
    align-items: center;
  
}

#s-8896a25b-f8a1-41fd-9f86-35771751a8dc {
  text-align: center;
}







  #s-8896a25b-f8a1-41fd-9f86-35771751a8dc img.shogun-image {
    

    
    
    
  }


#s-8896a25b-f8a1-41fd-9f86-35771751a8dc .shogun-image-content {
  
    align-items: center;
  
}

#s-b4e5e79d-6be5-46c3-b45b-5ef552582543 {
  text-align: center;
}







  #s-b4e5e79d-6be5-46c3-b45b-5ef552582543 img.shogun-image {
    

    
    
    
  }


#s-b4e5e79d-6be5-46c3-b45b-5ef552582543 .shogun-image-content {
  
    align-items: center;
  
}

#s-1c45c0e8-ff5e-471f-a8b7-dc6273b787e6 {
  text-align: center;
}







  #s-1c45c0e8-ff5e-471f-a8b7-dc6273b787e6 img.shogun-image {
    

    
    
    
  }


#s-1c45c0e8-ff5e-471f-a8b7-dc6273b787e6 .shogun-image-content {
  
    align-items: center;
  
}

#s-9f9936e3-e639-422c-bbd9-962e37a9a1a9 {
  text-align: center;
}







  #s-9f9936e3-e639-422c-bbd9-962e37a9a1a9 img.shogun-image {
    

    
    
    
  }


#s-9f9936e3-e639-422c-bbd9-962e37a9a1a9 .shogun-image-content {
  
    align-items: center;
  
}

#s-a427ae6c-1c5e-482a-9e08-6779188a26ff {
  margin-top: 0px;
margin-left: 0px;
margin-right: 0px;
min-height: 50px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-a427ae6c-1c5e-482a-9e08-6779188a26ff {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a427ae6c-1c5e-482a-9e08-6779188a26ff {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a427ae6c-1c5e-482a-9e08-6779188a26ff {
  
}
}@media (max-width: 767px){#s-a427ae6c-1c5e-482a-9e08-6779188a26ff {
  
}
}







#s-a427ae6c-1c5e-482a-9e08-6779188a26ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a427ae6c-1c5e-482a-9e08-6779188a26ff.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-99da3728-298d-4534-ac3b-4b59229c1f0e {
  margin-top: 100px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
background-color: rgba(26, 26, 26, 0);
}
@media (min-width: 1200px){#s-99da3728-298d-4534-ac3b-4b59229c1f0e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-99da3728-298d-4534-ac3b-4b59229c1f0e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-99da3728-298d-4534-ac3b-4b59229c1f0e {
  
}
}@media (max-width: 767px){#s-99da3728-298d-4534-ac3b-4b59229c1f0e {
  
}
}
@media (min-width: 0px) {
[id="s-99da3728-298d-4534-ac3b-4b59229c1f0e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-99da3728-298d-4534-ac3b-4b59229c1f0e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-99da3728-298d-4534-ac3b-4b59229c1f0e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-99da3728-298d-4534-ac3b-4b59229c1f0e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-99da3728-298d-4534-ac3b-4b59229c1f0e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-99da3728-298d-4534-ac3b-4b59229c1f0e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-99da3728-298d-4534-ac3b-4b59229c1f0e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-afa83474-f40d-458a-b9df-a3ed59e518ce {
  margin-left: 0px;
margin-right: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-afa83474-f40d-458a-b9df-a3ed59e518ce .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-76f95e74-fc89-44a9-ace5-1a2b973e0875 {
  margin-left: 50px;
margin-bottom: 100px;
margin-right: 50px;
}

@media (min-width: 0px) {
[id="s-76f95e74-fc89-44a9-ace5-1a2b973e0875"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-76f95e74-fc89-44a9-ace5-1a2b973e0875"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-76f95e74-fc89-44a9-ace5-1a2b973e0875"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-76f95e74-fc89-44a9-ace5-1a2b973e0875"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-32fb64b7-827c-4807-b699-d9b537df9280 {
  margin-bottom: 10px;
margin-right: 0px;
}

#s-32fb64b7-827c-4807-b699-d9b537df9280 .shogun-icon-wrapper {
  text-align: center;
}


#s-32fb64b7-827c-4807-b699-d9b537df9280 .shogun-icon-wrapper > .shogun-icon {

  font-size: 38px !important;
  color: rgba(125, 153, 156, 1);
}

#s-23039141-c079-42bf-8196-4d9107dae13d {
  margin-left: 0px;
margin-right: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-23039141-c079-42bf-8196-4d9107dae13d .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-f7c5dadb-ad57-4e24-adaf-8050c9ec09c2 {
  margin-left: 0px;
margin-right: 0px;
}

#s-ebc8ea5f-46b0-4048-b319-edf97b5ac35d hr {
  border-top: 1px solid rgba(232, 233, 232, 1);
}

#s-83add527-2ea5-4f80-996d-cfeebae7f69b {
  margin-top: 0px;
margin-bottom: 10px;
margin-right: 0px;
}

#s-83add527-2ea5-4f80-996d-cfeebae7f69b .shogun-icon-wrapper {
  text-align: center;
}


#s-83add527-2ea5-4f80-996d-cfeebae7f69b .shogun-icon-wrapper > .shogun-icon {

  font-size: 38px !important;
  color: rgba(125, 153, 156, 1);
}

#s-81d7a438-accf-4259-b40c-60af0791ae25 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-81d7a438-accf-4259-b40c-60af0791ae25 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-0e53a803-9634-400a-a2c7-7cdbe225dfa7 {
  margin-left: 0px;
margin-right: 0px;
}

#s-2c3676d9-8b58-4d71-919b-0b6d36b2fec1 {
  margin-top: 50px;
margin-bottom: 50px;
text-align: center;
}







  #s-2c3676d9-8b58-4d71-919b-0b6d36b2fec1 img.shogun-image {
    

    
    
    
  }


#s-2c3676d9-8b58-4d71-919b-0b6d36b2fec1 .shogun-image-content {
  
    align-items: center;
  
}

#s-031badcc-3010-4a9c-8afb-eaf4c15a04a3 {
  margin-bottom: 10px;
margin-right: 0px;
}

#s-031badcc-3010-4a9c-8afb-eaf4c15a04a3 .shogun-icon-wrapper {
  text-align: center;
}


#s-031badcc-3010-4a9c-8afb-eaf4c15a04a3 .shogun-icon-wrapper > .shogun-icon {

  font-size: 38px !important;
  color: rgba(125, 153, 156, 1);
}

#s-925c105c-92da-49e2-8358-2533dd5872b5 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-925c105c-92da-49e2-8358-2533dd5872b5 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-5b376732-7429-42c0-bd22-5650ba70ee25 {
  margin-left: 0px;
margin-right: 0px;
}

#s-891ea82e-6bb6-4ea3-be2a-2a06dfdb3055 hr {
  border-top: 1px solid rgba(232, 233, 232, 1);
}

#s-ff161817-4c6b-44c0-a6e5-aa9a1db784e7 {
  margin-top: 0px;
margin-bottom: 10px;
margin-right: 0px;
}

#s-ff161817-4c6b-44c0-a6e5-aa9a1db784e7 .shogun-icon-wrapper {
  text-align: center;
}


#s-ff161817-4c6b-44c0-a6e5-aa9a1db784e7 .shogun-icon-wrapper > .shogun-icon {

  font-size: 38px !important;
  color: rgba(125, 153, 156, 1);
}

#s-14dde8a8-a494-4d73-9e7c-9eade846d370 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-14dde8a8-a494-4d73-9e7c-9eade846d370 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-7144a278-5251-4c28-b9d6-7c6c67347158 {
  margin-left: 0px;
margin-right: 0px;
}

#s-73e05179-65d4-43a8-9971-5c5ff04a6746 {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}
@media (min-width: 1200px){#s-73e05179-65d4-43a8-9971-5c5ff04a6746 {
  display: none;
}
#s-73e05179-65d4-43a8-9971-5c5ff04a6746, #wrap-s-73e05179-65d4-43a8-9971-5c5ff04a6746 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-73e05179-65d4-43a8-9971-5c5ff04a6746 {
  display: none;
}
#s-73e05179-65d4-43a8-9971-5c5ff04a6746, #wrap-s-73e05179-65d4-43a8-9971-5c5ff04a6746 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-73e05179-65d4-43a8-9971-5c5ff04a6746 {
  display: none;
}
#s-73e05179-65d4-43a8-9971-5c5ff04a6746, #wrap-s-73e05179-65d4-43a8-9971-5c5ff04a6746 { display:none !important; }}







#s-73e05179-65d4-43a8-9971-5c5ff04a6746 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-73e05179-65d4-43a8-9971-5c5ff04a6746.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-fe5ffcc5-9456-4006-a318-dbc513b0acdd {
  margin-left: 20px;
margin-right: 20px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-fe5ffcc5-9456-4006-a318-dbc513b0acdd .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-fe5ffcc5-9456-4006-a318-dbc513b0acdd .shg-sld-nav-button.shg-sld-left,
#s-fe5ffcc5-9456-4006-a318-dbc513b0acdd .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-5882954d-2bfc-4527-9e04-bfad1d2ed743 {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-5882954d-2bfc-4527-9e04-bfad1d2ed743"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-5882954d-2bfc-4527-9e04-bfad1d2ed743"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-5882954d-2bfc-4527-9e04-bfad1d2ed743"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-5882954d-2bfc-4527-9e04-bfad1d2ed743"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

#s-e1056099-1155-4ab8-84b5-b5571cca3f5d {
  text-align: center;
}







  #s-e1056099-1155-4ab8-84b5-b5571cca3f5d img.shogun-image {
    

    
    
    
  }


#s-e1056099-1155-4ab8-84b5-b5571cca3f5d .shogun-image-content {
  
    align-items: center;
  
}

#s-d321704a-1743-4d38-a9e6-ac8c20322b61 {
  text-align: center;
}







  #s-d321704a-1743-4d38-a9e6-ac8c20322b61 img.shogun-image {
    

    
    
    
  }


#s-d321704a-1743-4d38-a9e6-ac8c20322b61 .shogun-image-content {
  
    align-items: center;
  
}

#s-abe5af02-a7fa-48bf-9321-654d28f16913 {
  text-align: center;
}







  #s-abe5af02-a7fa-48bf-9321-654d28f16913 img.shogun-image {
    

    
    
    
  }


#s-abe5af02-a7fa-48bf-9321-654d28f16913 .shogun-image-content {
  
    align-items: center;
  
}

#s-98889a58-c965-46ec-a3d9-c0a12b798d18 {
  text-align: center;
}







  #s-98889a58-c965-46ec-a3d9-c0a12b798d18 img.shogun-image {
    

    
    
    
  }


#s-98889a58-c965-46ec-a3d9-c0a12b798d18 .shogun-image-content {
  
    align-items: center;
  
}

#s-953324e1-07d5-4d4c-8607-6f77ba8ad92b {
  text-align: center;
}







  #s-953324e1-07d5-4d4c-8607-6f77ba8ad92b img.shogun-image {
    

    
    
    
  }


#s-953324e1-07d5-4d4c-8607-6f77ba8ad92b .shogun-image-content {
  
    align-items: center;
  
}

#s-1b092372-a73e-4f52-a4a5-f3903efa9ed6 {
  text-align: center;
}







  #s-1b092372-a73e-4f52-a4a5-f3903efa9ed6 img.shogun-image {
    

    
    
    
  }


#s-1b092372-a73e-4f52-a4a5-f3903efa9ed6 .shogun-image-content {
  
    align-items: center;
  
}

#s-0048ed11-85b0-43d0-82c6-f891ef841777 {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-0048ed11-85b0-43d0-82c6-f891ef841777"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-0048ed11-85b0-43d0-82c6-f891ef841777"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-0048ed11-85b0-43d0-82c6-f891ef841777"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-0048ed11-85b0-43d0-82c6-f891ef841777"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

}

#s-4555a8ad-9a06-42fe-9f22-37585ba0d04b {
  text-align: center;
}







  #s-4555a8ad-9a06-42fe-9f22-37585ba0d04b img.shogun-image {
    

    
    
    
  }


#s-4555a8ad-9a06-42fe-9f22-37585ba0d04b .shogun-image-content {
  
    align-items: center;
  
}

#s-3fc6f9cb-8c36-45de-8f9c-2632e105576d {
  text-align: center;
}







  #s-3fc6f9cb-8c36-45de-8f9c-2632e105576d img.shogun-image {
    

    
    
    
  }


#s-3fc6f9cb-8c36-45de-8f9c-2632e105576d .shogun-image-content {
  
    align-items: center;
  
}

#s-078ebc5a-cacd-46d0-9359-d98c6cb6eeec {
  text-align: center;
}







  #s-078ebc5a-cacd-46d0-9359-d98c6cb6eeec img.shogun-image {
    

    
    
    
  }


#s-078ebc5a-cacd-46d0-9359-d98c6cb6eeec .shogun-image-content {
  
    align-items: center;
  
}

#s-09ffc0c1-a8ee-4daf-a0cd-5cd30dc49daa {
  text-align: center;
}







  #s-09ffc0c1-a8ee-4daf-a0cd-5cd30dc49daa img.shogun-image {
    

    
    
    
  }


#s-09ffc0c1-a8ee-4daf-a0cd-5cd30dc49daa .shogun-image-content {
  
    align-items: center;
  
}

#s-c8bc28b1-de6e-47be-ab9a-f09a506f8550 {
  text-align: center;
}







  #s-c8bc28b1-de6e-47be-ab9a-f09a506f8550 img.shogun-image {
    

    
    
    
  }


#s-c8bc28b1-de6e-47be-ab9a-f09a506f8550 .shogun-image-content {
  
    align-items: center;
  
}

#s-b1b07555-7220-4334-92cd-4d3e2645f1e3 {
  text-align: center;
}







  #s-b1b07555-7220-4334-92cd-4d3e2645f1e3 img.shogun-image {
    

    
    
    
  }


#s-b1b07555-7220-4334-92cd-4d3e2645f1e3 .shogun-image-content {
  
    align-items: center;
  
}

#s-9e95a4be-83f9-41f2-848e-8a86a552b65a {
  margin-left: 10px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-9e95a4be-83f9-41f2-848e-8a86a552b65a {
  display: none;
}
#s-9e95a4be-83f9-41f2-848e-8a86a552b65a, #wrap-s-9e95a4be-83f9-41f2-848e-8a86a552b65a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9e95a4be-83f9-41f2-848e-8a86a552b65a {
  display: none;
}
#s-9e95a4be-83f9-41f2-848e-8a86a552b65a, #wrap-s-9e95a4be-83f9-41f2-848e-8a86a552b65a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9e95a4be-83f9-41f2-848e-8a86a552b65a {
  display: none;
}
#s-9e95a4be-83f9-41f2-848e-8a86a552b65a, #wrap-s-9e95a4be-83f9-41f2-848e-8a86a552b65a { display:none !important; }}







#s-9e95a4be-83f9-41f2-848e-8a86a552b65a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9e95a4be-83f9-41f2-848e-8a86a552b65a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f8d4c369-76a6-4f4c-a734-ae5b0bb5925b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f8d4c369-76a6-4f4c-a734-ae5b0bb5925b .shogun-heading-component h2 {
  color: #000;
  font-weight:  500 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-6e19b1fe-b4da-48bb-a242-86062caf8b39 {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-6e19b1fe-b4da-48bb-a242-86062caf8b39"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6e19b1fe-b4da-48bb-a242-86062caf8b39"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6e19b1fe-b4da-48bb-a242-86062caf8b39"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6e19b1fe-b4da-48bb-a242-86062caf8b39"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e805b15d-4282-452d-9f77-40f623af1182 {
  text-align: center;
}







  #s-e805b15d-4282-452d-9f77-40f623af1182 img.shogun-image {
    

    
    
    
  }


#s-e805b15d-4282-452d-9f77-40f623af1182 .shogun-image-content {
  
    align-items: center;
  
}

#s-64bf6393-fb1c-4a4b-927b-2fde3a53ff58 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-64bf6393-fb1c-4a4b-927b-2fde3a53ff58 .shogun-heading-component h3 {
  color: #000;
  font-weight:  500 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-8c4bb35c-0b74-4ac8-a42c-fa7141d9e90f {
  text-align: center;
}







  #s-8c4bb35c-0b74-4ac8-a42c-fa7141d9e90f img.shogun-image {
    

    
    
    
  }


#s-8c4bb35c-0b74-4ac8-a42c-fa7141d9e90f .shogun-image-content {
  
    align-items: center;
  
}

#s-2b742361-9d59-4806-a275-26337cdaa37e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2b742361-9d59-4806-a275-26337cdaa37e .shogun-heading-component h3 {
  color: #000;
  font-weight:  500 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-3dc2245f-43b3-47e0-aeec-e2f1d512c598 {
  margin-left: 10px;
margin-right: 10px;
}

@media (min-width: 0px) {
[id="s-3dc2245f-43b3-47e0-aeec-e2f1d512c598"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3dc2245f-43b3-47e0-aeec-e2f1d512c598"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3dc2245f-43b3-47e0-aeec-e2f1d512c598"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3dc2245f-43b3-47e0-aeec-e2f1d512c598"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-eee1b788-447e-4013-8311-69b4ed863c79 {
  text-align: center;
}







  #s-eee1b788-447e-4013-8311-69b4ed863c79 img.shogun-image {
    

    
    
    
  }


#s-eee1b788-447e-4013-8311-69b4ed863c79 .shogun-image-content {
  
    align-items: center;
  
}

#s-0a683db1-178e-455c-b974-c4924d711968 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0a683db1-178e-455c-b974-c4924d711968 .shogun-heading-component h3 {
  color: #000;
  font-weight:  500 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-58fca465-a7b1-4e41-9b81-a4aa142fa56d {
  text-align: center;
}







  #s-58fca465-a7b1-4e41-9b81-a4aa142fa56d img.shogun-image {
    

    
    
    
  }


#s-58fca465-a7b1-4e41-9b81-a4aa142fa56d .shogun-image-content {
  
    align-items: center;
  
}

#s-29c8a8f7-a21c-42ff-8a23-f1d8de3e9c6a {
  margin-left: 10px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-29c8a8f7-a21c-42ff-8a23-f1d8de3e9c6a {
  display: none;
}
#s-29c8a8f7-a21c-42ff-8a23-f1d8de3e9c6a, #wrap-s-29c8a8f7-a21c-42ff-8a23-f1d8de3e9c6a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-29c8a8f7-a21c-42ff-8a23-f1d8de3e9c6a {
  display: none;
}
#s-29c8a8f7-a21c-42ff-8a23-f1d8de3e9c6a, #wrap-s-29c8a8f7-a21c-42ff-8a23-f1d8de3e9c6a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-29c8a8f7-a21c-42ff-8a23-f1d8de3e9c6a {
  display: none;
}
#s-29c8a8f7-a21c-42ff-8a23-f1d8de3e9c6a, #wrap-s-29c8a8f7-a21c-42ff-8a23-f1d8de3e9c6a { display:none !important; }}







#s-29c8a8f7-a21c-42ff-8a23-f1d8de3e9c6a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-29c8a8f7-a21c-42ff-8a23-f1d8de3e9c6a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9d681e7e-5dac-4fd5-8b38-ee88f36e8439 {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
}

.shg-product-image-wrapper {
  display: none;
  position: relative;
  width: 100%;
}

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-89143951-d9fb-4bd4-a7ff-f7444e82a054 {
  text-align: left;
}



.shg-c#s-89143951-d9fb-4bd4-a7ff-f7444e82a054 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-89143951-d9fb-4bd4-a7ff-f7444e82a054 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-89143951-d9fb-4bd4-a7ff-f7444e82a054 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-89143951-d9fb-4bd4-a7ff-f7444e82a054 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-89143951-d9fb-4bd4-a7ff-f7444e82a054 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-89143951-d9fb-4bd4-a7ff-f7444e82a054 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-89143951-d9fb-4bd4-a7ff-f7444e82a054 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-89143951-d9fb-4bd4-a7ff-f7444e82a054 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-89143951-d9fb-4bd4-a7ff-f7444e82a054 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-89143951-d9fb-4bd4-a7ff-f7444e82a054 img.shogun-image {
  width: 100%;
}



}
.shg-btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.shg-variant-btn {
  cursor: pointer;
  box-sizing: border-box;
  display: inline-block;
  text-decoration: none;
  letter-spacing: normal;
}

.shg-variant-btn.hidden {
  display: none;
}

.shg-variant-btn.disabled {
  cursor: not-allowed;
}

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

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

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

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

.shg-product-selector-hidden {
  display: none;
}

#s-80779d60-6ad4-422d-8faa-bd21be79497a {
  margin-top: 10px;
margin-bottom: 10px;
text-align: left;
}

#s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-80779d60-6ad4-422d-8faa-bd21be79497a-btn-wrapper {
    text-align: center;
  }


#s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-variant-btn:hover {
  background: #252525;
}

#s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-variant-btn:active, #s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-80779d60-6ad4-422d-8faa-bd21be79497a .shg-variant-btn.disabled {
  background: #252525;
}

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

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

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

#s-d7e1a746-1ae1-416b-847c-a2cf56665a56 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-d7e1a746-1ae1-416b-847c-a2cf56665a56:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d7e1a746-1ae1-416b-847c-a2cf56665a56:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d7e1a746-1ae1-416b-847c-a2cf56665a56 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d7e1a746-1ae1-416b-847c-a2cf56665a56.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d7e1a746-1ae1-416b-847c-a2cf56665a56.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-d7e1a746-1ae1-416b-847c-a2cf56665a56.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-e4baa1de-2c95-4504-a933-0c5f92fd2fa8 {
  margin-left: 10px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
}








#s-e4baa1de-2c95-4504-a933-0c5f92fd2fa8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e4baa1de-2c95-4504-a933-0c5f92fd2fa8.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-ee47ee7b-737b-45b0-8c24-ff4fa16bdce2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ee47ee7b-737b-45b0-8c24-ff4fa16bdce2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ee47ee7b-737b-45b0-8c24-ff4fa16bdce2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ee47ee7b-737b-45b0-8c24-ff4fa16bdce2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-3ca06365-3c7d-4374-b489-9e0e8ca95c15 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
text-align: center;
}







  #s-3ca06365-3c7d-4374-b489-9e0e8ca95c15 img.shogun-image {
    

    
    
    
  }


#s-3ca06365-3c7d-4374-b489-9e0e8ca95c15 .shogun-image-content {
  
    align-items: center;
  
}

#s-1d82c044-20cf-4f83-9dfa-72134bfa42e2 {
  text-align: center;
}







  #s-1d82c044-20cf-4f83-9dfa-72134bfa42e2 img.shogun-image {
    

    
    
    
  }


#s-1d82c044-20cf-4f83-9dfa-72134bfa42e2 .shogun-image-content {
  
    align-items: center;
  
}

#s-08a7b0c2-62ca-4e55-a118-bec199380a36 {
  text-align: center;
}







  #s-08a7b0c2-62ca-4e55-a118-bec199380a36 img.shogun-image {
    

    
    
    
  }


#s-08a7b0c2-62ca-4e55-a118-bec199380a36 .shogun-image-content {
  
    align-items: 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}