.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-17c38253-9c80-4005-9434-03f53227aa56 {
  min-height: 600px;
}
@media (min-width: 768px) and (max-width: 991px){#s-17c38253-9c80-4005-9434-03f53227aa56 {
  display: none;
}
#s-17c38253-9c80-4005-9434-03f53227aa56, #wrap-s-17c38253-9c80-4005-9434-03f53227aa56 { display:none !important; }}@media (max-width: 767px){#s-17c38253-9c80-4005-9434-03f53227aa56 {
  display: none;
}
#s-17c38253-9c80-4005-9434-03f53227aa56, #wrap-s-17c38253-9c80-4005-9434-03f53227aa56 { display:none !important; }}







#s-17c38253-9c80-4005-9434-03f53227aa56 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17c38253-9c80-4005-9434-03f53227aa56.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-68ffc22e-ca8a-48a3-a073-a4fba6ef08b3 {
  padding-left: 5%;
padding-bottom: 40px;
padding-right: 5%;
min-height: 325px;
background-color: rgba(121, 200, 162, 1);
}








#s-68ffc22e-ca8a-48a3-a073-a4fba6ef08b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-68ffc22e-ca8a-48a3-a073-a4fba6ef08b3.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;
}
#s-bf269365-a108-41f6-bfed-c9dbcc841fca {
  margin-top: 10px;
margin-left: -8%;
text-align: left;
}







  #s-bf269365-a108-41f6-bfed-c9dbcc841fca img.shogun-image {
    

    
    
    
  }


#s-bf269365-a108-41f6-bfed-c9dbcc841fca .shogun-image-content {
  
    align-items: center;
  
}

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

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

#s-5982b9ae-8385-4e2c-8780-21c8b5031de4 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-5982b9ae-8385-4e2c-8780-21c8b5031de4 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Bicyclette-Bold";
  font-style:  normal ;
  font-size: 65px;
  
  
  
}



#s-949dd9b8-fa28-479b-9d22-7a8d3c5df68c {
  margin-bottom: 30px;
padding-top: 0px;
padding-bottom: 10px;
text-align: center;
}

#s-949dd9b8-fa28-479b-9d22-7a8d3c5df68c .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Bicyclette-Bold";
  font-style:  normal ;
  font-size: 65px;
  
  
  
}



.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-5e03a056-d9a1-4476-9637-ba71eb8d4d67 {
  padding-left: 10%;
padding-right: 10%;
}

@media (min-width: 0px) {
[id="s-5e03a056-d9a1-4476-9637-ba71eb8d4d67"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5e03a056-d9a1-4476-9637-ba71eb8d4d67"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5e03a056-d9a1-4476-9637-ba71eb8d4d67"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5e03a056-d9a1-4476-9637-ba71eb8d4d67"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-12a7f7d8-494e-4b20-9003-fb007e399caf {
  margin-top: 20px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-12a7f7d8-494e-4b20-9003-fb007e399caf"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-12a7f7d8-494e-4b20-9003-fb007e399caf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-12a7f7d8-494e-4b20-9003-fb007e399caf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-12a7f7d8-494e-4b20-9003-fb007e399caf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-5035ce20-2d22-4e77-b9eb-5e34057c3f1a {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

#s-c3884aa7-d762-43c6-9f18-c4ef82758247 {
  text-align: center;
}


.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 {
  max-width:  100%;
}

.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 .shg-image-zoom,
.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 img.shogun-image {
  max-width: 80px !important;
  
}

.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 {
  max-width:  100%;
}

.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 .shg-image-zoom,
.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 img.shogun-image {
  max-width: 80px !important;
  
}

.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 {
  max-width:  100%;
}

.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 .shg-image-zoom,
.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 img.shogun-image {
  max-width: 80px !important;
  
}

.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 {
  max-width:  100%;
}

.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 .shg-image-zoom,
.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 img.shogun-image {
  max-width: 80px !important;
  
}

.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 {
  max-width:  100%;
}

.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 .shg-image-zoom,
.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 img.shogun-image {
  max-width: 80px !important;
  
}

.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c3884aa7-d762-43c6-9f18-c4ef82758247 img.shogun-image {
  width: 100%;
}



}
.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-c3f242be-0323-44f1-9c08-a644d0e41c53 {
  margin-top: 5px;
}

#s-793e3518-3135-49c6-bc9f-2bff782d3ec0 {
  display: none;
}
#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 {
  text-align: center;
}


.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 {
  max-width:  100%;
}

.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 .shg-image-zoom,
.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 {
  max-width:  100%;
}

.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 .shg-image-zoom,
.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 {
  max-width:  100%;
}

.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 .shg-image-zoom,
.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 {
  max-width:  100%;
}

.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 .shg-image-zoom,
.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 {
  max-width:  100%;
}

.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 .shg-image-zoom,
.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0ba291d8-717c-4c79-a5e2-7ccd4ed23751 img.shogun-image {
  width: 100%;
}



}
#s-3c25630e-3a79-4b63-abd9-d01f413275df {
  margin-top: 5px;
}

#s-fe6d82ad-5ed4-4bbf-8b7b-7c8c9cddad06 {
  display: none;
}
#s-d27e6020-9896-4073-baa2-aede57790617 {
  text-align: center;
}


.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 {
  max-width:  100%;
}

.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 .shg-image-zoom,
.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 {
  max-width:  100%;
}

.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 .shg-image-zoom,
.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 {
  max-width:  100%;
}

.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 .shg-image-zoom,
.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 {
  max-width:  100%;
}

.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 .shg-image-zoom,
.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 {
  max-width:  100%;
}

.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 .shg-image-zoom,
.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d27e6020-9896-4073-baa2-aede57790617 img.shogun-image {
  width: 100%;
}



}
#s-1e455a28-9020-472a-be53-768578a6db21 {
  margin-top: 5px;
}

#s-9ecf5cdb-757e-4e5f-973a-15776db45cf7 {
  margin-top: 20px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-9ecf5cdb-757e-4e5f-973a-15776db45cf7"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-9ecf5cdb-757e-4e5f-973a-15776db45cf7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9ecf5cdb-757e-4e5f-973a-15776db45cf7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9ecf5cdb-757e-4e5f-973a-15776db45cf7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-741b26b1-f211-43ba-8c91-48c858d0bcfa {
  display: none;
}
#s-b3dfddfd-1c99-41a1-a228-2af812792f6d {
  text-align: center;
}


.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d {
  max-width:  100%;
}

.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d .shg-image-zoom,
.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d {
  max-width:  100%;
}

.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d .shg-image-zoom,
.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d {
  max-width:  100%;
}

.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d .shg-image-zoom,
.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d {
  max-width:  100%;
}

.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d .shg-image-zoom,
.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d {
  max-width:  100%;
}

.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d .shg-image-zoom,
.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b3dfddfd-1c99-41a1-a228-2af812792f6d img.shogun-image {
  width: 100%;
}



}
#s-0b506247-763e-42e1-a787-4dcd868a5e3b {
  margin-top: 5px;
}

#s-197d8db7-d9f7-41b3-8a22-28d265cd82f1 {
  display: none;
}
#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 {
  text-align: center;
}


.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 {
  max-width:  100%;
}

.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 .shg-image-zoom,
.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 {
  max-width:  100%;
}

.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 .shg-image-zoom,
.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 {
  max-width:  100%;
}

.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 .shg-image-zoom,
.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 {
  max-width:  100%;
}

.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 .shg-image-zoom,
.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 {
  max-width:  100%;
}

.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 .shg-image-zoom,
.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 img.shogun-image {
  max-width: 80px !important;
  min-height: 0px !important;
}

.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0cc0f1af-bb4e-4134-8464-1303ca86d2e2 img.shogun-image {
  width: 100%;
}



}
#s-7aeaf1ba-9658-4fbc-8fa5-c1d9b494ccf4 {
  margin-top: 5px;
}

#s-74234333-7420-4817-a905-41c0ca94d7bd {
  display: none;
}
#s-d55c1631-91cf-427d-917d-2a1852c953b0 {
  text-align: center;
}


.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 {
  max-width:  100%;
}

.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 .shg-image-zoom,
.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 img.shogun-image {
  max-width: 80px !important;
  
}

.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 {
  max-width:  100%;
}

