.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-44b6a572-1ebc-4083-a5ca-c95bb81e27a6 {
  background-attachment: fixed;
min-height: 600px;
}
@media (min-width: 768px) and (max-width: 991px){#s-44b6a572-1ebc-4083-a5ca-c95bb81e27a6 {
  display: none;
}
#s-44b6a572-1ebc-4083-a5ca-c95bb81e27a6, #wrap-s-44b6a572-1ebc-4083-a5ca-c95bb81e27a6 { display:none !important; }}@media (max-width: 767px){#s-44b6a572-1ebc-4083-a5ca-c95bb81e27a6 {
  min-height: 2px;
}
}







#s-44b6a572-1ebc-4083-a5ca-c95bb81e27a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-44b6a572-1ebc-4083-a5ca-c95bb81e27a6.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-1188ac5f-74c6-47b6-8475-a471d2615f1a {
  text-align: center;
}







  #s-1188ac5f-74c6-47b6-8475-a471d2615f1a img.shogun-image {
    

    
    
    
  }


#s-1188ac5f-74c6-47b6-8475-a471d2615f1a .shogun-image-content {
  
    align-items: center;
  
}

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

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

@media (min-width: 768px) and (max-width: 991px){#s-26d405ed-9082-4f00-a5fb-7ca48ba36b81 {
  display: none;
}
#s-26d405ed-9082-4f00-a5fb-7ca48ba36b81, #wrap-s-26d405ed-9082-4f00-a5fb-7ca48ba36b81 { display:none !important; }}
#s-26d405ed-9082-4f00-a5fb-7ca48ba36b81 hr {
  border-top: 25px solid rgba(255, 255, 255, 1);
}

#s-5c1c9656-bffb-4393-bec4-4f20c34bff98 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
background-position: center center;
}
@media (min-width: 1200px){#s-5c1c9656-bffb-4393-bec4-4f20c34bff98 {
  display: none;
}
#s-5c1c9656-bffb-4393-bec4-4f20c34bff98, #wrap-s-5c1c9656-bffb-4393-bec4-4f20c34bff98 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5c1c9656-bffb-4393-bec4-4f20c34bff98 {
  display: none;
}
#s-5c1c9656-bffb-4393-bec4-4f20c34bff98, #wrap-s-5c1c9656-bffb-4393-bec4-4f20c34bff98 { display:none !important; }}@media (max-width: 767px){#s-5c1c9656-bffb-4393-bec4-4f20c34bff98 {
  display: none;
}
#s-5c1c9656-bffb-4393-bec4-4f20c34bff98, #wrap-s-5c1c9656-bffb-4393-bec4-4f20c34bff98 { display:none !important; }}
#s-5c1c9656-bffb-4393-bec4-4f20c34bff98 {
  background-image: url(https://i.shgcdn.com/a6091a99-f1b3-42a4-ae71-bf617aa5cc66/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-5c1c9656-bffb-4393-bec4-4f20c34bff98 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5c1c9656-bffb-4393-bec4-4f20c34bff98.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-5dce75c0-3b83-4e83-8da8-425e80927f0f {
  display: none;
}
#s-5dce75c0-3b83-4e83-8da8-425e80927f0f, #wrap-s-5dce75c0-3b83-4e83-8da8-425e80927f0f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5dce75c0-3b83-4e83-8da8-425e80927f0f {
  display: none;
}
#s-5dce75c0-3b83-4e83-8da8-425e80927f0f, #wrap-s-5dce75c0-3b83-4e83-8da8-425e80927f0f { display:none !important; }}@media (max-width: 767px){#s-5dce75c0-3b83-4e83-8da8-425e80927f0f {
  display: none;
}
#s-5dce75c0-3b83-4e83-8da8-425e80927f0f, #wrap-s-5dce75c0-3b83-4e83-8da8-425e80927f0f { display:none !important; }}
#s-5dce75c0-3b83-4e83-8da8-425e80927f0f hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

.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-4222bc31-b5e7-4374-b43d-2a45b72023a0 {
  margin-left: 2%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
max-width: 1500px;
text-align: left;
}
@media (min-width: 1200px){#s-4222bc31-b5e7-4374-b43d-2a45b72023a0 {
  display: none;
}
#s-4222bc31-b5e7-4374-b43d-2a45b72023a0, #wrap-s-4222bc31-b5e7-4374-b43d-2a45b72023a0 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4222bc31-b5e7-4374-b43d-2a45b72023a0 {
  display: none;
}
#s-4222bc31-b5e7-4374-b43d-2a45b72023a0, #wrap-s-4222bc31-b5e7-4374-b43d-2a45b72023a0 { display:none !important; }}@media (max-width: 767px){#s-4222bc31-b5e7-4374-b43d-2a45b72023a0 {
  display: none;
}
#s-4222bc31-b5e7-4374-b43d-2a45b72023a0, #wrap-s-4222bc31-b5e7-4374-b43d-2a45b72023a0 { display:none !important; }}
#s-4222bc31-b5e7-4374-b43d-2a45b72023a0 .shogun-heading-component h1 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}



.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-1770cb09-89d6-4021-9e5f-597a631b2db4 {
  margin-left: 2%;
margin-right: 2%;
}
@media (min-width: 1200px){#s-1770cb09-89d6-4021-9e5f-597a631b2db4 {
  display: none;
}
#s-1770cb09-89d6-4021-9e5f-597a631b2db4, #wrap-s-1770cb09-89d6-4021-9e5f-597a631b2db4 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1770cb09-89d6-4021-9e5f-597a631b2db4 {
  display: none;
}
#s-1770cb09-89d6-4021-9e5f-597a631b2db4, #wrap-s-1770cb09-89d6-4021-9e5f-597a631b2db4 { display:none !important; }}@media (max-width: 767px){#s-1770cb09-89d6-4021-9e5f-597a631b2db4 {
  display: none;
}
#s-1770cb09-89d6-4021-9e5f-597a631b2db4, #wrap-s-1770cb09-89d6-4021-9e5f-597a631b2db4 { display:none !important; }}
#s-4c181869-e8c7-4ec9-8c2f-0e51a3fe332e hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 1200px){#s-9517150f-f926-42b1-b4c2-6914923efac5 {
  display: none;
}
#s-9517150f-f926-42b1-b4c2-6914923efac5, #wrap-s-9517150f-f926-42b1-b4c2-6914923efac5 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9517150f-f926-42b1-b4c2-6914923efac5 {
  display: none;
}
#s-9517150f-f926-42b1-b4c2-6914923efac5, #wrap-s-9517150f-f926-42b1-b4c2-6914923efac5 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9517150f-f926-42b1-b4c2-6914923efac5 {
  margin-left: auto;
margin-right: auto;
max-width: 600px;
}
}@media (max-width: 767px){#s-9517150f-f926-42b1-b4c2-6914923efac5 {
  display: none;
}
#s-9517150f-f926-42b1-b4c2-6914923efac5, #wrap-s-9517150f-f926-42b1-b4c2-6914923efac5 { 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: ;
  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-31200ad0-00c6-4c51-8457-8e54a9985750 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(240, 127, 100, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-31200ad0-00c6-4c51-8457-8e54a9985750:hover {background-color: rgba(7, 107, 134, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-31200ad0-00c6-4c51-8457-8e54a9985750:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-31200ad0-00c6-4c51-8457-8e54a9985750 {
  display: none;
}
#s-31200ad0-00c6-4c51-8457-8e54a9985750, #wrap-s-31200ad0-00c6-4c51-8457-8e54a9985750 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-31200ad0-00c6-4c51-8457-8e54a9985750 {
  display: none;
}
#s-31200ad0-00c6-4c51-8457-8e54a9985750, #wrap-s-31200ad0-00c6-4c51-8457-8e54a9985750 { display:none !important; }}@media (max-width: 767px){#s-31200ad0-00c6-4c51-8457-8e54a9985750 {
  display: none;
}
#s-31200ad0-00c6-4c51-8457-8e54a9985750, #wrap-s-31200ad0-00c6-4c51-8457-8e54a9985750 { display:none !important; }}

  #s-31200ad0-00c6-4c51-8457-8e54a9985750-root {
    text-align: center;
  }


#s-31200ad0-00c6-4c51-8457-8e54a9985750.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-31200ad0-00c6-4c51-8457-8e54a9985750-root {
    text-align: center;
  }


#s-31200ad0-00c6-4c51-8457-8e54a9985750.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-31200ad0-00c6-4c51-8457-8e54a9985750-root {
    text-align: center;
  }


#s-31200ad0-00c6-4c51-8457-8e54a9985750.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-31200ad0-00c6-4c51-8457-8e54a9985750-root {
    text-align: center;
  }


#s-31200ad0-00c6-4c51-8457-8e54a9985750.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-31200ad0-00c6-4c51-8457-8e54a9985750-root {
    text-align: center;
  }


#s-31200ad0-00c6-4c51-8457-8e54a9985750.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  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-fe62144d-74e3-4cc6-b8bc-cd6050c2af4d {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 55px;
margin-right: auto;
max-width: 1200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-fe62144d-74e3-4cc6-b8bc-cd6050c2af4d {
  display: none;
}
#s-fe62144d-74e3-4cc6-b8bc-cd6050c2af4d, #wrap-s-fe62144d-74e3-4cc6-b8bc-cd6050c2af4d { display:none !important; }}@media (max-width: 767px){#s-fe62144d-74e3-4cc6-b8bc-cd6050c2af4d {
  margin-bottom: 34px;
}
}
@media (min-width: 0px) {
[id="s-fe62144d-74e3-4cc6-b8bc-cd6050c2af4d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fe62144d-74e3-4cc6-b8bc-cd6050c2af4d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fe62144d-74e3-4cc6-b8bc-cd6050c2af4d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fe62144d-74e3-4cc6-b8bc-cd6050c2af4d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-3ed97abc-586d-4f8c-9c38-c6f6d86fdada {
  margin-left: 2%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
max-width: 1500px;
text-align: left;
}

#s-3ed97abc-586d-4f8c-9c38-c6f6d86fdada .shogun-heading-component h1 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}



#s-71ca2cad-abdd-4bc1-bf5d-81929ab83819 {
  margin-left: 2%;
margin-right: 2%;
}

@media (min-width: 1200px){#s-017cf409-2a3f-443c-9c68-75d9012d2ca5 {
  display: none;
}
#s-017cf409-2a3f-443c-9c68-75d9012d2ca5, #wrap-s-017cf409-2a3f-443c-9c68-75d9012d2ca5 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-017cf409-2a3f-443c-9c68-75d9012d2ca5 {
  display: none;
}
#s-017cf409-2a3f-443c-9c68-75d9012d2ca5, #wrap-s-017cf409-2a3f-443c-9c68-75d9012d2ca5 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-017cf409-2a3f-443c-9c68-75d9012d2ca5 {
  display: none;
}
#s-017cf409-2a3f-443c-9c68-75d9012d2ca5, #wrap-s-017cf409-2a3f-443c-9c68-75d9012d2ca5 { display:none !important; }}@media (max-width: 767px){#s-017cf409-2a3f-443c-9c68-75d9012d2ca5 {
  
}
}
#s-017cf409-2a3f-443c-9c68-75d9012d2ca5 hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-4b405245-1783-46ed-ba64-e3cc4fdd34c5 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(240, 127, 100, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-4b405245-1783-46ed-ba64-e3cc4fdd34c5:hover {background-color: rgba(7, 107, 134, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-4b405245-1783-46ed-ba64-e3cc4fdd34c5:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4b405245-1783-46ed-ba64-e3cc4fdd34c5-root {
    text-align: center;
  }


#s-4b405245-1783-46ed-ba64-e3cc4fdd34c5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4b405245-1783-46ed-ba64-e3cc4fdd34c5-root {
    text-align: center;
  }


#s-4b405245-1783-46ed-ba64-e3cc4fdd34c5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4b405245-1783-46ed-ba64-e3cc4fdd34c5-root {
    text-align: center;
  }


#s-4b405245-1783-46ed-ba64-e3cc4fdd34c5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4b405245-1783-46ed-ba64-e3cc4fdd34c5-root {
    text-align: center;
  }


#s-4b405245-1783-46ed-ba64-e3cc4fdd34c5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4b405245-1783-46ed-ba64-e3cc4fdd34c5-root {
    text-align: center;
  }


#s-4b405245-1783-46ed-ba64-e3cc4fdd34c5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
}
#s-3d50f851-2739-4d89-8092-47ff6ad8da55 hr {
  border-top: 25px solid rgba(255, 255, 255, 1);
}

#s-dd287dac-e1c5-4594-a09f-20972664647e {
  margin-left: 1%;
margin-bottom: 25px;
margin-right: 1%;
}

@media (min-width: 0px) {
[id="s-dd287dac-e1c5-4594-a09f-20972664647e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-dd287dac-e1c5-4594-a09f-20972664647e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-dd287dac-e1c5-4594-a09f-20972664647e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-dd287dac-e1c5-4594-a09f-20972664647e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-caa174c1-aca6-4ac4-8d3a-ca365741696d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-caa174c1-aca6-4ac4-8d3a-ca365741696d .shogun-heading-component h2 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-a3703d4b-b57e-4338-b828-d20128babdf3 {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 0);
border-style: solid;
max-width: 150px;
text-align: center;
}








#s-a3703d4b-b57e-4338-b828-d20128babdf3 .shogun-image-content {
  
    align-items: center;
  
}

#s-f040c8ef-50bd-4d35-8bc9-ea153efc994f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f040c8ef-50bd-4d35-8bc9-ea153efc994f .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-2e2a751a-d2df-4b69-90e3-3c693e6a6ea6 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
}

#s-b1613d12-ed66-45a6-9be6-5b2e637a8c9b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b1613d12-ed66-45a6-9be6-5b2e637a8c9b .shogun-heading-component h2 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-16bd82f2-4ba6-48c3-8fc7-b37914901196 {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
max-width: 150px;
text-align: center;
}







  #s-16bd82f2-4ba6-48c3-8fc7-b37914901196 img.shogun-image {
    

    
    
    
  }


#s-16bd82f2-4ba6-48c3-8fc7-b37914901196 .shogun-image-content {
  
    align-items: center;
  
}

#s-2a29ed81-4d71-4859-99b5-1a3effb38627 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2a29ed81-4d71-4859-99b5-1a3effb38627 .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-8290752f-c164-44d4-81f9-02f4e4426153 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
}

#s-2d389dcb-6c1d-44b9-91ed-cdffbe723934 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2d389dcb-6c1d-44b9-91ed-cdffbe723934 .shogun-heading-component h2 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-563b1b9f-bf65-4ff1-b12f-14889728ea0b {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
max-width: 150px;
text-align: center;
}







  #s-563b1b9f-bf65-4ff1-b12f-14889728ea0b img.shogun-image {
    

    
    
    
  }


#s-563b1b9f-bf65-4ff1-b12f-14889728ea0b .shogun-image-content {
  
    align-items: center;
  
}

#s-cfabea10-5dfa-4fff-a88d-08d9cd7b436b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cfabea10-5dfa-4fff-a88d-08d9cd7b436b .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-a3989840-e0ec-4e87-a81f-9febfe4a453f {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
}

#s-73782243-e44d-4a47-8b1f-2941fdf81289 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-73782243-e44d-4a47-8b1f-2941fdf81289 .shogun-heading-component h2 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-c38e53ff-92b4-4d42-9e10-2414b7a1d8ec {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
max-width: 150px;
text-align: center;
}







  #s-c38e53ff-92b4-4d42-9e10-2414b7a1d8ec img.shogun-image {
    

    
    
    
  }


#s-c38e53ff-92b4-4d42-9e10-2414b7a1d8ec .shogun-image-content {
  
    align-items: center;
  
}

#s-96133b98-718a-4e38-afba-5fc5479b8ed1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-96133b98-718a-4e38-afba-5fc5479b8ed1 .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-0257b32a-a8d7-4491-a720-4528be4d62d8 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
}

@media (min-width: 768px) and (max-width: 991px){#s-17306239-3b39-4547-ab9f-74b8a9a04dc4 {
  display: none;
}
#s-17306239-3b39-4547-ab9f-74b8a9a04dc4, #wrap-s-17306239-3b39-4547-ab9f-74b8a9a04dc4 { display:none !important; }}
#s-17306239-3b39-4547-ab9f-74b8a9a04dc4 hr {
  border-top: 25px solid rgba(255, 255, 255, 1);
}

