.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-feb1ad2f-0162-42d9-9ee6-755a820a0b3a {
  min-height: 50px;
background-color: rgba(223, 80, 110, 1);
}
@media (min-width: 1200px){#s-feb1ad2f-0162-42d9-9ee6-755a820a0b3a {
  display: none;
}
#s-feb1ad2f-0162-42d9-9ee6-755a820a0b3a, #wrap-s-feb1ad2f-0162-42d9-9ee6-755a820a0b3a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-feb1ad2f-0162-42d9-9ee6-755a820a0b3a {
  display: none;
}
#s-feb1ad2f-0162-42d9-9ee6-755a820a0b3a, #wrap-s-feb1ad2f-0162-42d9-9ee6-755a820a0b3a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-feb1ad2f-0162-42d9-9ee6-755a820a0b3a {
  display: none;
}
#s-feb1ad2f-0162-42d9-9ee6-755a820a0b3a, #wrap-s-feb1ad2f-0162-42d9-9ee6-755a820a0b3a { display: none !important; }}@media (max-width: 767px){#s-feb1ad2f-0162-42d9-9ee6-755a820a0b3a {
  display: none;
}
#s-feb1ad2f-0162-42d9-9ee6-755a820a0b3a, #wrap-s-feb1ad2f-0162-42d9-9ee6-755a820a0b3a { display: none !important; }}







#s-feb1ad2f-0162-42d9-9ee6-755a820a0b3a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-feb1ad2f-0162-42d9-9ee6-755a820a0b3a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-image-container {
  position: relative;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.shogun-image-cover {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  object-fit: contain;
  width: 100%;
}

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shogun-image-content {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.shogun-image-content-linked,
.shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked > div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content > div {
  width: 100%;
}

.shogun-image-content-top {
  align-items: flex-start;
}

.shogun-image-content-center {
  align-items: center;
}

.shogun-image-content-bottom {
  align-items: flex-end;
}

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-ac88c92b-06a2-4b4f-99d3-b1379a0845e4 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 500px;
text-align: center;
}
@media (max-width: 767px){#s-ac88c92b-06a2-4b4f-99d3-b1379a0845e4 {
  display: none;
}
#s-ac88c92b-06a2-4b4f-99d3-b1379a0845e4, #wrap-s-ac88c92b-06a2-4b4f-99d3-b1379a0845e4 { display: none !important; }}






  #s-ac88c92b-06a2-4b4f-99d3-b1379a0845e4 img.shogun-image {
    

    
    
    
  }


#s-ac88c92b-06a2-4b4f-99d3-b1379a0845e4 .shogun-image-content {
  
    align-items: center;
  
}

#s-0cd2e960-6c41-43bd-b124-fa052140c48d {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}
@media (min-width: 1200px){#s-0cd2e960-6c41-43bd-b124-fa052140c48d {
  display: none;
}
#s-0cd2e960-6c41-43bd-b124-fa052140c48d, #wrap-s-0cd2e960-6c41-43bd-b124-fa052140c48d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0cd2e960-6c41-43bd-b124-fa052140c48d {
  display: none;
}
#s-0cd2e960-6c41-43bd-b124-fa052140c48d, #wrap-s-0cd2e960-6c41-43bd-b124-fa052140c48d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0cd2e960-6c41-43bd-b124-fa052140c48d {
  display: none;
}
#s-0cd2e960-6c41-43bd-b124-fa052140c48d, #wrap-s-0cd2e960-6c41-43bd-b124-fa052140c48d { display: none !important; }}






  #s-0cd2e960-6c41-43bd-b124-fa052140c48d img.shogun-image {
    

    
    
    
  }


#s-0cd2e960-6c41-43bd-b124-fa052140c48d .shogun-image-content {
  
    align-items: center;
  
}

#s-ccc63bc7-f504-49df-a880-cd82cd17d3bd {
  box-shadow:-2px 3px 9px 1px rgba(214, 214, 214, 1);
padding-top: 5px;
padding-bottom: 5px;
min-height: 50px;
background-color: rgba(131, 206, 85, 1);
}








#s-ccc63bc7-f504-49df-a880-cd82cd17d3bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ccc63bc7-f504-49df-a880-cd82cd17d3bd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8be3040a-39d5-4077-a4ba-3b0860f0f1c9 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
text-align: center;
}
@media (max-width: 767px){#s-8be3040a-39d5-4077-a4ba-3b0860f0f1c9 {
  display: none;
}
#s-8be3040a-39d5-4077-a4ba-3b0860f0f1c9, #wrap-s-8be3040a-39d5-4077-a4ba-3b0860f0f1c9 { display: none !important; }}






  #s-8be3040a-39d5-4077-a4ba-3b0860f0f1c9 img.shogun-image {
    

    
    
    
  }


#s-8be3040a-39d5-4077-a4ba-3b0860f0f1c9 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-b76263e7-a3d8-4bf9-8edf-9ab233f06baa {
  margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
}
@media (min-width: 1200px){#s-b76263e7-a3d8-4bf9-8edf-9ab233f06baa {
  display: none;
}
#s-b76263e7-a3d8-4bf9-8edf-9ab233f06baa, #wrap-s-b76263e7-a3d8-4bf9-8edf-9ab233f06baa { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b76263e7-a3d8-4bf9-8edf-9ab233f06baa {
  display: none;
}
#s-b76263e7-a3d8-4bf9-8edf-9ab233f06baa, #wrap-s-b76263e7-a3d8-4bf9-8edf-9ab233f06baa { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b76263e7-a3d8-4bf9-8edf-9ab233f06baa {
  display: none;
}
#s-b76263e7-a3d8-4bf9-8edf-9ab233f06baa, #wrap-s-b76263e7-a3d8-4bf9-8edf-9ab233f06baa { display: none !important; }}
#s-b76263e7-a3d8-4bf9-8edf-9ab233f06baa .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-b76263e7-a3d8-4bf9-8edf-9ab233f06baa .shg-sld-nav-button.shg-sld-left,
#s-b76263e7-a3d8-4bf9-8edf-9ab233f06baa .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-94a65262-fe6f-4f33-9614-60724b5a5f92 {
  text-align: center;
}







  #s-94a65262-fe6f-4f33-9614-60724b5a5f92 img.shogun-image {
    

    
    
    
  }


#s-94a65262-fe6f-4f33-9614-60724b5a5f92 .shogun-image-content {
  
    align-items: center;
  
}

#s-69be9609-c577-4d1f-80a1-7f9a9be73318 {
  text-align: center;
}







  #s-69be9609-c577-4d1f-80a1-7f9a9be73318 img.shogun-image {
    

    
    
    
  }


#s-69be9609-c577-4d1f-80a1-7f9a9be73318 .shogun-image-content {
  
    align-items: center;
  
}

#s-48197804-99c1-4eb5-9015-c2e26f480ceb {
  text-align: center;
}







  #s-48197804-99c1-4eb5-9015-c2e26f480ceb img.shogun-image {
    

    
    
    
  }


#s-48197804-99c1-4eb5-9015-c2e26f480ceb .shogun-image-content {
  
    align-items: center;
  
}

