.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-0161adc1-77a1-4efa-8cd4-852543f5ab26 {
  min-height: 50px;
}








#s-0161adc1-77a1-4efa-8cd4-852543f5ab26 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0161adc1-77a1-4efa-8cd4-852543f5ab26.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-a55dbd7f-e997-4985-b46f-94862eab6d88 {
  text-align: center;
}







  #s-a55dbd7f-e997-4985-b46f-94862eab6d88 img.shogun-image {
    

    
    
    
  }


#s-a55dbd7f-e997-4985-b46f-94862eab6d88 .shogun-image-content {
  
    align-items: center;
  
}

#s-41fc8b50-00c6-49fd-b26a-f1d57fdc3d9c {
  padding-top: 40px;
padding-bottom: 40px;
min-height: 280px;
background-color: rgba(144, 173, 61, 1);
}








#s-41fc8b50-00c6-49fd-b26a-f1d57fdc3d9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-41fc8b50-00c6-49fd-b26a-f1d57fdc3d9c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #000000;
  font-family: Serif;
  text-transform: none;
  font-weight: 400;
  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-8d28c80b-b3fd-40a4-a646-235420b72441 {
  margin-top: -8px;
margin-bottom: -8px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8d28c80b-b3fd-40a4-a646-235420b72441 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 48px;
  
  
  
}


@media (max-width: 767px){#s-8d28c80b-b3fd-40a4-a646-235420b72441 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
.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: #000000;
  font-family: Serif;
  font-weight: 400;
}

.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: 400;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: #000000;
  font-family: Serif;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: #000000;
  font-family: Serif;
  font-weight: 400;
}

.shg-theme-text-content p {
  color: #000000;
  font-family: Serif;
  font-weight: 400;
}

@media (min-width: 1200px){#s-9901c325-187b-4996-a327-6bfe17fdb300 {
  display: none;
}
#s-9901c325-187b-4996-a327-6bfe17fdb300, #wrap-s-9901c325-187b-4996-a327-6bfe17fdb300 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9901c325-187b-4996-a327-6bfe17fdb300 {
  display: none;
}
#s-9901c325-187b-4996-a327-6bfe17fdb300, #wrap-s-9901c325-187b-4996-a327-6bfe17fdb300 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9901c325-187b-4996-a327-6bfe17fdb300 {
  display: none;
}
#s-9901c325-187b-4996-a327-6bfe17fdb300, #wrap-s-9901c325-187b-4996-a327-6bfe17fdb300 { display:none !important; }}
@media (max-width: 767px){#s-575b886d-0d99-48b1-b3ff-da572eb8c61f {
  display: none;
}
#s-575b886d-0d99-48b1-b3ff-da572eb8c61f, #wrap-s-575b886d-0d99-48b1-b3ff-da572eb8c61f { display:none !important; }}
.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: 400;
  font-family: Serif;
}

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

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

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

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

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

#s-5600a574-783e-43b7-afae-c5247d4e42ee {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-left: 45px;
padding-bottom: 10px;
padding-right: 45px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 89, 158, 1);
border-style: solid;
border-radius: 12px;
background-color: rgba(0, 89, 158, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-5600a574-783e-43b7-afae-c5247d4e42ee:hover {background-color: rgba(0, 89, 158, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-5600a574-783e-43b7-afae-c5247d4e42ee:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(0, 89, 158, 1) !important;
background-color: rgba(0, 89, 158, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 89, 158, 1) !important;}

  #s-5600a574-783e-43b7-afae-c5247d4e42ee-root {
    text-align: center;
  }


#s-5600a574-783e-43b7-afae-c5247d4e42ee.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5600a574-783e-43b7-afae-c5247d4e42ee-root {
    text-align: center;
  }


#s-5600a574-783e-43b7-afae-c5247d4e42ee.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5600a574-783e-43b7-afae-c5247d4e42ee-root {
    text-align: center;
  }


#s-5600a574-783e-43b7-afae-c5247d4e42ee.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5600a574-783e-43b7-afae-c5247d4e42ee-root {
    text-align: center;
  }


#s-5600a574-783e-43b7-afae-c5247d4e42ee.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5600a574-783e-43b7-afae-c5247d4e42ee-root {
    text-align: center;
  }


#s-5600a574-783e-43b7-afae-c5247d4e42ee.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-9d3a22bc-08b7-44dc-9f4d-a395df6517a6 {
  padding-top: 40px;
padding-bottom: 40px;
min-height: 50px;
background-color: rgba(237, 246, 237, 1);
}








#s-9d3a22bc-08b7-44dc-9f4d-a395df6517a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9d3a22bc-08b7-44dc-9f4d-a395df6517a6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2ae09105-e1c6-48d3-a19a-249a167c02ae {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-2ae09105-e1c6-48d3-a19a-249a167c02ae .shogun-heading-component h2 {
  color: rgba(0, 89, 158, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 200px;
  line-height: 1em;
  
  
}


@media (max-width: 767px){#s-2ae09105-e1c6-48d3-a19a-249a167c02ae .shogun-heading-component h2 {
  color: rgba(0, 89, 158, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 56px;
  line-height: 1em;
  
  
}


}
#s-015e59ed-3c7d-4953-9d71-990ff69808c3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-015e59ed-3c7d-4953-9d71-990ff69808c3 .shogun-heading-component h2 {
  color: rgba(0, 89, 158, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 56px;
  
  
  
}


@media (max-width: 767px){#s-015e59ed-3c7d-4953-9d71-990ff69808c3 .shogun-heading-component h2 {
  color: rgba(0, 89, 158, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
@media (min-width: 768px) and (max-width: 991px){#s-4b3e825a-f84a-4030-a608-56e573d4eeb7 {
  
}
}@media (max-width: 767px){#s-4b3e825a-f84a-4030-a608-56e573d4eeb7 {
  display: none;
}
#s-4b3e825a-f84a-4030-a608-56e573d4eeb7, #wrap-s-4b3e825a-f84a-4030-a608-56e573d4eeb7 { display:none !important; }}
#s-2c0f5bce-6846-4fa6-8b84-b1e987ba81e1 {
  padding-left: 6%;
padding-right: 6%;
}
@media (min-width: 1200px){#s-2c0f5bce-6846-4fa6-8b84-b1e987ba81e1 {
  display: none;
}
#s-2c0f5bce-6846-4fa6-8b84-b1e987ba81e1, #wrap-s-2c0f5bce-6846-4fa6-8b84-b1e987ba81e1 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2c0f5bce-6846-4fa6-8b84-b1e987ba81e1 {
  display: none;
}
#s-2c0f5bce-6846-4fa6-8b84-b1e987ba81e1, #wrap-s-2c0f5bce-6846-4fa6-8b84-b1e987ba81e1 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2c0f5bce-6846-4fa6-8b84-b1e987ba81e1 {
  display: none;
}
#s-2c0f5bce-6846-4fa6-8b84-b1e987ba81e1, #wrap-s-2c0f5bce-6846-4fa6-8b84-b1e987ba81e1 { display:none !important; }}
#s-cd48c620-f30e-440a-bc8f-62ba53ec4a8e {
  padding-top: 40px;