#s-7bb03a42-b29b-42c6-bf09-cb6a242ecce5 {
  min-height: 50px;
}








#s-7bb03a42-b29b-42c6-bf09-cb6a242ecce5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7bb03a42-b29b-42c6-bf09-cb6a242ecce5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d8a66b44-6cc4-4d56-a5a4-edc61d5f4d15 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
max-width: 1500px;
text-align: center;
}

#s-d8a66b44-6cc4-4d56-a5a4-edc61d5f4d15 .shogun-heading-component h2 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-23c1932d-653e-4390-9775-dc24fd704249 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-23c1932d-653e-4390-9775-dc24fd704249 {
  display: none;
}
#s-23c1932d-653e-4390-9775-dc24fd704249, #wrap-s-23c1932d-653e-4390-9775-dc24fd704249 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-23c1932d-653e-4390-9775-dc24fd704249 {
  display: none;
}
#s-23c1932d-653e-4390-9775-dc24fd704249, #wrap-s-23c1932d-653e-4390-9775-dc24fd704249 { display:none !important; }}@media (max-width: 767px){#s-23c1932d-653e-4390-9775-dc24fd704249 {
  display: none;
}
#s-23c1932d-653e-4390-9775-dc24fd704249, #wrap-s-23c1932d-653e-4390-9775-dc24fd704249 { display:none !important; }}







#s-23c1932d-653e-4390-9775-dc24fd704249 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-23c1932d-653e-4390-9775-dc24fd704249.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-041c6450-71bf-4def-be89-a714813544ac {
  display: none;
}
#s-041c6450-71bf-4def-be89-a714813544ac, #wrap-s-041c6450-71bf-4def-be89-a714813544ac { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-041c6450-71bf-4def-be89-a714813544ac {
  display: none;
}
#s-041c6450-71bf-4def-be89-a714813544ac, #wrap-s-041c6450-71bf-4def-be89-a714813544ac { display:none !important; }}@media (max-width: 767px){#s-041c6450-71bf-4def-be89-a714813544ac {
  display: none;
}
#s-041c6450-71bf-4def-be89-a714813544ac, #wrap-s-041c6450-71bf-4def-be89-a714813544ac { display:none !important; }}
@media (min-width: 0px) {
[id="s-041c6450-71bf-4def-be89-a714813544ac"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-041c6450-71bf-4def-be89-a714813544ac"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 992px) {
[id="s-041c6450-71bf-4def-be89-a714813544ac"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 1200px) {
[id="s-041c6450-71bf-4def-be89-a714813544ac"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5px);
}

}

#s-00fdc8b8-383b-4dff-8eb5-59e2798aa2a8 {
  margin-left: 22%;
margin-right: 22%;
text-align: center;
}







  #s-00fdc8b8-383b-4dff-8eb5-59e2798aa2a8 img.shogun-image {
    

    
    
    
  }


#s-00fdc8b8-383b-4dff-8eb5-59e2798aa2a8 .shogun-image-content {
  
    align-items: center;
  
}

#s-52d97d59-9256-4f17-a431-8032dc87b0a1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-52d97d59-9256-4f17-a431-8032dc87b0a1 .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-52d97d59-9256-4f17-a431-8032dc87b0a1 .shogun-heading-component h3 a {
  color: rgba(7, 107, 134, 1);
}


#s-1bff96b7-beef-479b-b5e2-7a5f4aca3985 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1bff96b7-beef-479b-b5e2-7a5f4aca3985 .shogun-heading-component h5 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


#s-1bff96b7-beef-479b-b5e2-7a5f4aca3985 .shogun-heading-component h5 a {
  color: rgba(7, 107, 134, 1);
}


#s-f777ba38-bfcf-415c-8c1a-215a81ae738b {
  margin-left: 6%;
margin-right: 6%;
}

.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-c3fe7581-bcf4-4a7c-8a8c-7f29c3eabdad {
  padding-left: 6%;
padding-right: 6%;
}

#s-c3fe7581-bcf4-4a7c-8a8c-7f29c3eabdad > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-c3fe7581-bcf4-4a7c-8a8c-7f29c3eabdad > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-c3fe7581-bcf4-4a7c-8a8c-7f29c3eabdad > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(7, 107, 134, 1);
}

#s-c3fe7581-bcf4-4a7c-8a8c-7f29c3eabdad > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-c3fe7581-bcf4-4a7c-8a8c-7f29c3eabdad > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(7, 107, 134, 1);
  text-align: center;
  font-family: Radikal-bold;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-c3fe7581-bcf4-4a7c-8a8c-7f29c3eabdad > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
.shogun-table-wrapper {
  overflow: auto;
}

table.shogun-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

thead.shogun-table-column-container {
  font-weight: bold;
}

td.shogun-table-column {
  padding: 10px;
}

td.shogun-table-row {
  padding: 10px;
  min-height: 45px;
}

td.shogun-table-column:only-child, td.shogun-table-row:only-child {
  width: 100%;
}

#s-cbaef601-67fb-42d6-8c11-c6056edb4d7c .shogun-table-wrapper {
  overflow: auto;
  border: 2px solid rgba(7, 107, 134, 1);
  border-radius: 2px;
}

#s-cbaef601-67fb-42d6-8c11-c6056edb4d7c table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-cbaef601-67fb-42d6-8c11-c6056edb4d7c td.shogun-table-column {
  background-color: rgba(7, 107, 134, 1);
  padding: 1px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-cbaef601-67fb-42d6-8c11-c6056edb4d7c td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-cbaef601-67fb-42d6-8c11-c6056edb4d7c td.shogun-table-column, #s-cbaef601-67fb-42d6-8c11-c6056edb4d7c td.shogun-table-row {
  border: 2px solid rgba(7, 107, 134, 1);
}

#s-060584e6-5805-4ad3-ae82-c775e1917cc6 {
  margin-left: 2%;
margin-right: 2%;
}

#s-06b1893c-5ac3-47a5-9ed0-3eef479e72a4 {
  margin-left: 2%;
margin-right: 2%;
}

#s-b814d205-63c4-4ece-8d5f-d8a6caaa65ab {
  margin-left: 2%;
margin-right: 2%;
}

#s-fd94edd1-b7ee-4383-b3e1-29c75da8c19e {
  margin-left: 2%;
margin-right: 2%;
}

#s-01f89481-9aa1-4d95-99f2-3980ad9d1cc9 {
  margin-left: 2%;
margin-right: 2%;
}

#s-3e51250e-8a4b-48f8-bd2f-bde00b4d7ac8 {
  margin-left: 2%;
margin-right: 2%;
}

#s-142e5af8-f393-45c5-9931-842a25302281 {
  margin-left: 2%;
margin-right: 2%;
}

#s-2c35630c-f836-4fed-8206-51ba02c163b5 {
  margin-left: 2%;
margin-right: 2%;
}

#s-32fe8038-90de-4f56-b4cc-3e3c2adc8190 {
  margin-left: 2%;
margin-right: 2%;
}

#s-c9a8ea9f-50ae-4a1a-a7e7-fb3ec5edf7fc {
  margin-left: 2%;
margin-right: 2%;
}

#s-21d6f001-a2cb-41cf-a045-db36b43fc830 {
  margin-left: 22%;
margin-right: 22%;
text-align: center;
}







  #s-21d6f001-a2cb-41cf-a045-db36b43fc830 img.shogun-image {
    

    
    
    
  }


#s-21d6f001-a2cb-41cf-a045-db36b43fc830 .shogun-image-content {
  
    align-items: center;
  
}

#s-2a9575e9-6309-40fe-93f9-40fccd036ad9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2a9575e9-6309-40fe-93f9-40fccd036ad9 .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-2a9575e9-6309-40fe-93f9-40fccd036ad9 .shogun-heading-component h3 a {
  color: rgba(7, 107, 134, 1);
}


#s-9195c6e4-e0fc-48a1-8d42-c7300ca699e4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9195c6e4-e0fc-48a1-8d42-c7300ca699e4 .shogun-heading-component h5 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


#s-9195c6e4-e0fc-48a1-8d42-c7300ca699e4 .shogun-heading-component h5 a {
  color: rgba(7, 107, 134, 1);
}


#s-aac0ba78-a8d4-4ce5-9205-497b0e5f4a32 {
  margin-left: 6%;
margin-right: 6%;
}

#s-218f7725-9df9-43b2-bc74-c1f62bba3771 {
  padding-left: 6%;
padding-right: 6%;
}

#s-218f7725-9df9-43b2-bc74-c1f62bba3771 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-218f7725-9df9-43b2-bc74-c1f62bba3771 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-218f7725-9df9-43b2-bc74-c1f62bba3771 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(7, 107, 134, 1);
}

#s-218f7725-9df9-43b2-bc74-c1f62bba3771 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-218f7725-9df9-43b2-bc74-c1f62bba3771 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(7, 107, 134, 1);
  text-align: center;
  font-family: Radikal-bold;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-218f7725-9df9-43b2-bc74-c1f62bba3771 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-7631ee92-20e7-4e9a-bddd-f4c447e89a9d .shogun-table-wrapper {
  overflow: auto;
  border: 2px solid rgba(7, 107, 134, 1);
  border-radius: 2px;
}

#s-7631ee92-20e7-4e9a-bddd-f4c447e89a9d table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-7631ee92-20e7-4e9a-bddd-f4c447e89a9d td.shogun-table-column {
  background-color: rgba(7, 107, 134, 1);
  padding: 1px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-7631ee92-20e7-4e9a-bddd-f4c447e89a9d td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-7631ee92-20e7-4e9a-bddd-f4c447e89a9d td.shogun-table-column, #s-7631ee92-20e7-4e9a-bddd-f4c447e89a9d td.shogun-table-row {
  border: 2px solid rgba(7, 107, 134, 1);
}

#s-76a4a005-66ad-4997-a8dc-52608202d924 {
  margin-left: 2%;
margin-right: 2%;
}

#s-0164fc6b-26c3-4878-a936-c29b26c04149 {
  margin-left: 2%;
margin-right: 2%;
}

#s-8f7b237b-f3b6-41eb-a9d2-9647aeac25e6 {
  margin-left: 2%;
margin-right: 2%;
}

#s-01974a7f-a38b-40f2-978d-b9bfac535bfa {
  margin-left: 2%;
margin-right: 2%;
}

#s-c2896d5f-be3f-488b-89b3-44cdbf40e2d1 {
  margin-left: 2%;
margin-right: 2%;
}

#s-479d6cf3-db6a-4229-b6e9-d9f6da982862 {
  margin-left: 2%;
margin-right: 2%;
}

#s-06bc0d47-b79c-4d5f-92c5-671e479552a6 {
  margin-left: 2%;
margin-right: 2%;
}

#s-3448f52b-a994-452e-af11-dc8a46274db4 {
  margin-left: 2%;
margin-right: 2%;
}

#s-58310a3b-61b3-4c2b-ac77-37306ccf5eda {
  margin-left: 2%;
margin-right: 2%;
}

#s-2ed387cb-3ed6-4f50-8e1f-d8208f0c2f9f {
  margin-left: 2%;
margin-right: 2%;
}

#s-bcc9a407-feb3-483c-8ae8-8a7bc9b354c4 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-bcc9a407-feb3-483c-8ae8-8a7bc9b354c4 {
  display: none;
}
#s-bcc9a407-feb3-483c-8ae8-8a7bc9b354c4, #wrap-s-bcc9a407-feb3-483c-8ae8-8a7bc9b354c4 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bcc9a407-feb3-483c-8ae8-8a7bc9b354c4 {
  display: none;
}
#s-bcc9a407-feb3-483c-8ae8-8a7bc9b354c4, #wrap-s-bcc9a407-feb3-483c-8ae8-8a7bc9b354c4 { display:none !important; }}@media (max-width: 767px){#s-bcc9a407-feb3-483c-8ae8-8a7bc9b354c4 {
  display: none;
}
#s-bcc9a407-feb3-483c-8ae8-8a7bc9b354c4, #wrap-s-bcc9a407-feb3-483c-8ae8-8a7bc9b354c4 { display:none !important; }}







#s-bcc9a407-feb3-483c-8ae8-8a7bc9b354c4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bcc9a407-feb3-483c-8ae8-8a7bc9b354c4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-60b45a7c-8b3a-42e8-b574-c00aea8525a0 {
  display: none;
}
#s-60b45a7c-8b3a-42e8-b574-c00aea8525a0, #wrap-s-60b45a7c-8b3a-42e8-b574-c00aea8525a0 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-60b45a7c-8b3a-42e8-b574-c00aea8525a0 {
  display: none;
}
#s-60b45a7c-8b3a-42e8-b574-c00aea8525a0, #wrap-s-60b45a7c-8b3a-42e8-b574-c00aea8525a0 { display:none !important; }}@media (max-width: 767px){#s-60b45a7c-8b3a-42e8-b574-c00aea8525a0 {
  display: none;
}
#s-60b45a7c-8b3a-42e8-b574-c00aea8525a0, #wrap-s-60b45a7c-8b3a-42e8-b574-c00aea8525a0 { display:none !important; }}
@media (min-width: 0px) {
[id="s-60b45a7c-8b3a-42e8-b574-c00aea8525a0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-60b45a7c-8b3a-42e8-b574-c00aea8525a0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 992px) {
[id="s-60b45a7c-8b3a-42e8-b574-c00aea8525a0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 1200px) {
[id="s-60b45a7c-8b3a-42e8-b574-c00aea8525a0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5px);
}

}

#s-dad5ecc7-f6fa-40da-9206-9033aea04191 {
  margin-left: 22%;
margin-right: 22%;
text-align: center;
}







  #s-dad5ecc7-f6fa-40da-9206-9033aea04191 img.shogun-image {
    

    
    
    
  }


#s-dad5ecc7-f6fa-40da-9206-9033aea04191 .shogun-image-content {
  
    align-items: center;
  
}

#s-7b6f215d-d40e-48f1-abfc-c2eb7cad30f9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7b6f215d-d40e-48f1-abfc-c2eb7cad30f9 .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-7b6f215d-d40e-48f1-abfc-c2eb7cad30f9 .shogun-heading-component h3 a {
  color: rgba(7, 107, 134, 1);
}


#s-fee5d334-68ac-452e-b509-e19cfb2f2fb2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fee5d334-68ac-452e-b509-e19cfb2f2fb2 .shogun-heading-component h5 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


#s-fee5d334-68ac-452e-b509-e19cfb2f2fb2 .shogun-heading-component h5 a {
  color: rgba(7, 107, 134, 1);
}


#s-25361f68-94a3-4edf-8028-da184cc2fc53 {
  margin-left: 6%;
margin-right: 6%;
}

#s-5d76021e-7704-434f-a124-f1a3704d3455 {
  padding-left: 6%;
padding-right: 6%;
}

#s-5d76021e-7704-434f-a124-f1a3704d3455 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-5d76021e-7704-434f-a124-f1a3704d3455 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-5d76021e-7704-434f-a124-f1a3704d3455 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(7, 107, 134, 1);
}

#s-5d76021e-7704-434f-a124-f1a3704d3455 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-5d76021e-7704-434f-a124-f1a3704d3455 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(7, 107, 134, 1);
  text-align: center;
  font-family: Radikal-bold;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-5d76021e-7704-434f-a124-f1a3704d3455 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-c9f2be3c-20dd-41bf-b912-902c707cf68d .shogun-table-wrapper {
  overflow: auto;
  border: 2px solid rgba(7, 107, 134, 1);
  border-radius: 2px;
}

#s-c9f2be3c-20dd-41bf-b912-902c707cf68d table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-c9f2be3c-20dd-41bf-b912-902c707cf68d td.shogun-table-column {
  background-color: rgba(7, 107, 134, 1);
  padding: 1px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-c9f2be3c-20dd-41bf-b912-902c707cf68d td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-c9f2be3c-20dd-41bf-b912-902c707cf68d td.shogun-table-column, #s-c9f2be3c-20dd-41bf-b912-902c707cf68d td.shogun-table-row {
  border: 2px solid rgba(7, 107, 134, 1);
}

