.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-77caf3b6-1233-4853-9aab-b1748f62f744 {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 50px;
margin-right: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-77caf3b6-1233-4853-9aab-b1748f62f744 {
  display: none;
}
#s-77caf3b6-1233-4853-9aab-b1748f62f744, #wrap-s-77caf3b6-1233-4853-9aab-b1748f62f744 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-77caf3b6-1233-4853-9aab-b1748f62f744 {
  display: none;
}
#s-77caf3b6-1233-4853-9aab-b1748f62f744, #wrap-s-77caf3b6-1233-4853-9aab-b1748f62f744 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-77caf3b6-1233-4853-9aab-b1748f62f744 {
  display: none;
}
#s-77caf3b6-1233-4853-9aab-b1748f62f744, #wrap-s-77caf3b6-1233-4853-9aab-b1748f62f744 { display: none !important; }}







#s-77caf3b6-1233-4853-9aab-b1748f62f744 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-77caf3b6-1233-4853-9aab-b1748f62f744.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-271f00f0-ca53-48ff-bf90-a96e7f13ed6e {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 1200px){#s-271f00f0-ca53-48ff-bf90-a96e7f13ed6e {
  display: none;
}
#s-271f00f0-ca53-48ff-bf90-a96e7f13ed6e, #wrap-s-271f00f0-ca53-48ff-bf90-a96e7f13ed6e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-271f00f0-ca53-48ff-bf90-a96e7f13ed6e {
  display: none;
}
#s-271f00f0-ca53-48ff-bf90-a96e7f13ed6e, #wrap-s-271f00f0-ca53-48ff-bf90-a96e7f13ed6e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-271f00f0-ca53-48ff-bf90-a96e7f13ed6e {
  display: none;
}
#s-271f00f0-ca53-48ff-bf90-a96e7f13ed6e, #wrap-s-271f00f0-ca53-48ff-bf90-a96e7f13ed6e { display: none !important; }}
#s-271f00f0-ca53-48ff-bf90-a96e7f13ed6e .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-271f00f0-ca53-48ff-bf90-a96e7f13ed6e .shg-sld-nav-button.shg-sld-left,
#s-271f00f0-ca53-48ff-bf90-a96e7f13ed6e .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

.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-7ed3d889-2dc0-43fb-8c5f-329350c2f448 {
  text-align: center;
}







  #s-7ed3d889-2dc0-43fb-8c5f-329350c2f448 img.shogun-image {
    

    
    
    
  }


#s-7ed3d889-2dc0-43fb-8c5f-329350c2f448 .shogun-image-content {
  
    align-items: center;
  
}

#s-3e7669a9-d55e-42c5-8896-c2d8d03ac2d5 {
  text-align: center;
}







  #s-3e7669a9-d55e-42c5-8896-c2d8d03ac2d5 img.shogun-image {
    

    
    
    
  }


#s-3e7669a9-d55e-42c5-8896-c2d8d03ac2d5 .shogun-image-content {
  
    align-items: center;
  
}

#s-2236d56d-b22e-4932-aaec-b9623e8067f7 {
  text-align: center;
}







  #s-2236d56d-b22e-4932-aaec-b9623e8067f7 img.shogun-image {
    

    
    
    
  }


#s-2236d56d-b22e-4932-aaec-b9623e8067f7 .shogun-image-content {
  
    align-items: center;
  
}

#s-25d0637e-ac36-43f8-96c6-d1f4a0973cdb {
  margin-bottom: 30px;
text-align: center;
}







  #s-25d0637e-ac36-43f8-96c6-d1f4a0973cdb img.shogun-image {
    

    
    
    
  }


#s-25d0637e-ac36-43f8-96c6-d1f4a0973cdb .shogun-image-content {
  
    align-items: center;
  
}

#s-7b1250a9-cf75-49a7-9b78-136f2d68ac8e {
  margin-bottom: 30px;
text-align: center;
}







  #s-7b1250a9-cf75-49a7-9b78-136f2d68ac8e img.shogun-image {
    

    
    
    
  }


#s-7b1250a9-cf75-49a7-9b78-136f2d68ac8e .shogun-image-content {
  
    align-items: center;
  
}

#s-fcc28bfb-377a-4d2e-95e2-7656d1d4dafd {
  margin-bottom: 30px;
text-align: center;
}







  #s-fcc28bfb-377a-4d2e-95e2-7656d1d4dafd img.shogun-image {
    

    
    
    
  }


#s-fcc28bfb-377a-4d2e-95e2-7656d1d4dafd .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-b462c347-48c9-421f-ae2c-ccb686d71fbb {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-b462c347-48c9-421f-ae2c-ccb686d71fbb .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "marigold";
  font-style:  normal ;
  font-size: 50px;
  
  
  text-align: center;
}



#s-8f222df8-be9a-4bde-90de-227bc21b8472 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8f222df8-be9a-4bde-90de-227bc21b8472 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "marigold";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: 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-0e3e04cf-e3fa-43d7-bfe5-5c2bfa707304 {
  margin-bottom: 0px;
}

.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);
}

#s-2ae5b3a1-8628-48a2-b704-7f67091d05a7 {
  margin-top: 30px;