.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 .shg-image-zoom,
.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 img.shogun-image {
  max-width: 80px !important;
  
}

.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 {
  max-width:  100%;
}

.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 .shg-image-zoom,
.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 img.shogun-image {
  max-width: 80px !important;
  
}

.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 {
  max-width:  100%;
}

.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 .shg-image-zoom,
.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 img.shogun-image {
  max-width: 80px !important;
  
}

.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 {
  max-width:  100%;
}

.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 .shg-image-zoom,
.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 img.shogun-image {
  max-width: 80px !important;
  
}

.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d55c1631-91cf-427d-917d-2a1852c953b0 img.shogun-image {
  width: 100%;
}



}
#s-1e74fecb-5c1b-416b-b255-86eb3f410d4f {
  margin-top: 5px;
}

#s-1732e722-1920-4290-b458-d54ddb422b82 {
  margin-top: 10px;
margin-bottom: 10px;
margin-right: -8%;
text-align: right;
}







  #s-1732e722-1920-4290-b458-d54ddb422b82 img.shogun-image {
    

    
    
    
  }


#s-1732e722-1920-4290-b458-d54ddb422b82 .shogun-image-content {
  
    align-items: center;
  
}

#s-a45968d8-1f2c-4644-a365-8acf798af16b {
  min-height: 325px;
background-color: rgba(23, 84, 61, 1);
}








#s-a45968d8-1f2c-4644-a365-8acf798af16b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a45968d8-1f2c-4644-a365-8acf798af16b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-01234dea-3938-4e91-9bab-9f89ee75b1e7 {
  margin-bottom: 40px;
}

@media (min-width: 0px) {
[id="s-170eb6ba-ecfa-4f40-be27-6516673e0491"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-170eb6ba-ecfa-4f40-be27-6516673e0491"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-170eb6ba-ecfa-4f40-be27-6516673e0491"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-170eb6ba-ecfa-4f40-be27-6516673e0491"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-77297413-fb83-4772-a8f6-64e5cbefa028 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 800px;
background-position: center center;
}








#s-77297413-fb83-4772-a8f6-64e5cbefa028 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-77297413-fb83-4772-a8f6-64e5cbefa028.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-20485d72-97de-4440-a593-d61882243a0d {
  min-height: 800px;
background-color: rgba(255, 255, 255, 1);
}








#s-20485d72-97de-4440-a593-d61882243a0d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-20485d72-97de-4440-a593-d61882243a0d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a4ae2dc3-ba25-410d-ae3f-2c0073301609 {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 500px;
background-color: rgba(255, 255, 255, 1);
}








#s-a4ae2dc3-ba25-410d-ae3f-2c0073301609 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a4ae2dc3-ba25-410d-ae3f-2c0073301609.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e7bb543b-cf5f-4a08-9d15-43beadcf2aed {
  margin-left: 5%;
margin-bottom: 10px;
margin-right: 5%;
}

#s-68f4bd41-8735-40fa-a36d-4dd20112a2f2 {
  padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-1e8ad440-76ef-4949-8c86-c58991b3987f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1e8ad440-76ef-4949-8c86-c58991b3987f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1e8ad440-76ef-4949-8c86-c58991b3987f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1e8ad440-76ef-4949-8c86-c58991b3987f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-1e8ad440-76ef-4949-8c86-c58991b3987f"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-e9567a07-2892-4db2-bfe4-b15f1565c78d {
  min-height: 800px;
background-color: rgba(255, 255, 255, 1);
}








#s-e9567a07-2892-4db2-bfe4-b15f1565c78d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e9567a07-2892-4db2-bfe4-b15f1565c78d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0ced58f4-eedf-4d9f-b637-7dd36b2ee94d {
  margin-top: 20px;
margin-left: 5%;
margin-bottom: 10px;
margin-right: 5%;
}

#s-f21d27c4-b7b6-4fb0-9084-1a0ef131b337 {
  margin-bottom: 40px;
padding-left: 5%;
padding-right: 5%;
}

#s-e641ced2-b3b4-4c72-90ce-4cab308270de {
  background-repeat: no-repeat;
background-size: cover;
min-height: 800px;
background-position: center center;
}








#s-e641ced2-b3b4-4c72-90ce-4cab308270de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e641ced2-b3b4-4c72-90ce-4cab308270de.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-718481fa-8087-4ae4-8319-0a8d072d73d9 {
  padding-top: 50px;
padding-left: 5%;
padding-bottom: 50px;
padding-right: 5%;
min-height: 325px;
background-color: rgba(121, 200, 162, 1);
}








#s-718481fa-8087-4ae4-8319-0a8d072d73d9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-718481fa-8087-4ae4-8319-0a8d072d73d9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b852da7c-1894-404a-9756-cf0aab110299 {
  margin-top: 10px;
margin-bottom: 10px;
margin-right: -8%;
text-align: right;
}







  #s-b852da7c-1894-404a-9756-cf0aab110299 img.shogun-image {
    

    
    
    
  }


#s-b852da7c-1894-404a-9756-cf0aab110299 .shogun-image-content {
  
    align-items: center;
  
}

#s-414025a6-f025-4ecf-b2e3-19108b104071 {
  margin-bottom: 0px;
padding-left: 2%;
padding-right: 2%;
}

#s-1da07d5b-53b9-4ba8-b142-3bc99fa9e545 {
  margin-top: -15px;
margin-bottom: 0px;
padding-left: 2%;
padding-right: 2%;
}

#s-b3e033e5-eea5-42c4-8785-07b6cd4732ac {
  margin-top: 20px;
margin-bottom: 0px;
padding-left: 0%;
padding-right: 0%;
}

#s-778664ae-3935-4b1c-ac16-64c18c5d7027 {
  margin-top: 0px;
margin-bottom: 100px;
padding-left: 0%;
padding-right: 0%;
}

#s-963623ce-eb43-4279-b6e4-ae559c779b37 {
  margin-top: 50px;
margin-bottom: 20px;
padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-963623ce-eb43-4279-b6e4-ae559c779b37"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 30.0px);
}

}

@media (min-width: 768px) {
[id="s-963623ce-eb43-4279-b6e4-ae559c779b37"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-963623ce-eb43-4279-b6e4-ae559c779b37"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-963623ce-eb43-4279-b6e4-ae559c779b37"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 30.0px);
}

}

#s-7b76d3bd-617e-4513-a288-dd60fe9e7789 {
  display: none;
}
#s-5c226c97-829c-4842-962d-cc883f2c16fd {
  text-align: center;
}


.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd {
  max-width:  100%;
}

.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd .shg-image-zoom,
.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd {
  max-width:  100%;
}

.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd .shg-image-zoom,
.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd {
  max-width:  100%;
}

.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd .shg-image-zoom,
.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd {
  max-width:  100%;
}

.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd .shg-image-zoom,
.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd {
  max-width:  100%;
}

.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd .shg-image-zoom,
.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5c226c97-829c-4842-962d-cc883f2c16fd img.shogun-image {
  width: 100%;
}



}
#s-ca459cd4-3480-4d19-9861-fbdc9f2cd7ce {
  margin-top: 20px;
margin-bottom: 5px;
}

#s-3cf2e051-a8d4-4f03-8f1c-c862ff29011e {
  margin-top: 0px;
}

#s-81762a61-f974-46d7-95a8-d8e57cf3c3bf {
  display: none;
}
#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 {
  text-align: center;
}


.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 {
  max-width:  100%;
}

.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 .shg-image-zoom,
.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 {
  max-width:  100%;
}

.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 .shg-image-zoom,
.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 {
  max-width:  100%;
}

.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 .shg-image-zoom,
.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 {
  max-width:  100%;
}

.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 .shg-image-zoom,
.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 {
  max-width:  100%;
}

.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 .shg-image-zoom,
.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d2231afb-112c-4b85-bb5b-ad381a65aba0 img.shogun-image {
  width: 100%;
}



}
#s-c7de6512-0898-4dde-a0e9-d0554a80983b {
  margin-top: 20px;
margin-bottom: 5px;
}

#s-30e35fc0-2966-4d6e-a873-7bb6a6fbf4b6 {
  margin-top: 0px;
}