#s-97d6dade-4d5f-49be-b1b4-9e0d2cd31e56 {
  margin-left: 2%;
margin-right: 2%;
}

#s-90f865e3-118e-4786-97d7-a38ae674b4f2 {
  margin-left: 2%;
margin-right: 2%;
}

#s-88ccdfba-4e9f-498a-acb2-c64385716cae {
  margin-left: 2%;
margin-right: 2%;
}

#s-e8e8f17b-f587-48dd-8f77-989d3bf343aa {
  margin-left: 2%;
margin-right: 2%;
}

#s-b73bd05f-95ce-4ef0-9e09-dc2d9f06a15e {
  margin-left: 2%;
margin-right: 2%;
}

#s-3c51a917-0b2d-44ff-b479-285a37f83505 {
  margin-left: 2%;
margin-right: 2%;
}

#s-8ba9b027-1ede-4eb0-b4de-aaf0f1dfac4b {
  margin-left: 2%;
margin-right: 2%;
}

#s-c069e5f7-6b8c-483e-b680-6289d17ba95e {
  margin-left: 2%;
margin-right: 2%;
}

#s-e0d618b3-40ae-4c4a-b6c7-f12ad418776b {
  margin-left: 2%;
margin-right: 2%;
}

#s-b1f10a96-2628-4441-8c98-92d1e12a56ca {
  margin-left: 2%;
margin-right: 2%;
}

#s-3451ec0b-3470-48dc-b1b8-228e1d5741e1 {
  margin-left: 22%;
margin-right: 22%;
text-align: center;
}







  #s-3451ec0b-3470-48dc-b1b8-228e1d5741e1 img.shogun-image {
    

    
    
    
  }


#s-3451ec0b-3470-48dc-b1b8-228e1d5741e1 .shogun-image-content {
  
    align-items: center;
  
}

#s-6e823d8b-eca0-4321-a055-373d09bd4cfc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6e823d8b-eca0-4321-a055-373d09bd4cfc .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-6e823d8b-eca0-4321-a055-373d09bd4cfc .shogun-heading-component h3 a {
  color: rgba(7, 107, 134, 1);
}


#s-63cd4396-573f-4801-b85f-bfc500822cb3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-63cd4396-573f-4801-b85f-bfc500822cb3 .shogun-heading-component h5 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


#s-63cd4396-573f-4801-b85f-bfc500822cb3 .shogun-heading-component h5 a {
  color: rgba(7, 107, 134, 1);
}


#s-604db4c0-b3bf-4bba-ba16-344b8b1f4ef8 {
  margin-left: 6%;
margin-right: 6%;
}

#s-ac124c57-fd40-4f9b-b07d-33ddc1c6bdc5 {
  padding-left: 6%;
padding-right: 6%;
}

#s-ac124c57-fd40-4f9b-b07d-33ddc1c6bdc5 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-ac124c57-fd40-4f9b-b07d-33ddc1c6bdc5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-ac124c57-fd40-4f9b-b07d-33ddc1c6bdc5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(7, 107, 134, 1);
}

#s-ac124c57-fd40-4f9b-b07d-33ddc1c6bdc5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-ac124c57-fd40-4f9b-b07d-33ddc1c6bdc5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(7, 107, 134, 1);
  text-align: center;
  font-family: Radikal-bold;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-ac124c57-fd40-4f9b-b07d-33ddc1c6bdc5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-8a98fc1a-3d1a-4eae-a85b-31decf26b5b8 .shogun-table-wrapper {
  overflow: auto;
  border: 2px solid rgba(7, 107, 134, 1);
  border-radius: 2px;
}

#s-8a98fc1a-3d1a-4eae-a85b-31decf26b5b8 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-8a98fc1a-3d1a-4eae-a85b-31decf26b5b8 td.shogun-table-column {
  background-color: rgba(7, 107, 134, 1);
  padding: 1px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-8a98fc1a-3d1a-4eae-a85b-31decf26b5b8 td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-8a98fc1a-3d1a-4eae-a85b-31decf26b5b8 td.shogun-table-column, #s-8a98fc1a-3d1a-4eae-a85b-31decf26b5b8 td.shogun-table-row {
  border: 2px solid rgba(7, 107, 134, 1);
}

#s-17509e88-acce-470b-9780-33efe9f35b96 {
  margin-left: 2%;
margin-right: 2%;
}

#s-505c9e73-3ef8-4bed-be7c-523e6bde1205 {
  margin-left: 2%;
margin-right: 2%;
}

#s-c6c05e32-cd75-46cf-9e3a-778d063bcce3 {
  margin-left: 2%;
margin-right: 2%;
}

#s-89d55563-dab3-44b7-9db0-49968b18af7e {
  margin-left: 2%;
margin-right: 2%;
}

#s-e6e5a4bb-070d-4125-952f-f2146858f88e {
  margin-left: 2%;
margin-right: 2%;
}

#s-3cb97892-4bc8-4243-aa0f-631db4fadc89 {
  margin-left: 2%;
margin-right: 2%;
}

#s-c4c9e6ad-e2d7-4d8e-8306-3740fc3e4868 {
  margin-left: 2%;
margin-right: 2%;
}

#s-6682a5b9-17b5-4066-a08b-37871d07f9e6 {
  margin-left: 2%;
margin-right: 2%;
}

#s-994948a6-b16f-401b-96af-55589031669e {
  margin-left: 2%;
margin-right: 2%;
}

#s-ef0a9bed-35f6-4bdc-9c39-586b7eb62ec2 {
  margin-left: 2%;
margin-right: 2%;
}

#s-44f46748-fe53-4604-9d1e-398d2872b249 {
  margin-left: 22%;
margin-right: 22%;
text-align: center;
}
@media (min-width: 1200px){#s-44f46748-fe53-4604-9d1e-398d2872b249 {
  display: none;
}
#s-44f46748-fe53-4604-9d1e-398d2872b249, #wrap-s-44f46748-fe53-4604-9d1e-398d2872b249 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-44f46748-fe53-4604-9d1e-398d2872b249 {
  display: none;
}
#s-44f46748-fe53-4604-9d1e-398d2872b249, #wrap-s-44f46748-fe53-4604-9d1e-398d2872b249 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-44f46748-fe53-4604-9d1e-398d2872b249 {
  display: none;
}
#s-44f46748-fe53-4604-9d1e-398d2872b249, #wrap-s-44f46748-fe53-4604-9d1e-398d2872b249 { display:none !important; }}






  #s-44f46748-fe53-4604-9d1e-398d2872b249 img.shogun-image {
    

    
    
    
  }


#s-44f46748-fe53-4604-9d1e-398d2872b249 .shogun-image-content {
  
    align-items: center;
  
}

#s-ddf19a50-3155-403b-9ae7-7d2896c4090c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-ddf19a50-3155-403b-9ae7-7d2896c4090c {
  display: none;
}
#s-ddf19a50-3155-403b-9ae7-7d2896c4090c, #wrap-s-ddf19a50-3155-403b-9ae7-7d2896c4090c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ddf19a50-3155-403b-9ae7-7d2896c4090c {
  display: none;
}
#s-ddf19a50-3155-403b-9ae7-7d2896c4090c, #wrap-s-ddf19a50-3155-403b-9ae7-7d2896c4090c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ddf19a50-3155-403b-9ae7-7d2896c4090c {
  display: none;
}
#s-ddf19a50-3155-403b-9ae7-7d2896c4090c, #wrap-s-ddf19a50-3155-403b-9ae7-7d2896c4090c { display:none !important; }}
#s-ddf19a50-3155-403b-9ae7-7d2896c4090c .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-ddf19a50-3155-403b-9ae7-7d2896c4090c .shogun-heading-component h3 a {
  color: rgba(7, 107, 134, 1);
}


#s-d7914a3d-8aa2-46e3-bf40-41ac64a8118c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-d7914a3d-8aa2-46e3-bf40-41ac64a8118c {
  display: none;
}
#s-d7914a3d-8aa2-46e3-bf40-41ac64a8118c, #wrap-s-d7914a3d-8aa2-46e3-bf40-41ac64a8118c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d7914a3d-8aa2-46e3-bf40-41ac64a8118c {
  display: none;
}
#s-d7914a3d-8aa2-46e3-bf40-41ac64a8118c, #wrap-s-d7914a3d-8aa2-46e3-bf40-41ac64a8118c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d7914a3d-8aa2-46e3-bf40-41ac64a8118c {
  display: none;
}
#s-d7914a3d-8aa2-46e3-bf40-41ac64a8118c, #wrap-s-d7914a3d-8aa2-46e3-bf40-41ac64a8118c { display:none !important; }}
#s-d7914a3d-8aa2-46e3-bf40-41ac64a8118c .shogun-heading-component h5 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


#s-d7914a3d-8aa2-46e3-bf40-41ac64a8118c .shogun-heading-component h5 a {
  color: rgba(7, 107, 134, 1);
}


#s-f2c16196-fa0b-4695-aa45-f4bf358b04af {
  margin-left: 6%;
margin-right: 6%;
}
@media (min-width: 1200px){#s-f2c16196-fa0b-4695-aa45-f4bf358b04af {
  display: none;
}
#s-f2c16196-fa0b-4695-aa45-f4bf358b04af, #wrap-s-f2c16196-fa0b-4695-aa45-f4bf358b04af { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f2c16196-fa0b-4695-aa45-f4bf358b04af {
  display: none;
}
#s-f2c16196-fa0b-4695-aa45-f4bf358b04af, #wrap-s-f2c16196-fa0b-4695-aa45-f4bf358b04af { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f2c16196-fa0b-4695-aa45-f4bf358b04af {
  display: none;
}
#s-f2c16196-fa0b-4695-aa45-f4bf358b04af, #wrap-s-f2c16196-fa0b-4695-aa45-f4bf358b04af { display:none !important; }}
#s-2bbf220f-91aa-45c1-993e-e21e09ea9a17 {
  padding-left: 6%;
padding-right: 6%;
}
@media (min-width: 1200px){#s-2bbf220f-91aa-45c1-993e-e21e09ea9a17 {
  display: none;
}
#s-2bbf220f-91aa-45c1-993e-e21e09ea9a17, #wrap-s-2bbf220f-91aa-45c1-993e-e21e09ea9a17 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2bbf220f-91aa-45c1-993e-e21e09ea9a17 {
  display: none;
}
#s-2bbf220f-91aa-45c1-993e-e21e09ea9a17, #wrap-s-2bbf220f-91aa-45c1-993e-e21e09ea9a17 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2bbf220f-91aa-45c1-993e-e21e09ea9a17 {
  display: none;
}
#s-2bbf220f-91aa-45c1-993e-e21e09ea9a17, #wrap-s-2bbf220f-91aa-45c1-993e-e21e09ea9a17 { display:none !important; }}
#s-2bbf220f-91aa-45c1-993e-e21e09ea9a17 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-2bbf220f-91aa-45c1-993e-e21e09ea9a17 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-2bbf220f-91aa-45c1-993e-e21e09ea9a17 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(7, 107, 134, 1);
}

#s-2bbf220f-91aa-45c1-993e-e21e09ea9a17 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-2bbf220f-91aa-45c1-993e-e21e09ea9a17 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(7, 107, 134, 1);
  text-align: center;
  font-family: Radikal-bold;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-2bbf220f-91aa-45c1-993e-e21e09ea9a17 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-c3707a17-8bc2-4bbb-828a-15493f005d13 .shogun-table-wrapper {
  overflow: auto;
  border: 2px solid rgba(7, 107, 134, 1);
  border-radius: 2px;
}

#s-c3707a17-8bc2-4bbb-828a-15493f005d13 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-c3707a17-8bc2-4bbb-828a-15493f005d13 td.shogun-table-column {
  background-color: rgba(7, 107, 134, 1);
  padding: 1px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-c3707a17-8bc2-4bbb-828a-15493f005d13 td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-c3707a17-8bc2-4bbb-828a-15493f005d13 td.shogun-table-column, #s-c3707a17-8bc2-4bbb-828a-15493f005d13 td.shogun-table-row {
  border: 2px solid rgba(7, 107, 134, 1);
}

#s-784139ba-388d-430a-b451-2f96a66b6713 {
  margin-left: 2%;
margin-right: 2%;
}

#s-9598548d-b2a3-4a1d-8656-3a8af7415553 {
  margin-left: 2%;
margin-right: 2%;
}

#s-6a9f258a-d290-42d8-8ca3-92c6610e092f {
  margin-left: 2%;
margin-right: 2%;
}

#s-672a850d-4a06-4632-9c67-7cb5c7f2cbb6 {
  margin-left: 2%;
margin-right: 2%;
}

#s-9b310b76-852c-4176-8424-20653ef24ed6 {
  margin-left: 2%;
margin-right: 2%;
}

#s-c1e25d5b-f697-4161-8303-253b1d97923e {
  margin-left: 2%;
margin-right: 2%;
}

#s-9276f1e4-4b2c-429f-81a5-40e8066f5fe6 {
  margin-left: 2%;
margin-right: 2%;
}

#s-89d20f61-345a-4ce7-98b1-a3797b99d798 {
  margin-left: 2%;
margin-right: 2%;
}

#s-367f39a3-d412-4a4a-811f-ca91f10ba551 {
  margin-left: 2%;
margin-right: 2%;
}

#s-d92f0993-3f38-4f3d-a6b0-bffed1871111 {
  margin-left: 2%;
margin-right: 2%;
}

#s-66f2efac-4d2e-4811-95c4-38d6612d5ef3 {
  margin-left: 22%;
margin-right: 22%;
text-align: center;
}
@media (min-width: 1200px){#s-66f2efac-4d2e-4811-95c4-38d6612d5ef3 {
  display: none;
}
#s-66f2efac-4d2e-4811-95c4-38d6612d5ef3, #wrap-s-66f2efac-4d2e-4811-95c4-38d6612d5ef3 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-66f2efac-4d2e-4811-95c4-38d6612d5ef3 {
  display: none;
}
#s-66f2efac-4d2e-4811-95c4-38d6612d5ef3, #wrap-s-66f2efac-4d2e-4811-95c4-38d6612d5ef3 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-66f2efac-4d2e-4811-95c4-38d6612d5ef3 {
  display: none;
}
#s-66f2efac-4d2e-4811-95c4-38d6612d5ef3, #wrap-s-66f2efac-4d2e-4811-95c4-38d6612d5ef3 { display:none !important; }}






  #s-66f2efac-4d2e-4811-95c4-38d6612d5ef3 img.shogun-image {
    

    
    
    
  }


#s-66f2efac-4d2e-4811-95c4-38d6612d5ef3 .shogun-image-content {
  
    align-items: center;
  
}

#s-6bb14311-ba86-4a35-8747-2362d8aee6f2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-6bb14311-ba86-4a35-8747-2362d8aee6f2 {
  display: none;
}
#s-6bb14311-ba86-4a35-8747-2362d8aee6f2, #wrap-s-6bb14311-ba86-4a35-8747-2362d8aee6f2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6bb14311-ba86-4a35-8747-2362d8aee6f2 {
  display: none;
}
#s-6bb14311-ba86-4a35-8747-2362d8aee6f2, #wrap-s-6bb14311-ba86-4a35-8747-2362d8aee6f2 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6bb14311-ba86-4a35-8747-2362d8aee6f2 {
  display: none;
}
#s-6bb14311-ba86-4a35-8747-2362d8aee6f2, #wrap-s-6bb14311-ba86-4a35-8747-2362d8aee6f2 { display:none !important; }}
#s-6bb14311-ba86-4a35-8747-2362d8aee6f2 .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-6bb14311-ba86-4a35-8747-2362d8aee6f2 .shogun-heading-component h3 a {
  color: rgba(7, 107, 134, 1);
}


#s-a122b989-6fd6-4620-8550-860a6819ecf9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-a122b989-6fd6-4620-8550-860a6819ecf9 {
  display: none;
}
#s-a122b989-6fd6-4620-8550-860a6819ecf9, #wrap-s-a122b989-6fd6-4620-8550-860a6819ecf9 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a122b989-6fd6-4620-8550-860a6819ecf9 {
  display: none;
}
#s-a122b989-6fd6-4620-8550-860a6819ecf9, #wrap-s-a122b989-6fd6-4620-8550-860a6819ecf9 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a122b989-6fd6-4620-8550-860a6819ecf9 {
  display: none;
}
#s-a122b989-6fd6-4620-8550-860a6819ecf9, #wrap-s-a122b989-6fd6-4620-8550-860a6819ecf9 { display:none !important; }}
#s-a122b989-6fd6-4620-8550-860a6819ecf9 .shogun-heading-component h5 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