margin-bottom: 30px;
}
@media (max-width: 767px){#s-2ae5b3a1-8628-48a2-b704-7f67091d05a7 {
  display: none;
}
#s-2ae5b3a1-8628-48a2-b704-7f67091d05a7, #wrap-s-2ae5b3a1-8628-48a2-b704-7f67091d05a7 { display: none !important; }}
#s-2ae5b3a1-8628-48a2-b704-7f67091d05a7 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-2ae5b3a1-8628-48a2-b704-7f67091d05a7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-2ae5b3a1-8628-48a2-b704-7f67091d05a7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(65, 64, 64, 1);
}

#s-2ae5b3a1-8628-48a2-b704-7f67091d05a7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-2ae5b3a1-8628-48a2-b704-7f67091d05a7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(65, 64, 64, 1);
  text-align: left;
  font-family: marigold;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-2ae5b3a1-8628-48a2-b704-7f67091d05a7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

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

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

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

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

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

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

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

#s-f5840d60-8c3d-49f8-bd14-750c3c904e10 {
  margin-top: 10px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-f5840d60-8c3d-49f8-bd14-750c3c904e10:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f5840d60-8c3d-49f8-bd14-750c3c904e10:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f5840d60-8c3d-49f8-bd14-750c3c904e10-root {
    text-align: left;
  }


#s-f5840d60-8c3d-49f8-bd14-750c3c904e10.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f5840d60-8c3d-49f8-bd14-750c3c904e10-root {
    text-align: left;
  }


#s-f5840d60-8c3d-49f8-bd14-750c3c904e10.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f5840d60-8c3d-49f8-bd14-750c3c904e10-root {
    text-align: left;
  }


#s-f5840d60-8c3d-49f8-bd14-750c3c904e10.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f5840d60-8c3d-49f8-bd14-750c3c904e10-root {
    text-align: left;
  }


#s-f5840d60-8c3d-49f8-bd14-750c3c904e10.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f5840d60-8c3d-49f8-bd14-750c3c904e10-root {
    text-align: left;
  }


#s-f5840d60-8c3d-49f8-bd14-750c3c904e10.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-1da79cd8-8bf3-412e-b18e-525bda452210 {
  margin-left: auto;
margin-right: auto;
max-width: 250px;
text-align: center;
}
@media (max-width: 767px){#s-1da79cd8-8bf3-412e-b18e-525bda452210 {
  max-width: 250px;
text-align: center;
}
}
#s-2d8e47ac-6573-4bf4-bb7f-585d710a1d75 {
  margin-top: 10px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-2d8e47ac-6573-4bf4-bb7f-585d710a1d75:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2d8e47ac-6573-4bf4-bb7f-585d710a1d75:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2d8e47ac-6573-4bf4-bb7f-585d710a1d75-root {
    text-align: center;
  }


#s-2d8e47ac-6573-4bf4-bb7f-585d710a1d75.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2d8e47ac-6573-4bf4-bb7f-585d710a1d75-root {
    text-align: center;
  }


#s-2d8e47ac-6573-4bf4-bb7f-585d710a1d75.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2d8e47ac-6573-4bf4-bb7f-585d710a1d75-root {
    text-align: center;
  }


#s-2d8e47ac-6573-4bf4-bb7f-585d710a1d75.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2d8e47ac-6573-4bf4-bb7f-585d710a1d75-root {
    text-align: center;
  }


#s-2d8e47ac-6573-4bf4-bb7f-585d710a1d75.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2d8e47ac-6573-4bf4-bb7f-585d710a1d75-root {
    text-align: center;
  }


#s-2d8e47ac-6573-4bf4-bb7f-585d710a1d75.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
.shg-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

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

#s-9cf41fe0-e71f-43ce-82f4-3cfebca775ca {
  margin-top: 50px;
margin-bottom: 70px;
}
@media (max-width: 767px){#s-9cf41fe0-e71f-43ce-82f4-3cfebca775ca {
  margin-top: 0px;
margin-bottom: 0px;
display: none;
}
#s-9cf41fe0-e71f-43ce-82f4-3cfebca775ca, #wrap-s-9cf41fe0-e71f-43ce-82f4-3cfebca775ca { display: none !important; }}
@media (min-width: 0px) {
[id="s-9cf41fe0-e71f-43ce-82f4-3cfebca775ca"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9cf41fe0-e71f-43ce-82f4-3cfebca775ca"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-9cf41fe0-e71f-43ce-82f4-3cfebca775ca"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-9cf41fe0-e71f-43ce-82f4-3cfebca775ca"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

#s-33ac04d0-8807-46f0-aa11-443a95bd7ed2 {
  min-height: 50px;
}
@media (max-width: 767px){#s-33ac04d0-8807-46f0-aa11-443a95bd7ed2 {
  display: none;
}
#s-33ac04d0-8807-46f0-aa11-443a95bd7ed2, #wrap-s-33ac04d0-8807-46f0-aa11-443a95bd7ed2 { display: none !important; }}







#s-33ac04d0-8807-46f0-aa11-443a95bd7ed2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-33ac04d0-8807-46f0-aa11-443a95bd7ed2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-ca79b42e-2a0c-493c-8311-9580aa1e6b20 {
  text-align: left;
}



.shg-c#s-ca79b42e-2a0c-493c-8311-9580aa1e6b20 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ca79b42e-2a0c-493c-8311-9580aa1e6b20 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ca79b42e-2a0c-493c-8311-9580aa1e6b20 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ca79b42e-2a0c-493c-8311-9580aa1e6b20 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ca79b42e-2a0c-493c-8311-9580aa1e6b20 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ca79b42e-2a0c-493c-8311-9580aa1e6b20 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ca79b42e-2a0c-493c-8311-9580aa1e6b20 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ca79b42e-2a0c-493c-8311-9580aa1e6b20 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ca79b42e-2a0c-493c-8311-9580aa1e6b20 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ca79b42e-2a0c-493c-8311-9580aa1e6b20 img.shogun-image {
  width: 100%;
}



}
.shg-gallery-root {
}