#s-531c0ba1-592d-41b7-9ab1-65477c320626 {
  display: none;
}
#s-29851073-7af4-46f2-af74-75cd98be7cf1 {
  text-align: center;
}


.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 {
  max-width:  100%;
}

.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 .shg-image-zoom,
.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 {
  max-width:  100%;
}

.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 .shg-image-zoom,
.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 {
  max-width:  100%;
}

.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 .shg-image-zoom,
.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 {
  max-width:  100%;
}

.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 .shg-image-zoom,
.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 {
  max-width:  100%;
}

.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 .shg-image-zoom,
.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-29851073-7af4-46f2-af74-75cd98be7cf1 img.shogun-image {
  width: 100%;
}



}
#s-04efccf2-0cc4-4ed2-a335-1363d22912a6 {
  margin-top: 20px;
margin-bottom: 5px;
}

#s-1de3ac4d-4089-4d81-a4f4-0c3bd208d999 {
  margin-top: 0px;
}

#s-7799fc5f-0a15-4dae-a963-87d0c7b25d7c {
  display: none;
}
#s-d89a5cdd-e58e-425b-b972-df19dc202e7c {
  text-align: center;
}


.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c {
  max-width:  100%;
}

.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c .shg-image-zoom,
.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c {
  max-width:  100%;
}

.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c .shg-image-zoom,
.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c {
  max-width:  100%;
}

.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c .shg-image-zoom,
.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c {
  max-width:  100%;
}

.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c .shg-image-zoom,
.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c {
  max-width:  100%;
}

.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c .shg-image-zoom,
.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d89a5cdd-e58e-425b-b972-df19dc202e7c img.shogun-image {
  width: 100%;
}



}
#s-4d1a145a-0b65-4cdf-a3f5-7d14af422d4e {
  margin-top: 20px;
margin-bottom: 5px;
}

#s-9e25b09f-4f7c-4474-af2d-c7782088fa63 {
  margin-top: 0px;
}

#s-ea3d7331-631b-493c-8037-2f7cd9fae175 {
  margin-top: 10px;
margin-left: -8%;
margin-bottom: 10px;
text-align: left;
}







  #s-ea3d7331-631b-493c-8037-2f7cd9fae175 img.shogun-image {
    

    
    
    
  }


#s-ea3d7331-631b-493c-8037-2f7cd9fae175 .shogun-image-content {
  
    align-items: center;
  
}

#s-dc16f070-fa5f-430d-9fda-fb73e4aeaaf2 {
  min-height: 500px;
background-color: rgba(121, 200, 162, 1);
}








#s-dc16f070-fa5f-430d-9fda-fb73e4aeaaf2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dc16f070-fa5f-430d-9fda-fb73e4aeaaf2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-265c0cc5-a04c-4576-bb71-db302e156db1 {
  margin-top: 100px;
}

#s-e091e576-1369-46c5-ad55-dc475e1e602d {
  margin-bottom: 0px;
padding-left: 5%;
padding-right: 5%;
}

#s-d0b15b48-7f88-40ea-ba50-60b8ef80648f {
  margin-top: 20px;
margin-bottom: 50px;
padding-left: 0%;
padding-right: 0%;
text-align: center;
}







  #s-d0b15b48-7f88-40ea-ba50-60b8ef80648f img.shogun-image {
    

    
    
    
  }


#s-d0b15b48-7f88-40ea-ba50-60b8ef80648f .shogun-image-content {
  
    align-items: center;
  
}

#s-7a9d50b1-6da1-4cb0-b14d-677bc3e9c8e7 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 700px;
background-position: center center;
}








#s-7a9d50b1-6da1-4cb0-b14d-677bc3e9c8e7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7a9d50b1-6da1-4cb0-b14d-677bc3e9c8e7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b3fd67f8-1b3d-4120-94ae-019b32b64eb4 {
  min-height: 150px;
background-color: rgba(121, 200, 162, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-b3fd67f8-1b3d-4120-94ae-019b32b64eb4 {
  display: none;
}
#s-b3fd67f8-1b3d-4120-94ae-019b32b64eb4, #wrap-s-b3fd67f8-1b3d-4120-94ae-019b32b64eb4 { display:none !important; }}@media (max-width: 767px){#s-b3fd67f8-1b3d-4120-94ae-019b32b64eb4 {
  display: none;
}
#s-b3fd67f8-1b3d-4120-94ae-019b32b64eb4, #wrap-s-b3fd67f8-1b3d-4120-94ae-019b32b64eb4 { display:none !important; }}







#s-b3fd67f8-1b3d-4120-94ae-019b32b64eb4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b3fd67f8-1b3d-4120-94ae-019b32b64eb4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-65b7b256-c3cb-4391-886a-442e86841860 {
  margin-top: 20px;
margin-left: 20%;
margin-right: 15%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
text-align: left;
}

#s-65b7b256-c3cb-4391-886a-442e86841860 .shogun-heading-component h1 {
  color: rgba(0, 57, 60, 1);
  font-weight:  normal ;
  font-family: "Bicyclette-Bold";
  font-style:  normal ;
  font-size: 56px;
  
  
  text-align: left;
}



#s-80697bdd-6bba-4317-8765-dd42a6ace318 {
  padding-left: 25%;
padding-right: 25%;
min-height: 50px;
background-color: rgba(165, 219, 219, 0);
}








#s-80697bdd-6bba-4317-8765-dd42a6ace318 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-80697bdd-6bba-4317-8765-dd42a6ace318.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d83f4f46-36c4-4115-9f08-c61b0502048c {
  min-height: 600px;
}
@media (min-width: 1200px){#s-d83f4f46-36c4-4115-9f08-c61b0502048c {
  display: none;
}
#s-d83f4f46-36c4-4115-9f08-c61b0502048c, #wrap-s-d83f4f46-36c4-4115-9f08-c61b0502048c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d83f4f46-36c4-4115-9f08-c61b0502048c {
  display: none;
}
#s-d83f4f46-36c4-4115-9f08-c61b0502048c, #wrap-s-d83f4f46-36c4-4115-9f08-c61b0502048c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d83f4f46-36c4-4115-9f08-c61b0502048c {
  
}
}@media (max-width: 767px){#s-d83f4f46-36c4-4115-9f08-c61b0502048c {
  display: none;
}
#s-d83f4f46-36c4-4115-9f08-c61b0502048c, #wrap-s-d83f4f46-36c4-4115-9f08-c61b0502048c { display:none !important; }}







#s-d83f4f46-36c4-4115-9f08-c61b0502048c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d83f4f46-36c4-4115-9f08-c61b0502048c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e20a8340-f3dc-47ca-882e-42d76cb4353c {
  padding-left: 5%;
padding-bottom: 40px;
padding-right: 5%;
min-height: 325px;
background-color: rgba(121, 200, 162, 1);
}








#s-e20a8340-f3dc-47ca-882e-42d76cb4353c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e20a8340-f3dc-47ca-882e-42d76cb4353c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2892cd8d-492b-4a9f-baea-51cd4143d3cc {
  margin-top: 10px;
margin-left: -8%;
text-align: left;
}







  #s-2892cd8d-492b-4a9f-baea-51cd4143d3cc img.shogun-image {
    

    
    
    
  }


#s-2892cd8d-492b-4a9f-baea-51cd4143d3cc .shogun-image-content {
  
    align-items: center;
  
}

#s-d4b30cbc-f5ea-4409-9e84-bb27df2ad009 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-d4b30cbc-f5ea-4409-9e84-bb27df2ad009 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Bicyclette-Bold";
  font-style:  normal ;
  font-size: 48px;
  
  
  
}



#s-ea6b71f1-7cf0-4b91-8f66-6b078ea85d43 {
  margin-bottom: 30px;
padding-top: 0px;
padding-bottom: 10px;
text-align: center;
}

#s-ea6b71f1-7cf0-4b91-8f66-6b078ea85d43 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Bicyclette-Bold";
  font-style:  normal ;
  font-size: 48px;
  
  
  
}



#s-78410b00-8700-4dc9-ab90-33b9847118ea {
  padding-left: 10%;
padding-right: 10%;
}