#s-a122b989-6fd6-4620-8550-860a6819ecf9 .shogun-heading-component h5 a {
  color: rgba(7, 107, 134, 1);
}


#s-2a47498e-0409-4d15-9075-a2db7cf5ea97 {
  margin-left: 6%;
margin-right: 6%;
}
@media (min-width: 1200px){#s-2a47498e-0409-4d15-9075-a2db7cf5ea97 {
  display: none;
}
#s-2a47498e-0409-4d15-9075-a2db7cf5ea97, #wrap-s-2a47498e-0409-4d15-9075-a2db7cf5ea97 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2a47498e-0409-4d15-9075-a2db7cf5ea97 {
  display: none;
}
#s-2a47498e-0409-4d15-9075-a2db7cf5ea97, #wrap-s-2a47498e-0409-4d15-9075-a2db7cf5ea97 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2a47498e-0409-4d15-9075-a2db7cf5ea97 {
  display: none;
}
#s-2a47498e-0409-4d15-9075-a2db7cf5ea97, #wrap-s-2a47498e-0409-4d15-9075-a2db7cf5ea97 { display:none !important; }}
#s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff {
  padding-left: 6%;
padding-right: 6%;
}
@media (min-width: 1200px){#s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff {
  display: none;
}
#s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff, #wrap-s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff {
  display: none;
}
#s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff, #wrap-s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff {
  display: none;
}
#s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff, #wrap-s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff { display:none !important; }}
#s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(7, 107, 134, 1);
}

#s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(7, 107, 134, 1);
  text-align: center;
  font-family: Radikal-bold;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-bd0ef690-4d8c-42c9-9c4f-3186a956cbff > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-6199fbdd-c2f2-43d5-aff0-ffb5677e12ed .shogun-table-wrapper {
  overflow: auto;
  border: 2px solid rgba(7, 107, 134, 1);
  border-radius: 2px;
}

#s-6199fbdd-c2f2-43d5-aff0-ffb5677e12ed table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-6199fbdd-c2f2-43d5-aff0-ffb5677e12ed td.shogun-table-column {
  background-color: rgba(7, 107, 134, 1);
  padding: 1px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-6199fbdd-c2f2-43d5-aff0-ffb5677e12ed td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-6199fbdd-c2f2-43d5-aff0-ffb5677e12ed td.shogun-table-column, #s-6199fbdd-c2f2-43d5-aff0-ffb5677e12ed td.shogun-table-row {
  border: 2px solid rgba(7, 107, 134, 1);
}

#s-366b9842-c5d4-4807-ad91-58ce5053c9f4 {
  margin-left: 2%;
margin-right: 2%;
}

#s-0bc84fb9-e1de-4803-9eb6-bd405b5fe9fb {
  margin-left: 2%;
margin-right: 2%;
}

#s-626b3ff9-27bc-4b06-80b8-e1ec4e3f23c8 {
  margin-left: 2%;
margin-right: 2%;
}

#s-3767f728-2ee2-4517-b49e-a029341cc824 {
  margin-left: 2%;
margin-right: 2%;
}

#s-c959c0c7-c111-4889-8ea3-5c0f56c7bda2 {
  margin-left: 2%;
margin-right: 2%;
}

#s-8a478290-cf79-48b3-b9b2-c1ea98648e93 {
  margin-left: 2%;
margin-right: 2%;
}

#s-c998e0fb-b2ac-4f7f-b069-7cec135c803c {
  margin-left: 2%;
margin-right: 2%;
}

#s-bceb6c25-784d-40bd-97a6-05797b05fa62 {
  margin-left: 2%;
margin-right: 2%;
}

#s-6dc02406-fc7a-426a-8805-257a8033ff0d {
  margin-left: 2%;
margin-right: 2%;
}

#s-94c79ba2-b65f-455c-b31a-e5a2d1abdb8b {
  margin-left: 2%;
margin-right: 2%;
}

#s-659d8fd1-a310-4953-bcf2-725345528c73 {
  margin-left: 22%;
margin-right: 22%;
text-align: center;
}
@media (min-width: 1200px){#s-659d8fd1-a310-4953-bcf2-725345528c73 {
  display: none;
}
#s-659d8fd1-a310-4953-bcf2-725345528c73, #wrap-s-659d8fd1-a310-4953-bcf2-725345528c73 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-659d8fd1-a310-4953-bcf2-725345528c73 {
  display: none;
}
#s-659d8fd1-a310-4953-bcf2-725345528c73, #wrap-s-659d8fd1-a310-4953-bcf2-725345528c73 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-659d8fd1-a310-4953-bcf2-725345528c73 {
  display: none;
}
#s-659d8fd1-a310-4953-bcf2-725345528c73, #wrap-s-659d8fd1-a310-4953-bcf2-725345528c73 { display:none !important; }}






  #s-659d8fd1-a310-4953-bcf2-725345528c73 img.shogun-image {
    

    
    
    
  }


#s-659d8fd1-a310-4953-bcf2-725345528c73 .shogun-image-content {
  
    align-items: center;
  
}

#s-0027bd96-f63f-4e9e-8877-e94170aa217c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-0027bd96-f63f-4e9e-8877-e94170aa217c {
  display: none;
}
#s-0027bd96-f63f-4e9e-8877-e94170aa217c, #wrap-s-0027bd96-f63f-4e9e-8877-e94170aa217c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0027bd96-f63f-4e9e-8877-e94170aa217c {
  display: none;
}
#s-0027bd96-f63f-4e9e-8877-e94170aa217c, #wrap-s-0027bd96-f63f-4e9e-8877-e94170aa217c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0027bd96-f63f-4e9e-8877-e94170aa217c {
  display: none;
}
#s-0027bd96-f63f-4e9e-8877-e94170aa217c, #wrap-s-0027bd96-f63f-4e9e-8877-e94170aa217c { display:none !important; }}
#s-0027bd96-f63f-4e9e-8877-e94170aa217c .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-0027bd96-f63f-4e9e-8877-e94170aa217c .shogun-heading-component h3 a {
  color: rgba(7, 107, 134, 1);
}


#s-f838bdfe-0490-4d37-bd5f-8063ce9e129d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-f838bdfe-0490-4d37-bd5f-8063ce9e129d {
  display: none;
}
#s-f838bdfe-0490-4d37-bd5f-8063ce9e129d, #wrap-s-f838bdfe-0490-4d37-bd5f-8063ce9e129d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f838bdfe-0490-4d37-bd5f-8063ce9e129d {
  display: none;
}
#s-f838bdfe-0490-4d37-bd5f-8063ce9e129d, #wrap-s-f838bdfe-0490-4d37-bd5f-8063ce9e129d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f838bdfe-0490-4d37-bd5f-8063ce9e129d {
  display: none;
}
#s-f838bdfe-0490-4d37-bd5f-8063ce9e129d, #wrap-s-f838bdfe-0490-4d37-bd5f-8063ce9e129d { display:none !important; }}
#s-f838bdfe-0490-4d37-bd5f-8063ce9e129d .shogun-heading-component h5 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


#s-f838bdfe-0490-4d37-bd5f-8063ce9e129d .shogun-heading-component h5 a {
  color: rgba(7, 107, 134, 1);
}


#s-78420b8f-e5d6-4d3b-ab08-735d27b30e0b {
  margin-left: 6%;
margin-right: 6%;
}
@media (min-width: 1200px){#s-78420b8f-e5d6-4d3b-ab08-735d27b30e0b {
  display: none;
}
#s-78420b8f-e5d6-4d3b-ab08-735d27b30e0b, #wrap-s-78420b8f-e5d6-4d3b-ab08-735d27b30e0b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-78420b8f-e5d6-4d3b-ab08-735d27b30e0b {
  display: none;
}
#s-78420b8f-e5d6-4d3b-ab08-735d27b30e0b, #wrap-s-78420b8f-e5d6-4d3b-ab08-735d27b30e0b { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-78420b8f-e5d6-4d3b-ab08-735d27b30e0b {
  display: none;
}
#s-78420b8f-e5d6-4d3b-ab08-735d27b30e0b, #wrap-s-78420b8f-e5d6-4d3b-ab08-735d27b30e0b { display:none !important; }}
#s-aa9fa6e8-ac57-48da-abfc-908f1f936a10 {
  padding-left: 6%;
padding-right: 6%;
}
@media (min-width: 1200px){#s-aa9fa6e8-ac57-48da-abfc-908f1f936a10 {
  display: none;
}
#s-aa9fa6e8-ac57-48da-abfc-908f1f936a10, #wrap-s-aa9fa6e8-ac57-48da-abfc-908f1f936a10 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-aa9fa6e8-ac57-48da-abfc-908f1f936a10 {
  display: none;
}
#s-aa9fa6e8-ac57-48da-abfc-908f1f936a10, #wrap-s-aa9fa6e8-ac57-48da-abfc-908f1f936a10 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-aa9fa6e8-ac57-48da-abfc-908f1f936a10 {
  display: none;
}
#s-aa9fa6e8-ac57-48da-abfc-908f1f936a10, #wrap-s-aa9fa6e8-ac57-48da-abfc-908f1f936a10 { display:none !important; }}
#s-aa9fa6e8-ac57-48da-abfc-908f1f936a10 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-aa9fa6e8-ac57-48da-abfc-908f1f936a10 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-aa9fa6e8-ac57-48da-abfc-908f1f936a10 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(7, 107, 134, 1);
}

#s-aa9fa6e8-ac57-48da-abfc-908f1f936a10 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-aa9fa6e8-ac57-48da-abfc-908f1f936a10 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(7, 107, 134, 1);
  text-align: center;
  font-family: Radikal-bold;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-aa9fa6e8-ac57-48da-abfc-908f1f936a10 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-b7e0c2a5-d164-4bb0-add7-e31e9e9e86a4 .shogun-table-wrapper {
  overflow: auto;
  border: 2px solid rgba(7, 107, 134, 1);
  border-radius: 2px;
}

#s-b7e0c2a5-d164-4bb0-add7-e31e9e9e86a4 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-b7e0c2a5-d164-4bb0-add7-e31e9e9e86a4 td.shogun-table-column {
  background-color: rgba(7, 107, 134, 1);
  padding: 1px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-b7e0c2a5-d164-4bb0-add7-e31e9e9e86a4 td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-b7e0c2a5-d164-4bb0-add7-e31e9e9e86a4 td.shogun-table-column, #s-b7e0c2a5-d164-4bb0-add7-e31e9e9e86a4 td.shogun-table-row {
  border: 2px solid rgba(7, 107, 134, 1);
}

#s-c0a1d100-568d-4f38-8c9d-e5ddf5a2ad99 {
  margin-left: 2%;
margin-right: 2%;
}

#s-140d37e8-fcaa-4808-9d04-0baca84b046b {
  margin-left: 2%;
margin-right: 2%;
}

#s-c63fc1e9-f086-44e5-8df2-254b0e0a7ca2 {
  margin-left: 2%;
margin-right: 2%;
}

#s-c9373545-82af-4780-82bd-4960c9f95aca {
  margin-left: 2%;
margin-right: 2%;
}

#s-4e16e708-366d-44ba-b1c2-f4a03e146baf {
  margin-left: 2%;
margin-right: 2%;
}

#s-58f3c805-95d2-4d69-92a0-82106c7cb64a {
  margin-left: 2%;
margin-right: 2%;
}

#s-8223909b-8818-4a03-b4b6-05b345167967 {
  margin-left: 2%;
margin-right: 2%;
}

#s-f422bc00-bf79-4e13-be93-6a35cb79b9e1 {
  margin-left: 2%;
margin-right: 2%;
}

#s-9ca42fc1-130e-440b-8990-da045690e825 {
  margin-left: 2%;
margin-right: 2%;
}

#s-973a01b9-8deb-45e1-9e0e-7ebd24906beb {
  margin-left: 2%;
margin-right: 2%;
}

#s-a27bbd3a-4ed1-4d7a-bb50-b09ed20fdc7a {
  margin-left: 22%;
margin-right: 22%;
text-align: center;
}
@media (min-width: 1200px){#s-a27bbd3a-4ed1-4d7a-bb50-b09ed20fdc7a {
  display: none;
}
#s-a27bbd3a-4ed1-4d7a-bb50-b09ed20fdc7a, #wrap-s-a27bbd3a-4ed1-4d7a-bb50-b09ed20fdc7a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a27bbd3a-4ed1-4d7a-bb50-b09ed20fdc7a {
  display: none;
}
#s-a27bbd3a-4ed1-4d7a-bb50-b09ed20fdc7a, #wrap-s-a27bbd3a-4ed1-4d7a-bb50-b09ed20fdc7a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a27bbd3a-4ed1-4d7a-bb50-b09ed20fdc7a {
  display: none;
}
#s-a27bbd3a-4ed1-4d7a-bb50-b09ed20fdc7a, #wrap-s-a27bbd3a-4ed1-4d7a-bb50-b09ed20fdc7a { display:none !important; }}






  #s-a27bbd3a-4ed1-4d7a-bb50-b09ed20fdc7a img.shogun-image {
    

    
    
    
  }


#s-a27bbd3a-4ed1-4d7a-bb50-b09ed20fdc7a .shogun-image-content {
  
    align-items: center;
  
}

#s-e255ce69-c791-499f-b552-7fbbf888e7d0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-e255ce69-c791-499f-b552-7fbbf888e7d0 {
  display: none;
}
#s-e255ce69-c791-499f-b552-7fbbf888e7d0, #wrap-s-e255ce69-c791-499f-b552-7fbbf888e7d0 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e255ce69-c791-499f-b552-7fbbf888e7d0 {
  display: none;
}
#s-e255ce69-c791-499f-b552-7fbbf888e7d0, #wrap-s-e255ce69-c791-499f-b552-7fbbf888e7d0 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e255ce69-c791-499f-b552-7fbbf888e7d0 {
  display: none;
}
#s-e255ce69-c791-499f-b552-7fbbf888e7d0, #wrap-s-e255ce69-c791-499f-b552-7fbbf888e7d0 { display:none !important; }}
#s-e255ce69-c791-499f-b552-7fbbf888e7d0 .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-e255ce69-c791-499f-b552-7fbbf888e7d0 .shogun-heading-component h3 a {
  color: rgba(7, 107, 134, 1);
}


#s-e085dffc-c823-49ad-b589-63b8a1b5d636 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-e085dffc-c823-49ad-b589-63b8a1b5d636 {
  display: none;
}
#s-e085dffc-c823-49ad-b589-63b8a1b5d636, #wrap-s-e085dffc-c823-49ad-b589-63b8a1b5d636 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e085dffc-c823-49ad-b589-63b8a1b5d636 {
  display: none;
}
#s-e085dffc-c823-49ad-b589-63b8a1b5d636, #wrap-s-e085dffc-c823-49ad-b589-63b8a1b5d636 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e085dffc-c823-49ad-b589-63b8a1b5d636 {
  display: none;
}
#s-e085dffc-c823-49ad-b589-63b8a1b5d636, #wrap-s-e085dffc-c823-49ad-b589-63b8a1b5d636 { display:none !important; }}
#s-e085dffc-c823-49ad-b589-63b8a1b5d636 .shogun-heading-component h5 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


#s-e085dffc-c823-49ad-b589-63b8a1b5d636 .shogun-heading-component h5 a {
  color: rgba(7, 107, 134, 1);
}


#s-a3036168-64a7-4a32-83c9-78c150357b41 {
  margin-left: 6%;
margin-right: 6%;
}
@media (min-width: 1200px){#s-a3036168-64a7-4a32-83c9-78c150357b41 {
  display: none;
}
#s-a3036168-64a7-4a32-83c9-78c150357b41, #wrap-s-a3036168-64a7-4a32-83c9-78c150357b41 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a3036168-64a7-4a32-83c9-78c150357b41 {
  display: none;
}
#s-a3036168-64a7-4a32-83c9-78c150357b41, #wrap-s-a3036168-64a7-4a32-83c9-78c150357b41 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a3036168-64a7-4a32-83c9-78c150357b41 {
  display: none;
}
#s-a3036168-64a7-4a32-83c9-78c150357b41, #wrap-s-a3036168-64a7-4a32-83c9-78c150357b41 { display:none !important; }}
#s-398aabef-bf2a-49dc-a0cb-b22d29cf5170 {
  padding-left: 6%;