.shg-gallery-arrows-container {
  display: flex;
  align-items: center;
  position: relative;
}

.shg-gallery-dots-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.shg-gallery-scroll-container {
  position: relative;
}

.shg-gallery-thumb-list {
  display: flex;
  flex-wrap: wrap;
}

.shg-gallery-thumb-image {
  max-width: 100%;
  display: inline-block;
  cursor: pointer;
}

.shg-gallery-thumb-image:hover {
  opacity: 0.6;
}

.shg-gallery-thumb-image-square {
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.shg-gallery-image-hidden {
  display: none;
}

.shg-gallery-scroll-button {
  position: absolute;
  width: 3%;
  max-width: 48px;
  max-height: 48px;
}

.shg-left {
  left: 0;
  margin-left: 1%;
}

.shg-right {
  right: 0;
  margin-right: 1%;
}

.shg-gallery-dot {
  height: 14px;
  width: 14px;
  opacity: 0.5;
  border-radius: 100%;
  margin: 0 8px;
}

.shg-selected {
  opacity: 1;
}

#s-7f3bbb55-2689-4963-b54c-6a53339a646f {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-7f3bbb55-2689-4963-b54c-6a53339a646f .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-7f3bbb55-2689-4963-b54c-6a53339a646f .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-7f3bbb55-2689-4963-b54c-6a53339a646f .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-7f3bbb55-2689-4963-b54c-6a53339a646f .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-7f3bbb55-2689-4963-b54c-6a53339a646f .shg-gallery-scroll-button {
  color: #FFF;
}

#s-7f3bbb55-2689-4963-b54c-6a53339a646f .shg-gallery-dot {
  background-color: #FFF;
}

#s-88e6f010-8dd3-4208-8c1f-91b0051d2c5a {
  min-height: 50px;
}
@media (max-width: 767px){#s-88e6f010-8dd3-4208-8c1f-91b0051d2c5a {
  padding-left: 50px;
padding-right: 50px;
}
}







#s-88e6f010-8dd3-4208-8c1f-91b0051d2c5a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-88e6f010-8dd3-4208-8c1f-91b0051d2c5a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9b2cce8f-1d34-4a38-81a8-85ea6f622771 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-9b2cce8f-1d34-4a38-81a8-85ea6f622771 {
  margin-top: 40px;
}
}
#s-9b2cce8f-1d34-4a38-81a8-85ea6f622771 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "marigold";
  font-style:  normal ;
  font-size: 50px;
  
  
  text-align: left;
}



#s-ae0e5733-8d34-4bd8-b647-432ac433c409 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-e105ab45-389a-4bda-b5f2-6bd854ca9fe8 {
  min-height: 50px;
}








#s-e105ab45-389a-4bda-b5f2-6bd854ca9fe8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e105ab45-389a-4bda-b5f2-6bd854ca9fe8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-61b34439-4fe6-469d-8e80-632d06bd1d7b {
  margin-bottom: 0px;
}

@media (min-width: 1200px){#s-a01a03ed-2eea-40b8-8ea3-a469f66de5fb {
  display: none;
}
#s-a01a03ed-2eea-40b8-8ea3-a469f66de5fb, #wrap-s-a01a03ed-2eea-40b8-8ea3-a469f66de5fb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a01a03ed-2eea-40b8-8ea3-a469f66de5fb {
  display: none;
}
#s-a01a03ed-2eea-40b8-8ea3-a469f66de5fb, #wrap-s-a01a03ed-2eea-40b8-8ea3-a469f66de5fb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a01a03ed-2eea-40b8-8ea3-a469f66de5fb {
  display: none;
}
#s-a01a03ed-2eea-40b8-8ea3-a469f66de5fb, #wrap-s-a01a03ed-2eea-40b8-8ea3-a469f66de5fb { display: none !important; }}
#s-f88ab45c-24a9-4ae5-ab3a-16386afc71db {
  max-width: 300px;
}

#s-893ca444-6bf8-452d-bed0-a1988a812fce {
  margin-top: 10px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-radius: 2px;
background-color: #252525;
text-align: left;
text-decoration: none;
}
#s-893ca444-6bf8-452d-bed0-a1988a812fce:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-893ca444-6bf8-452d-bed0-a1988a812fce:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-893ca444-6bf8-452d-bed0-a1988a812fce-root {
    text-align: left;
  }


#s-893ca444-6bf8-452d-bed0-a1988a812fce.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-893ca444-6bf8-452d-bed0-a1988a812fce-root {
    text-align: left;
  }


#s-893ca444-6bf8-452d-bed0-a1988a812fce.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-893ca444-6bf8-452d-bed0-a1988a812fce-root {
    text-align: left;
  }


#s-893ca444-6bf8-452d-bed0-a1988a812fce.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-893ca444-6bf8-452d-bed0-a1988a812fce-root {
    text-align: left;
  }


#s-893ca444-6bf8-452d-bed0-a1988a812fce.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-893ca444-6bf8-452d-bed0-a1988a812fce-root {
    text-align: left;
  }