padding-bottom: 40px;
min-height: 50px;
background-color: rgba(13, 92, 154, 1);
}








#s-cd48c620-f30e-440a-bc8f-62ba53ec4a8e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cd48c620-f30e-440a-bc8f-62ba53ec4a8e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-417c195b-935c-4fc6-bf14-0842aac98770 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-417c195b-935c-4fc6-bf14-0842aac98770 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  line-height: 1.2em;
  
  
}


@media (max-width: 767px){#s-417c195b-935c-4fc6-bf14-0842aac98770 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.2em;
  
  
}


}
#s-42ee154a-ffe9-4c74-821b-90448b156665 {
  padding-top: 40px;
padding-bottom: 40px;
min-height: 50px;
}








#s-42ee154a-ffe9-4c74-821b-90448b156665 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-42ee154a-ffe9-4c74-821b-90448b156665.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b37e1c77-b5b9-4a48-8a5f-4a6192291bdd {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-b37e1c77-b5b9-4a48-8a5f-4a6192291bdd {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 38px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b37e1c77-b5b9-4a48-8a5f-4a6192291bdd {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-b37e1c77-b5b9-4a48-8a5f-4a6192291bdd .shogun-heading-component h2 {
  color: rgba(0, 89, 158, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  line-height: 1.5em;
  
  
}


@media (max-width: 767px){#s-b37e1c77-b5b9-4a48-8a5f-4a6192291bdd .shogun-heading-component h2 {
  color: rgba(0, 89, 158, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.5em;
  
  
}


}
#s-ec364d1f-7e31-4e2c-8a89-6b01541ab1d3 {
  padding-top: 3%;
padding-bottom: 3%;
}
@media (min-width: 1200px){#s-ec364d1f-7e31-4e2c-8a89-6b01541ab1d3 {
  display: none;
}
#s-ec364d1f-7e31-4e2c-8a89-6b01541ab1d3, #wrap-s-ec364d1f-7e31-4e2c-8a89-6b01541ab1d3 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ec364d1f-7e31-4e2c-8a89-6b01541ab1d3 {
  min-height: 0px;
display: none;
}
#s-ec364d1f-7e31-4e2c-8a89-6b01541ab1d3, #wrap-s-ec364d1f-7e31-4e2c-8a89-6b01541ab1d3 { display:none !important; }}
#s-bcbd3698-77a0-4663-b581-17ae7d8f7039 {
  padding-top: 3%;
padding-bottom: 3%;
}
@media (min-width: 992px) and (max-width: 1199px){#s-bcbd3698-77a0-4663-b581-17ae7d8f7039 {
  min-height: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-bcbd3698-77a0-4663-b581-17ae7d8f7039 {
  display: none;
}
#s-bcbd3698-77a0-4663-b581-17ae7d8f7039, #wrap-s-bcbd3698-77a0-4663-b581-17ae7d8f7039 { display:none !important; }}@media (max-width: 767px){#s-bcbd3698-77a0-4663-b581-17ae7d8f7039 {
  display: none;
}
#s-bcbd3698-77a0-4663-b581-17ae7d8f7039, #wrap-s-bcbd3698-77a0-4663-b581-17ae7d8f7039 { display:none !important; }}
#s-f86094b5-26ef-41ea-b948-7100a9520193 {
  margin-top: 20px;
margin-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-f86094b5-26ef-41ea-b948-7100a9520193 {
  min-height: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f86094b5-26ef-41ea-b948-7100a9520193 {
  margin-bottom: 0px;
}
}
#s-f86094b5-26ef-41ea-b948-7100a9520193 .shogun-heading-component h2 {
  color: rgba(0, 89, 158, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 45px;
  
  
  
}


@media (max-width: 767px){#s-f86094b5-26ef-41ea-b948-7100a9520193 .shogun-heading-component h2 {
  color: rgba(0, 89, 158, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-1bc9af6b-5b1c-4e50-b8c6-668642a0d2d9 {
  padding-top: 8px;
padding-left: 8%;
padding-bottom: 8px;
padding-right: 8%;
min-height: 50px;
}
@media (min-width: 1200px){#s-1bc9af6b-5b1c-4e50-b8c6-668642a0d2d9 {
  display: none;
}
#s-1bc9af6b-5b1c-4e50-b8c6-668642a0d2d9, #wrap-s-1bc9af6b-5b1c-4e50-b8c6-668642a0d2d9 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1bc9af6b-5b1c-4e50-b8c6-668642a0d2d9 {
  display: none;
}
#s-1bc9af6b-5b1c-4e50-b8c6-668642a0d2d9, #wrap-s-1bc9af6b-5b1c-4e50-b8c6-668642a0d2d9 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1bc9af6b-5b1c-4e50-b8c6-668642a0d2d9 {
  display: none;
}
#s-1bc9af6b-5b1c-4e50-b8c6-668642a0d2d9, #wrap-s-1bc9af6b-5b1c-4e50-b8c6-668642a0d2d9 { display:none !important; }}







#s-1bc9af6b-5b1c-4e50-b8c6-668642a0d2d9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1bc9af6b-5b1c-4e50-b8c6-668642a0d2d9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d5638a90-468d-436c-86c7-f3ad8a0d64c0 {
  min-height: 100%;
}








#s-d5638a90-468d-436c-86c7-f3ad8a0d64c0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d5638a90-468d-436c-86c7-f3ad8a0d64c0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-af856de0-fc1e-445a-abc8-c7d3fc43c291 {
  margin-left: 10%;
margin-right: 10%;
min-height: 0%;
text-align: center;
}







  #s-af856de0-fc1e-445a-abc8-c7d3fc43c291 img.shogun-image {
    

    
    
    
  }


#s-af856de0-fc1e-445a-abc8-c7d3fc43c291 .shogun-image-content {
  
    align-items: center;
  
}

#s-0b6d2e44-6176-44a9-a7b8-a9aa50d1d6eb {
  margin-left: 10%;
margin-right: 10%;
}

#s-f790d7b6-7461-4676-b694-4b01477bca69 {
  min-height: 50px;
}








#s-f790d7b6-7461-4676-b694-4b01477bca69 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f790d7b6-7461-4676-b694-4b01477bca69.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7b8b253a-fbdb-4672-83c4-77fa82a5d176 {
  margin-left: 10%;