padding-right: 6%;
}
@media (min-width: 1200px){#s-398aabef-bf2a-49dc-a0cb-b22d29cf5170 {
  display: none;
}
#s-398aabef-bf2a-49dc-a0cb-b22d29cf5170, #wrap-s-398aabef-bf2a-49dc-a0cb-b22d29cf5170 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-398aabef-bf2a-49dc-a0cb-b22d29cf5170 {
  display: none;
}
#s-398aabef-bf2a-49dc-a0cb-b22d29cf5170, #wrap-s-398aabef-bf2a-49dc-a0cb-b22d29cf5170 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-398aabef-bf2a-49dc-a0cb-b22d29cf5170 {
  display: none;
}
#s-398aabef-bf2a-49dc-a0cb-b22d29cf5170, #wrap-s-398aabef-bf2a-49dc-a0cb-b22d29cf5170 { display:none !important; }}
#s-398aabef-bf2a-49dc-a0cb-b22d29cf5170 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-398aabef-bf2a-49dc-a0cb-b22d29cf5170 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-398aabef-bf2a-49dc-a0cb-b22d29cf5170 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(7, 107, 134, 1);
}

#s-398aabef-bf2a-49dc-a0cb-b22d29cf5170 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-398aabef-bf2a-49dc-a0cb-b22d29cf5170 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(7, 107, 134, 1);
  text-align: center;
  font-family: Radikal-bold;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-398aabef-bf2a-49dc-a0cb-b22d29cf5170 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-61bbee21-faf4-45c8-99bd-a44a2f4aabb4 .shogun-table-wrapper {
  overflow: auto;
  border: 2px solid rgba(7, 107, 134, 1);
  border-radius: 2px;
}

#s-61bbee21-faf4-45c8-99bd-a44a2f4aabb4 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-61bbee21-faf4-45c8-99bd-a44a2f4aabb4 td.shogun-table-column {
  background-color: rgba(7, 107, 134, 1);
  padding: 1px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-61bbee21-faf4-45c8-99bd-a44a2f4aabb4 td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-61bbee21-faf4-45c8-99bd-a44a2f4aabb4 td.shogun-table-column, #s-61bbee21-faf4-45c8-99bd-a44a2f4aabb4 td.shogun-table-row {
  border: 2px solid rgba(7, 107, 134, 1);
}

#s-1c359598-1dc5-4d61-94c4-4a5674c6dca8 {
  margin-left: 2%;
margin-right: 2%;
}

#s-e244f4bb-839c-476f-aca1-d4e060b05b17 {
  margin-left: 2%;
margin-right: 2%;
}

#s-19858759-4d14-45a7-8fcc-92d845541a52 {
  margin-left: 2%;
margin-right: 2%;
}

#s-d316fbb2-1ad3-4f80-818c-20b9a4acb5e9 {
  margin-left: 2%;
margin-right: 2%;
}

#s-ac182919-cfc1-495f-8a29-829f7447c03b {
  margin-left: 2%;
margin-right: 2%;
}

#s-f369253f-f906-40b1-ba48-3bcc7e9ee3b3 {
  margin-left: 2%;
margin-right: 2%;
}

#s-3a4288c1-89ed-451d-bf6b-b4a6332c5f79 {
  margin-left: 2%;
margin-right: 2%;
}

#s-cfaafa37-cc34-4815-8338-ab4b88543a86 {
  margin-left: 2%;
margin-right: 2%;
}

#s-9ba136e0-b54a-48d4-b746-a7b62f0f68b0 {
  margin-left: 2%;
margin-right: 2%;
}

#s-596cf56c-35a4-43fc-a21a-e3448b43dbd5 {
  margin-left: 2%;
margin-right: 2%;
}

#s-1a325879-6ad6-4bd8-b665-bb916f68bd26 {
  margin-left: 1%;
margin-bottom: 0px;
margin-right: 1%;
padding-left: 0%;
padding-right: 0%;
}
@media (min-width: 768px) and (max-width: 991px){#s-1a325879-6ad6-4bd8-b665-bb916f68bd26 {
  display: none;
}
#s-1a325879-6ad6-4bd8-b665-bb916f68bd26, #wrap-s-1a325879-6ad6-4bd8-b665-bb916f68bd26 { display:none !important; }}@media (max-width: 767px){#s-1a325879-6ad6-4bd8-b665-bb916f68bd26 {
  display: none;
}
#s-1a325879-6ad6-4bd8-b665-bb916f68bd26, #wrap-s-1a325879-6ad6-4bd8-b665-bb916f68bd26 { display:none !important; }}
@media (min-width: 0px) {
[id="s-1a325879-6ad6-4bd8-b665-bb916f68bd26"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-1a325879-6ad6-4bd8-b665-bb916f68bd26"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-1a325879-6ad6-4bd8-b665-bb916f68bd26"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-1a325879-6ad6-4bd8-b665-bb916f68bd26"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-ee02b1ac-b5ce-463f-b004-e6e699aafcba {
  margin-left: 22%;
margin-right: 22%;
text-align: center;
}







  #s-ee02b1ac-b5ce-463f-b004-e6e699aafcba img.shogun-image {
    

    
    
    
  }


#s-ee02b1ac-b5ce-463f-b004-e6e699aafcba .shogun-image-content {
  
    align-items: center;
  
}

#s-47b8fad2-722f-4931-9be7-56e3afa2fe23 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-47b8fad2-722f-4931-9be7-56e3afa2fe23 .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-47b8fad2-722f-4931-9be7-56e3afa2fe23 .shogun-heading-component h3 a {
  color: rgba(7, 107, 134, 1);
}


#s-828d9a3d-c1b8-4ee3-9bd4-0f03d029e443 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-828d9a3d-c1b8-4ee3-9bd4-0f03d029e443 .shogun-heading-component h5 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


#s-828d9a3d-c1b8-4ee3-9bd4-0f03d029e443 .shogun-heading-component h5 a {
  color: rgba(7, 107, 134, 1);
}


#s-eed48077-1fef-462b-862d-2533aac864e4 {
  margin-left: 6%;
margin-right: 6%;
}

#s-454ba858-87bd-47ab-87bb-0c82e91240c0 {
  padding-left: 6%;
padding-right: 6%;
}

#s-454ba858-87bd-47ab-87bb-0c82e91240c0 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-454ba858-87bd-47ab-87bb-0c82e91240c0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-454ba858-87bd-47ab-87bb-0c82e91240c0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(7, 107, 134, 1);
}

#s-454ba858-87bd-47ab-87bb-0c82e91240c0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-454ba858-87bd-47ab-87bb-0c82e91240c0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(7, 107, 134, 1);
  text-align: center;
  font-family: Radikal-bold;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-454ba858-87bd-47ab-87bb-0c82e91240c0 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-3b787058-e0b3-4c97-8729-8e5c29ec8c30 .shogun-table-wrapper {
  overflow: auto;
  border: 2px solid rgba(7, 107, 134, 1);
  border-radius: 2px;
}

#s-3b787058-e0b3-4c97-8729-8e5c29ec8c30 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-3b787058-e0b3-4c97-8729-8e5c29ec8c30 td.shogun-table-column {
  background-color: rgba(7, 107, 134, 1);
  padding: 1px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-3b787058-e0b3-4c97-8729-8e5c29ec8c30 td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-3b787058-e0b3-4c97-8729-8e5c29ec8c30 td.shogun-table-column, #s-3b787058-e0b3-4c97-8729-8e5c29ec8c30 td.shogun-table-row {
  border: 2px solid rgba(7, 107, 134, 1);
}

#s-09ce2b29-9bdb-45bb-8347-2d6350d13579 {
  margin-left: 2%;
margin-right: 2%;
}

#s-27638d99-3496-47c9-bbfc-1601908d4989 {
  margin-left: 2%;
margin-right: 2%;
}

#s-37ee2719-2b50-48fb-9753-803716c02bb0 {
  margin-left: 2%;
margin-right: 2%;
}

#s-a0d1d36b-c864-4669-bbce-168a01dc8df4 {
  margin-left: 2%;
margin-right: 2%;
}

#s-9b3b0af0-a5b2-451b-8a9a-3851a0d9ce21 {
  margin-left: 2%;
margin-right: 2%;
}

#s-1ac3c751-90b3-4238-a305-d7e40b16cfd0 {
  margin-left: 2%;
margin-right: 2%;
}

#s-09098450-4d79-4447-a51d-9a20a08bba33 {
  margin-left: 2%;
margin-right: 2%;
}

#s-4e838bf0-e2d8-45e6-89c4-309ab15cf75a {
  margin-left: 2%;
margin-right: 2%;
}

#s-a4b50df6-ec19-4ace-a388-cda5e0adbe03 {
  margin-left: 2%;
margin-right: 2%;
}

#s-b209cd45-2731-458b-932e-250f6b3b5446 {
  margin-left: 2%;
margin-right: 2%;
}

#s-4782bee5-db07-4783-99b3-ed3790974c68 {
  margin-left: 22%;
margin-right: 22%;
text-align: center;
}







  #s-4782bee5-db07-4783-99b3-ed3790974c68 img.shogun-image {
    

    
    
    
  }


#s-4782bee5-db07-4783-99b3-ed3790974c68 .shogun-image-content {
  
    align-items: center;
  
}

#s-7211fd76-a3e3-4813-978d-81d86eabac6c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7211fd76-a3e3-4813-978d-81d86eabac6c .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-7211fd76-a3e3-4813-978d-81d86eabac6c .shogun-heading-component h3 a {
  color: rgba(7, 107, 134, 1);
}


#s-c447f0d8-0dce-423e-97e3-7789a0dcc2f8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c447f0d8-0dce-423e-97e3-7789a0dcc2f8 .shogun-heading-component h5 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


#s-c447f0d8-0dce-423e-97e3-7789a0dcc2f8 .shogun-heading-component h5 a {
  color: rgba(7, 107, 134, 1);
}


#s-d63bc649-d379-4266-a1a7-f0a05c967bb8 {
  margin-left: 6%;
margin-right: 6%;
}

#s-6050eee4-da0d-4f68-8012-6bb17fdb0491 {
  padding-left: 6%;
padding-right: 6%;
}

#s-6050eee4-da0d-4f68-8012-6bb17fdb0491 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-6050eee4-da0d-4f68-8012-6bb17fdb0491 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-6050eee4-da0d-4f68-8012-6bb17fdb0491 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(7, 107, 134, 1);
}

#s-6050eee4-da0d-4f68-8012-6bb17fdb0491 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-6050eee4-da0d-4f68-8012-6bb17fdb0491 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(7, 107, 134, 1);
  text-align: center;
  font-family: Radikal-bold;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-6050eee4-da0d-4f68-8012-6bb17fdb0491 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-0d622a9a-bd99-4fd9-aab7-feee83c23dde .shogun-table-wrapper {
  overflow: auto;
  border: 2px solid rgba(7, 107, 134, 1);
  border-radius: 2px;
}

#s-0d622a9a-bd99-4fd9-aab7-feee83c23dde table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-0d622a9a-bd99-4fd9-aab7-feee83c23dde td.shogun-table-column {
  background-color: rgba(7, 107, 134, 1);
  padding: 1px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-0d622a9a-bd99-4fd9-aab7-feee83c23dde td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-0d622a9a-bd99-4fd9-aab7-feee83c23dde td.shogun-table-column, #s-0d622a9a-bd99-4fd9-aab7-feee83c23dde td.shogun-table-row {
  border: 2px solid rgba(7, 107, 134, 1);
}

#s-210ba6d1-abdc-4024-a307-a0d6e6cc4486 {
  margin-left: 2%;
margin-right: 2%;
}

#s-b18f864c-d336-4fc2-9ed4-0caa977bc690 {
  margin-left: 2%;
margin-right: 2%;
}

#s-449d8eb2-09a4-4ae7-af51-93e1dc652dde {
  margin-left: 2%;
margin-right: 2%;
}

#s-e14166b8-b252-4c71-ba6f-bc0b3e20c1b9 {
  margin-left: 2%;
margin-right: 2%;
}

#s-8d2fe0f3-7fa6-49ac-a7ac-28bcb036f56b {
  margin-left: 2%;
margin-right: 2%;
}

#s-86ad78e8-4fd8-41db-be13-30f750bee4ba {
  margin-left: 2%;
margin-right: 2%;
}

#s-65d12778-db1f-4b63-a608-0d5a34de3d85 {
  margin-left: 2%;
margin-right: 2%;
}

#s-aae3716e-cb17-4349-9aea-b5c006099341 {
  margin-left: 2%;
margin-right: 2%;
}

#s-37a8016d-d585-472d-bffe-874cdf87f85e {
  margin-left: 2%;
margin-right: 2%;
}

#s-4ed08b10-129c-45f2-9598-039f99d02dc6 {
  margin-left: 2%;
margin-right: 2%;
}

#s-d3ee159e-563c-476f-853a-16f9907fd882 {
  margin-left: 22%;
margin-right: 22%;
text-align: center;
}







  #s-d3ee159e-563c-476f-853a-16f9907fd882 img.shogun-image {
    

    
    
    
  }


#s-d3ee159e-563c-476f-853a-16f9907fd882 .shogun-image-content {
  
    align-items: center;
  
}

#s-6090cf99-d9d0-4be0-a4dc-2bc6cdc26597 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6090cf99-d9d0-4be0-a4dc-2bc6cdc26597 .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-6090cf99-d9d0-4be0-a4dc-2bc6cdc26597 .shogun-heading-component h3 a {
  color: rgba(7, 107, 134, 1);
}


#s-d62cf0e9-4811-459d-b826-8d1eacce2381 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d62cf0e9-4811-459d-b826-8d1eacce2381 .shogun-heading-component h5 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


#s-d62cf0e9-4811-459d-b826-8d1eacce2381 .shogun-heading-component h5 a {
  color: rgba(7, 107, 134, 1);
}


#s-617a3cbd-cf66-4005-a4a8-4381f3c036d6 {
  margin-left: 6%;
margin-right: 6%;
}

#s-0e03038d-63f5-425e-b5a2-88e477e1ee40 {
  padding-left: 6%;
padding-right: 6%;
}

#s-0e03038d-63f5-425e-b5a2-88e477e1ee40 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-0e03038d-63f5-425e-b5a2-88e477e1ee40 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-0e03038d-63f5-425e-b5a2-88e477e1ee40 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(7, 107, 134, 1);
}

#s-0e03038d-63f5-425e-b5a2-88e477e1ee40 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-0e03038d-63f5-425e-b5a2-88e477e1ee40 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(7, 107, 134, 1);
  text-align: center;
  font-family: Radikal-bold;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-0e03038d-63f5-425e-b5a2-88e477e1ee40 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-7b01531f-2b7f-43fd-9a5f-0df3db439fac .shogun-table-wrapper {
  overflow: auto;
  border: 2px solid rgba(7, 107, 134, 1);
  border-radius: 2px;
}

#s-7b01531f-2b7f-43fd-9a5f-0df3db439fac table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-7b01531f-2b7f-43fd-9a5f-0df3db439fac td.shogun-table-column {
  background-color: rgba(7, 107, 134, 1);
  padding: 1px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-7b01531f-2b7f-43fd-9a5f-0df3db439fac td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-7b01531f-2b7f-43fd-9a5f-0df3db439fac td.shogun-table-column, #s-7b01531f-2b7f-43fd-9a5f-0df3db439fac td.shogun-table-row {
  border: 2px solid rgba(7, 107, 134, 1);
}

#s-cb9276f8-19e3-473a-badb-2f2830678f57 {
  margin-left: 2%;
margin-right: 2%;
}

#s-f44b3930-c683-4648-93b1-62d55b475ec7 {
  margin-left: 2%;
margin-right: 2%;
}

#s-fe581cbc-de20-4551-98f3-0481fc3f9875 {
  margin-left: 2%;