#s-893ca444-6bf8-452d-bed0-a1988a812fce.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-0803e890-7f65-4352-bf22-f08a82822045 {
  margin-top: 30px;
margin-bottom: 30px;
}
@media (max-width: 767px){#s-0803e890-7f65-4352-bf22-f08a82822045 {
  
}
}
#s-0803e890-7f65-4352-bf22-f08a82822045 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-0803e890-7f65-4352-bf22-f08a82822045 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-0803e890-7f65-4352-bf22-f08a82822045 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(65, 64, 64, 1);
}

#s-0803e890-7f65-4352-bf22-f08a82822045 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-0803e890-7f65-4352-bf22-f08a82822045 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(65, 64, 64, 1);
  text-align: left;
  font-family: marigold;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-0803e890-7f65-4352-bf22-f08a82822045 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-b766beaf-24e6-4310-bca8-0faf489bf4f7 {
  min-height: 50px;
}








#s-b766beaf-24e6-4310-bca8-0faf489bf4f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b766beaf-24e6-4310-bca8-0faf489bf4f7.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-623d4060-f3d0-411f-9f5c-cde1fab0b50b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-623d4060-f3d0-411f-9f5c-cde1fab0b50b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-623d4060-f3d0-411f-9f5c-cde1fab0b50b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-623d4060-f3d0-411f-9f5c-cde1fab0b50b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-e173d3de-f3f7-49d1-aa10-744f86847da5 {
  text-align: center;
}







  #s-e173d3de-f3f7-49d1-aa10-744f86847da5 img.shogun-image {
    

    
    
    
  }


#s-e173d3de-f3f7-49d1-aa10-744f86847da5 .shogun-image-content {
  
    align-items: center;
  
}

#s-b2ab26b7-65ad-4540-adf3-24b1a4c34455 {
  text-align: center;
}







  #s-b2ab26b7-65ad-4540-adf3-24b1a4c34455 img.shogun-image {
    

    
    
    
  }


#s-b2ab26b7-65ad-4540-adf3-24b1a4c34455 .shogun-image-content {
  
    align-items: center;
  
}

#s-4774d2fa-516e-4175-8e75-d4c9bd983c1c {
  text-align: center;
}







  #s-4774d2fa-516e-4175-8e75-d4c9bd983c1c img.shogun-image {
    

    
    
    
  }


#s-4774d2fa-516e-4175-8e75-d4c9bd983c1c .shogun-image-content {
  
    align-items: center;
  
}

#s-e964387c-ebc1-43ed-b8b7-231c36cdd611 {
  min-height: 50px;
}








#s-e964387c-ebc1-43ed-b8b7-231c36cdd611 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e964387c-ebc1-43ed-b8b7-231c36cdd611.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-11df19c9-f39a-4e6c-9205-964bdb18accd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-11df19c9-f39a-4e6c-9205-964bdb18accd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-11df19c9-f39a-4e6c-9205-964bdb18accd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-11df19c9-f39a-4e6c-9205-964bdb18accd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-b8513184-9539-4a51-ab9d-c3bfd24f3337 {
  text-align: center;
}







  #s-b8513184-9539-4a51-ab9d-c3bfd24f3337 img.shogun-image {
    

    
    
    
  }


#s-b8513184-9539-4a51-ab9d-c3bfd24f3337 .shogun-image-content {
  
    align-items: center;
  
}

#s-06ee430b-0e37-4b35-bb10-014d2784ccea {
  text-align: center;
}







  #s-06ee430b-0e37-4b35-bb10-014d2784ccea img.shogun-image {
    

    
    
    
  }


#s-06ee430b-0e37-4b35-bb10-014d2784ccea .shogun-image-content {
  
    align-items: center;
  
}

#s-57d1e751-4ac6-419c-92f6-49fecb244b53 {
  text-align: center;
}







  #s-57d1e751-4ac6-419c-92f6-49fecb244b53 img.shogun-image {
    

    
    
    
  }


#s-57d1e751-4ac6-419c-92f6-49fecb244b53 .shogun-image-content {
  
    align-items: center;
  
}

#s-56985d14-cbf6-4afc-b282-ca212cd48702 {
  margin-top: 70px;
min-height: 50px;
}
@media (max-width: 767px){#s-56985d14-cbf6-4afc-b282-ca212cd48702 {
  margin-top: 35px;
}
}







#s-56985d14-cbf6-4afc-b282-ca212cd48702 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-56985d14-cbf6-4afc-b282-ca212cd48702.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-7c451421-f499-4ab5-b700-ad8d3a2dd2fc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7c451421-f499-4ab5-b700-ad8d3a2dd2fc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7c451421-f499-4ab5-b700-ad8d3a2dd2fc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7c451421-f499-4ab5-b700-ad8d3a2dd2fc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-b0cfc660-0dc3-4c47-ba30-056362d46e0d {
  margin-right: -14.5%;
text-align: center;
}
@media (max-width: 767px){#s-b0cfc660-0dc3-4c47-ba30-056362d46e0d {
  margin-right: 0%;
}
}






  #s-b0cfc660-0dc3-4c47-ba30-056362d46e0d img.shogun-image {
    

    
    
    
  }


#s-b0cfc660-0dc3-4c47-ba30-056362d46e0d .shogun-image-content {
  
    align-items: center;
  
}

#s-9b2f18f1-32a5-4992-ac6b-90141bc7e78c {
  margin-left: -14.5%;