margin-right: 10%;
text-align: center;
}







  #s-7b8b253a-fbdb-4672-83c4-77fa82a5d176 img.shogun-image {
    

    
    
    
  }


#s-7b8b253a-fbdb-4672-83c4-77fa82a5d176 .shogun-image-content {
  
    align-items: center;
  
}

#s-a7f385ef-b139-496c-aa12-ec131d63e075 {
  margin-left: 10%;
margin-right: 10%;
}

#s-b2d5b633-712c-49fc-8eaa-c760b6274af9 {
  min-height: 50px;
}








#s-b2d5b633-712c-49fc-8eaa-c760b6274af9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b2d5b633-712c-49fc-8eaa-c760b6274af9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e48c0111-a496-4a0f-86b2-a4507e1fb09c {
  margin-left: 10%;
margin-right: 10%;
text-align: center;
}







  #s-e48c0111-a496-4a0f-86b2-a4507e1fb09c img.shogun-image {
    

    
    
    
  }


#s-e48c0111-a496-4a0f-86b2-a4507e1fb09c .shogun-image-content {
  
    align-items: center;
  
}

#s-2a61f5c4-1fc6-4300-b85c-262ae783c1de {
  margin-left: 10%;
margin-right: 10%;
}

#s-afeddec4-c76a-401b-958d-4401ac2ce11e {
  min-height: 50px;
}








#s-afeddec4-c76a-401b-958d-4401ac2ce11e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-afeddec4-c76a-401b-958d-4401ac2ce11e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6dae8680-8111-4867-a801-655f3e016c2d {
  margin-left: 10%;
margin-right: 10%;
text-align: center;
}







  #s-6dae8680-8111-4867-a801-655f3e016c2d img.shogun-image {
    

    
    
    
  }


#s-6dae8680-8111-4867-a801-655f3e016c2d .shogun-image-content {
  
    align-items: center;
  
}

#s-374314b3-9d65-49ef-a686-c4ac93a722ba {
  margin-left: 10%;
margin-right: 10%;
}

#s-10773355-c1fc-44cb-9e03-94c9751c304c {
  min-height: 50px;
}








#s-10773355-c1fc-44cb-9e03-94c9751c304c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-10773355-c1fc-44cb-9e03-94c9751c304c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-49dad327-3de9-42ab-bf47-3df1dd711e40 {
  margin-left: 10%;
margin-right: 10%;
text-align: center;
}







  #s-49dad327-3de9-42ab-bf47-3df1dd711e40 img.shogun-image {
    

    
    
    
  }


#s-49dad327-3de9-42ab-bf47-3df1dd711e40 .shogun-image-content {
  
    align-items: center;
  
}

#s-da152415-81db-433c-8144-40c79dbd635a {
  margin-left: 10%;
margin-right: 10%;
}

.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-d27fc839-d1f1-42c2-8261-2ad0ecc26e6c {
  box-shadow:0px 0px 0px 0px ;
margin-top: 20px;
margin-left: 10%;
margin-bottom: 20px;
margin-right: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}
@media (max-width: 767px){#s-d27fc839-d1f1-42c2-8261-2ad0ecc26e6c {
  display: none;
}
#s-d27fc839-d1f1-42c2-8261-2ad0ecc26e6c, #wrap-s-d27fc839-d1f1-42c2-8261-2ad0ecc26e6c { display:none !important; }}
@media (min-width: 0px) {
[id="s-d27fc839-d1f1-42c2-8261-2ad0ecc26e6c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d27fc839-d1f1-42c2-8261-2ad0ecc26e6c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-d27fc839-d1f1-42c2-8261-2ad0ecc26e6c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-d27fc839-d1f1-42c2-8261-2ad0ecc26e6c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-9b9531f5-155a-4847-bac3-b4f9727ccceb {
  margin-left: auto;
margin-right: auto;
padding-top: 12px;
padding-left: 30px;
padding-bottom: 12px;
padding-right: 30px;
text-align: center;
}







  #s-9b9531f5-155a-4847-bac3-b4f9727ccceb img.shogun-image {
    

    
    
    
  }


#s-9b9531f5-155a-4847-bac3-b4f9727ccceb .shogun-image-content {
  
    align-items: center;
  
}

#s-165358a6-a6c7-49c0-bb8a-6060e511258f {
  margin-left: 5%;
margin-right: 5%;
padding-left: 20px;
padding-right: 20px;
}

#s-dfd62dd3-5891-416d-9eb0-63e60d836000 {
  margin-left: auto;
margin-right: auto;
padding-top: 12px;
padding-left: 30px;
padding-bottom: 12px;
padding-right: 30px;
text-align: center;
}







  #s-dfd62dd3-5891-416d-9eb0-63e60d836000 img.shogun-image {
    

    
    
    
  }


#s-dfd62dd3-5891-416d-9eb0-63e60d836000 .shogun-image-content {
  
    align-items: center;
  
}

#s-1a493324-bab1-4750-8fe5-5130a77258f5 {
  margin-left: 5%;
margin-right: 5%;
padding-left: 20px;
padding-right: 20px;
}

#s-4a9f3795-d0d3-4037-9d91-7a03f3b161d3 {
  margin-left: auto;
margin-right: auto;
padding-top: 12px;
padding-left: 30px;
padding-bottom: 12px;
padding-right: 30px;
text-align: center;
}







  #s-4a9f3795-d0d3-4037-9d91-7a03f3b161d3 img.shogun-image {
    

    
    
    
  }


#s-4a9f3795-d0d3-4037-9d91-7a03f3b161d3 .shogun-image-content {
  
    align-items: center;
  
}

#s-e0f9e93d-8174-4079-a2d2-9392d79ab0c1 {
  margin-left: 5%;
margin-right: 5%;
padding-left: 20px;
padding-right: 20px;
}

#s-0de98611-623d-40ff-afbd-de28a354f61d {
  box-shadow:0px 0px 0px 0px ;
margin-top: 20px;
margin-left: 10%;
margin-bottom: 20px;
margin-right: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}
@media (max-width: 767px){#s-0de98611-623d-40ff-afbd-de28a354f61d {
  display: none;
}
#s-0de98611-623d-40ff-afbd-de28a354f61d, #wrap-s-0de98611-623d-40ff-afbd-de28a354f61d { display:none !important; }}
@media (min-width: 0px) {
[id="s-0de98611-623d-40ff-afbd-de28a354f61d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-0de98611-623d-40ff-afbd-de28a354f61d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-0de98611-623d-40ff-afbd-de28a354f61d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-0de98611-623d-40ff-afbd-de28a354f61d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

#s-825641ae-b33c-4ef6-89c4-f1d673ce0986 {
  margin-top: 22px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 12px;
padding-left: 12%;
padding-bottom: 12px;
padding-right: 12%;
text-align: center;
}







  #s-825641ae-b33c-4ef6-89c4-f1d673ce0986 img.shogun-image {
    

    
    
    
  }