margin-right: 2%;
}

#s-672d1767-7718-4993-9e54-54a99deec50e {
  margin-left: 2%;
margin-right: 2%;
}

#s-0e0304b6-cb2d-4135-a889-9eb48a25d5a2 {
  margin-left: 2%;
margin-right: 2%;
}

#s-cefe2b25-7bb4-43f7-87b9-0cca9d9431e8 {
  margin-left: 2%;
margin-right: 2%;
}

#s-5922dcd1-5483-415a-a3ea-f3c835671e4b {
  margin-left: 2%;
margin-right: 2%;
}

#s-38df262a-a2dc-4f1d-b000-161459f632f1 {
  margin-left: 2%;
margin-right: 2%;
}

#s-9b1871cf-f790-4de4-8870-b6e94a04475f {
  margin-left: 2%;
margin-right: 2%;
}

#s-43bafa0a-9746-415f-bac2-15eb9786176b {
  margin-left: 2%;
margin-right: 2%;
}

#s-17642f6f-2e37-4ddf-a32f-3defa2b80d11 {
  margin-left: 22%;
margin-right: 22%;
text-align: center;
}







  #s-17642f6f-2e37-4ddf-a32f-3defa2b80d11 img.shogun-image {
    

    
    
    
  }


#s-17642f6f-2e37-4ddf-a32f-3defa2b80d11 .shogun-image-content {
  
    align-items: center;
  
}

#s-9470d2e8-4975-4a40-9080-d7bbca18db77 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9470d2e8-4975-4a40-9080-d7bbca18db77 .shogun-heading-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-9470d2e8-4975-4a40-9080-d7bbca18db77 .shogun-heading-component h3 a {
  color: rgba(7, 107, 134, 1);
}


#s-04b6b623-ce3c-4c0d-ae05-f948d9de7be3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-04b6b623-ce3c-4c0d-ae05-f948d9de7be3 .shogun-heading-component h5 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


#s-04b6b623-ce3c-4c0d-ae05-f948d9de7be3 .shogun-heading-component h5 a {
  color: rgba(7, 107, 134, 1);
}


#s-ebefedce-7350-4538-a662-907cd439f856 {
  margin-left: 6%;
margin-right: 6%;
}

#s-5fea93ed-9f40-406b-ad24-02ef61eaa453 {
  padding-left: 6%;
padding-right: 6%;
}

#s-5fea93ed-9f40-406b-ad24-02ef61eaa453 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-5fea93ed-9f40-406b-ad24-02ef61eaa453 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-5fea93ed-9f40-406b-ad24-02ef61eaa453 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(7, 107, 134, 1);
}

#s-5fea93ed-9f40-406b-ad24-02ef61eaa453 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-5fea93ed-9f40-406b-ad24-02ef61eaa453 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(7, 107, 134, 1);
  text-align: center;
  font-family: Radikal-bold;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-5fea93ed-9f40-406b-ad24-02ef61eaa453 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-0c5ab9d2-50c2-4b21-aa93-92731a2433f9 .shogun-table-wrapper {
  overflow: auto;
  border: 2px solid rgba(7, 107, 134, 1);
  border-radius: 2px;
}

#s-0c5ab9d2-50c2-4b21-aa93-92731a2433f9 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-0c5ab9d2-50c2-4b21-aa93-92731a2433f9 td.shogun-table-column {
  background-color: rgba(7, 107, 134, 1);
  padding: 1px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-0c5ab9d2-50c2-4b21-aa93-92731a2433f9 td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-0c5ab9d2-50c2-4b21-aa93-92731a2433f9 td.shogun-table-column, #s-0c5ab9d2-50c2-4b21-aa93-92731a2433f9 td.shogun-table-row {
  border: 2px solid rgba(7, 107, 134, 1);
}

#s-196c7798-e635-4139-838f-4b5e9d12dae5 {
  margin-left: 2%;
margin-right: 2%;
}

#s-eeaa6d7d-8151-4b03-9c9c-f8933665028a {
  margin-left: 2%;
margin-right: 2%;
}

#s-41d53680-bb1c-4abe-8e8b-9c1c6a751fa0 {
  margin-left: 2%;
margin-right: 2%;
}

#s-d7e4d6db-0c58-4624-ae61-e93526cc0df0 {
  margin-left: 2%;
margin-right: 2%;
}

#s-f03f1248-2415-41c3-92c4-04967a70ed85 {
  margin-left: 2%;
margin-right: 2%;
}

#s-021c9cc0-2842-4a82-b9b8-053dbb5ee959 {
  margin-left: 2%;
margin-right: 2%;
}

#s-f61c89d1-e06f-439f-a918-e5fce3e583b2 {
  margin-left: 2%;
margin-right: 2%;
}

#s-c32a98ac-adfe-42d5-acbd-763b0d4601cb {
  margin-left: 2%;
margin-right: 2%;
}

#s-55efcb84-a1c6-48dc-950a-d7721b149512 {
  margin-left: 2%;
margin-right: 2%;
}

#s-20dfd6c2-d574-4291-9331-e833c859bf02 {
  margin-left: 2%;
margin-right: 2%;
}

#s-c0f19a3f-8a56-4a1e-ace4-aaef44b449dd {
  min-height: 50px;
}








#s-c0f19a3f-8a56-4a1e-ace4-aaef44b449dd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c0f19a3f-8a56-4a1e-ace4-aaef44b449dd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c6166231-caa9-403d-b651-925db09eed2a {
  margin-top: 40px;
margin-bottom: 40px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 4px;
background-color: rgba(240, 127, 100, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-c6166231-caa9-403d-b651-925db09eed2a:hover {border-radius: 9px !important;
background-color: rgba(7, 107, 134, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-c6166231-caa9-403d-b651-925db09eed2a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c6166231-caa9-403d-b651-925db09eed2a-root {
    text-align: center;
  }


#s-c6166231-caa9-403d-b651-925db09eed2a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c6166231-caa9-403d-b651-925db09eed2a-root {
    text-align: center;
  }


#s-c6166231-caa9-403d-b651-925db09eed2a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c6166231-caa9-403d-b651-925db09eed2a-root {
    text-align: center;
  }


#s-c6166231-caa9-403d-b651-925db09eed2a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c6166231-caa9-403d-b651-925db09eed2a-root {
    text-align: center;
  }


#s-c6166231-caa9-403d-b651-925db09eed2a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c6166231-caa9-403d-b651-925db09eed2a-root {
    text-align: center;
  }


#s-c6166231-caa9-403d-b651-925db09eed2a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}
}
#s-ba8abeba-9655-453a-bd1f-804095c84eca hr {
  border-top: 25px solid rgba(255, 255, 255, 1);
}

#s-f6f586f9-26fb-433f-b3e3-889298a0b2bf {
  margin-left: 2%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
max-width: 1500px;
text-align: left;
}
@media (min-width: 1200px){#s-f6f586f9-26fb-433f-b3e3-889298a0b2bf {
  display: none;
}
#s-f6f586f9-26fb-433f-b3e3-889298a0b2bf, #wrap-s-f6f586f9-26fb-433f-b3e3-889298a0b2bf { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f6f586f9-26fb-433f-b3e3-889298a0b2bf {
  display: none;
}
#s-f6f586f9-26fb-433f-b3e3-889298a0b2bf, #wrap-s-f6f586f9-26fb-433f-b3e3-889298a0b2bf { display:none !important; }}@media (max-width: 767px){#s-f6f586f9-26fb-433f-b3e3-889298a0b2bf {
  display: none;
}
#s-f6f586f9-26fb-433f-b3e3-889298a0b2bf, #wrap-s-f6f586f9-26fb-433f-b3e3-889298a0b2bf { display:none !important; }}
#s-f6f586f9-26fb-433f-b3e3-889298a0b2bf .shogun-heading-component h2 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}



#s-549d144e-d56c-4cb5-bfe0-e946ad3f8533 {
  margin-left: 2%;
margin-right: 2%;
}
@media (min-width: 1200px){#s-549d144e-d56c-4cb5-bfe0-e946ad3f8533 {
  display: none;
}
#s-549d144e-d56c-4cb5-bfe0-e946ad3f8533, #wrap-s-549d144e-d56c-4cb5-bfe0-e946ad3f8533 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-549d144e-d56c-4cb5-bfe0-e946ad3f8533 {
  display: none;
}
#s-549d144e-d56c-4cb5-bfe0-e946ad3f8533, #wrap-s-549d144e-d56c-4cb5-bfe0-e946ad3f8533 { display:none !important; }}@media (max-width: 767px){#s-549d144e-d56c-4cb5-bfe0-e946ad3f8533 {
  display: none;
}
#s-549d144e-d56c-4cb5-bfe0-e946ad3f8533, #wrap-s-549d144e-d56c-4cb5-bfe0-e946ad3f8533 { display:none !important; }}
@media (min-width: 1200px){#s-d11f6c44-ed72-4def-9cb4-486433ea029d {
  display: none;
}
#s-d11f6c44-ed72-4def-9cb4-486433ea029d, #wrap-s-d11f6c44-ed72-4def-9cb4-486433ea029d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d11f6c44-ed72-4def-9cb4-486433ea029d {
  display: none;
}
#s-d11f6c44-ed72-4def-9cb4-486433ea029d, #wrap-s-d11f6c44-ed72-4def-9cb4-486433ea029d { display:none !important; }}@media (max-width: 767px){#s-d11f6c44-ed72-4def-9cb4-486433ea029d {
  display: none;
}
#s-d11f6c44-ed72-4def-9cb4-486433ea029d, #wrap-s-d11f6c44-ed72-4def-9cb4-486433ea029d { display:none !important; }}
#s-d11f6c44-ed72-4def-9cb4-486433ea029d hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-1a0090ae-fcfc-473e-b8a0-f5883ef5aee8 {
  margin-left: auto;
margin-bottom: 0em;
margin-right: 0%;
min-height: 0px;
text-align: right;
}
@media (min-width: 1200px){#s-1a0090ae-fcfc-473e-b8a0-f5883ef5aee8 {
  display: none;
}
#s-1a0090ae-fcfc-473e-b8a0-f5883ef5aee8, #wrap-s-1a0090ae-fcfc-473e-b8a0-f5883ef5aee8 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1a0090ae-fcfc-473e-b8a0-f5883ef5aee8 {
  display: none;
}
#s-1a0090ae-fcfc-473e-b8a0-f5883ef5aee8, #wrap-s-1a0090ae-fcfc-473e-b8a0-f5883ef5aee8 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1a0090ae-fcfc-473e-b8a0-f5883ef5aee8 {
  margin-right: auto;
min-height: 300px;
max-width: 400px;
}
}@media (max-width: 767px){#s-1a0090ae-fcfc-473e-b8a0-f5883ef5aee8 {
  display: none;
}
#s-1a0090ae-fcfc-473e-b8a0-f5883ef5aee8, #wrap-s-1a0090ae-fcfc-473e-b8a0-f5883ef5aee8 { display:none !important; }}






  #s-1a0090ae-fcfc-473e-b8a0-f5883ef5aee8 img.shogun-image {
    

    
    
    
  }


#s-1a0090ae-fcfc-473e-b8a0-f5883ef5aee8 .shogun-image-content {
  
    align-items: center;
  
}

#s-cb6e51bd-aae1-4059-b16b-277f668db85b {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 1200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-cb6e51bd-aae1-4059-b16b-277f668db85b {
  display: none;
}
#s-cb6e51bd-aae1-4059-b16b-277f668db85b, #wrap-s-cb6e51bd-aae1-4059-b16b-277f668db85b { display:none !important; }}
@media (min-width: 0px) {
[id="s-cb6e51bd-aae1-4059-b16b-277f668db85b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cb6e51bd-aae1-4059-b16b-277f668db85b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cb6e51bd-aae1-4059-b16b-277f668db85b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cb6e51bd-aae1-4059-b16b-277f668db85b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-cb6e51bd-aae1-4059-b16b-277f668db85b"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-a0130b2f-9bbd-4f7f-8917-b5da0df7ed88 {
  margin-left: 2%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
max-width: 1500px;
text-align: left;
}

#s-a0130b2f-9bbd-4f7f-8917-b5da0df7ed88 .shogun-heading-component h2 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}



#s-70066b37-7912-41e8-aa06-418910a17604 {
  margin-left: 2%;
margin-right: 2%;
}

#s-bedee994-fb28-4db8-ba1a-ae26e6a5749e {
  margin-right: 0%;
min-height: 0px;
text-align: right;
}







  #s-bedee994-fb28-4db8-ba1a-ae26e6a5749e img.shogun-image {
    

    
    
    
  }


#s-bedee994-fb28-4db8-ba1a-ae26e6a5749e .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 1200px){#s-45ec9e49-6bbc-481c-b562-c5a036ed74dc {
  display: none;
}
#s-45ec9e49-6bbc-481c-b562-c5a036ed74dc, #wrap-s-45ec9e49-6bbc-481c-b562-c5a036ed74dc { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-45ec9e49-6bbc-481c-b562-c5a036ed74dc {
  display: none;
}
#s-45ec9e49-6bbc-481c-b562-c5a036ed74dc, #wrap-s-45ec9e49-6bbc-481c-b562-c5a036ed74dc { display:none !important; }}@media (max-width: 767px){#s-45ec9e49-6bbc-481c-b562-c5a036ed74dc {
  display: none;
}
#s-45ec9e49-6bbc-481c-b562-c5a036ed74dc, #wrap-s-45ec9e49-6bbc-481c-b562-c5a036ed74dc { display:none !important; }}
#s-45ec9e49-6bbc-481c-b562-c5a036ed74dc hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-84b91821-40b2-480f-b37e-1b010ddad41b {
  margin-top: 14px;
margin-bottom: 14px;
padding-top: 50px;
padding-bottom: 50px;
min-height: 26px;
background-color: rgba(7, 107, 134, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-84b91821-40b2-480f-b37e-1b010ddad41b {
  display: none;
}
#s-84b91821-40b2-480f-b37e-1b010ddad41b, #wrap-s-84b91821-40b2-480f-b37e-1b010ddad41b { display:none !important; }}
@media (min-width: 0px) {
[id="s-84b91821-40b2-480f-b37e-1b010ddad41b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-84b91821-40b2-480f-b37e-1b010ddad41b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-84b91821-40b2-480f-b37e-1b010ddad41b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-84b91821-40b2-480f-b37e-1b010ddad41b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-84b91821-40b2-480f-b37e-1b010ddad41b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-84b91821-40b2-480f-b37e-1b010ddad41b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-84b91821-40b2-480f-b37e-1b010ddad41b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

.shg-map-info-window-container {
  max-width: 200px;
  color: #000000;
}

.shg-map-container {
  height: 400px;
}

.shg-map {
  height: 100%;
}

.shg-map .gm-style-cc,
.shg-map .gm-style-cc + div {
  visibility: visible !important;
}

#s-916415df-3c9f-48c8-a8f4-f729b7520c28 {
  padding-left: 3%;
padding-right: 3%;
min-height: 423px;
}

#s-45c0401f-1a2d-49e9-8a9c-38ba8595f782 {
  margin-left: 3%;
margin-right: 3%;
padding-top: 10px;
padding-bottom: 10px;
min-height: 0px;
text-align: left;
}
@media (max-width: 767px){#s-45c0401f-1a2d-49e9-8a9c-38ba8595f782 {
  margin-left: 3%;
margin-right: 3%;
padding-top: 10px;
padding-bottom: 10px;
min-height: 0px;
text-align: center;
}
}
#s-45c0401f-1a2d-49e9-8a9c-38ba8595f782 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 32px;
  
  letter-spacing: 0px;
  text-align: left;
}


@media (max-width: 767px){#s-45c0401f-1a2d-49e9-8a9c-38ba8595f782 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 32px;
  
  letter-spacing: 0px;
  text-align: center;
}


}
#s-58053575-7755-443d-b341-2e87f61ef9dc {
  margin-left: 3%;
margin-right: 3%;
padding-top: 10px;
padding-bottom: 10px;
min-height: 0px;
text-align: left;
}
@media (max-width: 767px){#s-58053575-7755-443d-b341-2e87f61ef9dc {
  text-align: center;
}
}
#s-58053575-7755-443d-b341-2e87f61ef9dc .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 16px;
  line-height: 2.5em;
  letter-spacing: 0px;
  text-align: left;
}