text-align: center;
}
@media (max-width: 767px){#s-9b2f18f1-32a5-4992-ac6b-90141bc7e78c {
  margin-left: 0%;
}
}






  #s-9b2f18f1-32a5-4992-ac6b-90141bc7e78c img.shogun-image {
    

    
    
    
  }


#s-9b2f18f1-32a5-4992-ac6b-90141bc7e78c .shogun-image-content {
  
    align-items: center;
  
}

#s-ad0e648a-96ca-48ca-9523-780428b881fe {
  margin-top: 85px;
margin-bottom: 60px;
padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
}
@media (max-width: 767px){#s-ad0e648a-96ca-48ca-9523-780428b881fe {
  min-height: 50px;
}
}







#s-ad0e648a-96ca-48ca-9523-780428b881fe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ad0e648a-96ca-48ca-9523-780428b881fe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e28f5b31-22fe-431e-b9a3-20d02c6737e2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e28f5b31-22fe-431e-b9a3-20d02c6737e2 .shogun-heading-component h1 {
  color: #000;
  font-weight:  300 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



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

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

#s-8ffb5333-c0d0-4c74-86c2-36aafdeac324 {
  margin-top: -24px;
margin-bottom: -30px;
padding-left: 780px;
padding-right: 780px;
}

#s-8ffb5333-c0d0-4c74-86c2-36aafdeac324 hr {
  border-top: 4px solid rgba(35, 35, 35, 1);
}

#s-9884313e-5778-454c-9c60-ff72e53581ee {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9884313e-5778-454c-9c60-ff72e53581ee .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  
  
  
  
}



#s-9f0e4811-31d2-4a73-acd4-00529fad753e {
  background-repeat: no-repeat;
background-size: contain;
margin-top: 30px;
margin-bottom: 30px;
padding-top: 0px;
padding-bottom: 0px;
min-height: 750px;
max-width: 1920px;
background-position: center center;
}
@media (max-width: 767px){#s-9f0e4811-31d2-4a73-acd4-00529fad753e {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 250px;
}
}







#s-9f0e4811-31d2-4a73-acd4-00529fad753e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9f0e4811-31d2-4a73-acd4-00529fad753e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-b1ee8f55-b62f-4860-a238-0b007cfda7fb {
  display: none;
}
#s-b1ee8f55-b62f-4860-a238-0b007cfda7fb, #wrap-s-b1ee8f55-b62f-4860-a238-0b007cfda7fb { display: none !important; }}@media (max-width: 767px){#s-b1ee8f55-b62f-4860-a238-0b007cfda7fb {
  display: none;
}
#s-b1ee8f55-b62f-4860-a238-0b007cfda7fb, #wrap-s-b1ee8f55-b62f-4860-a238-0b007cfda7fb { display: none !important; }}
@media (min-width: 1200px){#s-91fc2cf9-bdc2-4fbc-97fa-87d5ecfcb40a {
  display: none;
}
#s-91fc2cf9-bdc2-4fbc-97fa-87d5ecfcb40a, #wrap-s-91fc2cf9-bdc2-4fbc-97fa-87d5ecfcb40a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-91fc2cf9-bdc2-4fbc-97fa-87d5ecfcb40a {
  display: none;
}
#s-91fc2cf9-bdc2-4fbc-97fa-87d5ecfcb40a, #wrap-s-91fc2cf9-bdc2-4fbc-97fa-87d5ecfcb40a { display: none !important; }}@media (max-width: 767px){#s-91fc2cf9-bdc2-4fbc-97fa-87d5ecfcb40a {
  margin-top: -25px;
margin-bottom: -25px;
padding-left: 5%;
padding-right: 5%;
}
}
#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 30px;
padding-left: 5%;
padding-bottom: 30px;
padding-right: 5%;
min-height: 100px;
background-position: center center;
}
@media (max-width: 767px){#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d {
  padding-top: 60px;
padding-bottom: 60px;
}
}







#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d.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-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-a51232cd-4524-4992-8887-4a58918a4bda {
  padding-top: 20px;
padding-left: 20%;
padding-bottom: 20px;
padding-right: 20%;
min-height: 50px;
background-color: rgba(255, 255, 255, 0);
}
@media (max-width: 767px){#s-a51232cd-4524-4992-8887-4a58918a4bda {
  margin-bottom: 20px;
}
}







#s-a51232cd-4524-4992-8887-4a58918a4bda > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a51232cd-4524-4992-8887-4a58918a4bda.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-147bde6f-babc-4717-a0d4-e45e2d0161b7 {
  margin-bottom: 10px;
text-align: center;
}







  #s-147bde6f-babc-4717-a0d4-e45e2d0161b7 img.shogun-image {
    

    
    
    
  }


#s-147bde6f-babc-4717-a0d4-e45e2d0161b7 .shogun-image-content {
  
    align-items: center;
  
}

#s-4faadd68-42df-4330-9fa4-b5013b616632 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-4faadd68-42df-4330-9fa4-b5013b616632 .shogun-heading-component h5 {
  color: rgba(35, 35, 35, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}



#s-f5eeb016-484c-4649-9b24-d5d08ec6693b {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0);
}
@media (max-width: 767px){#s-f5eeb016-484c-4649-9b24-d5d08ec6693b {
  margin-bottom: 20px;
}
}







#s-f5eeb016-484c-4649-9b24-d5d08ec6693b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f5eeb016-484c-4649-9b24-d5d08ec6693b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-76582d23-0fa3-4e7b-a7fb-493fb960868f {
  margin-bottom: 10px;