#s-1749ea09-230e-46fc-b4fe-d2b340f93d35 {
  min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-1749ea09-230e-46fc-b4fe-d2b340f93d35 {
  display: none;
}
#s-1749ea09-230e-46fc-b4fe-d2b340f93d35, #wrap-s-1749ea09-230e-46fc-b4fe-d2b340f93d35 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1749ea09-230e-46fc-b4fe-d2b340f93d35 {
  display: none;
}
#s-1749ea09-230e-46fc-b4fe-d2b340f93d35, #wrap-s-1749ea09-230e-46fc-b4fe-d2b340f93d35 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1749ea09-230e-46fc-b4fe-d2b340f93d35 {
  display: none;
}
#s-1749ea09-230e-46fc-b4fe-d2b340f93d35, #wrap-s-1749ea09-230e-46fc-b4fe-d2b340f93d35 { display: none !important; }}@media (max-width: 767px){#s-1749ea09-230e-46fc-b4fe-d2b340f93d35 {
  display: none;
}
#s-1749ea09-230e-46fc-b4fe-d2b340f93d35, #wrap-s-1749ea09-230e-46fc-b4fe-d2b340f93d35 { display: none !important; }}







#s-1749ea09-230e-46fc-b4fe-d2b340f93d35 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1749ea09-230e-46fc-b4fe-d2b340f93d35.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e8be2e11-118d-42a6-9bcd-563723ec2fc2 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 800px;
text-align: center;
}
@media (max-width: 767px){#s-e8be2e11-118d-42a6-9bcd-563723ec2fc2 {
  
}
}






  #s-e8be2e11-118d-42a6-9bcd-563723ec2fc2 img.shogun-image {
    

    
    
    
  }


#s-e8be2e11-118d-42a6-9bcd-563723ec2fc2 .shogun-image-content {
  
    align-items: center;
  
}

#s-4e5ac70f-2c55-495f-932f-2ba7daa818e6 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 350px;
}
@media (min-width: 1200px){#s-4e5ac70f-2c55-495f-932f-2ba7daa818e6 {
  display: none;
}
#s-4e5ac70f-2c55-495f-932f-2ba7daa818e6, #wrap-s-4e5ac70f-2c55-495f-932f-2ba7daa818e6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4e5ac70f-2c55-495f-932f-2ba7daa818e6 {
  display: none;
}
#s-4e5ac70f-2c55-495f-932f-2ba7daa818e6, #wrap-s-4e5ac70f-2c55-495f-932f-2ba7daa818e6 { display: none !important; }}







#s-4e5ac70f-2c55-495f-932f-2ba7daa818e6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4e5ac70f-2c55-495f-932f-2ba7daa818e6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

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

#s-8b490603-2d01-4b23-8c00-f2340d607c13 {
  margin-left: -15%;
}

@media (min-width: 0px) {
[id="s-8b490603-2d01-4b23-8c00-f2340d607c13"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-8b490603-2d01-4b23-8c00-f2340d607c13"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-8b490603-2d01-4b23-8c00-f2340d607c13"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-8b490603-2d01-4b23-8c00-f2340d607c13"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-8128bab1-0896-4919-b742-c479489817d7 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-8128bab1-0896-4919-b742-c479489817d7 img.shogun-image {
    

    
    
    
  }


#s-8128bab1-0896-4919-b742-c479489817d7 .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-bee6070f-eb0c-4c1c-a525-2e797027c954 {
  margin-top: 20px;
margin-left: -30%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-bee6070f-eb0c-4c1c-a525-2e797027c954 .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1em;
  
  text-align: left;
}



#s-f10c8457-4d75-4a53-a3e4-ce286a5e00cb {
  margin-left: -15%;
}

@media (min-width: 0px) {
[id="s-f10c8457-4d75-4a53-a3e4-ce286a5e00cb"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-f10c8457-4d75-4a53-a3e4-ce286a5e00cb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-f10c8457-4d75-4a53-a3e4-ce286a5e00cb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-f10c8457-4d75-4a53-a3e4-ce286a5e00cb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-67ff7bbb-6671-40eb-83e6-1a57f6b98baf {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-67ff7bbb-6671-40eb-83e6-1a57f6b98baf img.shogun-image {
    

    
    
    
  }


#s-67ff7bbb-6671-40eb-83e6-1a57f6b98baf .shogun-image-content {
  
    align-items: center;
  
}

#s-3ba287ab-6898-4ba2-bb74-47f2d4274fcb {
  margin-top: 20px;
margin-left: -30%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-3ba287ab-6898-4ba2-bb74-47f2d4274fcb .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1em;
  
  text-align: left;
}



#s-774998bf-875d-47ba-96aa-20bdbe3fc197 {
  margin-left: -15%;
}

@media (min-width: 0px) {
[id="s-774998bf-875d-47ba-96aa-20bdbe3fc197"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-774998bf-875d-47ba-96aa-20bdbe3fc197"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-774998bf-875d-47ba-96aa-20bdbe3fc197"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-774998bf-875d-47ba-96aa-20bdbe3fc197"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-2a57d963-6b9b-4b7d-9e26-64bd94320c7e {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-2a57d963-6b9b-4b7d-9e26-64bd94320c7e img.shogun-image {
    

    
    
    
  }


#s-2a57d963-6b9b-4b7d-9e26-64bd94320c7e .shogun-image-content {
  
    align-items: center;
  
}

#s-f39295d4-20b9-4842-a5ba-023e232f3938 {
  margin-top: 20px;
margin-left: -30%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f39295d4-20b9-4842-a5ba-023e232f3938 .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1em;
  
  text-align: left;
}



#s-6e591db9-ae86-4fd4-8365-7c7104506d93 {
  margin-left: -15%;
}

@media (min-width: 0px) {
[id="s-6e591db9-ae86-4fd4-8365-7c7104506d93"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-6e591db9-ae86-4fd4-8365-7c7104506d93"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-6e591db9-ae86-4fd4-8365-7c7104506d93"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-6e591db9-ae86-4fd4-8365-7c7104506d93"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-a0030d73-cc56-4200-a49c-b7e56f4e70ae {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-a0030d73-cc56-4200-a49c-b7e56f4e70ae img.shogun-image {
    

    
    
    
  }


#s-a0030d73-cc56-4200-a49c-b7e56f4e70ae .shogun-image-content {
  
    align-items: center;
  
}

#s-2d426e3c-da3f-4460-ad32-94774be17899 {
  margin-top: 20px;
margin-left: -30%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-2d426e3c-da3f-4460-ad32-94774be17899 .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1em;
  
  text-align: left;
}



#s-6d3c7f98-8e0e-4d17-b150-766601979aef {
  margin-left: -15%;
}

@media (min-width: 0px) {
[id="s-6d3c7f98-8e0e-4d17-b150-766601979aef"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-6d3c7f98-8e0e-4d17-b150-766601979aef"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-6d3c7f98-8e0e-4d17-b150-766601979aef"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-6d3c7f98-8e0e-4d17-b150-766601979aef"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-28b9e3ce-9e0b-4481-b003-c85233731d93 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-28b9e3ce-9e0b-4481-b003-c85233731d93 img.shogun-image {
    

    
    
    
  }


#s-28b9e3ce-9e0b-4481-b003-c85233731d93 .shogun-image-content {
  
    align-items: center;
  
}

#s-c555624a-dd23-4136-8f88-cedc9f4fa28f {
  margin-top: 20px;
margin-left: -30%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c555624a-dd23-4136-8f88-cedc9f4fa28f .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1em;
  
  text-align: left;
}



#s-15fe132b-511c-4570-b510-3b2da16f8039 {
  margin-left: -15%;
}

@media (min-width: 0px) {
[id="s-15fe132b-511c-4570-b510-3b2da16f8039"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-15fe132b-511c-4570-b510-3b2da16f8039"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-15fe132b-511c-4570-b510-3b2da16f8039"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-15fe132b-511c-4570-b510-3b2da16f8039"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-6343d281-e70a-45c4-b05e-7f48b6b7b74a {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-6343d281-e70a-45c4-b05e-7f48b6b7b74a img.shogun-image {
    

    
    
    
  }


#s-6343d281-e70a-45c4-b05e-7f48b6b7b74a .shogun-image-content {
  
    align-items: center;
  
}