@media (min-width: 0px) {
[id="s-78410b00-8700-4dc9-ab90-33b9847118ea"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-78410b00-8700-4dc9-ab90-33b9847118ea"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-78410b00-8700-4dc9-ab90-33b9847118ea"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-78410b00-8700-4dc9-ab90-33b9847118ea"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-98e7e127-af80-47af-bf68-9214dace7928 {
  margin-top: 20px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-98e7e127-af80-47af-bf68-9214dace7928"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-98e7e127-af80-47af-bf68-9214dace7928"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-98e7e127-af80-47af-bf68-9214dace7928"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-98e7e127-af80-47af-bf68-9214dace7928"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-5018908a-f8e3-4f88-8927-526cf182ad58 {
  display: none;
}
#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 {
  text-align: center;
}


.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 {
  max-width:  100%;
}

.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 .shg-image-zoom,
.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 {
  max-width:  100%;
}

.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 .shg-image-zoom,
.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 {
  max-width:  100%;
}

.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 .shg-image-zoom,
.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 {
  max-width:  100%;
}

.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 .shg-image-zoom,
.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 {
  max-width:  100%;
}

.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 .shg-image-zoom,
.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-affa1d96-e37a-4962-9475-d4cf8e3f14d3 img.shogun-image {
  width: 100%;
}



}
#s-67c7434d-1102-42f8-a509-5bcb4f454737 {
  margin-top: 5px;
}

#s-2743d8cc-6ced-42a4-8527-e1c00694f78e {
  display: none;
}
#s-9f45bf77-7114-4cf0-b902-5387ccc8908b {
  text-align: center;
}


.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b {
  max-width:  100%;
}

.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b .shg-image-zoom,
.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b {
  max-width:  100%;
}

.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b .shg-image-zoom,
.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b {
  max-width:  100%;
}

.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b .shg-image-zoom,
.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b {
  max-width:  100%;
}

.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b .shg-image-zoom,
.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b {
  max-width:  100%;
}

.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b .shg-image-zoom,
.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f45bf77-7114-4cf0-b902-5387ccc8908b img.shogun-image {
  width: 100%;
}



}
#s-5179347a-bb21-4e37-bd9f-875a7a2e0654 {
  margin-top: 5px;
}

#s-58bb43ba-e7a0-4dc5-b05c-59f3d2c69480 {
  display: none;
}
#s-fc0e6446-17c7-45da-89b5-75afffccebbe {
  text-align: center;
}


.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe {
  max-width:  100%;
}

.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe .shg-image-zoom,
.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe {
  max-width:  100%;
}

.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe .shg-image-zoom,
.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe {
  max-width:  100%;
}

.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe .shg-image-zoom,
.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe {
  max-width:  100%;
}

.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe .shg-image-zoom,
.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe {
  max-width:  100%;
}

.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe .shg-image-zoom,
.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc0e6446-17c7-45da-89b5-75afffccebbe img.shogun-image {
  width: 100%;
}



}
#s-cd2ff423-cb42-47ea-8e91-a765be8f1682 {
  margin-top: 5px;
}

#s-9331d314-3c74-4a72-91ff-ef7700b2f938 {
  margin-top: 20px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-9331d314-3c74-4a72-91ff-ef7700b2f938"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-9331d314-3c74-4a72-91ff-ef7700b2f938"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9331d314-3c74-4a72-91ff-ef7700b2f938"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9331d314-3c74-4a72-91ff-ef7700b2f938"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-284f09a8-5bbd-4604-9998-0afd6265aaf1 {
  display: none;
}
#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e {
  text-align: center;
}


.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e {
  max-width:  100%;
}

.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e .shg-image-zoom,
.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e {
  max-width:  100%;
}

.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e .shg-image-zoom,
.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e {
  max-width:  100%;
}

.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e .shg-image-zoom,
.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e {
  max-width:  100%;
}

.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e .shg-image-zoom,
.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e {
  max-width:  100%;
}

.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e .shg-image-zoom,
.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-17a9fa74-e4f5-4d27-86e1-1a9872bb748e img.shogun-image {
  width: 100%;
}



}
#s-0a98e1c4-73af-4db0-8a1b-a32fbe80f368 {
  margin-top: 5px;
}

#s-b52964c4-090c-4458-903b-e3411fe85d0a {
  display: none;
}
#s-20cc4cc7-9212-4821-8f8d-0d90182909ac {
  text-align: center;
}


.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac {
  max-width:  100%;
}

.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac .shg-image-zoom,
.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac {
  max-width:  100%;
}

.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac .shg-image-zoom,
.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac {
  max-width:  100%;
}

.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac .shg-image-zoom,
.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac {
  max-width:  100%;
}

.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac .shg-image-zoom,
.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac {
  max-width:  100%;
}

.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac .shg-image-zoom,
.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-20cc4cc7-9212-4821-8f8d-0d90182909ac img.shogun-image {
  width: 100%;
}



}
#s-0933c4bc-495e-4aff-849f-e61dfab43baa {
  margin-top: 5px;
}

#s-0fc0fdd5-0f04-4154-849e-bd0d202e24f0 {
  display: none;
}
#s-ab78df39-be46-4280-abe3-515071b2ea11 {
  text-align: center;
}


.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 {
  max-width:  100%;
}

.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 .shg-image-zoom,
.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 {
  max-width:  100%;
}

.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 .shg-image-zoom,
.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 {
  max-width:  100%;
}

.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 .shg-image-zoom,
.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 {
  max-width:  100%;
}

.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 .shg-image-zoom,
.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 {
  max-width:  100%;
}

.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 .shg-image-zoom,
.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ab78df39-be46-4280-abe3-515071b2ea11 img.shogun-image {
  width: 100%;
}



}
#s-4c6d15b6-dede-440e-bb79-f38f19a9f0cc {
  margin-top: 5px;
}

#s-d877eed3-0881-4fdf-8c06-eeab37cbcdb1 {
  margin-top: 10px;
margin-bottom: 10px;
margin-right: -8%;
text-align: right;
}







  #s-d877eed3-0881-4fdf-8c06-eeab37cbcdb1 img.shogun-image {
    

    
    
    
  }


#s-d877eed3-0881-4fdf-8c06-eeab37cbcdb1 .shogun-image-content {
  
    align-items: center;
  
}

#s-d0ac2538-5653-46e9-af64-fcbad9f4117e {
  min-height: 325px;
background-color: rgba(23, 84, 61, 1);
}








#s-d0ac2538-5653-46e9-af64-fcbad9f4117e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d0ac2538-5653-46e9-af64-fcbad9f4117e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0caa626a-2f6f-4835-8f33-495000a40ef1 {
  margin-bottom: 40px;
}

#s-50ecefa5-b152-48f0-a382-78f78e2ce12b {
  margin-left: 2%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-7b9e65af-24e1-4db6-94d6-a85be2f4dc30"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7b9e65af-24e1-4db6-94d6-a85be2f4dc30"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7b9e65af-24e1-4db6-94d6-a85be2f4dc30"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7b9e65af-24e1-4db6-94d6-a85be2f4dc30"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-cbdf9cb3-5b90-462f-abf4-6713aa67c832 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 800px;
background-position: center center;
}








#s-cbdf9cb3-5b90-462f-abf4-6713aa67c832 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cbdf9cb3-5b90-462f-abf4-6713aa67c832.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8ee09e64-cfde-4137-bae5-0beb67ea3cc7 {
  min-height: 800px;
background-color: rgba(255, 255, 255, 1);
}








#s-8ee09e64-cfde-4137-bae5-0beb67ea3cc7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8ee09e64-cfde-4137-bae5-0beb67ea3cc7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-408c2ca2-cb1b-4478-8a89-c5422042588e {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 500px;
background-color: rgba(255, 255, 255, 1);
}








#s-408c2ca2-cb1b-4478-8a89-c5422042588e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-408c2ca2-cb1b-4478-8a89-c5422042588e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-002c91f9-dcc7-4924-92e5-eff9c60f6ad6 {
  margin-left: 5%;
margin-right: 5%;
}

#s-9266e717-026e-4088-bd98-bf2c54d30edf {
  padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-9eda6c09-40db-4b8c-afd9-9835bf24e0b9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9eda6c09-40db-4b8c-afd9-9835bf24e0b9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9eda6c09-40db-4b8c-afd9-9835bf24e0b9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9eda6c09-40db-4b8c-afd9-9835bf24e0b9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-9eda6c09-40db-4b8c-afd9-9835bf24e0b9"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-963d4b0c-ed68-4eda-b2a7-2aeee1acb128 {
  padding-top: 40px;