#s-825641ae-b33c-4ef6-89c4-f1d673ce0986 .shogun-image-content {
  
    align-items: center;
  
}

#s-85de5b7a-a3a0-41f1-9f44-bd1573c723b6 {
  margin-left: 5%;
margin-right: 5%;
}

#s-3816d4a9-7845-4e00-b29f-6ce6e38ed28d {
  margin-left: auto;
margin-right: auto;
padding-top: 12px;
padding-left: 12px;
padding-bottom: 12px;
padding-right: 12px;
text-align: center;
}







  #s-3816d4a9-7845-4e00-b29f-6ce6e38ed28d img.shogun-image {
    

    
    
    
  }


#s-3816d4a9-7845-4e00-b29f-6ce6e38ed28d .shogun-image-content {
  
    align-items: center;
  
}

#s-3f96b2fa-eab5-4fcb-9b3e-d86f05c5a1f3 {
  margin-left: 5%;
margin-right: 5%;
}

#s-a797b005-4053-4f7a-a359-36443d0c85be {
  margin-left: -2%;
margin-right: -2%;
padding-top: 40px;
padding-left: 6%;
padding-bottom: 40px;
padding-right: 6%;
min-height: 50px;
background-color: rgba(240, 248, 240, 1);
}








#s-a797b005-4053-4f7a-a359-36443d0c85be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a797b005-4053-4f7a-a359-36443d0c85be.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-024d494d-33c0-4774-8f1e-d93b481aa009 {
  margin-bottom: 0px;
margin-right: 0%;
text-align: center;
}

#s-024d494d-33c0-4774-8f1e-d93b481aa009 .shogun-heading-component h2 {
  color: rgba(0, 89, 158, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  
  
  
}