#s-32a77964-d8ea-4b88-a914-5c57819cd4a4 {
  margin-top: 20px;
margin-left: -30%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-32a77964-d8ea-4b88-a914-5c57819cd4a4 .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1em;
  
  text-align: left;
}



#s-4844ec5a-45b3-4d71-81de-597d762185a5 {
  min-height: 50px;
}
@media (max-width: 767px){#s-4844ec5a-45b3-4d71-81de-597d762185a5 {
  margin-left: auto;
margin-right: auto;
}
}







#s-4844ec5a-45b3-4d71-81de-597d762185a5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4844ec5a-45b3-4d71-81de-597d762185a5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-56f3edcd-7379-41fa-87b8-b68cf99f1ed6 {
  min-height: 50px;
}








#s-56f3edcd-7379-41fa-87b8-b68cf99f1ed6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-56f3edcd-7379-41fa-87b8-b68cf99f1ed6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-af0f4a8f-6325-40c5-b3fd-d1b1dc9a04ba {
  margin-top: -40px;
margin-left: auto;
margin-right: auto;
max-width: 1000px;
}
@media (min-width: 768px) and (max-width: 991px){#s-af0f4a8f-6325-40c5-b3fd-d1b1dc9a04ba {
  display: none;
}
#s-af0f4a8f-6325-40c5-b3fd-d1b1dc9a04ba, #wrap-s-af0f4a8f-6325-40c5-b3fd-d1b1dc9a04ba { display: none !important; }}@media (max-width: 767px){#s-af0f4a8f-6325-40c5-b3fd-d1b1dc9a04ba {
  display: none;
}
#s-af0f4a8f-6325-40c5-b3fd-d1b1dc9a04ba, #wrap-s-af0f4a8f-6325-40c5-b3fd-d1b1dc9a04ba { display: none !important; }}
@media (min-width: 0px) {
[id="s-af0f4a8f-6325-40c5-b3fd-d1b1dc9a04ba"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.8333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-af0f4a8f-6325-40c5-b3fd-d1b1dc9a04ba"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.8333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-af0f4a8f-6325-40c5-b3fd-d1b1dc9a04ba"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.8333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-af0f4a8f-6325-40c5-b3fd-d1b1dc9a04ba"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.8333333333333334px);
}

}

#s-cf5fe3ad-9b60-45f8-9ff9-004dab55422c {
  margin-left: auto;
margin-right: auto;
max-width: 150px;
text-align: center;
}







  #s-cf5fe3ad-9b60-45f8-9ff9-004dab55422c img.shogun-image {
    

    
    
    
  }


#s-cf5fe3ad-9b60-45f8-9ff9-004dab55422c .shogun-image-content {
  
    align-items: center;
  
}

#s-9e340915-1c5a-402d-8ff2-bf43a2a244ed {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9e340915-1c5a-402d-8ff2-bf43a2a244ed .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1em;
  
  
}



#s-3a4c9cf5-69a1-42ff-bc6e-622aaebe0d85 {
  margin-left: auto;
margin-right: auto;
max-width: 150px;
text-align: center;
}







  #s-3a4c9cf5-69a1-42ff-bc6e-622aaebe0d85 img.shogun-image {
    

    
    
    
  }


#s-3a4c9cf5-69a1-42ff-bc6e-622aaebe0d85 .shogun-image-content {
  
    align-items: center;
  
}

#s-eb893e8b-7455-4687-a102-1bed1c73a619 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-eb893e8b-7455-4687-a102-1bed1c73a619 .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1em;
  
  
}



#s-c8c6e8f8-a833-4cfa-a78a-7f0d9377ff16 {
  margin-left: auto;
margin-right: auto;
max-width: 150px;
text-align: center;
}







  #s-c8c6e8f8-a833-4cfa-a78a-7f0d9377ff16 img.shogun-image {
    

    
    
    
  }


#s-c8c6e8f8-a833-4cfa-a78a-7f0d9377ff16 .shogun-image-content {
  
    align-items: center;
  
}

#s-3ed88f97-29c3-4de3-9372-799b5dc76460 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3ed88f97-29c3-4de3-9372-799b5dc76460 .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1em;
  
  
}



#s-9441c646-402b-409a-9af9-8b7e1e6755d7 {
  margin-left: auto;
margin-right: auto;
max-width: 150px;
text-align: center;
}







  #s-9441c646-402b-409a-9af9-8b7e1e6755d7 img.shogun-image {
    

    
    
    
  }


#s-9441c646-402b-409a-9af9-8b7e1e6755d7 .shogun-image-content {
  
    align-items: center;
  
}

#s-99bae624-80d1-4ef0-b940-1860ccb01c04 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-99bae624-80d1-4ef0-b940-1860ccb01c04 .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1em;
  
  
}



#s-ec91cbd5-a0ad-4186-a535-38f1c90da1e4 {
  margin-left: auto;
margin-right: auto;
max-width: 150px;
text-align: center;
}







  #s-ec91cbd5-a0ad-4186-a535-38f1c90da1e4 img.shogun-image {
    

    
    
    
  }


#s-ec91cbd5-a0ad-4186-a535-38f1c90da1e4 .shogun-image-content {
  
    align-items: center;
  
}

#s-f53ca6a7-bec4-4ee1-ad2d-9c36b0213424 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f53ca6a7-bec4-4ee1-ad2d-9c36b0213424 .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1em;
  
  
}



#s-c2ed3146-30b7-4b16-be48-61b8fe96b83b {
  margin-left: auto;
margin-right: auto;
max-width: 150px;
text-align: center;
}







  #s-c2ed3146-30b7-4b16-be48-61b8fe96b83b img.shogun-image {
    

    
    
    
  }


#s-c2ed3146-30b7-4b16-be48-61b8fe96b83b .shogun-image-content {
  
    align-items: center;
  
}

#s-d9b857f9-09ee-4fbf-98e4-7b737c0a840a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d9b857f9-09ee-4fbf-98e4-7b737c0a840a .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1em;
  
  
}



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

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

#s-9ef44b1f-5967-49fe-a9c9-30d7ebe04682 {
  margin-left: 20%;
margin-right: 20%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-9ef44b1f-5967-49fe-a9c9-30d7ebe04682 hr {
  border-top: 1px solid #ddd;
}

#s-f52f60f7-ff1b-4f72-920b-db1cea0c7e4e {
  margin-left: auto;
margin-right: auto;
padding-bottom: 10px;
max-width: 350px;
text-align: left;
}
@media (min-width: 1200px){#s-f52f60f7-ff1b-4f72-920b-db1cea0c7e4e {
  display: none;
}
#s-f52f60f7-ff1b-4f72-920b-db1cea0c7e4e, #wrap-s-f52f60f7-ff1b-4f72-920b-db1cea0c7e4e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f52f60f7-ff1b-4f72-920b-db1cea0c7e4e {
  display: none;
}
#s-f52f60f7-ff1b-4f72-920b-db1cea0c7e4e, #wrap-s-f52f60f7-ff1b-4f72-920b-db1cea0c7e4e { display: none !important; }}
#s-f52f60f7-ff1b-4f72-920b-db1cea0c7e4e .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-40a3dc5d-3113-4b7b-a6a9-8d324a73641a {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-40a3dc5d-3113-4b7b-a6a9-8d324a73641a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-40a3dc5d-3113-4b7b-a6a9-8d324a73641a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 992px) {
[id="s-40a3dc5d-3113-4b7b-a6a9-8d324a73641a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 1200px) {
[id="s-40a3dc5d-3113-4b7b-a6a9-8d324a73641a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5px);
}

}