padding-bottom: 40px;
min-height: 800px;
background-color: rgba(255, 255, 255, 1);
}








#s-963d4b0c-ed68-4eda-b2a7-2aeee1acb128 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-963d4b0c-ed68-4eda-b2a7-2aeee1acb128.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6be03fca-f71e-4aa8-9660-ccfab8fd4f40 {
  margin-left: 5%;
margin-right: 5%;
}

#s-039f242e-1bc9-4b95-9baf-5b323edc5613 {
  margin-top: 20px;
padding-left: 5%;
padding-right: 5%;
}

#s-cc0e1bcc-6e42-4c2a-a369-5caaad07c0e2 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 800px;
background-position: center center;
}








#s-cc0e1bcc-6e42-4c2a-a369-5caaad07c0e2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cc0e1bcc-6e42-4c2a-a369-5caaad07c0e2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-08fb35ef-d909-407e-8fb0-d8035b7309a8 {
  padding-top: 50px;
padding-left: 5%;
padding-bottom: 50px;
padding-right: 5%;
min-height: 325px;
background-color: rgba(121, 200, 162, 1);
}








#s-08fb35ef-d909-407e-8fb0-d8035b7309a8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-08fb35ef-d909-407e-8fb0-d8035b7309a8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0d25c06e-829e-4a0e-8770-54f144049354 {
  margin-top: 10px;
margin-bottom: 10px;
margin-right: -8%;
text-align: right;
}







  #s-0d25c06e-829e-4a0e-8770-54f144049354 img.shogun-image {
    

    
    
    
  }


#s-0d25c06e-829e-4a0e-8770-54f144049354 .shogun-image-content {
  
    align-items: center;
  
}

#s-e408f600-7eaf-4d14-a271-2531f165c344 {
  margin-bottom: 0px;
padding-left: 2%;
padding-right: 2%;
}

#s-afe02544-a840-4985-8442-ffd419793181 {
  margin-top: -15px;
margin-bottom: 0px;
padding-left: 2%;
padding-right: 2%;
}

#s-ae22bd81-cba8-4999-8dcd-d06cd44c73ee {
  margin-top: 20px;
margin-bottom: 0px;
padding-left: 0%;
padding-right: 0%;
}

#s-6ca92976-7775-4fc7-b235-0a0d1a7fcfbf {
  margin-top: 0px;
margin-bottom: 20px;
padding-left: 0%;
padding-right: 0%;
}

#s-e658b7bb-56ed-4a41-84e2-130210f90afe {
  margin-top: 50px;
margin-bottom: 20px;
padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-e658b7bb-56ed-4a41-84e2-130210f90afe"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e658b7bb-56ed-4a41-84e2-130210f90afe"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-e658b7bb-56ed-4a41-84e2-130210f90afe"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-e658b7bb-56ed-4a41-84e2-130210f90afe"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-9d1f953d-0133-4f47-9559-c3598552681d {
  display: none;
}
#s-f14a732e-4c46-453b-809b-6e1d9490054c {
  text-align: center;
}


.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c {
  max-width:  100%;
}

.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c .shg-image-zoom,
.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c {
  max-width:  100%;
}

.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c .shg-image-zoom,
.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c {
  max-width:  100%;
}

.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c .shg-image-zoom,
.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c {
  max-width:  100%;
}

.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c .shg-image-zoom,
.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c {
  max-width:  100%;
}

.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c .shg-image-zoom,
.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f14a732e-4c46-453b-809b-6e1d9490054c img.shogun-image {
  width: 100%;
}



}
#s-f4804693-d2ca-4f5f-83f1-a4d25abe0f46 {
  margin-top: 20px;
margin-bottom: 5px;
}

#s-9ea31152-674d-4c08-a53c-b2c825f44ad1 {
  margin-top: 0px;
}

#s-2db558b1-a8d8-4d3d-a29d-17c8495ea3f4 {
  display: none;
}
#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 {
  text-align: center;
}


.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 {
  max-width:  100%;
}

.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 .shg-image-zoom,
.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 {
  max-width:  100%;
}

.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 .shg-image-zoom,
.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 {
  max-width:  100%;
}

.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 .shg-image-zoom,
.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 {
  max-width:  100%;
}

.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 .shg-image-zoom,
.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 {
  max-width:  100%;
}

.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 .shg-image-zoom,
.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-33d1e4b8-df7a-4006-aa6e-b84a074d6b33 img.shogun-image {
  width: 100%;
}



}
#s-e8161a05-6286-48b1-890b-a3df6310e365 {
  margin-top: 20px;
margin-bottom: 5px;
}

#s-9349ecb9-2e92-41f5-ab9b-42da98ecbd79 {
  margin-top: 0px;
}

#s-05889aea-851f-438e-b02a-f94b806e5d25 {
  margin-top: 50px;
margin-bottom: 20px;
padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-05889aea-851f-438e-b02a-f94b806e5d25"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-05889aea-851f-438e-b02a-f94b806e5d25"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-05889aea-851f-438e-b02a-f94b806e5d25"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-05889aea-851f-438e-b02a-f94b806e5d25"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-a2d8142f-0d4e-4d75-bcec-b31bf890c7fd {
  display: none;
}
#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 {
  text-align: center;
}


.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 {
  max-width:  100%;
}

.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 .shg-image-zoom,
.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 {
  max-width:  100%;
}

.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 .shg-image-zoom,
.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 {
  max-width:  100%;
}

.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 .shg-image-zoom,
.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 {
  max-width:  100%;
}

.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 .shg-image-zoom,
.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 {
  max-width:  100%;
}

.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 .shg-image-zoom,
.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1167b16d-9e9d-4104-bfc4-a29b1059c631 img.shogun-image {
  width: 100%;
}



}
#s-12a54e16-557c-4ea7-abf5-d96753833e98 {
  margin-top: 20px;
margin-bottom: 5px;
}

#s-3a6df191-8ea9-483e-bd71-32569ed85ab2 {
  margin-top: 0px;
}

#s-08935595-18bf-43a2-9c5d-0c9b8e9a9f02 {
  display: none;
}
#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a {
  text-align: center;
}


.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a {
  max-width:  100%;
}

.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a .shg-image-zoom,
.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a {
  max-width:  100%;
}

.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a .shg-image-zoom,
.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a {
  max-width:  100%;
}

.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a .shg-image-zoom,
.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a {
  max-width:  100%;
}

.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a .shg-image-zoom,
.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a {
  max-width:  100%;
}

.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a .shg-image-zoom,
.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a img.shogun-image {
  max-width: 120px !important;
  
}

.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c1ed19f6-8f42-4284-9ff3-e4b5796db88a img.shogun-image {
  width: 100%;
}



}
#s-516255bb-0ea2-4ec7-8e67-5e366a766428 {
  margin-top: 20px;
margin-bottom: 5px;
}

#s-c02f0e47-8888-4840-9cff-abe652bb4bec {
  margin-top: 0px;
}

#s-5f025da5-2b19-4f72-bf11-79a45c3d4c4f {
  margin-top: 10px;
margin-left: -8%;
margin-bottom: 10px;
text-align: left;
}







  #s-5f025da5-2b19-4f72-bf11-79a45c3d4c4f img.shogun-image {
    

    
    
    
  }


#s-5f025da5-2b19-4f72-bf11-79a45c3d4c4f .shogun-image-content {
  
    align-items: center;
  
}

#s-b032c1d3-9e6c-463e-8ea4-84e1b5318c72 {
  min-height: 500px;
background-color: rgba(121, 200, 162, 1);
}








#s-b032c1d3-9e6c-463e-8ea4-84e1b5318c72 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b032c1d3-9e6c-463e-8ea4-84e1b5318c72.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1d575b3c-07ae-48e1-aab9-57a53daa4e81 {
  margin-top: 100px;
}

#s-d1085396-9bb3-4299-9730-d7b9f6ad70fb {
  margin-bottom: 0px;
padding-left: 5%;
padding-right: 5%;
}

#s-9ba6161d-f55c-4744-bb07-fbd016250bdc {
  margin-top: 20px;