@media (max-width: 767px){#s-024d494d-33c0-4774-8f1e-d93b481aa009 .shogun-heading-component h2 {
  color: rgba(0, 89, 158, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
.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-39079d3b-4dd3-4d03-bb48-72cc34832cd0 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (max-width: 767px){#s-39079d3b-4dd3-4d03-bb48-72cc34832cd0 {
  display: none;
}
#s-39079d3b-4dd3-4d03-bb48-72cc34832cd0, #wrap-s-39079d3b-4dd3-4d03-bb48-72cc34832cd0 { display:none !important; }}
#s-39079d3b-4dd3-4d03-bb48-72cc34832cd0 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-39079d3b-4dd3-4d03-bb48-72cc34832cd0 .shg-sld-nav-button.shg-sld-left,
#s-39079d3b-4dd3-4d03-bb48-72cc34832cd0 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

@media (min-width: 0px) {
[id="s-ce652de4-2670-4fb0-ba2e-76a5b0a43e66"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ce652de4-2670-4fb0-ba2e-76a5b0a43e66"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ce652de4-2670-4fb0-ba2e-76a5b0a43e66"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ce652de4-2670-4fb0-ba2e-76a5b0a43e66"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-59e25c46-2da1-4a9d-b4a3-8b2ac2f86b62 {
  padding-top: 4px;
padding-bottom: 4px;
min-height: 50px;
}








#s-59e25c46-2da1-4a9d-b4a3-8b2ac2f86b62 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-59e25c46-2da1-4a9d-b4a3-8b2ac2f86b62.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-73e00692-f557-412f-b474-d89f58011e18 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-73e00692-f557-412f-b474-d89f58011e18 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


@media (max-width: 767px){#s-73e00692-f557-412f-b474-d89f58011e18 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}
#s-787afbf9-aff1-4b55-b8b2-cb6c345b7277 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-787afbf9-aff1-4b55-b8b2-cb6c345b7277 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-f76355db-1747-4b1d-9199-81afe4adc0da {
  padding-top: 4px;
padding-bottom: 4px;
min-height: 50px;
}








#s-f76355db-1747-4b1d-9199-81afe4adc0da > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f76355db-1747-4b1d-9199-81afe4adc0da.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b453684c-dd13-4dfd-9574-b30be890a18e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b453684c-dd13-4dfd-9574-b30be890a18e .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


@media (max-width: 767px){#s-b453684c-dd13-4dfd-9574-b30be890a18e .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}
#s-249ed76b-9b50-4856-a819-1e6c14e33483 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-249ed76b-9b50-4856-a819-1e6c14e33483 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-9b5f4d1f-e98a-4e03-ad95-530c7a5b153f {
  padding-top: 4px;
padding-bottom: 4px;
min-height: 50px;
}








#s-9b5f4d1f-e98a-4e03-ad95-530c7a5b153f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9b5f4d1f-e98a-4e03-ad95-530c7a5b153f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-64214caf-c9d3-462d-8f8d-c3e5033e66e9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-64214caf-c9d3-462d-8f8d-c3e5033e66e9 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


@media (max-width: 767px){#s-64214caf-c9d3-462d-8f8d-c3e5033e66e9 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}
#s-403cd8be-aa7f-451b-8066-a9980b083ff7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-403cd8be-aa7f-451b-8066-a9980b083ff7 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



@media (min-width: 0px) {
[id="s-0d810b62-203a-4a08-8d27-b94cf25f296c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0d810b62-203a-4a08-8d27-b94cf25f296c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0d810b62-203a-4a08-8d27-b94cf25f296c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0d810b62-203a-4a08-8d27-b94cf25f296c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f0fad341-9d59-43d3-b3ce-8ca4d81ea5d5 {
  padding-top: 4px;
padding-bottom: 4px;
min-height: 50px;
}








#s-f0fad341-9d59-43d3-b3ce-8ca4d81ea5d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f0fad341-9d59-43d3-b3ce-8ca4d81ea5d5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-74bd0ed4-8c83-4001-8daa-01167b754d60 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-74bd0ed4-8c83-4001-8daa-01167b754d60 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


@media (max-width: 767px){#s-74bd0ed4-8c83-4001-8daa-01167b754d60 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}
#s-9acd4e6c-a806-4e8e-8f79-d138c7c508d0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9acd4e6c-a806-4e8e-8f79-d138c7c508d0 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-4cd33b02-fd9d-467c-9ba4-21bb8b1bac5b {
  padding-top: 4px;
padding-bottom: 4px;
min-height: 50px;
}








#s-4cd33b02-fd9d-467c-9ba4-21bb8b1bac5b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4cd33b02-fd9d-467c-9ba4-21bb8b1bac5b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ce8de815-339d-403c-af00-7975646e14a8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ce8de815-339d-403c-af00-7975646e14a8 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


@media (max-width: 767px){#s-ce8de815-339d-403c-af00-7975646e14a8 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}
#s-891c52db-41eb-426a-aac9-3d1695db3bec {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-891c52db-41eb-426a-aac9-3d1695db3bec .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-4e0b012f-01c5-4379-9994-65c30fbb5e1f {
  padding-top: 4px;
padding-bottom: 4px;
}
@media (min-width: 1200px){#s-4e0b012f-01c5-4379-9994-65c30fbb5e1f {
  display: none;
}
#s-4e0b012f-01c5-4379-9994-65c30fbb5e1f, #wrap-s-4e0b012f-01c5-4379-9994-65c30fbb5e1f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4e0b012f-01c5-4379-9994-65c30fbb5e1f {
  display: none;
}
#s-4e0b012f-01c5-4379-9994-65c30fbb5e1f, #wrap-s-4e0b012f-01c5-4379-9994-65c30fbb5e1f { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4e0b012f-01c5-4379-9994-65c30fbb5e1f {
  display: none;
}
#s-4e0b012f-01c5-4379-9994-65c30fbb5e1f, #wrap-s-4e0b012f-01c5-4379-9994-65c30fbb5e1f { display:none !important; }}
#s-4e0b012f-01c5-4379-9994-65c30fbb5e1f .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-4e0b012f-01c5-4379-9994-65c30fbb5e1f .shg-sld-nav-button.shg-sld-left,
#s-4e0b012f-01c5-4379-9994-65c30fbb5e1f .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-03f6f506-7233-4ba2-9c58-0a65a4d13e67 {
  padding-top: 4px;
padding-bottom: 4px;
min-height: 50px;
}








#s-03f6f506-7233-4ba2-9c58-0a65a4d13e67 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-03f6f506-7233-4ba2-9c58-0a65a4d13e67.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cbb05a94-5565-49e0-9478-ac900f8b1757 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cbb05a94-5565-49e0-9478-ac900f8b1757 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


@media (max-width: 767px){#s-cbb05a94-5565-49e0-9478-ac900f8b1757 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}
#s-449b79c5-2bbc-4fa2-a5e9-a2f8c37d67ff {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-449b79c5-2bbc-4fa2-a5e9-a2f8c37d67ff .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-f4e588b2-9ab1-4ea2-855b-f2dc55d13c0f {
  padding-top: 4px;
padding-bottom: 4px;
min-height: 50px;
}








#s-f4e588b2-9ab1-4ea2-855b-f2dc55d13c0f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f4e588b2-9ab1-4ea2-855b-f2dc55d13c0f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-869d694a-5ee5-44d2-b863-ec93a7f31bab {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-869d694a-5ee5-44d2-b863-ec93a7f31bab .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


@media (max-width: 767px){#s-869d694a-5ee5-44d2-b863-ec93a7f31bab .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}
#s-ca60078b-8a7e-4c3a-b174-18dcae0bc7b4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ca60078b-8a7e-4c3a-b174-18dcae0bc7b4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-75b57764-f51e-4cf4-ae54-c85434e0a97c {
  padding-top: 4px;
padding-bottom: 4px;
min-height: 50px;
}








#s-75b57764-f51e-4cf4-ae54-c85434e0a97c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-75b57764-f51e-4cf4-ae54-c85434e0a97c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c671c8ff-cfcc-494c-a71c-022d9af26367 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c671c8ff-cfcc-494c-a71c-022d9af26367 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


@media (max-width: 767px){#s-c671c8ff-cfcc-494c-a71c-022d9af26367 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}
#s-6d6abd46-afbb-48ac-8e55-49e25698d53e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6d6abd46-afbb-48ac-8e55-49e25698d53e .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-f5d67869-7008-444c-a77c-8acc204a9b27 {
  padding-top: 4px;
padding-bottom: 4px;
min-height: 50px;
}








#s-f5d67869-7008-444c-a77c-8acc204a9b27 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f5d67869-7008-444c-a77c-8acc204a9b27.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-002c03f9-955d-4a34-b0b1-48280d74d772 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-002c03f9-955d-4a34-b0b1-48280d74d772 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


@media (max-width: 767px){#s-002c03f9-955d-4a34-b0b1-48280d74d772 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}
#s-b94c6f8f-e77f-488d-bb23-286c2906d969 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b94c6f8f-e77f-488d-bb23-286c2906d969 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-030a3e39-b0f9-4aeb-8459-a2b887e9f8a4 {
  padding-top: 4px;
padding-bottom: 4px;
min-height: 50px;
}








#s-030a3e39-b0f9-4aeb-8459-a2b887e9f8a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-030a3e39-b0f9-4aeb-8459-a2b887e9f8a4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8cfeb14e-fe72-4e4f-a49c-683d3a72e408 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8cfeb14e-fe72-4e4f-a49c-683d3a72e408 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


@media (max-width: 767px){#s-8cfeb14e-fe72-4e4f-a49c-683d3a72e408 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}
#s-714db483-a08c-47e0-ad03-a82a97dd2e62 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-714db483-a08c-47e0-ad03-a82a97dd2e62 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-1e1f881a-48ca-4d77-bb2a-29f30a44a070 {
  text-align: left;
opacity: 1;
}
@media (min-width: 1200px){#s-1e1f881a-48ca-4d77-bb2a-29f30a44a070 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1e1f881a-48ca-4d77-bb2a-29f30a44a070 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1e1f881a-48ca-4d77-bb2a-29f30a44a070 {
  
}
}@media (max-width: 767px){#s-1e1f881a-48ca-4d77-bb2a-29f30a44a070 {
  
}
}
#s-45e1782b-1136-4a3c-9714-a1d298f42624 {
  padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(143, 173, 61, 1);
}








#s-45e1782b-1136-4a3c-9714-a1d298f42624 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-45e1782b-1136-4a3c-9714-a1d298f42624.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7b0b8c76-54b6-4ecc-99ce-f0bb55f92db1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7b0b8c76-54b6-4ecc-99ce-f0bb55f92db1 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 70px;
  
  
  
}


@media (max-width: 767px){#s-7b0b8c76-54b6-4ecc-99ce-f0bb55f92db1 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-15801ece-a82d-4111-a615-05e02c8827e6 {
  margin-left: 0%;
margin-right: 0%;
}

#s-2f0d4f24-6872-499e-a45d-6825e9ee4a3a {
  text-align: left;
}

#s-caebca8c-e454-4c89-8016-021489580cdf {
  padding-top: 40px;
padding-bottom: 40px;
min-height: 50px;
}