#s-83970f20-eb2a-4a74-8b21-d1deae85184d {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}







  #s-83970f20-eb2a-4a74-8b21-d1deae85184d img.shogun-image {
    

    
    
    
  }


#s-83970f20-eb2a-4a74-8b21-d1deae85184d .shogun-image-content {
  
    align-items: center;
  
}

#s-cfdd3266-a740-49b3-b112-feb03ef8a33e {
  padding-top: 30px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-cfdd3266-a740-49b3-b112-feb03ef8a33e {
  display: none;
}
#s-cfdd3266-a740-49b3-b112-feb03ef8a33e, #wrap-s-cfdd3266-a740-49b3-b112-feb03ef8a33e { display: none !important; }}@media (max-width: 767px){#s-cfdd3266-a740-49b3-b112-feb03ef8a33e {
  display: none;
}
#s-cfdd3266-a740-49b3-b112-feb03ef8a33e, #wrap-s-cfdd3266-a740-49b3-b112-feb03ef8a33e { display: none !important; }}
#s-cfdd3266-a740-49b3-b112-feb03ef8a33e .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.2em;
  
  text-align: left;
}



.shg-rich-text {
  overflow-wrap: break-word;
}

.shg-rich-text img {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .shg-rich-text img {
    display: block;
    float: none !important;
    margin: 0 auto;
  }
}

.shg-default-text-content *:first-child {
  margin-top: 0;
}

.shg-default-text-content {
  text-align: left;
}

.shg-default-text-content p,
.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6,
.shg-default-text-content address,
.shg-default-text-content pre,
.shg-default-text-content div,
.shg-default-text-content ol,
.shg-default-text-content ul {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-family: inherit;
  font-style: normal;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-default-text-content a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

.shg-default-text-content strong,
.shg-default-text-content em {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.shg-default-text-content em {
  font-weight: inherit;
}

.shg-default-text-content strong {
  font-style: inherit;
  font-weight: 700;
}

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

.shg-default-text-content p {
  font-size: 1em;
  font-weight: ;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: ;
  font-family: ;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-theme-text-content p {
  color: ;
  font-family: ;
  font-weight: ;
}

#s-ad4df1c2-bc87-455d-a7c2-9bf55a81c7e5 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
max-width: 1200px;
}
@media (max-width: 767px){#s-ad4df1c2-bc87-455d-a7c2-9bf55a81c7e5 {
  margin-left: auto;
margin-right: auto;
max-width: 350px;
}
}
#s-60e74528-45f8-4637-8cfb-2a8e511ac46c {
  padding-top: 30px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-60e74528-45f8-4637-8cfb-2a8e511ac46c {
  margin-top: 20px;
margin-bottom: 20px;
display: none;
}
#s-60e74528-45f8-4637-8cfb-2a8e511ac46c, #wrap-s-60e74528-45f8-4637-8cfb-2a8e511ac46c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-60e74528-45f8-4637-8cfb-2a8e511ac46c {
  margin-top: 20px;
margin-bottom: 20px;
display: none;
}
#s-60e74528-45f8-4637-8cfb-2a8e511ac46c, #wrap-s-60e74528-45f8-4637-8cfb-2a8e511ac46c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-60e74528-45f8-4637-8cfb-2a8e511ac46c {
  display: none;
}
#s-60e74528-45f8-4637-8cfb-2a8e511ac46c, #wrap-s-60e74528-45f8-4637-8cfb-2a8e511ac46c { display: none !important; }}@media (max-width: 767px){#s-60e74528-45f8-4637-8cfb-2a8e511ac46c {
  display: none;
}
#s-60e74528-45f8-4637-8cfb-2a8e511ac46c, #wrap-s-60e74528-45f8-4637-8cfb-2a8e511ac46c { display: none !important; }}
#s-60e74528-45f8-4637-8cfb-2a8e511ac46c .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 28px;
  line-height: 1.2em;
  
  
}


@media (max-width: 767px){#s-60e74528-45f8-4637-8cfb-2a8e511ac46c .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.2em;
  
  
}


}
#s-5c0aeb2f-e7ba-486c-9b76-bf776dfa6a72 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
max-width: 1200px;
}
@media (min-width: 1200px){#s-5c0aeb2f-e7ba-486c-9b76-bf776dfa6a72 {
  display: none;
}
#s-5c0aeb2f-e7ba-486c-9b76-bf776dfa6a72, #wrap-s-5c0aeb2f-e7ba-486c-9b76-bf776dfa6a72 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5c0aeb2f-e7ba-486c-9b76-bf776dfa6a72 {
  display: none;
}
#s-5c0aeb2f-e7ba-486c-9b76-bf776dfa6a72, #wrap-s-5c0aeb2f-e7ba-486c-9b76-bf776dfa6a72 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5c0aeb2f-e7ba-486c-9b76-bf776dfa6a72 {
  display: none;
}
#s-5c0aeb2f-e7ba-486c-9b76-bf776dfa6a72, #wrap-s-5c0aeb2f-e7ba-486c-9b76-bf776dfa6a72 { display: none !important; }}@media (max-width: 767px){#s-5c0aeb2f-e7ba-486c-9b76-bf776dfa6a72 {
  margin-left: auto;
margin-right: auto;
display: none;
}
#s-5c0aeb2f-e7ba-486c-9b76-bf776dfa6a72, #wrap-s-5c0aeb2f-e7ba-486c-9b76-bf776dfa6a72 { display: none !important; }}
#s-3414c954-01ac-4b58-bb5a-b1468ebedd86 {
  margin-left: auto;
margin-right: auto;
padding-top: 30px;
padding-bottom: 30px;
min-height: 50px;
}
@media (min-width: 1200px){#s-3414c954-01ac-4b58-bb5a-b1468ebedd86 {
  display: none;
}
#s-3414c954-01ac-4b58-bb5a-b1468ebedd86, #wrap-s-3414c954-01ac-4b58-bb5a-b1468ebedd86 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3414c954-01ac-4b58-bb5a-b1468ebedd86 {
  display: none;
}
#s-3414c954-01ac-4b58-bb5a-b1468ebedd86, #wrap-s-3414c954-01ac-4b58-bb5a-b1468ebedd86 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3414c954-01ac-4b58-bb5a-b1468ebedd86 {
  max-width: 700px;
display: none;
}
#s-3414c954-01ac-4b58-bb5a-b1468ebedd86, #wrap-s-3414c954-01ac-4b58-bb5a-b1468ebedd86 { display: none !important; }}@media (max-width: 767px){#s-3414c954-01ac-4b58-bb5a-b1468ebedd86 {
  max-width: 400px;
display: none;
}
#s-3414c954-01ac-4b58-bb5a-b1468ebedd86, #wrap-s-3414c954-01ac-4b58-bb5a-b1468ebedd86 { display: none !important; }}







#s-3414c954-01ac-4b58-bb5a-b1468ebedd86 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3414c954-01ac-4b58-bb5a-b1468ebedd86.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0e9bace7-15d9-43b7-ba47-32a9ede0cabd {
  margin-left: -24%;
}

@media (min-width: 0px) {
[id="s-0e9bace7-15d9-43b7-ba47-32a9ede0cabd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-0e9bace7-15d9-43b7-ba47-32a9ede0cabd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0e9bace7-15d9-43b7-ba47-32a9ede0cabd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0e9bace7-15d9-43b7-ba47-32a9ede0cabd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-1086d6f1-3a48-49fe-91a5-357920e38f88 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 50px;
text-align: left;
}







  #s-1086d6f1-3a48-49fe-91a5-357920e38f88 img.shogun-image {
    

    
    
    
  }