margin-bottom: 50px;
padding-left: 0%;
padding-right: 0%;
text-align: center;
}







  #s-9ba6161d-f55c-4744-bb07-fbd016250bdc img.shogun-image {
    

    
    
    
  }


#s-9ba6161d-f55c-4744-bb07-fbd016250bdc .shogun-image-content {
  
    align-items: center;
  
}

#s-27b093a1-45de-4372-9e9c-1aa053871d43 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 700px;
background-position: center center;
}








#s-27b093a1-45de-4372-9e9c-1aa053871d43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27b093a1-45de-4372-9e9c-1aa053871d43.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-81d5b643-5bba-450b-a37a-891fbfae71a8 {
  min-height: 150px;
background-color: rgba(121, 200, 162, 1);
}
@media (min-width: 1200px){#s-81d5b643-5bba-450b-a37a-891fbfae71a8 {
  display: none;
}
#s-81d5b643-5bba-450b-a37a-891fbfae71a8, #wrap-s-81d5b643-5bba-450b-a37a-891fbfae71a8 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-81d5b643-5bba-450b-a37a-891fbfae71a8 {
  display: none;
}
#s-81d5b643-5bba-450b-a37a-891fbfae71a8, #wrap-s-81d5b643-5bba-450b-a37a-891fbfae71a8 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-81d5b643-5bba-450b-a37a-891fbfae71a8 {
  
}
}@media (max-width: 767px){#s-81d5b643-5bba-450b-a37a-891fbfae71a8 {
  display: none;
}
#s-81d5b643-5bba-450b-a37a-891fbfae71a8, #wrap-s-81d5b643-5bba-450b-a37a-891fbfae71a8 { display:none !important; }}







#s-81d5b643-5bba-450b-a37a-891fbfae71a8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-81d5b643-5bba-450b-a37a-891fbfae71a8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0bedff73-49f2-44a2-9f10-cb8afccd7950 {
  margin-top: 20px;
margin-left: 20%;
margin-right: 15%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
text-align: left;
}

#s-0bedff73-49f2-44a2-9f10-cb8afccd7950 .shogun-heading-component h1 {
  color: rgba(0, 57, 60, 1);
  font-weight:  normal ;
  font-family: "Bicyclette-Bold";
  font-style:  normal ;
  font-size: 56px;
  
  
  text-align: left;
}



#s-3b2e5000-2d7a-4780-8746-50664ec4dcae {
  padding-left: 25%;
padding-right: 25%;
min-height: 50px;
background-color: rgba(165, 219, 219, 0);
}








#s-3b2e5000-2d7a-4780-8746-50664ec4dcae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3b2e5000-2d7a-4780-8746-50664ec4dcae.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c5467535-6e4d-4a44-90ff-150b0372eb31 {
  min-height: 600px;
}
@media (min-width: 1200px){#s-c5467535-6e4d-4a44-90ff-150b0372eb31 {
  display: none;
}
#s-c5467535-6e4d-4a44-90ff-150b0372eb31, #wrap-s-c5467535-6e4d-4a44-90ff-150b0372eb31 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c5467535-6e4d-4a44-90ff-150b0372eb31 {
  display: none;
}
#s-c5467535-6e4d-4a44-90ff-150b0372eb31, #wrap-s-c5467535-6e4d-4a44-90ff-150b0372eb31 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c5467535-6e4d-4a44-90ff-150b0372eb31 {
  display: none;
}
#s-c5467535-6e4d-4a44-90ff-150b0372eb31, #wrap-s-c5467535-6e4d-4a44-90ff-150b0372eb31 { display:none !important; }}







#s-c5467535-6e4d-4a44-90ff-150b0372eb31 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c5467535-6e4d-4a44-90ff-150b0372eb31.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f387524f-1551-43df-baca-a4955f03a91e {
  padding-top: 20px;
padding-left: 5%;
padding-bottom: 40px;
padding-right: 5%;
min-height: 325px;
background-color: rgba(121, 200, 162, 1);
}
@media (min-width: 1200px){#s-f387524f-1551-43df-baca-a4955f03a91e {
  display: none;
}
#s-f387524f-1551-43df-baca-a4955f03a91e, #wrap-s-f387524f-1551-43df-baca-a4955f03a91e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f387524f-1551-43df-baca-a4955f03a91e {
  display: none;
}
#s-f387524f-1551-43df-baca-a4955f03a91e, #wrap-s-f387524f-1551-43df-baca-a4955f03a91e { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f387524f-1551-43df-baca-a4955f03a91e {
  display: none;
}
#s-f387524f-1551-43df-baca-a4955f03a91e, #wrap-s-f387524f-1551-43df-baca-a4955f03a91e { display:none !important; }}







#s-f387524f-1551-43df-baca-a4955f03a91e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f387524f-1551-43df-baca-a4955f03a91e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4ed1508d-a810-4176-b104-7cf804b986b4 {
  margin-top: 10px;
margin-left: -12%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}







  #s-4ed1508d-a810-4176-b104-7cf804b986b4 img.shogun-image {
    

    
    
    
  }


#s-4ed1508d-a810-4176-b104-7cf804b986b4 .shogun-image-content {
  
    align-items: center;
  
}

#s-c80b1221-0627-4da7-9096-a69c15aabc1c {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-c80b1221-0627-4da7-9096-a69c15aabc1c .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Bicyclette-Bold";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-f0d38e77-fe16-4e45-9d64-dcc2a8442c5d {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 10px;
text-align: center;
}

#s-f0d38e77-fe16-4e45-9d64-dcc2a8442c5d .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Bicyclette-Bold";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-27bdcf44-fa07-4261-a0af-da443772f4b3 {
  margin-top: 0px;
margin-bottom: 10px;
padding-left: 8%;
padding-right: 8%;
}

@media (min-width: 0px) {
[id="s-27bdcf44-fa07-4261-a0af-da443772f4b3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-27bdcf44-fa07-4261-a0af-da443772f4b3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-27bdcf44-fa07-4261-a0af-da443772f4b3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-27bdcf44-fa07-4261-a0af-da443772f4b3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-7fbb0baf-4c02-4cf5-aec0-a84c899fa1ba {
  margin-top: 20px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-7fbb0baf-4c02-4cf5-aec0-a84c899fa1ba"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-7fbb0baf-4c02-4cf5-aec0-a84c899fa1ba"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7fbb0baf-4c02-4cf5-aec0-a84c899fa1ba"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7fbb0baf-4c02-4cf5-aec0-a84c899fa1ba"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-17e2a9c9-c2d1-4156-8441-3e254dd29aa1 {
  display: none;
}
#s-563ec4e5-e910-417d-9e46-396ee20b5b50 {
  text-align: center;
}


.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 {
  max-width:  100%;
}

.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 .shg-image-zoom,
.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 {
  max-width:  100%;
}

.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 .shg-image-zoom,
.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 {
  max-width:  100%;
}

.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 .shg-image-zoom,
.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 {
  max-width:  100%;
}

.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 .shg-image-zoom,
.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 {
  max-width:  100%;
}

.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 .shg-image-zoom,
.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-563ec4e5-e910-417d-9e46-396ee20b5b50 img.shogun-image {
  width: 100%;
}



}
#s-d1ab4da7-8e59-4d3c-8729-7346c55c15f9 {
  margin-top: 10px;
}

#s-1802b3ec-ef0a-4569-b7f1-577f5cccd98c {
  display: none;
}
#s-e041f872-d713-4274-a093-15481a5faa56 {
  text-align: center;
}


.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 {
  max-width:  100%;
}

.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 .shg-image-zoom,
.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 {
  max-width:  100%;
}

.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 .shg-image-zoom,
.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 {
  max-width:  100%;
}

.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 .shg-image-zoom,
.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 {
  max-width:  100%;
}

.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 .shg-image-zoom,
.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 {
  max-width:  100%;
}

.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 .shg-image-zoom,
.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e041f872-d713-4274-a093-15481a5faa56 img.shogun-image {
  width: 100%;
}



}
#s-5a8775c3-e7fc-4cdb-b1b6-9a451eab515f {
  margin-top: 10px;
}

#s-928f630f-1d8e-4e44-9fbd-b5550b7f84e1 {
  display: none;
}
#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 {
  text-align: center;
}