#s-caebca8c-e454-4c89-8016-021489580cdf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-caebca8c-e454-4c89-8016-021489580cdf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dcb3398e-7f32-4a64-84eb-b4348e31578b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dcb3398e-7f32-4a64-84eb-b4348e31578b .shogun-heading-component h2 {
  color: rgba(0, 89, 158, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  
  
  
}


@media (max-width: 767px){#s-dcb3398e-7f32-4a64-84eb-b4348e31578b .shogun-heading-component h2 {
  color: rgba(0, 89, 158, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
#s-b504bb1a-9a84-4293-bf00-13850abc34e4 {
  margin-left: 2%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-b504bb1a-9a84-4293-bf00-13850abc34e4"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b504bb1a-9a84-4293-bf00-13850abc34e4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-b504bb1a-9a84-4293-bf00-13850abc34e4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-b504bb1a-9a84-4293-bf00-13850abc34e4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-e8111722-c302-447f-bc63-b04ac04d016d {
  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-92e64fa1-7035-46a3-9891-d203c6dc5e32 {
  text-align: left;
}



.shg-c#s-92e64fa1-7035-46a3-9891-d203c6dc5e32 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92e64fa1-7035-46a3-9891-d203c6dc5e32 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-92e64fa1-7035-46a3-9891-d203c6dc5e32 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92e64fa1-7035-46a3-9891-d203c6dc5e32 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-92e64fa1-7035-46a3-9891-d203c6dc5e32 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92e64fa1-7035-46a3-9891-d203c6dc5e32 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-92e64fa1-7035-46a3-9891-d203c6dc5e32 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92e64fa1-7035-46a3-9891-d203c6dc5e32 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-92e64fa1-7035-46a3-9891-d203c6dc5e32 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92e64fa1-7035-46a3-9891-d203c6dc5e32 img.shogun-image {
  width: 100%;
}



}
.shg-product-title-component h1,
.shg-product-title-component h2,
.shg-product-title-component h3,
.shg-product-title-component h4,
.shg-product-title-component h5,
.shg-product-title-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #000000;
  font-family: Serif;
  text-transform: none;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-6dcb6ed2-50ef-4c48-b93f-47d447767c0e {
  padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
text-align: center;
}

#s-6dcb6ed2-50ef-4c48-b93f-47d447767c0e .shg-product-title-component h4 {
  color: rgba(103, 104, 115, 1);
  font-weight:   ;
  font-family: Alata;
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
}

#s-4a2c28ad-99c9-447c-9539-529a11e5a4b7 {
  text-align: center;
}

#s-4a2c28ad-99c9-447c-9539-529a11e5a4b7 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4a2c28ad-99c9-447c-9539-529a11e5a4b7 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-4a2c28ad-99c9-447c-9539-529a11e5a4b7 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-b538f873-b411-4f13-8371-90ae84dd4821 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-left: 32px;
padding-bottom: 10px;
padding-right: 32px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 89, 158, 1);
border-style: solid;
border-radius: 12px;
background-color: rgba(0, 89, 158, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-b538f873-b411-4f13-8371-90ae84dd4821:hover {background-color: rgba(0, 89, 158, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-b538f873-b411-4f13-8371-90ae84dd4821:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(0, 89, 158, 1) !important;
background-color: rgba(0, 89, 158, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 89, 158, 1) !important;}

  #s-b538f873-b411-4f13-8371-90ae84dd4821-root {
    text-align: center;
  }


#s-b538f873-b411-4f13-8371-90ae84dd4821.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-b538f873-b411-4f13-8371-90ae84dd4821-root {
    text-align: center;
  }


#s-b538f873-b411-4f13-8371-90ae84dd4821.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b538f873-b411-4f13-8371-90ae84dd4821-root {
    text-align: center;
  }


#s-b538f873-b411-4f13-8371-90ae84dd4821.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b538f873-b411-4f13-8371-90ae84dd4821-root {
    text-align: center;
  }


#s-b538f873-b411-4f13-8371-90ae84dd4821.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-b538f873-b411-4f13-8371-90ae84dd4821-root {
    text-align: center;
  }


#s-b538f873-b411-4f13-8371-90ae84dd4821.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-f63dcaf9-cca8-44c8-9abb-93ac6823b94e {
  display: none;
}
#s-be01202a-535c-4545-80fb-9223d50c6c26 {
  text-align: left;
}



.shg-c#s-be01202a-535c-4545-80fb-9223d50c6c26 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-be01202a-535c-4545-80fb-9223d50c6c26 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-be01202a-535c-4545-80fb-9223d50c6c26 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-be01202a-535c-4545-80fb-9223d50c6c26 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-be01202a-535c-4545-80fb-9223d50c6c26 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-be01202a-535c-4545-80fb-9223d50c6c26 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-be01202a-535c-4545-80fb-9223d50c6c26 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-be01202a-535c-4545-80fb-9223d50c6c26 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-be01202a-535c-4545-80fb-9223d50c6c26 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-be01202a-535c-4545-80fb-9223d50c6c26 img.shogun-image {
  width: 100%;
}



}
#s-73d1f728-7310-42b6-bca4-fd07071831d0 {
  padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
text-align: center;
}

#s-73d1f728-7310-42b6-bca4-fd07071831d0 .shg-product-title-component h4 {
  color: rgba(103, 104, 115, 1);
  font-weight:   ;
  font-family: Alata;
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
}

#s-117564ca-aa85-4b82-8a60-03f13aa63ede {
  text-align: center;
}

#s-117564ca-aa85-4b82-8a60-03f13aa63ede .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-117564ca-aa85-4b82-8a60-03f13aa63ede .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-117564ca-aa85-4b82-8a60-03f13aa63ede .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-11e6a4e1-4939-4e44-bf7b-fb2a33adf83a {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-left: 32px;
padding-bottom: 10px;
padding-right: 32px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 89, 158, 1);
border-style: solid;
border-radius: 12px;
background-color: rgba(0, 89, 158, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-11e6a4e1-4939-4e44-bf7b-fb2a33adf83a:hover {background-color: rgba(0, 89, 158, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-11e6a4e1-4939-4e44-bf7b-fb2a33adf83a:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(0, 89, 158, 1) !important;
background-color: rgba(0, 89, 158, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 89, 158, 1) !important;}

  #s-11e6a4e1-4939-4e44-bf7b-fb2a33adf83a-root {
    text-align: center;
  }


#s-11e6a4e1-4939-4e44-bf7b-fb2a33adf83a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-11e6a4e1-4939-4e44-bf7b-fb2a33adf83a-root {
    text-align: center;
  }


#s-11e6a4e1-4939-4e44-bf7b-fb2a33adf83a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-11e6a4e1-4939-4e44-bf7b-fb2a33adf83a-root {
    text-align: center;
  }