#s-7f9afe41-54bb-4012-9c75-2573073877f7 {
  max-width: 200px;
text-align: center;
}








#s-7f9afe41-54bb-4012-9c75-2573073877f7 .shogun-image-content {
  
    align-items: center;
  
}

#s-5b6a7f46-3663-4edc-8e60-bbe892349b46 {
  margin-top: 14px;
margin-bottom: 14px;
padding-top: 50px;
padding-bottom: 50px;
min-height: 26px;
background-color: rgba(7, 107, 134, 1);
}
@media (min-width: 1200px){#s-5b6a7f46-3663-4edc-8e60-bbe892349b46 {
  display: none;
}
#s-5b6a7f46-3663-4edc-8e60-bbe892349b46, #wrap-s-5b6a7f46-3663-4edc-8e60-bbe892349b46 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5b6a7f46-3663-4edc-8e60-bbe892349b46 {
  display: none;
}
#s-5b6a7f46-3663-4edc-8e60-bbe892349b46, #wrap-s-5b6a7f46-3663-4edc-8e60-bbe892349b46 { display:none !important; }}@media (max-width: 767px){#s-5b6a7f46-3663-4edc-8e60-bbe892349b46 {
  display: none;
}
#s-5b6a7f46-3663-4edc-8e60-bbe892349b46, #wrap-s-5b6a7f46-3663-4edc-8e60-bbe892349b46 { display:none !important; }}
@media (min-width: 0px) {
[id="s-5b6a7f46-3663-4edc-8e60-bbe892349b46"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5b6a7f46-3663-4edc-8e60-bbe892349b46"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-5b6a7f46-3663-4edc-8e60-bbe892349b46"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5b6a7f46-3663-4edc-8e60-bbe892349b46"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-5b6a7f46-3663-4edc-8e60-bbe892349b46"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5b6a7f46-3663-4edc-8e60-bbe892349b46"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-5b6a7f46-3663-4edc-8e60-bbe892349b46"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-9ace6325-92bb-4a59-abf4-92d29f75a591 {
  padding-left: 3%;
padding-right: 3%;
min-height: 423px;
}

#s-3b2d4640-e22b-4fac-9058-851e9499f064 {
  margin-left: 3%;
margin-right: 3%;
padding-top: 10px;
padding-bottom: 10px;
min-height: 0px;
text-align: left;
}
@media (max-width: 767px){#s-3b2d4640-e22b-4fac-9058-851e9499f064 {
  margin-left: 3%;
margin-right: 3%;
padding-top: 10px;
padding-bottom: 10px;
min-height: 0px;
text-align: center;
}
}
#s-3b2d4640-e22b-4fac-9058-851e9499f064 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 32px;
  
  letter-spacing: 0px;
  text-align: left;
}


@media (max-width: 767px){#s-3b2d4640-e22b-4fac-9058-851e9499f064 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 32px;
  
  letter-spacing: 0px;
  text-align: center;
}


}
#s-93a46890-7bff-4a4b-9467-8f5457ef11d6 {
  margin-left: 3%;
margin-right: 3%;
padding-top: 10px;
padding-bottom: 10px;
min-height: 0px;
text-align: left;
}
@media (max-width: 767px){#s-93a46890-7bff-4a4b-9467-8f5457ef11d6 {
  text-align: center;
}
}
#s-93a46890-7bff-4a4b-9467-8f5457ef11d6 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 16px;
  line-height: 2.5em;
  letter-spacing: 0px;
  text-align: left;
}



#s-01ac1179-4b88-4b8b-8d33-910e444437cf {
  max-width: 200px;
text-align: center;
}








#s-01ac1179-4b88-4b8b-8d33-910e444437cf .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 1200px){#s-b1879c14-13db-4daf-b5c3-ae3c24450516 {
  display: none;
}
#s-b1879c14-13db-4daf-b5c3-ae3c24450516, #wrap-s-b1879c14-13db-4daf-b5c3-ae3c24450516 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b1879c14-13db-4daf-b5c3-ae3c24450516 {
  display: none;
}
#s-b1879c14-13db-4daf-b5c3-ae3c24450516, #wrap-s-b1879c14-13db-4daf-b5c3-ae3c24450516 { display:none !important; }}@media (max-width: 767px){#s-b1879c14-13db-4daf-b5c3-ae3c24450516 {
  display: none;
}
#s-b1879c14-13db-4daf-b5c3-ae3c24450516, #wrap-s-b1879c14-13db-4daf-b5c3-ae3c24450516 { display:none !important; }}
#s-b1879c14-13db-4daf-b5c3-ae3c24450516 hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-b395a59b-48e3-43b2-bb86-394d23654b08 {
  margin-left: 2%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
max-width: 1500px;
text-align: left;
}
@media (min-width: 1200px){#s-b395a59b-48e3-43b2-bb86-394d23654b08 {
  display: none;
}
#s-b395a59b-48e3-43b2-bb86-394d23654b08, #wrap-s-b395a59b-48e3-43b2-bb86-394d23654b08 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b395a59b-48e3-43b2-bb86-394d23654b08 {
  display: none;
}
#s-b395a59b-48e3-43b2-bb86-394d23654b08, #wrap-s-b395a59b-48e3-43b2-bb86-394d23654b08 { display:none !important; }}@media (max-width: 767px){#s-b395a59b-48e3-43b2-bb86-394d23654b08 {
  display: none;
}
#s-b395a59b-48e3-43b2-bb86-394d23654b08, #wrap-s-b395a59b-48e3-43b2-bb86-394d23654b08 { display:none !important; }}
#s-b395a59b-48e3-43b2-bb86-394d23654b08 .shogun-heading-component h2 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}



#s-e6f4466f-3833-4b86-bd44-bcd22dcb2167 {
  margin-left: 2%;
margin-right: 2%;
}
@media (min-width: 1200px){#s-e6f4466f-3833-4b86-bd44-bcd22dcb2167 {
  display: none;
}
#s-e6f4466f-3833-4b86-bd44-bcd22dcb2167, #wrap-s-e6f4466f-3833-4b86-bd44-bcd22dcb2167 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e6f4466f-3833-4b86-bd44-bcd22dcb2167 {
  display: none;
}
#s-e6f4466f-3833-4b86-bd44-bcd22dcb2167, #wrap-s-e6f4466f-3833-4b86-bd44-bcd22dcb2167 { display:none !important; }}@media (max-width: 767px){#s-e6f4466f-3833-4b86-bd44-bcd22dcb2167 {
  display: none;
}
#s-e6f4466f-3833-4b86-bd44-bcd22dcb2167, #wrap-s-e6f4466f-3833-4b86-bd44-bcd22dcb2167 { display:none !important; }}
@media (min-width: 1200px){#s-c203a30d-c433-45c2-a5ee-9bc5fafaf99f {
  display: none;
}
#s-c203a30d-c433-45c2-a5ee-9bc5fafaf99f, #wrap-s-c203a30d-c433-45c2-a5ee-9bc5fafaf99f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c203a30d-c433-45c2-a5ee-9bc5fafaf99f {
  display: none;
}
#s-c203a30d-c433-45c2-a5ee-9bc5fafaf99f, #wrap-s-c203a30d-c433-45c2-a5ee-9bc5fafaf99f { display:none !important; }}@media (max-width: 767px){#s-c203a30d-c433-45c2-a5ee-9bc5fafaf99f {
  display: none;
}
#s-c203a30d-c433-45c2-a5ee-9bc5fafaf99f, #wrap-s-c203a30d-c433-45c2-a5ee-9bc5fafaf99f { display:none !important; }}
#s-c203a30d-c433-45c2-a5ee-9bc5fafaf99f hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-2657372e-8d05-45a2-b4ed-342fe17c9535 {
  margin-left: auto;
margin-right: auto;
min-height: 0px;
max-width: 400px;
text-align: right;
}
@media (min-width: 1200px){#s-2657372e-8d05-45a2-b4ed-342fe17c9535 {
  display: none;
}
#s-2657372e-8d05-45a2-b4ed-342fe17c9535, #wrap-s-2657372e-8d05-45a2-b4ed-342fe17c9535 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2657372e-8d05-45a2-b4ed-342fe17c9535 {
  display: none;
}
#s-2657372e-8d05-45a2-b4ed-342fe17c9535, #wrap-s-2657372e-8d05-45a2-b4ed-342fe17c9535 { display:none !important; }}@media (max-width: 767px){#s-2657372e-8d05-45a2-b4ed-342fe17c9535 {
  text-align: center;
display: none;
}
#s-2657372e-8d05-45a2-b4ed-342fe17c9535, #wrap-s-2657372e-8d05-45a2-b4ed-342fe17c9535 { display:none !important; }}






  #s-2657372e-8d05-45a2-b4ed-342fe17c9535 img.shogun-image {
    

    
    
    
  }


#s-2657372e-8d05-45a2-b4ed-342fe17c9535 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 1200px){#s-03656765-f211-4221-b4f5-1e1ab2266535 {
  display: none;
}
#s-03656765-f211-4221-b4f5-1e1ab2266535, #wrap-s-03656765-f211-4221-b4f5-1e1ab2266535 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-03656765-f211-4221-b4f5-1e1ab2266535 {
  display: none;
}
#s-03656765-f211-4221-b4f5-1e1ab2266535, #wrap-s-03656765-f211-4221-b4f5-1e1ab2266535 { display:none !important; }}@media (max-width: 767px){#s-03656765-f211-4221-b4f5-1e1ab2266535 {
  display: none;
}
#s-03656765-f211-4221-b4f5-1e1ab2266535, #wrap-s-03656765-f211-4221-b4f5-1e1ab2266535 { display:none !important; }}
#s-03656765-f211-4221-b4f5-1e1ab2266535 hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-33b96edf-9f82-4d11-abf4-8a1c4ca7da39 {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-top: 50px;
padding-bottom: 50px;
max-width: 1200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-33b96edf-9f82-4d11-abf4-8a1c4ca7da39 {
  display: none;
}
#s-33b96edf-9f82-4d11-abf4-8a1c4ca7da39, #wrap-s-33b96edf-9f82-4d11-abf4-8a1c4ca7da39 { display:none !important; }}
@media (min-width: 0px) {
[id="s-33b96edf-9f82-4d11-abf4-8a1c4ca7da39"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-33b96edf-9f82-4d11-abf4-8a1c4ca7da39"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-33b96edf-9f82-4d11-abf4-8a1c4ca7da39"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-33b96edf-9f82-4d11-abf4-8a1c4ca7da39"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-33b96edf-9f82-4d11-abf4-8a1c4ca7da39"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-1ba34d6a-c9f0-4dac-9806-a8c3cdd7e751 {
  margin-left: 2%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
max-width: 1500px;
text-align: left;
}

#s-1ba34d6a-c9f0-4dac-9806-a8c3cdd7e751 .shogun-heading-component h2 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}



#s-18198f51-39de-474d-b839-4c3be4c9679e {
  margin-left: 2%;
margin-right: 2%;
}

#s-fa9ac7fc-1995-4151-9828-23f0ed606fc6 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(240, 127, 100, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-fa9ac7fc-1995-4151-9828-23f0ed606fc6:hover {background-color: rgba(7, 107, 134, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-fa9ac7fc-1995-4151-9828-23f0ed606fc6:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-fa9ac7fc-1995-4151-9828-23f0ed606fc6-root {
    text-align: center;
  }


#s-fa9ac7fc-1995-4151-9828-23f0ed606fc6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-fa9ac7fc-1995-4151-9828-23f0ed606fc6-root {
    text-align: center;
  }


#s-fa9ac7fc-1995-4151-9828-23f0ed606fc6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fa9ac7fc-1995-4151-9828-23f0ed606fc6-root {
    text-align: center;
  }


#s-fa9ac7fc-1995-4151-9828-23f0ed606fc6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fa9ac7fc-1995-4151-9828-23f0ed606fc6-root {
    text-align: center;
  }


#s-fa9ac7fc-1995-4151-9828-23f0ed606fc6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-fa9ac7fc-1995-4151-9828-23f0ed606fc6-root {
    text-align: center;
  }


#s-fa9ac7fc-1995-4151-9828-23f0ed606fc6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
}
#s-c305d234-9f3f-4f7b-9e54-c3488e7747f3 {
  min-height: 0px;
text-align: right;
}
@media (max-width: 767px){#s-c305d234-9f3f-4f7b-9e54-c3488e7747f3 {
  text-align: center;
}
}






  #s-c305d234-9f3f-4f7b-9e54-c3488e7747f3 img.shogun-image {
    

    
    
    
  }


#s-c305d234-9f3f-4f7b-9e54-c3488e7747f3 .shogun-image-content {
  
    align-items: center;
  
}

#s-0d1cef58-95c7-4b42-8c68-da6ad0ea2147 {
  padding-top: 50px;
padding-bottom: 50px;
background-color: rgba(7, 107, 134, 1);
}








#s-0d1cef58-95c7-4b42-8c68-da6ad0ea2147 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0d1cef58-95c7-4b42-8c68-da6ad0ea2147.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0ebb84b8-98cb-4248-a49f-dd68179db9fb {
  margin-left: 2%;
margin-right: 2%;
padding-left: 1%;
padding-right: 1%;
max-width: 1200px;
}
@media (min-width: 1200px){#s-0ebb84b8-98cb-4248-a49f-dd68179db9fb {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0ebb84b8-98cb-4248-a49f-dd68179db9fb {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0ebb84b8-98cb-4248-a49f-dd68179db9fb {
  margin-left: auto;
margin-right: auto;
}
}
#s-e88042f9-a199-4893-bdb7-e3d8c543776d {
  margin-top: 10px;
margin-bottom: 10px;
border-radius: 120px;
text-align: center;
}







  #s-e88042f9-a199-4893-bdb7-e3d8c543776d img.shogun-image {
    

    
    
    
  }


#s-e88042f9-a199-4893-bdb7-e3d8c543776d .shogun-image-content {
  
    align-items: center;
  
}

#s-d2621450-b22c-4649-a6ad-23f3767c4655 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

#s-15b31f69-fe42-4495-8015-13b0bed3f27a {
  background-repeat: no-repeat;
background-size: contain;
min-height: 200px;
background-position: center center;
}








#s-15b31f69-fe42-4495-8015-13b0bed3f27a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-15b31f69-fe42-4495-8015-13b0bed3f27a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3fb716f9-8060-48c4-b4f1-e4c9ba54447c {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(240, 127, 100, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-3fb716f9-8060-48c4-b4f1-e4c9ba54447c:hover {background-color: rgba(7, 107, 134, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-3fb716f9-8060-48c4-b4f1-e4c9ba54447c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3fb716f9-8060-48c4-b4f1-e4c9ba54447c-root {
    text-align: center;
  }


#s-3fb716f9-8060-48c4-b4f1-e4c9ba54447c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3fb716f9-8060-48c4-b4f1-e4c9ba54447c-root {
    text-align: center;
  }


#s-3fb716f9-8060-48c4-b4f1-e4c9ba54447c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3fb716f9-8060-48c4-b4f1-e4c9ba54447c-root {
    text-align: center;
  }


#s-3fb716f9-8060-48c4-b4f1-e4c9ba54447c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3fb716f9-8060-48c4-b4f1-e4c9ba54447c-root {
    text-align: center;
  }


#s-3fb716f9-8060-48c4-b4f1-e4c9ba54447c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3fb716f9-8060-48c4-b4f1-e4c9ba54447c-root {
    text-align: center;
  }


#s-3fb716f9-8060-48c4-b4f1-e4c9ba54447c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal;
  display:  inline-block ;
}
}
#s-9cb57dc2-d9ed-4edd-8094-f034d599b903 {
  background-attachment: fixed;
margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-9cb57dc2-d9ed-4edd-8094-f034d599b903 {
  
}
}







#s-9cb57dc2-d9ed-4edd-8094-f034d599b903 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9cb57dc2-d9ed-4edd-8094-f034d599b903.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-88c25a66-f0fb-4905-9f66-4a14208b4ede {
  margin-top: 20px;