text-align: center;
}







  #s-76582d23-0fa3-4e7b-a7fb-493fb960868f img.shogun-image {
    

    
    
    
  }


#s-76582d23-0fa3-4e7b-a7fb-493fb960868f .shogun-image-content {
  
    align-items: center;
  
}

#s-2acad8fd-f0f7-4117-a02f-a007f1887854 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-2acad8fd-f0f7-4117-a02f-a007f1887854 .shogun-heading-component h5 {
  color: rgba(35, 35, 35, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}



#s-24d6c9f6-3900-4f5e-9fed-6593c44a5a7c {
  margin-top: 4px;
}

#s-412e6abf-484f-4e3f-9ce7-610a7a14a4fb {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 0);
}








#s-412e6abf-484f-4e3f-9ce7-610a7a14a4fb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-412e6abf-484f-4e3f-9ce7-610a7a14a4fb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-22290533-5cdb-4b3b-bf22-68b4e568dad4 {
  margin-bottom: 10px;
text-align: center;
}







  #s-22290533-5cdb-4b3b-bf22-68b4e568dad4 img.shogun-image {
    

    
    
    
  }


#s-22290533-5cdb-4b3b-bf22-68b4e568dad4 .shogun-image-content {
  
    align-items: center;
  
}

#s-5655c907-48f5-4106-b15b-2b37601f5500 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5655c907-48f5-4106-b15b-2b37601f5500 .shogun-heading-component h5 {
  color: rgba(35, 35, 35, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}



#s-29b8627e-37aa-4562-8263-4572e582871c {
  margin-top: 70px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-29b8627e-37aa-4562-8263-4572e582871c .shogun-heading-component h1 {
  color: #000;
  font-weight:  300 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-27067b4b-df0f-4904-87f4-452731acc1f6 {
  margin-top: -24px;
margin-bottom: -30px;
padding-left: 780px;
padding-right: 780px;
}

#s-27067b4b-df0f-4904-87f4-452731acc1f6 hr {
  border-top: 4px solid rgba(35, 35, 35, 1);
}

#s-daf7d376-5ee8-4b6a-9ff9-73410bbef6fb {
  margin-bottom: 9px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-daf7d376-5ee8-4b6a-9ff9-73410bbef6fb .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  
  
  
  
}



#s-566bd8e8-6453-4c17-aaf0-6c59f3844b15 {
  background-repeat: no-repeat;
background-size: contain;
margin-top: 30px;
margin-bottom: 30px;
padding-top: 0px;
padding-bottom: 0px;
min-height: 450px;
background-position: center center;
}
@media (max-width: 767px){#s-566bd8e8-6453-4c17-aaf0-6c59f3844b15 {
  margin-top: 0px;
margin-bottom: 0px;
}
}







#s-566bd8e8-6453-4c17-aaf0-6c59f3844b15 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-566bd8e8-6453-4c17-aaf0-6c59f3844b15.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-225f27e6-ed6f-439d-8e49-d9c9b1cb89a9 {
  margin-top: 60px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 0px;
min-height: 50px;
}








#s-225f27e6-ed6f-439d-8e49-d9c9b1cb89a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-225f27e6-ed6f-439d-8e49-d9c9b1cb89a9.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-c8964a05-f99d-47ba-bbb5-cf56c4c4fda0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c8964a05-f99d-47ba-bbb5-cf56c4c4fda0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c8964a05-f99d-47ba-bbb5-cf56c4c4fda0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c8964a05-f99d-47ba-bbb5-cf56c4c4fda0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-5091483c-a0ed-4d1f-b286-a1357bc683d6 {
  text-align: center;
}







  #s-5091483c-a0ed-4d1f-b286-a1357bc683d6 img.shogun-image {
    

    
    
    
  }


#s-5091483c-a0ed-4d1f-b286-a1357bc683d6 .shogun-image-content {
  
    align-items: center;
  
}

#s-e0a48077-fb73-4c88-9d32-9891c2a0ecb7 {
  padding-top: 15px;
}

#s-b197ed47-6640-4c2e-8398-22edcfbb5848 {
  text-align: center;
}







  #s-b197ed47-6640-4c2e-8398-22edcfbb5848 img.shogun-image {
    

    
    
    
  }


#s-b197ed47-6640-4c2e-8398-22edcfbb5848 .shogun-image-content {
  
    align-items: center;
  
}

#s-a674d28d-c7b6-47e5-bc43-17415b719ecd {
  padding-top: 15px;
}

#s-0faa2862-0272-48ed-ad31-d9a5fb58d5b7 {
  text-align: center;
}







  #s-0faa2862-0272-48ed-ad31-d9a5fb58d5b7 img.shogun-image {
    

    
    
    
  }


#s-0faa2862-0272-48ed-ad31-d9a5fb58d5b7 .shogun-image-content {
  
    align-items: center;
  
}

#s-36ed5a3d-5d35-49ce-badd-a710a2e198f4 {
  padding-top: 15px;
}