#s-11e6a4e1-4939-4e44-bf7b-fb2a33adf83a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-11e6a4e1-4939-4e44-bf7b-fb2a33adf83a-root {
    text-align: center;
  }


#s-11e6a4e1-4939-4e44-bf7b-fb2a33adf83a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-11e6a4e1-4939-4e44-bf7b-fb2a33adf83a-root {
    text-align: center;
  }


#s-11e6a4e1-4939-4e44-bf7b-fb2a33adf83a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-208e245c-8ad0-4cde-ada6-4a907ffda646 {
  display: none;
}
#s-1855e1b3-8bdd-4bb9-a879-82e934b9b9a0 {
  text-align: left;
}



.shg-c#s-1855e1b3-8bdd-4bb9-a879-82e934b9b9a0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1855e1b3-8bdd-4bb9-a879-82e934b9b9a0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1855e1b3-8bdd-4bb9-a879-82e934b9b9a0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1855e1b3-8bdd-4bb9-a879-82e934b9b9a0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1855e1b3-8bdd-4bb9-a879-82e934b9b9a0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1855e1b3-8bdd-4bb9-a879-82e934b9b9a0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1855e1b3-8bdd-4bb9-a879-82e934b9b9a0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1855e1b3-8bdd-4bb9-a879-82e934b9b9a0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1855e1b3-8bdd-4bb9-a879-82e934b9b9a0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1855e1b3-8bdd-4bb9-a879-82e934b9b9a0 img.shogun-image {
  width: 100%;
}



}
#s-b6a28a1a-7c47-40bd-b448-6ae2311cf83b {
  padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
text-align: center;
}

#s-b6a28a1a-7c47-40bd-b448-6ae2311cf83b .shg-product-title-component h4 {
  color: rgba(103, 104, 115, 1);
  font-weight:   ;
  font-family: Alata;
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
}

#s-be77b67d-2b53-4be5-bfe9-f6464ec0690b {
  text-align: center;
}

#s-be77b67d-2b53-4be5-bfe9-f6464ec0690b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-be77b67d-2b53-4be5-bfe9-f6464ec0690b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-be77b67d-2b53-4be5-bfe9-f6464ec0690b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-1e7bd5d3-d65b-4977-9412-ad7faa24a15c {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-left: 32px;
padding-bottom: 10px;
padding-right: 32px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 89, 158, 1);
border-style: solid;
border-radius: 12px;
background-color: rgba(0, 89, 158, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-1e7bd5d3-d65b-4977-9412-ad7faa24a15c:hover {background-color: rgba(0, 89, 158, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-1e7bd5d3-d65b-4977-9412-ad7faa24a15c:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(0, 89, 158, 1) !important;
background-color: rgba(0, 89, 158, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 89, 158, 1) !important;}

  #s-1e7bd5d3-d65b-4977-9412-ad7faa24a15c-root {
    text-align: center;
  }


#s-1e7bd5d3-d65b-4977-9412-ad7faa24a15c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-1e7bd5d3-d65b-4977-9412-ad7faa24a15c-root {
    text-align: center;
  }


#s-1e7bd5d3-d65b-4977-9412-ad7faa24a15c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1e7bd5d3-d65b-4977-9412-ad7faa24a15c-root {
    text-align: center;
  }


#s-1e7bd5d3-d65b-4977-9412-ad7faa24a15c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1e7bd5d3-d65b-4977-9412-ad7faa24a15c-root {
    text-align: center;
  }


#s-1e7bd5d3-d65b-4977-9412-ad7faa24a15c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-1e7bd5d3-d65b-4977-9412-ad7faa24a15c-root {
    text-align: center;
  }


#s-1e7bd5d3-d65b-4977-9412-ad7faa24a15c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-a66cbad8-3ea9-4d35-ace0-ed29efe3dac6 {
  display: none;
}
#s-a54b8eb5-3556-44a6-89ac-0c64523f4657 {
  text-align: left;
}



.shg-c#s-a54b8eb5-3556-44a6-89ac-0c64523f4657 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a54b8eb5-3556-44a6-89ac-0c64523f4657 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a54b8eb5-3556-44a6-89ac-0c64523f4657 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a54b8eb5-3556-44a6-89ac-0c64523f4657 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a54b8eb5-3556-44a6-89ac-0c64523f4657 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a54b8eb5-3556-44a6-89ac-0c64523f4657 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a54b8eb5-3556-44a6-89ac-0c64523f4657 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a54b8eb5-3556-44a6-89ac-0c64523f4657 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a54b8eb5-3556-44a6-89ac-0c64523f4657 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a54b8eb5-3556-44a6-89ac-0c64523f4657 img.shogun-image {
  width: 100%;
}



}
#s-0624ba98-4676-49df-971f-aa053fdfe515 {
  padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
text-align: center;
}

#s-0624ba98-4676-49df-971f-aa053fdfe515 .shg-product-title-component h4 {
  color: rgba(103, 104, 115, 1);
  font-weight:   ;
  font-family: Alata;
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
}

#s-95bda733-ba71-4873-9071-9d9ac5b07c24 {
  text-align: center;
}

#s-95bda733-ba71-4873-9071-9d9ac5b07c24 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-95bda733-ba71-4873-9071-9d9ac5b07c24 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-95bda733-ba71-4873-9071-9d9ac5b07c24 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-2d38555d-6907-4c82-ae89-b88286926fa2 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-left: 32px;
padding-bottom: 10px;
padding-right: 32px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 89, 158, 1);
border-style: solid;
border-radius: 12px;
background-color: rgba(0, 89, 158, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-2d38555d-6907-4c82-ae89-b88286926fa2:hover {background-color: rgba(0, 89, 158, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-2d38555d-6907-4c82-ae89-b88286926fa2:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(0, 89, 158, 1) !important;
background-color: rgba(0, 89, 158, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 89, 158, 1) !important;}

  #s-2d38555d-6907-4c82-ae89-b88286926fa2-root {
    text-align: center;
  }


#s-2d38555d-6907-4c82-ae89-b88286926fa2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-2d38555d-6907-4c82-ae89-b88286926fa2-root {
    text-align: center;
  }


#s-2d38555d-6907-4c82-ae89-b88286926fa2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2d38555d-6907-4c82-ae89-b88286926fa2-root {
    text-align: center;
  }


#s-2d38555d-6907-4c82-ae89-b88286926fa2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2d38555d-6907-4c82-ae89-b88286926fa2-root {
    text-align: center;
  }


#s-2d38555d-6907-4c82-ae89-b88286926fa2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-2d38555d-6907-4c82-ae89-b88286926fa2-root {
    text-align: center;
  }


#s-2d38555d-6907-4c82-ae89-b88286926fa2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-35457c86-1c31-480d-a615-5813eabd9f54 {
  min-height: 50px;
}