#s-1086d6f1-3a48-49fe-91a5-357920e38f88 .shogun-image-content {
  
    align-items: center;
  
}

#s-6328cce0-3355-4588-9046-e5d42bb8081e {
  margin-top: 10px;
margin-left: -22%;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-6328cce0-3355-4588-9046-e5d42bb8081e .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-efdb99d8-b146-4c82-97ed-a72bb47048f9 {
  margin-left: -24%;
}

@media (min-width: 0px) {
[id="s-efdb99d8-b146-4c82-97ed-a72bb47048f9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-efdb99d8-b146-4c82-97ed-a72bb47048f9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-efdb99d8-b146-4c82-97ed-a72bb47048f9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-efdb99d8-b146-4c82-97ed-a72bb47048f9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-89612172-4124-42d0-995e-93d885fc3ee9 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 50px;
text-align: center;
}







  #s-89612172-4124-42d0-995e-93d885fc3ee9 img.shogun-image {
    

    
    
    
  }


#s-89612172-4124-42d0-995e-93d885fc3ee9 .shogun-image-content {
  
    align-items: center;
  
}

#s-363fe416-16c3-48cd-83ee-a5102f9b006f {
  margin-top: 10px;
margin-left: -22%;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-363fe416-16c3-48cd-83ee-a5102f9b006f .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-2db79e13-0b94-4163-9fff-817f8678c25c {
  margin-left: -24%;
}

@media (min-width: 0px) {
[id="s-2db79e13-0b94-4163-9fff-817f8678c25c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-2db79e13-0b94-4163-9fff-817f8678c25c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2db79e13-0b94-4163-9fff-817f8678c25c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2db79e13-0b94-4163-9fff-817f8678c25c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-f115ede0-1456-4f4b-a867-b33ec66aed6c {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 50px;
text-align: center;
}







  #s-f115ede0-1456-4f4b-a867-b33ec66aed6c img.shogun-image {
    

    
    
    
  }


#s-f115ede0-1456-4f4b-a867-b33ec66aed6c .shogun-image-content {
  
    align-items: center;
  
}

#s-fe78602c-0015-4149-9c8f-985f5c740e48 {
  margin-top: 10px;
margin-left: -22%;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-fe78602c-0015-4149-9c8f-985f5c740e48 .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-b4b69fd1-9256-40f0-911c-699d17839499 {
  margin-left: -24%;
}

@media (min-width: 0px) {
[id="s-b4b69fd1-9256-40f0-911c-699d17839499"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-b4b69fd1-9256-40f0-911c-699d17839499"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b4b69fd1-9256-40f0-911c-699d17839499"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b4b69fd1-9256-40f0-911c-699d17839499"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-c1aadacf-3d01-4172-acaf-42704cdd0a45 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 50px;
text-align: center;
}







  #s-c1aadacf-3d01-4172-acaf-42704cdd0a45 img.shogun-image {
    

    
    
    
  }


#s-c1aadacf-3d01-4172-acaf-42704cdd0a45 .shogun-image-content {
  
    align-items: center;
  
}

#s-f711cfb2-53f8-4beb-89e6-ec0ec9b7c49c {
  margin-top: 10px;
margin-left: -22%;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f711cfb2-53f8-4beb-89e6-ec0ec9b7c49c .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-e51a2636-88e3-468c-a83d-c4d00d9bf51b {
  padding-top: 30px;
padding-bottom: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-e51a2636-88e3-468c-a83d-c4d00d9bf51b {
  display: none;
}
#s-e51a2636-88e3-468c-a83d-c4d00d9bf51b, #wrap-s-e51a2636-88e3-468c-a83d-c4d00d9bf51b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e51a2636-88e3-468c-a83d-c4d00d9bf51b {
  display: none;
}
#s-e51a2636-88e3-468c-a83d-c4d00d9bf51b, #wrap-s-e51a2636-88e3-468c-a83d-c4d00d9bf51b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e51a2636-88e3-468c-a83d-c4d00d9bf51b {
  display: none;
}
#s-e51a2636-88e3-468c-a83d-c4d00d9bf51b, #wrap-s-e51a2636-88e3-468c-a83d-c4d00d9bf51b { display: none !important; }}@media (max-width: 767px){#s-e51a2636-88e3-468c-a83d-c4d00d9bf51b {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
display: none;
}
#s-e51a2636-88e3-468c-a83d-c4d00d9bf51b, #wrap-s-e51a2636-88e3-468c-a83d-c4d00d9bf51b { display: none !important; }}







#s-e51a2636-88e3-468c-a83d-c4d00d9bf51b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e51a2636-88e3-468c-a83d-c4d00d9bf51b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-34ae2a48-b6c9-43d6-b4ec-435985838242 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-34ae2a48-b6c9-43d6-b4ec-435985838242"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-34ae2a48-b6c9-43d6-b4ec-435985838242"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-34ae2a48-b6c9-43d6-b4ec-435985838242"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-34ae2a48-b6c9-43d6-b4ec-435985838242"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-eb5e8f6a-6603-4188-b7ed-e10b4bb61c0d {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-eb5e8f6a-6603-4188-b7ed-e10b4bb61c0d img.shogun-image {
    

    
    
    
  }


#s-eb5e8f6a-6603-4188-b7ed-e10b4bb61c0d .shogun-image-content {
  
    align-items: center;
  
}

#s-a469c317-32ad-4c2f-a1e2-317aa6e698d5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a469c317-32ad-4c2f-a1e2-317aa6e698d5 .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.2em;
  
  
}



#s-909d3518-c5ee-4ec4-b0c9-4ae8d254444f {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-909d3518-c5ee-4ec4-b0c9-4ae8d254444f img.shogun-image {
    

    
    
    
  }


#s-909d3518-c5ee-4ec4-b0c9-4ae8d254444f .shogun-image-content {
  
    align-items: center;
  
}

#s-c460bcca-60a9-4c08-9248-3764a7142b70 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c460bcca-60a9-4c08-9248-3764a7142b70 .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.2em;
  
  
}



#s-a9321e48-f381-4e66-b301-1490b4be4ed1 {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-a9321e48-f381-4e66-b301-1490b4be4ed1 img.shogun-image {
    

    
    
    
  }


#s-a9321e48-f381-4e66-b301-1490b4be4ed1 .shogun-image-content {
  
    align-items: center;
  
}

#s-1c4e8a4d-4d2d-41ec-b0b5-c91c6efa745e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1c4e8a4d-4d2d-41ec-b0b5-c91c6efa745e .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.2em;
  
  
}



#s-23397f7c-b673-48de-bf16-72df40ceb2ad {
  margin-left: auto;
margin-right: auto;
max-width: 100px;
text-align: center;
}







  #s-23397f7c-b673-48de-bf16-72df40ceb2ad img.shogun-image {
    

    
    
    
  }


#s-23397f7c-b673-48de-bf16-72df40ceb2ad .shogun-image-content {
  
    align-items: center;
  
}

#s-d84d115d-f66b-4b3c-81a5-13788a88b3ac {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d84d115d-f66b-4b3c-81a5-13788a88b3ac .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.2em;
  
  
}



#s-20bb1973-3160-4dac-a506-9edc6e09701c {
  background-size: cover;
min-height: 50px;
background-color: rgba(194, 216, 230, 1);
background-position: center center;
}








#s-20bb1973-3160-4dac-a506-9edc6e09701c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-20bb1973-3160-4dac-a506-9edc6e09701c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a2cf91cc-0b74-41c6-af7a-cd8339bf6123 {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-a2cf91cc-0b74-41c6-af7a-cd8339bf6123 {
  display: none;
}
#s-a2cf91cc-0b74-41c6-af7a-cd8339bf6123, #wrap-s-a2cf91cc-0b74-41c6-af7a-cd8339bf6123 { display: none !important; }}
#s-a2cf91cc-0b74-41c6-af7a-cd8339bf6123 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 28px;
  line-height: 1.2em;
  
  text-align: center;
}