#s-93089bb4-4db6-4ddb-a344-7d4ed46c116c {
  text-align: center;
}
@media (min-width: 1200px){#s-93089bb4-4db6-4ddb-a344-7d4ed46c116c {
  display: none;
}
#s-93089bb4-4db6-4ddb-a344-7d4ed46c116c, #wrap-s-93089bb4-4db6-4ddb-a344-7d4ed46c116c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-93089bb4-4db6-4ddb-a344-7d4ed46c116c {
  display: none;
}
#s-93089bb4-4db6-4ddb-a344-7d4ed46c116c, #wrap-s-93089bb4-4db6-4ddb-a344-7d4ed46c116c { display: none !important; }}@media (max-width: 767px){#s-93089bb4-4db6-4ddb-a344-7d4ed46c116c {
  padding-top: 35px;
padding-bottom: 35px;
}
}






  #s-93089bb4-4db6-4ddb-a344-7d4ed46c116c img.shogun-image {
    

    
    
    
  }


#s-93089bb4-4db6-4ddb-a344-7d4ed46c116c .shogun-image-content {
  
    align-items: center;
  
}

#s-012246fa-44fb-44c8-9e65-cb80f0fcdd19 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-012246fa-44fb-44c8-9e65-cb80f0fcdd19 {
  display: none;
}
#s-012246fa-44fb-44c8-9e65-cb80f0fcdd19, #wrap-s-012246fa-44fb-44c8-9e65-cb80f0fcdd19 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-012246fa-44fb-44c8-9e65-cb80f0fcdd19 {
  display: none;
}
#s-012246fa-44fb-44c8-9e65-cb80f0fcdd19, #wrap-s-012246fa-44fb-44c8-9e65-cb80f0fcdd19 { display: none !important; }}@media (max-width: 767px){#s-012246fa-44fb-44c8-9e65-cb80f0fcdd19 {
  margin-top: 0%;
margin-bottom: 0%;
padding-top: 34%;
}
}







#s-012246fa-44fb-44c8-9e65-cb80f0fcdd19 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-012246fa-44fb-44c8-9e65-cb80f0fcdd19.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ce7e95ae-3a48-4825-9507-9117ce974fb2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-ce7e95ae-3a48-4825-9507-9117ce974fb2 {
  display: none;
}
#s-ce7e95ae-3a48-4825-9507-9117ce974fb2, #wrap-s-ce7e95ae-3a48-4825-9507-9117ce974fb2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ce7e95ae-3a48-4825-9507-9117ce974fb2 {
  display: none;
}
#s-ce7e95ae-3a48-4825-9507-9117ce974fb2, #wrap-s-ce7e95ae-3a48-4825-9507-9117ce974fb2 { display: none !important; }}@media (max-width: 767px){#s-ce7e95ae-3a48-4825-9507-9117ce974fb2 {
  margin-top: 140px;
min-height: 0px;
}
}
#s-ce7e95ae-3a48-4825-9507-9117ce974fb2 .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


@media (max-width: 767px){#s-ce7e95ae-3a48-4825-9507-9117ce974fb2 .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}


}
@media (min-width: 1200px){#s-72dcfc5c-d8a7-4f54-a6ce-2df75b595b5d {
  display: none;
}
#s-72dcfc5c-d8a7-4f54-a6ce-2df75b595b5d, #wrap-s-72dcfc5c-d8a7-4f54-a6ce-2df75b595b5d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-72dcfc5c-d8a7-4f54-a6ce-2df75b595b5d {
  display: none;
}
#s-72dcfc5c-d8a7-4f54-a6ce-2df75b595b5d, #wrap-s-72dcfc5c-d8a7-4f54-a6ce-2df75b595b5d { display: none !important; }}@media (max-width: 767px){#s-72dcfc5c-d8a7-4f54-a6ce-2df75b595b5d {
  margin-top: -25px;
margin-bottom: -40px;
padding-top: 0px;
padding-left: 45%;
padding-bottom: 0px;
padding-right: 45%;
}
}
#s-72dcfc5c-d8a7-4f54-a6ce-2df75b595b5d hr {
  border-top: 4px solid rgba(35, 35, 35, 1);
}

@media (max-width: 767px){#s-26bbd98f-47b6-498b-9128-ed6304b6b58c {
  padding-top: 20px;
padding-left: 8%;
padding-right: 8%;
}
}
#s-3872de01-bff9-4b77-9edf-57d3721f53d4 {
  min-height: 50px;
}








#s-3872de01-bff9-4b77-9edf-57d3721f53d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3872de01-bff9-4b77-9edf-57d3721f53d4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a943e7c0-e920-4f40-9c36-5f737d35265b {
  margin-top: 60px;
margin-bottom: 30px;
text-align: center;
}
@media (max-width: 767px){#s-a943e7c0-e920-4f40-9c36-5f737d35265b {
  margin-top: 15px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
}






  #s-a943e7c0-e920-4f40-9c36-5f737d35265b img.shogun-image {
    

    
    
    
  }


#s-a943e7c0-e920-4f40-9c36-5f737d35265b .shogun-image-content {
  
    align-items: center;
  
}

#s-2a24f90c-1526-4c1d-a4dc-e9bef889efe2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2a24f90c-1526-4c1d-a4dc-e9bef889efe2 .shogun-heading-component h1 {
  color: #000;
  font-weight:  300 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-5446cdd4-44bc-463c-a038-9f70f5149374 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5446cdd4-44bc-463c-a038-9f70f5149374 .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-fbdf307f-6fb0-453e-8114-18af436a8b96 {
  min-height: 50px;
}








#s-fbdf307f-6fb0-453e-8114-18af436a8b96 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fbdf307f-6fb0-453e-8114-18af436a8b96.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e7b0f818-2b11-4c39-b391-bf5904ab9d09 {
  min-height: 50px;
}