#s-35457c86-1c31-480d-a615-5813eabd9f54 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-35457c86-1c31-480d-a615-5813eabd9f54.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0a6e31ac-6517-47f7-a495-96508d652400 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-0a6e31ac-6517-47f7-a495-96508d652400"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0a6e31ac-6517-47f7-a495-96508d652400"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0a6e31ac-6517-47f7-a495-96508d652400"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0a6e31ac-6517-47f7-a495-96508d652400"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-96074bb9-a202-4af0-8462-c572a07b3497 {
  padding-bottom: 40px;
min-height: 50px;
}
@media (max-width: 767px){#s-96074bb9-a202-4af0-8462-c572a07b3497 {
  margin-top: 12px;
margin-bottom: 12px;
}
}







#s-96074bb9-a202-4af0-8462-c572a07b3497 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-96074bb9-a202-4af0-8462-c572a07b3497.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9ff94a1a-d6d4-4f67-b2d4-ab44f2b6e6fc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9ff94a1a-d6d4-4f67-b2d4-ab44f2b6e6fc .shogun-heading-component h2 {
  color: rgba(0, 89, 158, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 70px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-9ff94a1a-d6d4-4f67-b2d4-ab44f2b6e6fc .shogun-heading-component h2 {
  color: rgba(0, 89, 158, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 44px;
  
  
  
}


}@media (max-width: 767px){#s-9ff94a1a-d6d4-4f67-b2d4-ab44f2b6e6fc .shogun-heading-component h2 {
  color: rgba(0, 89, 158, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


}
@media (min-width: 768px) and (max-width: 991px){#s-26ab3955-b0d2-4f89-a579-f5007684c42c {
  display: none;
}
#s-26ab3955-b0d2-4f89-a579-f5007684c42c, #wrap-s-26ab3955-b0d2-4f89-a579-f5007684c42c { display:none !important; }}@media (max-width: 767px){#s-26ab3955-b0d2-4f89-a579-f5007684c42c {
  display: none;
}
#s-26ab3955-b0d2-4f89-a579-f5007684c42c, #wrap-s-26ab3955-b0d2-4f89-a579-f5007684c42c { display:none !important; }}
#s-5648a30b-68a5-46d4-b352-83dcafd9d0ef {
  padding-left: 10px;
padding-right: 10px;
}
@media (min-width: 1200px){#s-5648a30b-68a5-46d4-b352-83dcafd9d0ef {
  display: none;
}
#s-5648a30b-68a5-46d4-b352-83dcafd9d0ef, #wrap-s-5648a30b-68a5-46d4-b352-83dcafd9d0ef { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5648a30b-68a5-46d4-b352-83dcafd9d0ef {
  display: none;
}
#s-5648a30b-68a5-46d4-b352-83dcafd9d0ef, #wrap-s-5648a30b-68a5-46d4-b352-83dcafd9d0ef { display:none !important; }}
#s-e389254f-21e9-40b4-b236-df59375cd8d8 {
  margin-top: 20px;
margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-left: 45px;
padding-bottom: 10px;
padding-right: 45px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 89, 158, 1);
border-style: solid;
border-radius: 12px;
background-color: rgba(0, 89, 158, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-e389254f-21e9-40b4-b236-df59375cd8d8:hover {background-color: rgba(0, 89, 158, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-e389254f-21e9-40b4-b236-df59375cd8d8:active {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(0, 89, 158, 1) !important;
background-color: rgba(0, 89, 158, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 89, 158, 1) !important;}

  #s-e389254f-21e9-40b4-b236-df59375cd8d8-root {
    text-align: center;
  }


#s-e389254f-21e9-40b4-b236-df59375cd8d8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e389254f-21e9-40b4-b236-df59375cd8d8-root {
    text-align: center;
  }


#s-e389254f-21e9-40b4-b236-df59375cd8d8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e389254f-21e9-40b4-b236-df59375cd8d8-root {
    text-align: center;
  }


#s-e389254f-21e9-40b4-b236-df59375cd8d8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e389254f-21e9-40b4-b236-df59375cd8d8-root {
    text-align: center;
  }


#s-e389254f-21e9-40b4-b236-df59375cd8d8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e389254f-21e9-40b4-b236-df59375cd8d8-root {
    text-align: center;
  }


#s-e389254f-21e9-40b4-b236-df59375cd8d8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-92762693-3d3e-40f0-a91d-cd544abdcea2 {
  margin-top: 12px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 29px;
padding-bottom: 10px;
padding-right: 29px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(143, 173, 61, 1);
border-style: solid;
border-radius: 12px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(143, 173, 61, 1);
}
#s-92762693-3d3e-40f0-a91d-cd544abdcea2:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-92762693-3d3e-40f0-a91d-cd544abdcea2:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-92762693-3d3e-40f0-a91d-cd544abdcea2-root {
    text-align: center;
  }


#s-92762693-3d3e-40f0-a91d-cd544abdcea2.shg-btn {
  color: rgba(143, 173, 61, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-92762693-3d3e-40f0-a91d-cd544abdcea2-root {
    text-align: center;
  }


#s-92762693-3d3e-40f0-a91d-cd544abdcea2.shg-btn {
  color: rgba(143, 173, 61, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-92762693-3d3e-40f0-a91d-cd544abdcea2-root {
    text-align: center;
  }


#s-92762693-3d3e-40f0-a91d-cd544abdcea2.shg-btn {
  color: rgba(143, 173, 61, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-92762693-3d3e-40f0-a91d-cd544abdcea2-root {
    text-align: center;
  }


#s-92762693-3d3e-40f0-a91d-cd544abdcea2.shg-btn {
  color: rgba(143, 173, 61, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-92762693-3d3e-40f0-a91d-cd544abdcea2-root {
    text-align: center;
  }


#s-92762693-3d3e-40f0-a91d-cd544abdcea2.shg-btn {
  color: rgba(143, 173, 61, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-f721c1f8-30ac-4d27-8f27-af9d968ceb54 {
  text-align: center;
}








#s-f721c1f8-30ac-4d27-8f27-af9d968ceb54 .shogun-image-content {
  
    align-items: center;
  
}

#s-3ce30df1-0771-4051-8494-52a0708631c6 {
  padding-top: 40px;
padding-bottom: 40px;
min-height: 50px;
background-color: rgba(0, 89, 158, 1);
}








#s-3ce30df1-0771-4051-8494-52a0708631c6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3ce30df1-0771-4051-8494-52a0708631c6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-70bb15c9-fcff-44ba-a814-c32104261c60 {
  text-align: left;
}

#s-dcf86de5-cf86-4bf5-b0eb-aae4130d1775 {
  text-align: left;
}

/*
  $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}