@media (max-width: 767px){#s-a2cf91cc-0b74-41c6-af7a-cd8339bf6123 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.2em;
  
  text-align: center;
}


}
#s-b6527b3b-42ea-461c-b316-2600bed26dc6 {
  margin-left: auto;
margin-right: auto;
padding-top: 30px;
padding-bottom: 0px;
max-width: 1500px;
}

@media (min-width: 0px) {
[id="s-b6527b3b-42ea-461c-b316-2600bed26dc6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b6527b3b-42ea-461c-b316-2600bed26dc6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-b6527b3b-42ea-461c-b316-2600bed26dc6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b6527b3b-42ea-461c-b316-2600bed26dc6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-b6527b3b-42ea-461c-b316-2600bed26dc6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b6527b3b-42ea-461c-b316-2600bed26dc6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-b6527b3b-42ea-461c-b316-2600bed26dc6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-b6527b3b-42ea-461c-b316-2600bed26dc6"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-c1610a1a-02b7-4473-a0f1-cd5eb3df29ad {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-c1610a1a-02b7-4473-a0f1-cd5eb3df29ad {
  display: none;
}
#s-c1610a1a-02b7-4473-a0f1-cd5eb3df29ad, #wrap-s-c1610a1a-02b7-4473-a0f1-cd5eb3df29ad { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c1610a1a-02b7-4473-a0f1-cd5eb3df29ad {
  display: none;
}
#s-c1610a1a-02b7-4473-a0f1-cd5eb3df29ad, #wrap-s-c1610a1a-02b7-4473-a0f1-cd5eb3df29ad { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c1610a1a-02b7-4473-a0f1-cd5eb3df29ad {
  display: none;
}
#s-c1610a1a-02b7-4473-a0f1-cd5eb3df29ad, #wrap-s-c1610a1a-02b7-4473-a0f1-cd5eb3df29ad { display: none !important; }}
#s-c1610a1a-02b7-4473-a0f1-cd5eb3df29ad .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.2em;
  
  text-align: center;
}



#s-a5170440-cb38-4821-98b8-ac6afe05a401 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-a5170440-cb38-4821-98b8-ac6afe05a401 {
  max-width: 350px;
}
}







#s-a5170440-cb38-4821-98b8-ac6afe05a401 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a5170440-cb38-4821-98b8-ac6afe05a401.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-41a4774b-7a91-496e-af51-c93891ad3569 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-41a4774b-7a91-496e-af51-c93891ad3569 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-a5eade40-34a9-4d5e-aaa9-dc99fe38b5bb {
  margin-bottom: 20px;
}

#s-867e13f8-81fd-4315-9d13-ad5faeac42cc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-867e13f8-81fd-4315-9d13-ad5faeac42cc .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-91ce044f-5731-437c-8b7e-fc797f0320a6 {
  margin-bottom: 20px;
}

#s-f4fadb52-4cab-47af-bc79-7be7779e1892 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f4fadb52-4cab-47af-bc79-7be7779e1892 .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-d28036ef-cfea-4461-960c-ece1d7bdb5b8 {
  margin-top: -250px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@media (max-width: 767px){#s-d28036ef-cfea-4461-960c-ece1d7bdb5b8 {
  margin-top: -100px;
margin-bottom: 0px;
}
}






  #s-d28036ef-cfea-4461-960c-ece1d7bdb5b8 img.shogun-image {
    

    
    
    
  }


#s-d28036ef-cfea-4461-960c-ece1d7bdb5b8 .shogun-image-content {
  
    align-items: center;
  
}

#s-9fdc1f57-8c46-45a1-b4d4-80b6bd480ee0 {
  background-size: cover;
min-height: 50px;
background-position: center center;
background-color: rgba(194, 216, 230, 1);
}








#s-9fdc1f57-8c46-45a1-b4d4-80b6bd480ee0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9fdc1f57-8c46-45a1-b4d4-80b6bd480ee0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-69e58f36-ce76-43dd-9321-1aca0298e83d {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-69e58f36-ce76-43dd-9321-1aca0298e83d .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 28px;
  line-height: 1.2em;
  
  text-align: center;
}


@media (max-width: 767px){#s-69e58f36-ce76-43dd-9321-1aca0298e83d .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.2em;
  
  text-align: center;
}


}
#s-e55ecbb8-7e53-4844-acf4-df13e471ed74 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 50px;
max-width: 1500px;
}

@media (min-width: 0px) {
[id="s-e55ecbb8-7e53-4844-acf4-df13e471ed74"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e55ecbb8-7e53-4844-acf4-df13e471ed74"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e55ecbb8-7e53-4844-acf4-df13e471ed74"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e55ecbb8-7e53-4844-acf4-df13e471ed74"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9d305f5c-734f-4eeb-a08f-f32495e668c7 {
  margin-left: auto;
margin-right: auto;
max-width: 600px;
text-align: center;
}







  #s-9d305f5c-734f-4eeb-a08f-f32495e668c7 img.shogun-image {
    

    
    
    
  }


#s-9d305f5c-734f-4eeb-a08f-f32495e668c7 .shogun-image-content {
  
    align-items: center;
  
}

#s-add059db-4ef3-42eb-aa74-2ae0f803ec43 {
  margin-top: 20px;
min-height: 50px;
}
@media (max-width: 767px){#s-add059db-4ef3-42eb-aa74-2ae0f803ec43 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
}
}







#s-add059db-4ef3-42eb-aa74-2ae0f803ec43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-add059db-4ef3-42eb-aa74-2ae0f803ec43.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-445d4598-239b-4af9-911a-10f585f08105 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-445d4598-239b-4af9-911a-10f585f08105 {
  margin-left: auto;
margin-right: auto;
max-width: 350px;
}
}
#s-445d4598-239b-4af9-911a-10f585f08105 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-d728501b-e8af-4354-8173-f1b5a9e4a4fb {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-d728501b-e8af-4354-8173-f1b5a9e4a4fb img.shogun-image {
    

    
    
    
  }


#s-d728501b-e8af-4354-8173-f1b5a9e4a4fb .shogun-image-content {
  
    align-items: center;
  
}

#s-58bb16b0-c34f-45e7-9dfd-24a81b76fab2 {
  margin-left: 15%;
margin-right: 15%;
}

#s-58bb16b0-c34f-45e7-9dfd-24a81b76fab2 hr {
  border-top: 1px solid rgba(204, 200, 200, 1);
}

@media (max-width: 767px){#s-2050ebe6-3e79-4491-9a82-9e2054f8e366 {
  margin-left: auto;
margin-right: auto;
max-width: 350px;
}
}
@media (min-width: 0px) {
[id="s-2050ebe6-3e79-4491-9a82-9e2054f8e366"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2050ebe6-3e79-4491-9a82-9e2054f8e366"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2050ebe6-3e79-4491-9a82-9e2054f8e366"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2050ebe6-3e79-4491-9a82-9e2054f8e366"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a3980b89-e8b0-4121-b015-49d867107ca0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-a3980b89-e8b0-4121-b015-49d867107ca0 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-1a723125-ea26-499a-ae90-0c8b17d76ba1 {
  max-width: 100px;
text-align: left;
}
@media (max-width: 767px){#s-1a723125-ea26-499a-ae90-0c8b17d76ba1 {
  margin-left: auto;
margin-right: auto;
}
}






  #s-1a723125-ea26-499a-ae90-0c8b17d76ba1 img.shogun-image {
    

    
    
    
  }