#s-e7b0f818-2b11-4c39-b391-bf5904ab9d09 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e7b0f818-2b11-4c39-b391-bf5904ab9d09.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0b44622a-2d0b-4670-a172-ecd8cdee3278 {
  margin-top: 50px;
padding-left: 10%;
padding-right: 10%;
}

#s-0b44622a-2d0b-4670-a172-ecd8cdee3278 hr {
  border-top: 1px solid rgba(35, 35, 35, 1);
}

#s-61a683fd-15d3-4e9e-b955-78f904109927 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-61a683fd-15d3-4e9e-b955-78f904109927 .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-73d1a5d5-ca64-4642-9960-fa0905d0b249 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-73d1a5d5-ca64-4642-9960-fa0905d0b249 .shogun-heading-component h1 {
  color: #000;
  font-weight:  300 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-83e21182-8d21-423f-99c7-ef00aec2833e {
  padding-left: 10%;
padding-right: 10%;
}

#s-83e21182-8d21-423f-99c7-ef00aec2833e hr {
  border-top: 1px solid rgba(35, 35, 35, 1);
}

#s-8f0f0fb4-e7e4-4e60-bae0-6e7c415ef99c {
  margin-top: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8f0f0fb4-e7e4-4e60-bae0-6e7c415ef99c .shogun-heading-component h1 {
  color: #000;
  font-weight:  300 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-b6b83133-420e-4bd4-b33b-bdf5ae56fa99 {
  margin-top: -24px;
margin-bottom: -30px;
padding-left: 780px;
padding-right: 780px;
}

#s-b6b83133-420e-4bd4-b33b-bdf5ae56fa99 hr {
  border-top: 4px solid rgba(35, 35, 35, 1);
}

#s-e4debaa0-5a9d-4314-b7ef-fa9e3f5894f9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e4debaa0-5a9d-4314-b7ef-fa9e3f5894f9 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  
  
  
  
}



#s-47f6014d-235e-446d-84e1-4c9e6b39c4e1 {
  margin-top: 30px;
}

@media (min-width: 0px) {
[id="s-47f6014d-235e-446d-84e1-4c9e6b39c4e1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-47f6014d-235e-446d-84e1-4c9e6b39c4e1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-47f6014d-235e-446d-84e1-4c9e6b39c4e1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-47f6014d-235e-446d-84e1-4c9e6b39c4e1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0a664d8c-3ced-4b2a-abc7-3704e1e021c1 {
  margin-right: -15%;
padding-right: 0%;
text-align: center;
}
@media (max-width: 767px){#s-0a664d8c-3ced-4b2a-abc7-3704e1e021c1 {
  margin-right: 0%;
}
}






  #s-0a664d8c-3ced-4b2a-abc7-3704e1e021c1 img.shogun-image {
    

    
    
    
  }


#s-0a664d8c-3ced-4b2a-abc7-3704e1e021c1 .shogun-image-content {
  
    align-items: center;
  
}

#s-a1fd3da5-96e3-44bb-b66b-79826d648dae {
  margin-left: -15%;
text-align: center;
}
@media (max-width: 767px){#s-a1fd3da5-96e3-44bb-b66b-79826d648dae {
  margin-top: 15px;
margin-left: 0%;
}
}






  #s-a1fd3da5-96e3-44bb-b66b-79826d648dae img.shogun-image {
    

    
    
    
  }


#s-a1fd3da5-96e3-44bb-b66b-79826d648dae .shogun-image-content {
  
    align-items: center;
  
}

#s-736ab7c1-99d7-4148-af1a-95e0e6e6081c {
  margin-top: 18px;
}

@media (min-width: 0px) {
[id="s-736ab7c1-99d7-4148-af1a-95e0e6e6081c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-736ab7c1-99d7-4148-af1a-95e0e6e6081c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-736ab7c1-99d7-4148-af1a-95e0e6e6081c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-736ab7c1-99d7-4148-af1a-95e0e6e6081c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-91db88d2-3b92-4c1d-a7a3-7f0bdb06d4a3 {
  margin-right: -15%;
padding-right: 0%;
text-align: center;
}
@media (max-width: 767px){#s-91db88d2-3b92-4c1d-a7a3-7f0bdb06d4a3 {
  margin-right: 0%;
}
}






  #s-91db88d2-3b92-4c1d-a7a3-7f0bdb06d4a3 img.shogun-image {
    

    
    
    
  }


#s-91db88d2-3b92-4c1d-a7a3-7f0bdb06d4a3 .shogun-image-content {
  
    align-items: center;
  
}

#s-b31e2766-ae96-410e-880e-3b436545895d {
  margin-left: -15%;
text-align: center;
}
@media (max-width: 767px){#s-b31e2766-ae96-410e-880e-3b436545895d {
  margin-top: 15px;
margin-left: 0%;
}
}






  #s-b31e2766-ae96-410e-880e-3b436545895d img.shogun-image {
    

    
    
    
  }


#s-b31e2766-ae96-410e-880e-3b436545895d .shogun-image-content {
  
    align-items: center;
  
}

#s-09da60de-06a6-4e4d-bd0f-aec5cf485a2d {
  min-height: 50px;
}








#s-09da60de-06a6-4e4d-bd0f-aec5cf485a2d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-09da60de-06a6-4e4d-bd0f-aec5cf485a2d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: 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:before,.shg-c:after{content:" ";display:table}.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:#000;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}[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}