.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 {
  max-width:  100%;
}

.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 .shg-image-zoom,
.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 {
  max-width:  100%;
}

.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 .shg-image-zoom,
.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 {
  max-width:  100%;
}

.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 .shg-image-zoom,
.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 {
  max-width:  100%;
}

.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 .shg-image-zoom,
.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 {
  max-width:  100%;
}

.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 .shg-image-zoom,
.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e12b6ad-63c7-4f61-ae03-f0a139510b07 img.shogun-image {
  width: 100%;
}



}
#s-6f022d4c-c6b2-445c-b4cf-083b23fa2c4f {
  margin-top: 10px;
}

#s-8c1647ca-7b71-4f95-937f-ec009ea90305 {
  margin-top: 20px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-8c1647ca-7b71-4f95-937f-ec009ea90305"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-8c1647ca-7b71-4f95-937f-ec009ea90305"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8c1647ca-7b71-4f95-937f-ec009ea90305"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8c1647ca-7b71-4f95-937f-ec009ea90305"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-43ca167a-ebe4-4561-b6df-5e27fb3b6254 {
  display: none;
}
#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 {
  text-align: center;
}


.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 {
  max-width:  100%;
}

.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 .shg-image-zoom,
.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 {
  max-width:  100%;
}

.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 .shg-image-zoom,
.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 {
  max-width:  100%;
}

.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 .shg-image-zoom,
.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 {
  max-width:  100%;
}

.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 .shg-image-zoom,
.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 {
  max-width:  100%;
}

.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 .shg-image-zoom,
.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-949757a4-f31d-4edb-bb40-0c5cbdf941e4 img.shogun-image {
  width: 100%;
}



}
#s-f9c01401-d0ec-487e-8e56-6648483c2ab6 {
  margin-top: 10px;
}

#s-e0871656-fa93-4371-9a6b-2faa19588f52 {
  display: none;
}
#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 {
  text-align: center;
}


.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 {
  max-width:  100%;
}

.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 .shg-image-zoom,
.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 {
  max-width:  100%;
}

.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 .shg-image-zoom,
.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 {
  max-width:  100%;
}

.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 .shg-image-zoom,
.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 {
  max-width:  100%;
}

.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 .shg-image-zoom,
.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 {
  max-width:  100%;
}

.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 .shg-image-zoom,
.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 img.shogun-image {
  max-width: 60px !important;
  min-height: 0px !important;
}

.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ac91b6ff-8c08-4da3-9ca9-e1c181a47e82 img.shogun-image {
  width: 100%;
}



}
#s-37dfb065-c416-408e-be82-f72993a95cc0 {
  margin-top: 10px;
}

#s-2837bc87-0bb8-42da-8f5a-e9c721216b79 {
  display: none;
}
#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e {
  text-align: center;
}


.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e {
  max-width:  100%;
}

.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e .shg-image-zoom,
.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e {
  max-width:  100%;
}

.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e .shg-image-zoom,
.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e {
  max-width:  100%;
}

.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e .shg-image-zoom,
.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e {
  max-width:  100%;
}

.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e .shg-image-zoom,
.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e {
  max-width:  100%;
}

.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e .shg-image-zoom,
.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e img.shogun-image {
  max-width: 60px !important;
  
}

.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05ab2bcc-b5ec-4c25-b3fd-f4807bd6aa6e img.shogun-image {
  width: 100%;
}



}
#s-fd667ac6-6a80-46bb-a79f-9bf814a5ecaf {
  margin-top: 10px;
}

#s-7a523bc8-f7d5-42e8-8eee-9f2abb50a428 {
  margin-top: 10px;
margin-bottom: 0px;
margin-right: -10%;
text-align: right;
}







  #s-7a523bc8-f7d5-42e8-8eee-9f2abb50a428 img.shogun-image {
    

    
    
    
  }


#s-7a523bc8-f7d5-42e8-8eee-9f2abb50a428 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-44915707-024b-4bc1-a6d7-bf197c8caffa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-44915707-024b-4bc1-a6d7-bf197c8caffa"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-44915707-024b-4bc1-a6d7-bf197c8caffa"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-44915707-024b-4bc1-a6d7-bf197c8caffa"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-a38a12a6-258d-4913-9a92-5c0f344644bd {
  padding-top: 50px;
padding-bottom: 50px;
min-height: 325px;
background-color: rgba(23, 84, 61, 1);
}
@media (min-width: 1200px){#s-a38a12a6-258d-4913-9a92-5c0f344644bd {
  display: none;
}
#s-a38a12a6-258d-4913-9a92-5c0f344644bd, #wrap-s-a38a12a6-258d-4913-9a92-5c0f344644bd { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a38a12a6-258d-4913-9a92-5c0f344644bd {
  display: none;
}
#s-a38a12a6-258d-4913-9a92-5c0f344644bd, #wrap-s-a38a12a6-258d-4913-9a92-5c0f344644bd { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a38a12a6-258d-4913-9a92-5c0f344644bd {
  display: none;
}
#s-a38a12a6-258d-4913-9a92-5c0f344644bd, #wrap-s-a38a12a6-258d-4913-9a92-5c0f344644bd { display:none !important; }}







#s-a38a12a6-258d-4913-9a92-5c0f344644bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a38a12a6-258d-4913-9a92-5c0f344644bd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c43ed893-e843-447a-a73c-783cb7aaad3e {
  padding-left: 6%;
padding-right: 6%;
}

#s-06fb0b9c-828f-47d7-bb88-f96868c46d56 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 500px;
background-position: center center;
}








#s-06fb0b9c-828f-47d7-bb88-f96868c46d56 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-06fb0b9c-828f-47d7-bb88-f96868c46d56.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f1b01d37-4556-4633-91ea-8f25d04093f3 {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 500px;
background-color: rgba(255, 255, 255, 1);
}








#s-f1b01d37-4556-4633-91ea-8f25d04093f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f1b01d37-4556-4633-91ea-8f25d04093f3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-78fddf50-750d-4a9d-b53c-31415916b351 {
  margin-top: 40px;
margin-left: 5%;
margin-bottom: 15px;
margin-right: 5%;
}

#s-41efb13f-7c88-4e2b-9d81-f5b63fb4d890 {
  padding-left: 5%;
padding-right: 5%;
}

#s-aa7152cf-91ee-47e9-a164-008b854906de {
  margin-top: 40px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
}

#s-c2f18864-890c-4b6a-9ed5-52418a185e69 {
  margin-left: 5%;
margin-bottom: 15px;
margin-right: 5%;
}

#s-2ac95af5-af40-4dd0-ac3e-d2da800b2990 {
  margin-bottom: 40px;
padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-0e00d81c-2a52-4f68-9ff8-5675a1c0ac60"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0e00d81c-2a52-4f68-9ff8-5675a1c0ac60"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0e00d81c-2a52-4f68-9ff8-5675a1c0ac60"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0e00d81c-2a52-4f68-9ff8-5675a1c0ac60"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-0e00d81c-2a52-4f68-9ff8-5675a1c0ac60"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-8599cd8a-1967-4acc-bac5-3a97d6436d4d {
  padding-top: 20px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
min-height: 325px;
background-color: rgba(121, 200, 162, 1);
}








#s-8599cd8a-1967-4acc-bac5-3a97d6436d4d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8599cd8a-1967-4acc-bac5-3a97d6436d4d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6c7c3060-da8d-4a17-a1dd-a12bcf9c0210 {
  margin-top: 10px;
margin-bottom: 10px;
margin-right: -10%;
text-align: right;
}







  #s-6c7c3060-da8d-4a17-a1dd-a12bcf9c0210 img.shogun-image {
    

    
    
    
  }


#s-6c7c3060-da8d-4a17-a1dd-a12bcf9c0210 .shogun-image-content {
  
    align-items: center;
  
}

#s-c8fbc500-869a-4b37-bfde-ba5816602018 {
  margin-bottom: 0px;
padding-left: 2%;
padding-right: 2%;
}

#s-0a7e5286-4356-4ef0-8c09-271e6b20d63a {
  margin-top: -15px;
margin-bottom: 0px;
padding-left: 2%;
padding-right: 2%;
}