#s-1a723125-ea26-499a-ae90-0c8b17d76ba1 .shogun-image-content {
  
    align-items: center;
  
}

#s-ed4662a3-8ed8-48cb-8196-22ca980e182f {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}
@media (max-width: 767px){#s-ed4662a3-8ed8-48cb-8196-22ca980e182f {
  margin-left: auto;
margin-right: auto;
max-width: 350px;
}
}
#s-ed4662a3-8ed8-48cb-8196-22ca980e182f .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-9e07d6b6-f9bd-4127-9377-68046a62db3c {
  min-height: 50px;
}








#s-9e07d6b6-f9bd-4127-9377-68046a62db3c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9e07d6b6-f9bd-4127-9377-68046a62db3c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a0648a90-240f-4947-959c-a1e54e83a724 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-a0648a90-240f-4947-959c-a1e54e83a724 {
  margin-left: auto;
margin-right: auto;
max-width: 350px;
}
}
#s-a0648a90-240f-4947-959c-a1e54e83a724 .shogun-heading-component h2 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 28px;
  line-height: 1.2em;
  
  
}


@media (max-width: 767px){#s-a0648a90-240f-4947-959c-a1e54e83a724 .shogun-heading-component h2 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.2em;
  
  
}


}
#s-af6116c8-8202-41fb-98c0-fb14b1a5c55d {
  margin-left: auto;
margin-right: auto;
padding-top: 30px;
padding-bottom: 30px;
max-width: 1200px;
}
@media (max-width: 767px){#s-af6116c8-8202-41fb-98c0-fb14b1a5c55d {
  padding-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-af6116c8-8202-41fb-98c0-fb14b1a5c55d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-af6116c8-8202-41fb-98c0-fb14b1a5c55d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-af6116c8-8202-41fb-98c0-fb14b1a5c55d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-af6116c8-8202-41fb-98c0-fb14b1a5c55d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-174aa1ae-d72b-488d-8943-6582e01ff02a {
  text-align: center;
}







  #s-174aa1ae-d72b-488d-8943-6582e01ff02a img.shogun-image {
    

    
    
    
  }


#s-174aa1ae-d72b-488d-8943-6582e01ff02a .shogun-image-content {
  
    align-items: center;
  
}

#s-6f4f9f64-47d6-466e-a8f2-4aa967744ce7 {
  margin-left: 3%;
min-height: 50px;
}
@media (max-width: 767px){#s-6f4f9f64-47d6-466e-a8f2-4aa967744ce7 {
  max-width: 350px;
}
}







#s-6f4f9f64-47d6-466e-a8f2-4aa967744ce7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6f4f9f64-47d6-466e-a8f2-4aa967744ce7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-91d18b40-aff2-4dad-989d-b7212211a5a1 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
max-width: 400px;
text-align: left;
}

#s-91d18b40-aff2-4dad-989d-b7212211a5a1 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}



#s-e5744d81-17ea-4f31-a14e-6e0358621b15 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 400px;
text-align: left;
}

#s-e5744d81-17ea-4f31-a14e-6e0358621b15 .shogun-heading-component h6 {
  color: #000;
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-11554942-7aa2-4faa-b5bc-8329cd043219 {
  text-align: center;
}







  #s-11554942-7aa2-4faa-b5bc-8329cd043219 img.shogun-image {
    

    
    
    
  }


#s-11554942-7aa2-4faa-b5bc-8329cd043219 .shogun-image-content {
  
    align-items: center;
  
}

#s-a002caa2-6feb-453e-8b84-bd969afbd5e1 {
  margin-left: 3%;
min-height: 50px;
}
@media (max-width: 767px){#s-a002caa2-6feb-453e-8b84-bd969afbd5e1 {
  margin-right: auto;
max-width: 350px;
}
}







#s-a002caa2-6feb-453e-8b84-bd969afbd5e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a002caa2-6feb-453e-8b84-bd969afbd5e1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ddd06b16-274a-47b1-ab83-14a490d422d6 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
max-width: 400px;
text-align: left;
}

#s-ddd06b16-274a-47b1-ab83-14a490d422d6 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}



#s-999414b9-929a-4cc2-95f1-bd7a273a01e9 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 400px;
text-align: left;
}

#s-999414b9-929a-4cc2-95f1-bd7a273a01e9 .shogun-heading-component h6 {
  color: #000;
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-377be927-9ee6-4142-bf11-5daf608ec452 {
  text-align: center;
}







  #s-377be927-9ee6-4142-bf11-5daf608ec452 img.shogun-image {
    

    
    
    
  }


#s-377be927-9ee6-4142-bf11-5daf608ec452 .shogun-image-content {
  
    align-items: center;
  
}

#s-a4681867-5bc3-4edf-a9f8-c01c4e9a45ad {
  margin-left: 3%;
min-height: 50px;
}
@media (max-width: 767px){#s-a4681867-5bc3-4edf-a9f8-c01c4e9a45ad {
  margin-right: auto;
max-width: 350px;
}
}







#s-a4681867-5bc3-4edf-a9f8-c01c4e9a45ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a4681867-5bc3-4edf-a9f8-c01c4e9a45ad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-487c7cf8-c130-4438-9b37-a0be9d30cb7b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
max-width: 400px;
text-align: left;
}

#s-487c7cf8-c130-4438-9b37-a0be9d30cb7b .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}



#s-71bd7780-b61a-40cf-80b0-6f720f0c7368 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 400px;
text-align: left;
}

#s-71bd7780-b61a-40cf-80b0-6f720f0c7368 .shogun-heading-component h6 {
  color: #000;
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-8590ac1a-8ebe-4737-b1f0-26dca8d2e7e1 {
  margin-left: auto;
margin-right: auto;
padding-top: 30px;
padding-bottom: 30px;
max-width: 1200px;
}
@media (max-width: 767px){#s-8590ac1a-8ebe-4737-b1f0-26dca8d2e7e1 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-8590ac1a-8ebe-4737-b1f0-26dca8d2e7e1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8590ac1a-8ebe-4737-b1f0-26dca8d2e7e1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-8590ac1a-8ebe-4737-b1f0-26dca8d2e7e1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-8590ac1a-8ebe-4737-b1f0-26dca8d2e7e1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-f6c8b441-7082-443a-b931-87932b9a819c {
  text-align: center;
}







  #s-f6c8b441-7082-443a-b931-87932b9a819c img.shogun-image {
    

    
    
    
  }


#s-f6c8b441-7082-443a-b931-87932b9a819c .shogun-image-content {
  
    align-items: center;
  
}

#s-0e6da572-9915-49cd-a412-21e4061a3bc0 {
  margin-left: 3%;
min-height: 50px;
}
@media (max-width: 767px){#s-0e6da572-9915-49cd-a412-21e4061a3bc0 {
  margin-right: auto;
max-width: 350px;
}
}







#s-0e6da572-9915-49cd-a412-21e4061a3bc0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0e6da572-9915-49cd-a412-21e4061a3bc0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-74d529f9-858c-41b9-93c2-faad3e798b8e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
max-width: 400px;
text-align: left;
}

#s-74d529f9-858c-41b9-93c2-faad3e798b8e .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  
  text-align: left;
}



#s-a119ea6f-17ab-4a38-9029-c81a5df0e3c9 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 400px;
text-align: left;
}

#s-a119ea6f-17ab-4a38-9029-c81a5df0e3c9 .shogun-heading-component h6 {
  color: #000;
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-9ee39c92-edac-4498-950c-5a827e7d2c39 {
  text-align: center;
}







  #s-9ee39c92-edac-4498-950c-5a827e7d2c39 img.shogun-image {
    

    
    
    
  }