margin-left: 2%;
margin-bottom: 20px;
margin-right: 2%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
max-width: 1500px;
text-align: center;
}
@media (min-width: 1200px){#s-88c25a66-f0fb-4905-9f66-4a14208b4ede {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-88c25a66-f0fb-4905-9f66-4a14208b4ede {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 768px) and (max-width: 991px){#s-88c25a66-f0fb-4905-9f66-4a14208b4ede {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
}
}
#s-88c25a66-f0fb-4905-9f66-4a14208b4ede .shogun-heading-component h2 {
  color: rgba(7, 107, 134, 1);
  font-weight:  normal ;
  font-family: "Radikal";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



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

.shg-category-grid {
  margin: -20px 0;
}

.shg-category-row,
.shg-category-row-hor {
  display: flex;
  margin: 20px 0;
}

.shg-category-col,
.shg-category-col-1 {
  flex: 1;
  padding: 0 10px;
}

.shg-category-col:last-child {
  padding-right: 0;
}

.shg-category-col:first-child {
  padding-left: 0;
}

.shg-category-col-2 {
  flex: 2;
  padding: 0 20px;
}

.shg-category-col-3 {
  flex: 3;
  padding: 0 30px;
}

.shg-category-col-4 {
  flex: 4;
  padding: 0 40px;
}

.shg-category-col-5 {
  flex: 5;
  padding: 0 50px;
}

@media (max-width: 768px) {
  .shg-category-row.stacked {
    display: block;
  }

  .shg-category-row .shg-category-col {
    padding: 20px 0;
  }

  .shg-category-row .shg-category-col:first-child {
    padding-top: 0;
  }

  .shg-category-row .shg-category-col:last-child {
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .shg-category-row-hor {
    display: flex;
    flex-wrap: wrap;
  }

  .shg-category-row-hor .shg-category-col,
  .shg-category-row-hor .shg-category-col:first-child,
  .shg-category-row-hor .shg-category-col:last-child {
    min-width: 50%;
    max-width: 50%;
    padding-top: 0;
    padding-left: 3px;
    padding-right: 3px;
    padding-bottom: 3px;
  }
}

#s-f0315497-c73b-4dbe-9851-e89c501e8e78 {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 0px;
max-width: 1800px;
}

.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-05697982-ae20-467f-ba12-340f9834f5c2 {
  text-align: center;
}



.shg-c#s-05697982-ae20-467f-ba12-340f9834f5c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05697982-ae20-467f-ba12-340f9834f5c2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-05697982-ae20-467f-ba12-340f9834f5c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05697982-ae20-467f-ba12-340f9834f5c2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-05697982-ae20-467f-ba12-340f9834f5c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05697982-ae20-467f-ba12-340f9834f5c2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-05697982-ae20-467f-ba12-340f9834f5c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05697982-ae20-467f-ba12-340f9834f5c2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-05697982-ae20-467f-ba12-340f9834f5c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05697982-ae20-467f-ba12-340f9834f5c2 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: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  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-4a18fe2d-fa5a-4175-890b-ae94d4d846a0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4a18fe2d-fa5a-4175-890b-ae94d4d846a0 .shg-product-title-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}
@media (max-width: 767px){#s-4a18fe2d-fa5a-4175-890b-ae94d4d846a0 .shg-product-title-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}
}
#s-1431f31d-f2c2-4a9b-876d-ece1109d0180 {
  margin-top: 4px;
margin-bottom: 4px;
text-align: center;
}

#s-1431f31d-f2c2-4a9b-876d-ece1109d0180 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-1431f31d-f2c2-4a9b-876d-ece1109d0180 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-1431f31d-f2c2-4a9b-876d-ece1109d0180 .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;
}

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

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

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

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

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

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

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

#s-847e4eb2-df9a-4e0d-bcc1-4ecd0646638a {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(240, 127, 100, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-847e4eb2-df9a-4e0d-bcc1-4ecd0646638a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-847e4eb2-df9a-4e0d-bcc1-4ecd0646638a:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-847e4eb2-df9a-4e0d-bcc1-4ecd0646638a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-847e4eb2-df9a-4e0d-bcc1-4ecd0646638a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-847e4eb2-df9a-4e0d-bcc1-4ecd0646638a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}

#s-847e4eb2-df9a-4e0d-bcc1-4ecd0646638a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-847e4eb2-df9a-4e0d-bcc1-4ecd0646638a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-847e4eb2-df9a-4e0d-bcc1-4ecd0646638a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-847e4eb2-df9a-4e0d-bcc1-4ecd0646638a.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}

#s-847e4eb2-df9a-4e0d-bcc1-4ecd0646638a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-847c943d-b944-4f06-a45c-ceff87a65c1a {
  text-align: center;
}



.shg-c#s-847c943d-b944-4f06-a45c-ceff87a65c1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-847c943d-b944-4f06-a45c-ceff87a65c1a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-847c943d-b944-4f06-a45c-ceff87a65c1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-847c943d-b944-4f06-a45c-ceff87a65c1a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-847c943d-b944-4f06-a45c-ceff87a65c1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-847c943d-b944-4f06-a45c-ceff87a65c1a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-847c943d-b944-4f06-a45c-ceff87a65c1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-847c943d-b944-4f06-a45c-ceff87a65c1a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-847c943d-b944-4f06-a45c-ceff87a65c1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-847c943d-b944-4f06-a45c-ceff87a65c1a img.shogun-image {
  width: 100%;
}



}
#s-6a2dca70-9497-4cdc-ae9e-cf9c96660544 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6a2dca70-9497-4cdc-ae9e-cf9c96660544 .shg-product-title-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}
@media (max-width: 767px){#s-6a2dca70-9497-4cdc-ae9e-cf9c96660544 .shg-product-title-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}
}
#s-aad66b6b-76a8-4522-8518-8cbe728cab97 {
  margin-top: 4px;
margin-bottom: 4px;
text-align: center;
}

#s-aad66b6b-76a8-4522-8518-8cbe728cab97 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-aad66b6b-76a8-4522-8518-8cbe728cab97 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-aad66b6b-76a8-4522-8518-8cbe728cab97 .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-635efde0-6a00-46a5-a0eb-8caac5a30743 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(240, 127, 100, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-635efde0-6a00-46a5-a0eb-8caac5a30743:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-635efde0-6a00-46a5-a0eb-8caac5a30743:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-635efde0-6a00-46a5-a0eb-8caac5a30743 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-635efde0-6a00-46a5-a0eb-8caac5a30743.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-635efde0-6a00-46a5-a0eb-8caac5a30743.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}

#s-635efde0-6a00-46a5-a0eb-8caac5a30743.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-635efde0-6a00-46a5-a0eb-8caac5a30743 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-635efde0-6a00-46a5-a0eb-8caac5a30743.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-635efde0-6a00-46a5-a0eb-8caac5a30743.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}

#s-635efde0-6a00-46a5-a0eb-8caac5a30743.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-66c51056-a36e-48a2-84ee-fe7c98fcba81 {
  text-align: center;
}



.shg-c#s-66c51056-a36e-48a2-84ee-fe7c98fcba81 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-66c51056-a36e-48a2-84ee-fe7c98fcba81 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-66c51056-a36e-48a2-84ee-fe7c98fcba81 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-66c51056-a36e-48a2-84ee-fe7c98fcba81 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-66c51056-a36e-48a2-84ee-fe7c98fcba81 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-66c51056-a36e-48a2-84ee-fe7c98fcba81 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-66c51056-a36e-48a2-84ee-fe7c98fcba81 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-66c51056-a36e-48a2-84ee-fe7c98fcba81 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-66c51056-a36e-48a2-84ee-fe7c98fcba81 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-66c51056-a36e-48a2-84ee-fe7c98fcba81 img.shogun-image {
  width: 100%;
}



}
#s-750e2816-fcfe-4c49-956a-cf41c0b952e8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-750e2816-fcfe-4c49-956a-cf41c0b952e8 .shg-product-title-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}
@media (max-width: 767px){#s-750e2816-fcfe-4c49-956a-cf41c0b952e8 .shg-product-title-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}
}
#s-e809d027-3c11-4980-85e4-8e235159ba5e {
  margin-top: 4px;
margin-bottom: 4px;
text-align: center;
}

#s-e809d027-3c11-4980-85e4-8e235159ba5e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-e809d027-3c11-4980-85e4-8e235159ba5e .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-e809d027-3c11-4980-85e4-8e235159ba5e .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-97d82371-413b-4d41-83b7-42b0986ef9b8 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(240, 127, 100, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-97d82371-413b-4d41-83b7-42b0986ef9b8:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-97d82371-413b-4d41-83b7-42b0986ef9b8:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-97d82371-413b-4d41-83b7-42b0986ef9b8 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-97d82371-413b-4d41-83b7-42b0986ef9b8.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-97d82371-413b-4d41-83b7-42b0986ef9b8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}

#s-97d82371-413b-4d41-83b7-42b0986ef9b8.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-97d82371-413b-4d41-83b7-42b0986ef9b8 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-97d82371-413b-4d41-83b7-42b0986ef9b8.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-97d82371-413b-4d41-83b7-42b0986ef9b8.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}

#s-97d82371-413b-4d41-83b7-42b0986ef9b8.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-295bce8a-6f3e-4e3d-9d83-d05ef4f7444d {
  text-align: center;
}



.shg-c#s-295bce8a-6f3e-4e3d-9d83-d05ef4f7444d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-295bce8a-6f3e-4e3d-9d83-d05ef4f7444d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-295bce8a-6f3e-4e3d-9d83-d05ef4f7444d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-295bce8a-6f3e-4e3d-9d83-d05ef4f7444d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-295bce8a-6f3e-4e3d-9d83-d05ef4f7444d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-295bce8a-6f3e-4e3d-9d83-d05ef4f7444d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-295bce8a-6f3e-4e3d-9d83-d05ef4f7444d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-295bce8a-6f3e-4e3d-9d83-d05ef4f7444d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-295bce8a-6f3e-4e3d-9d83-d05ef4f7444d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-295bce8a-6f3e-4e3d-9d83-d05ef4f7444d img.shogun-image {
  width: 100%;
}



}
#s-987c19ca-21e7-41c1-a99d-93ba326880d9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-987c19ca-21e7-41c1-a99d-93ba326880d9 .shg-product-title-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}
@media (max-width: 767px){#s-987c19ca-21e7-41c1-a99d-93ba326880d9 .shg-product-title-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}
}
#s-1ff2c82c-b72e-4e83-96df-f9d5768c11f9 {
  margin-top: 4px;
margin-bottom: 4px;
text-align: center;
}

#s-1ff2c82c-b72e-4e83-96df-f9d5768c11f9 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-1ff2c82c-b72e-4e83-96df-f9d5768c11f9 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-1ff2c82c-b72e-4e83-96df-f9d5768c11f9 .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-1723a730-6dfd-45d9-b1f9-268a624abf27 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(240, 127, 100, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-1723a730-6dfd-45d9-b1f9-268a624abf27:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1723a730-6dfd-45d9-b1f9-268a624abf27:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-1723a730-6dfd-45d9-b1f9-268a624abf27 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-1723a730-6dfd-45d9-b1f9-268a624abf27.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1723a730-6dfd-45d9-b1f9-268a624abf27.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}

#s-1723a730-6dfd-45d9-b1f9-268a624abf27.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-1723a730-6dfd-45d9-b1f9-268a624abf27 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-1723a730-6dfd-45d9-b1f9-268a624abf27.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1723a730-6dfd-45d9-b1f9-268a624abf27.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}

#s-1723a730-6dfd-45d9-b1f9-268a624abf27.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-9cb09e4a-d55a-4bae-b2f7-48170b8bcf4c {
  text-align: center;
}



.shg-c#s-9cb09e4a-d55a-4bae-b2f7-48170b8bcf4c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9cb09e4a-d55a-4bae-b2f7-48170b8bcf4c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9cb09e4a-d55a-4bae-b2f7-48170b8bcf4c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9cb09e4a-d55a-4bae-b2f7-48170b8bcf4c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9cb09e4a-d55a-4bae-b2f7-48170b8bcf4c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9cb09e4a-d55a-4bae-b2f7-48170b8bcf4c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9cb09e4a-d55a-4bae-b2f7-48170b8bcf4c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9cb09e4a-d55a-4bae-b2f7-48170b8bcf4c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9cb09e4a-d55a-4bae-b2f7-48170b8bcf4c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9cb09e4a-d55a-4bae-b2f7-48170b8bcf4c img.shogun-image {
  width: 100%;
}



}
#s-83ef5918-f913-4ce1-a61f-00c209c2beb7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-83ef5918-f913-4ce1-a61f-00c209c2beb7 .shg-product-title-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}
@media (max-width: 767px){#s-83ef5918-f913-4ce1-a61f-00c209c2beb7 .shg-product-title-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}
}
#s-3a41ab65-7531-486e-8976-aee6195f7ee6 {
  margin-top: 4px;
margin-bottom: 4px;
text-align: center;
}

#s-3a41ab65-7531-486e-8976-aee6195f7ee6 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-3a41ab65-7531-486e-8976-aee6195f7ee6 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-3a41ab65-7531-486e-8976-aee6195f7ee6 .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-47adae85-71b4-4f31-837f-c5c6151362c9 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(240, 127, 100, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-47adae85-71b4-4f31-837f-c5c6151362c9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-47adae85-71b4-4f31-837f-c5c6151362c9:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-47adae85-71b4-4f31-837f-c5c6151362c9 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-47adae85-71b4-4f31-837f-c5c6151362c9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-47adae85-71b4-4f31-837f-c5c6151362c9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}

#s-47adae85-71b4-4f31-837f-c5c6151362c9.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-47adae85-71b4-4f31-837f-c5c6151362c9 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-47adae85-71b4-4f31-837f-c5c6151362c9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-47adae85-71b4-4f31-837f-c5c6151362c9.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}

#s-47adae85-71b4-4f31-837f-c5c6151362c9.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-98302044-e7e9-40cf-b829-6fdcdbfdf161 {
  text-align: center;
}



.shg-c#s-98302044-e7e9-40cf-b829-6fdcdbfdf161 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-98302044-e7e9-40cf-b829-6fdcdbfdf161 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-98302044-e7e9-40cf-b829-6fdcdbfdf161 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-98302044-e7e9-40cf-b829-6fdcdbfdf161 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-98302044-e7e9-40cf-b829-6fdcdbfdf161 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-98302044-e7e9-40cf-b829-6fdcdbfdf161 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-98302044-e7e9-40cf-b829-6fdcdbfdf161 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-98302044-e7e9-40cf-b829-6fdcdbfdf161 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-98302044-e7e9-40cf-b829-6fdcdbfdf161 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-98302044-e7e9-40cf-b829-6fdcdbfdf161 img.shogun-image {
  width: 100%;
}



}
#s-8b56002b-b6e7-49df-abca-6307412e8e5d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8b56002b-b6e7-49df-abca-6307412e8e5d .shg-product-title-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}
@media (max-width: 767px){#s-8b56002b-b6e7-49df-abca-6307412e8e5d .shg-product-title-component h3 {
  color: rgba(7, 107, 134, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}
}
#s-0c7823e1-df70-4a34-9f51-f4247543334b {
  margin-top: 4px;
margin-bottom: 4px;
text-align: center;
}

#s-0c7823e1-df70-4a34-9f51-f4247543334b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-0c7823e1-df70-4a34-9f51-f4247543334b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-0c7823e1-df70-4a34-9f51-f4247543334b .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-8fc3bca0-da84-4387-a999-66d9784897fe {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(240, 127, 100, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-8fc3bca0-da84-4387-a999-66d9784897fe:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8fc3bca0-da84-4387-a999-66d9784897fe:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-8fc3bca0-da84-4387-a999-66d9784897fe {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8fc3bca0-da84-4387-a999-66d9784897fe.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8fc3bca0-da84-4387-a999-66d9784897fe.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}

#s-8fc3bca0-da84-4387-a999-66d9784897fe.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-8fc3bca0-da84-4387-a999-66d9784897fe {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8fc3bca0-da84-4387-a999-66d9784897fe.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8fc3bca0-da84-4387-a999-66d9784897fe.shg-btn {
  color: #ffffff;
  font-size: 11px;
  
  
  font-family: Radikal-bold;
  display:  inline-block ;
}

#s-8fc3bca0-da84-4387-a999-66d9784897fe.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


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