#s-5ba2eca1-01f4-4433-af8c-906c8b62a55a {
  margin-top: 10px;
margin-bottom: 40px;
padding-left: 2%;
padding-right: 2%;
}

#s-987d0fb7-66e1-408e-8b6a-3f1dcab35f11 {
  margin-top: 20px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-987d0fb7-66e1-408e-8b6a-3f1dcab35f11"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-987d0fb7-66e1-408e-8b6a-3f1dcab35f11"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-987d0fb7-66e1-408e-8b6a-3f1dcab35f11"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-987d0fb7-66e1-408e-8b6a-3f1dcab35f11"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-53256a1c-6c12-4b3d-bc4a-ab98485fe633 {
  display: none;
}
#s-2feeb097-e2c2-44ef-8885-91879a30004c {
  text-align: center;
}


.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c {
  max-width:  100%;
}

.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c .shg-image-zoom,
.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c {
  max-width:  100%;
}

.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c .shg-image-zoom,
.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c {
  max-width:  100%;
}

.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c .shg-image-zoom,
.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c {
  max-width:  100%;
}

.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c .shg-image-zoom,
.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c {
  max-width:  100%;
}

.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c .shg-image-zoom,
.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2feeb097-e2c2-44ef-8885-91879a30004c img.shogun-image {
  width: 100%;
}



}
#s-4406f12a-6d16-409d-be17-48cd7136d491 {
  margin-top: 10px;
}

#s-a59ae986-985d-4939-92e6-08bb48408d34 {
  margin-top: 0px;
}

#s-3f48060d-0258-454c-bb2c-507dcf0d821e {
  display: none;
}
#s-31c8d048-bd71-4c84-89af-5ed95117cec4 {
  text-align: center;
}


.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 {
  max-width:  100%;
}

.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 .shg-image-zoom,
.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 {
  max-width:  100%;
}

.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 .shg-image-zoom,
.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 {
  max-width:  100%;
}

.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 .shg-image-zoom,
.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 {
  max-width:  100%;
}

.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 .shg-image-zoom,
.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 {
  max-width:  100%;
}

.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 .shg-image-zoom,
.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-31c8d048-bd71-4c84-89af-5ed95117cec4 img.shogun-image {
  width: 100%;
}



}
#s-d0b374b3-9432-4256-b2b3-2104967ae9e5 {
  margin-top: 10px;
}

#s-5e8f8002-2001-4480-8d34-faf2ce6fbf8d {
  margin-top: 0px;
}

#s-360d8d89-b976-4843-b0c4-2c9bd9e4de5f {
  margin-top: 40px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-360d8d89-b976-4843-b0c4-2c9bd9e4de5f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-360d8d89-b976-4843-b0c4-2c9bd9e4de5f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-360d8d89-b976-4843-b0c4-2c9bd9e4de5f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-360d8d89-b976-4843-b0c4-2c9bd9e4de5f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-f0784579-b0f0-4a2f-b27d-61664c46fc1b {
  display: none;
}
#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b {
  text-align: center;
}


.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b {
  max-width:  100%;
}

.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b .shg-image-zoom,
.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b {
  max-width:  100%;
}

.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b .shg-image-zoom,
.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b {
  max-width:  100%;
}

.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b .shg-image-zoom,
.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b {
  max-width:  100%;
}

.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b .shg-image-zoom,
.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b {
  max-width:  100%;
}

.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b .shg-image-zoom,
.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-773212ea-489d-4bf6-aaa6-aaa27bc42e7b img.shogun-image {
  width: 100%;
}



}
#s-e882d0ab-5426-4664-b720-bb8a1e24e8a7 {
  margin-top: 10px;
}

#s-087974fc-1046-4988-9d70-e24927d9e4f4 {
  margin-top: 0px;
}

#s-2cf85956-8a82-4f3f-9257-9c3e93ac465a {
  display: none;
}
#s-d29f4540-3f68-4e65-855f-48a054ed389a {
  text-align: center;
}


.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a {
  max-width:  100%;
}

.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a .shg-image-zoom,
.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a {
  max-width:  100%;
}

.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a .shg-image-zoom,
.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a {
  max-width:  100%;
}

.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a .shg-image-zoom,
.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a {
  max-width:  100%;
}

.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a .shg-image-zoom,
.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a {
  max-width:  100%;
}

.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a .shg-image-zoom,
.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a img.shogun-image {
  max-width: 100px !important;
  min-height: 100px !important;
}

.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d29f4540-3f68-4e65-855f-48a054ed389a img.shogun-image {
  width: 100%;
}



}
#s-3ca3d742-90ad-4b97-a8ae-5be0677a51ae {
  margin-top: 10px;
}

#s-0e77c74b-93eb-4338-8602-0ba57eae7241 {
  margin-top: 0px;
}

#s-1d7f9b0c-0c10-47aa-b675-26027fad5447 {
  margin-top: 10px;
margin-left: -12%;
margin-bottom: 10px;
text-align: left;
}







  #s-1d7f9b0c-0c10-47aa-b675-26027fad5447 img.shogun-image {
    

    
    
    
  }


#s-1d7f9b0c-0c10-47aa-b675-26027fad5447 .shogun-image-content {
  
    align-items: center;
  
}

#s-cf9220aa-fe00-4d51-8b27-b2108f4c0601 {
  min-height: 500px;
background-color: rgba(121, 200, 162, 1);
}








#s-cf9220aa-fe00-4d51-8b27-b2108f4c0601 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cf9220aa-fe00-4d51-8b27-b2108f4c0601.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9cfdc092-3d2b-43af-b7ef-9ad8aabfc82c {
  margin-top: 40px;
}

#s-c75b3c33-1b92-4088-88e1-14325f4bfc1c {
  margin-bottom: 0px;
padding-left: 5%;
padding-right: 5%;
}

#s-46e9ef19-1ef1-4276-be3d-3f22023f5dd2 {
  margin-bottom: 50px;
padding-left: 3%;
padding-right: 3%;
text-align: center;
}







  #s-46e9ef19-1ef1-4276-be3d-3f22023f5dd2 img.shogun-image {
    

    
    
    
  }


#s-46e9ef19-1ef1-4276-be3d-3f22023f5dd2 .shogun-image-content {
  
    align-items: center;
  
}

#s-d1bc46df-f681-4f38-b87a-305761ec2d80 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 500px;
background-position: center center;
}








#s-d1bc46df-f681-4f38-b87a-305761ec2d80 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d1bc46df-f681-4f38-b87a-305761ec2d80.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-00d0d43a-2866-4f3d-af97-8401974d9d39 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 700px;
background-position: center center;
}








#s-00d0d43a-2866-4f3d-af97-8401974d9d39 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-00d0d43a-2866-4f3d-af97-8401974d9d39.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e10ada83-d6aa-41a6-8792-808e95c5e64b {
  min-height: 150px;
background-color: rgba(121, 200, 162, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-e10ada83-d6aa-41a6-8792-808e95c5e64b {
  display: none;
}
#s-e10ada83-d6aa-41a6-8792-808e95c5e64b, #wrap-s-e10ada83-d6aa-41a6-8792-808e95c5e64b { display:none !important; }}@media (max-width: 767px){#s-e10ada83-d6aa-41a6-8792-808e95c5e64b {
  
}
}







#s-e10ada83-d6aa-41a6-8792-808e95c5e64b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e10ada83-d6aa-41a6-8792-808e95c5e64b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9c04d42b-42e1-45e7-959f-94653affec48 {
  margin-top: 20px;
margin-left: 20%;
margin-right: 15%;
padding-top: 10px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
text-align: left;
}

#s-9c04d42b-42e1-45e7-959f-94653affec48 .shogun-heading-component h1 {
  color: rgba(0, 57, 60, 1);
  font-weight:  normal ;
  font-family: "Bicyclette-Bold";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



#s-648d6a55-ae7c-43a3-b687-0973be80ce7b {
  padding-left: 25%;
padding-right: 25%;
min-height: 50px;
background-color: rgba(165, 219, 219, 0);
}








#s-648d6a55-ae7c-43a3-b687-0973be80ce7b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-648d6a55-ae7c-43a3-b687-0973be80ce7b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

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

.shogun-root div:empty {
  display: inline-block;
}

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

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

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

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

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