#s-9ee39c92-edac-4498-950c-5a827e7d2c39 .shogun-image-content {
  
    align-items: center;
  
}

#s-4107a30a-a1f1-45ed-bfb1-2105859193d7 {
  margin-left: 3%;
min-height: 50px;
}
@media (max-width: 767px){#s-4107a30a-a1f1-45ed-bfb1-2105859193d7 {
  margin-right: auto;
max-width: 350px;
}
}







#s-4107a30a-a1f1-45ed-bfb1-2105859193d7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4107a30a-a1f1-45ed-bfb1-2105859193d7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-69c7d9ae-6cec-4496-a9f2-0e755a8144e8 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
max-width: 400px;
text-align: left;
}

#s-69c7d9ae-6cec-4496-a9f2-0e755a8144e8 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-cf46fe5b-bc4c-4c63-8c53-2acba050b5fc {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 400px;
text-align: left;
}

#s-cf46fe5b-bc4c-4c63-8c53-2acba050b5fc .shogun-heading-component h6 {
  color: #000;
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-55425c26-06ac-47da-97b8-0843d1906563 {
  text-align: center;
}







  #s-55425c26-06ac-47da-97b8-0843d1906563 img.shogun-image {
    

    
    
    
  }


#s-55425c26-06ac-47da-97b8-0843d1906563 .shogun-image-content {
  
    align-items: center;
  
}

#s-efdc0c02-90f9-4638-95bc-d41ece9a6a37 {
  margin-left: 3%;
min-height: 50px;
}
@media (max-width: 767px){#s-efdc0c02-90f9-4638-95bc-d41ece9a6a37 {
  margin-right: auto;
max-width: 350px;
}
}







#s-efdc0c02-90f9-4638-95bc-d41ece9a6a37 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-efdc0c02-90f9-4638-95bc-d41ece9a6a37.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7340e907-0821-44cb-8080-830f071f528b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
max-width: 400px;
text-align: left;
}

#s-7340e907-0821-44cb-8080-830f071f528b .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-db98d4a6-b478-4c19-afaf-0f8888309490 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 400px;
text-align: left;
}

#s-db98d4a6-b478-4c19-afaf-0f8888309490 .shogun-heading-component h6 {
  color: #000;
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-15581526-c549-4aaa-9903-60f7c13ddc99 {
  padding-top: 30px;
padding-bottom: 30px;
min-height: 50px;
}








#s-15581526-c549-4aaa-9903-60f7c13ddc99 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-15581526-c549-4aaa-9903-60f7c13ddc99.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2578780e-3236-4f6f-9eae-e3673c506033 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2578780e-3236-4f6f-9eae-e3673c506033 .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-54eaadfb-3cd9-4652-8275-cd9fa45e8ee0 {
  margin-left: auto;
margin-right: auto;
padding-top: 30px;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-54eaadfb-3cd9-4652-8275-cd9fa45e8ee0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-54eaadfb-3cd9-4652-8275-cd9fa45e8ee0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-54eaadfb-3cd9-4652-8275-cd9fa45e8ee0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-54eaadfb-3cd9-4652-8275-cd9fa45e8ee0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-7f92082b-dbcd-4a87-a3c1-a54c10b3adea {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
text-align: center;
}







  #s-7f92082b-dbcd-4a87-a3c1-a54c10b3adea img.shogun-image {
    

    
    
    
  }


#s-7f92082b-dbcd-4a87-a3c1-a54c10b3adea .shogun-image-content {
  
    align-items: center;
  
}

#s-e4d7a25b-11d3-440a-aa62-630e09eb9ec6 {
  min-height: 50px;
}








#s-e4d7a25b-11d3-440a-aa62-630e09eb9ec6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e4d7a25b-11d3-440a-aa62-630e09eb9ec6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-39061f60-93e7-4ec5-98b0-8d728311bbb2 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-39061f60-93e7-4ec5-98b0-8d728311bbb2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(11, 42, 23, 1);
  padding: 10px;
}

#s-39061f60-93e7-4ec5-98b0-8d728311bbb2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-39061f60-93e7-4ec5-98b0-8d728311bbb2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-39061f60-93e7-4ec5-98b0-8d728311bbb2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-39061f60-93e7-4ec5-98b0-8d728311bbb2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
.shogun-table-wrapper {
  overflow: auto;
}

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

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

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

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

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

@media (max-width: 767px){#s-858c4121-ba92-4e48-b9bf-7833bd041e20 {
  margin-left: auto;
margin-right: auto;
max-width: 350px;
}
}
#s-858c4121-ba92-4e48-b9bf-7833bd041e20 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid rgba(167, 167, 167, 1);
  border-radius: 0px;
}

#s-858c4121-ba92-4e48-b9bf-7833bd041e20 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-858c4121-ba92-4e48-b9bf-7833bd041e20 td.shogun-table-column {
  background-color: rgba(255, 255, 255, 1);
  padding: 10px;
  text-align: left;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-858c4121-ba92-4e48-b9bf-7833bd041e20 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-858c4121-ba92-4e48-b9bf-7833bd041e20 td.shogun-table-column, #s-858c4121-ba92-4e48-b9bf-7833bd041e20 td.shogun-table-row {
  border: 1px solid rgba(167, 167, 167, 1);
}

#s-8907e17d-f6ac-4dc5-9c8b-2abd83a169e2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-8907e17d-f6ac-4dc5-9c8b-2abd83a169e2 {
  margin-left: auto;
margin-right: auto;
max-width: 350px;
}
}
#s-8907e17d-f6ac-4dc5-9c8b-2abd83a169e2 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



@media (max-width: 767px){#s-7c9e8b61-a211-4069-8f40-3ca1337c3e13 {
  margin-left: auto;
margin-right: auto;
max-width: 350px;
}
}
#s-98576ab2-6368-4ed4-a801-8f2704ed4358 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-98576ab2-6368-4ed4-a801-8f2704ed4358 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-48f3ae47-2741-4a6a-8f27-8e5ef4306b36 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 40px;
max-width: 1200px;
}
@media (max-width: 767px){#s-48f3ae47-2741-4a6a-8f27-8e5ef4306b36 {
  margin-left: auto;
margin-right: auto;
max-width: 350px;
}
}
#s-48f3ae47-2741-4a6a-8f27-8e5ef4306b36 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-48f3ae47-2741-4a6a-8f27-8e5ef4306b36 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-48f3ae47-2741-4a6a-8f27-8e5ef4306b36 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(11, 42, 23, 1);
}

#s-48f3ae47-2741-4a6a-8f27-8e5ef4306b36 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-48f3ae47-2741-4a6a-8f27-8e5ef4306b36 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(11, 42, 23, 1);
  text-align: left;
  font-family: Poppins;
  font-weight: 500;
  font-style: ;
  font-size: 18px;
}

#s-48f3ae47-2741-4a6a-8f27-8e5ef4306b36 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-f7c6d209-a8f5-4c3c-8445-e1bb43d4c958 {
  margin-left: 1%;
margin-right: 1%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-cece7d7f-ca04-408e-a90e-abfbe673faf9 {
  margin-left: 1%;
margin-right: 1%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-04a837e0-8b49-4125-9a80-fa74400920e9 {
  margin-left: 1%;
margin-right: 1%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-11cd7e11-2949-463d-ab5a-82c04690a51c {
  margin-left: 1%;
margin-right: 1%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-62238824-32f5-4f1d-8ae9-283c7afa18cb {
  margin-left: 1%;
margin-right: 1%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-46afca3d-a289-4e52-bff1-89a21e4118cb {
  margin-left: 1%;
margin-right: 1%;
padding-top: 10px;
padding-bottom: 10px;
}

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