.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-d741ca30-9651-44a4-963f-d8c75ea96267 {
  margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
min-height: 50px;
}








#s-d741ca30-9651-44a4-963f-d8c75ea96267 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d741ca30-9651-44a4-963f-d8c75ea96267.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-92f9e5d5-7ff5-4133-abdb-cf640749abd1 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-92f9e5d5-7ff5-4133-abdb-cf640749abd1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-92f9e5d5-7ff5-4133-abdb-cf640749abd1"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-92f9e5d5-7ff5-4133-abdb-cf640749abd1"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-92f9e5d5-7ff5-4133-abdb-cf640749abd1"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

.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-d7258e67-3bda-4e48-8e92-7d896ec7d645 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-d7258e67-3bda-4e48-8e92-7d896ec7d645 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7258e67-3bda-4e48-8e92-7d896ec7d645 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d7258e67-3bda-4e48-8e92-7d896ec7d645 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7258e67-3bda-4e48-8e92-7d896ec7d645 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d7258e67-3bda-4e48-8e92-7d896ec7d645 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7258e67-3bda-4e48-8e92-7d896ec7d645 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d7258e67-3bda-4e48-8e92-7d896ec7d645 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7258e67-3bda-4e48-8e92-7d896ec7d645 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d7258e67-3bda-4e48-8e92-7d896ec7d645 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7258e67-3bda-4e48-8e92-7d896ec7d645 img.shogun-image {
  width: 100%;
}



}
#s-632555ae-c495-48af-bf70-f80547499aa0 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-632555ae-c495-48af-bf70-f80547499aa0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-632555ae-c495-48af-bf70-f80547499aa0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-632555ae-c495-48af-bf70-f80547499aa0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-632555ae-c495-48af-bf70-f80547499aa0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-632555ae-c495-48af-bf70-f80547499aa0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-632555ae-c495-48af-bf70-f80547499aa0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-632555ae-c495-48af-bf70-f80547499aa0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-632555ae-c495-48af-bf70-f80547499aa0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-632555ae-c495-48af-bf70-f80547499aa0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-632555ae-c495-48af-bf70-f80547499aa0 img.shogun-image {
  width: 100%;
}



}
#s-38bc93b4-b12a-4b00-8735-b33175e8306e {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-38bc93b4-b12a-4b00-8735-b33175e8306e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38bc93b4-b12a-4b00-8735-b33175e8306e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-38bc93b4-b12a-4b00-8735-b33175e8306e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38bc93b4-b12a-4b00-8735-b33175e8306e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-38bc93b4-b12a-4b00-8735-b33175e8306e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38bc93b4-b12a-4b00-8735-b33175e8306e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-38bc93b4-b12a-4b00-8735-b33175e8306e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38bc93b4-b12a-4b00-8735-b33175e8306e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-38bc93b4-b12a-4b00-8735-b33175e8306e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38bc93b4-b12a-4b00-8735-b33175e8306e img.shogun-image {
  width: 100%;
}



}
#s-23492053-4b76-49bc-89d2-033961486595 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-23492053-4b76-49bc-89d2-033961486595 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-23492053-4b76-49bc-89d2-033961486595 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-23492053-4b76-49bc-89d2-033961486595 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-23492053-4b76-49bc-89d2-033961486595 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-23492053-4b76-49bc-89d2-033961486595 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-23492053-4b76-49bc-89d2-033961486595 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-23492053-4b76-49bc-89d2-033961486595 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-23492053-4b76-49bc-89d2-033961486595 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-23492053-4b76-49bc-89d2-033961486595 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-23492053-4b76-49bc-89d2-033961486595 img.shogun-image {
  width: 100%;
}



}
#s-5095b42e-b60f-44e5-8458-ba87d62608f5 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-5095b42e-b60f-44e5-8458-ba87d62608f5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5095b42e-b60f-44e5-8458-ba87d62608f5 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5095b42e-b60f-44e5-8458-ba87d62608f5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5095b42e-b60f-44e5-8458-ba87d62608f5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5095b42e-b60f-44e5-8458-ba87d62608f5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5095b42e-b60f-44e5-8458-ba87d62608f5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5095b42e-b60f-44e5-8458-ba87d62608f5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5095b42e-b60f-44e5-8458-ba87d62608f5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5095b42e-b60f-44e5-8458-ba87d62608f5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5095b42e-b60f-44e5-8458-ba87d62608f5 img.shogun-image {
  width: 100%;
}



}
#s-e7983d60-e509-42f6-ad53-1e8526f4a446 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-e7983d60-e509-42f6-ad53-1e8526f4a446"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e7983d60-e509-42f6-ad53-1e8526f4a446"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-e7983d60-e509-42f6-ad53-1e8526f4a446"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-e7983d60-e509-42f6-ad53-1e8526f4a446"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

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

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

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

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

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

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

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

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

#s-c06302d8-c087-4495-b7bd-a166eb30d19a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-c06302d8-c087-4495-b7bd-a166eb30d19a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c06302d8-c087-4495-b7bd-a166eb30d19a:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-c06302d8-c087-4495-b7bd-a166eb30d19a-root {
    text-align: center;
  }


#s-c06302d8-c087-4495-b7bd-a166eb30d19a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c06302d8-c087-4495-b7bd-a166eb30d19a-root {
    text-align: center;
  }


#s-c06302d8-c087-4495-b7bd-a166eb30d19a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c06302d8-c087-4495-b7bd-a166eb30d19a-root {
    text-align: center;
  }


#s-c06302d8-c087-4495-b7bd-a166eb30d19a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c06302d8-c087-4495-b7bd-a166eb30d19a-root {
    text-align: center;
  }


#s-c06302d8-c087-4495-b7bd-a166eb30d19a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c06302d8-c087-4495-b7bd-a166eb30d19a-root {
    text-align: center;
  }


#s-c06302d8-c087-4495-b7bd-a166eb30d19a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-e5201553-6cf2-41f3-bafb-df6feecf4e58 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-e5201553-6cf2-41f3-bafb-df6feecf4e58:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e5201553-6cf2-41f3-bafb-df6feecf4e58:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-e5201553-6cf2-41f3-bafb-df6feecf4e58-root {
    text-align: center;
  }


#s-e5201553-6cf2-41f3-bafb-df6feecf4e58.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e5201553-6cf2-41f3-bafb-df6feecf4e58-root {
    text-align: center;
  }


#s-e5201553-6cf2-41f3-bafb-df6feecf4e58.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e5201553-6cf2-41f3-bafb-df6feecf4e58-root {
    text-align: center;
  }


#s-e5201553-6cf2-41f3-bafb-df6feecf4e58.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e5201553-6cf2-41f3-bafb-df6feecf4e58-root {
    text-align: center;
  }


#s-e5201553-6cf2-41f3-bafb-df6feecf4e58.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e5201553-6cf2-41f3-bafb-df6feecf4e58-root {
    text-align: center;
  }


#s-e5201553-6cf2-41f3-bafb-df6feecf4e58.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-4c489820-c387-4b0f-990a-7a98be3bac1d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-4c489820-c387-4b0f-990a-7a98be3bac1d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4c489820-c387-4b0f-990a-7a98be3bac1d:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-4c489820-c387-4b0f-990a-7a98be3bac1d-root {
    text-align: center;
  }


#s-4c489820-c387-4b0f-990a-7a98be3bac1d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4c489820-c387-4b0f-990a-7a98be3bac1d-root {
    text-align: center;
  }


#s-4c489820-c387-4b0f-990a-7a98be3bac1d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4c489820-c387-4b0f-990a-7a98be3bac1d-root {
    text-align: center;
  }


#s-4c489820-c387-4b0f-990a-7a98be3bac1d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4c489820-c387-4b0f-990a-7a98be3bac1d-root {
    text-align: center;
  }


#s-4c489820-c387-4b0f-990a-7a98be3bac1d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4c489820-c387-4b0f-990a-7a98be3bac1d-root {
    text-align: center;
  }


#s-4c489820-c387-4b0f-990a-7a98be3bac1d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-cdbadaa6-878e-445a-a388-25c59dbc2b2f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-cdbadaa6-878e-445a-a388-25c59dbc2b2f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-cdbadaa6-878e-445a-a388-25c59dbc2b2f:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-cdbadaa6-878e-445a-a388-25c59dbc2b2f-root {
    text-align: center;
  }


#s-cdbadaa6-878e-445a-a388-25c59dbc2b2f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-cdbadaa6-878e-445a-a388-25c59dbc2b2f-root {
    text-align: center;
  }


#s-cdbadaa6-878e-445a-a388-25c59dbc2b2f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cdbadaa6-878e-445a-a388-25c59dbc2b2f-root {
    text-align: center;
  }


#s-cdbadaa6-878e-445a-a388-25c59dbc2b2f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cdbadaa6-878e-445a-a388-25c59dbc2b2f-root {
    text-align: center;
  }


#s-cdbadaa6-878e-445a-a388-25c59dbc2b2f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-cdbadaa6-878e-445a-a388-25c59dbc2b2f-root {
    text-align: center;
  }


#s-cdbadaa6-878e-445a-a388-25c59dbc2b2f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-36a61587-d8e2-42e2-8a98-f4095370791e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-36a61587-d8e2-42e2-8a98-f4095370791e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-36a61587-d8e2-42e2-8a98-f4095370791e:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-36a61587-d8e2-42e2-8a98-f4095370791e-root {
    text-align: center;
  }


#s-36a61587-d8e2-42e2-8a98-f4095370791e.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-36a61587-d8e2-42e2-8a98-f4095370791e-root {
    text-align: center;
  }


#s-36a61587-d8e2-42e2-8a98-f4095370791e.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-36a61587-d8e2-42e2-8a98-f4095370791e-root {
    text-align: center;
  }


#s-36a61587-d8e2-42e2-8a98-f4095370791e.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-36a61587-d8e2-42e2-8a98-f4095370791e-root {
    text-align: center;
  }


#s-36a61587-d8e2-42e2-8a98-f4095370791e.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-36a61587-d8e2-42e2-8a98-f4095370791e-root {
    text-align: center;
  }


#s-36a61587-d8e2-42e2-8a98-f4095370791e.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-e2ad1ebf-8c8d-494f-a792-d40dadeb129b {
  min-height: 50px;
}








#s-e2ad1ebf-8c8d-494f-a792-d40dadeb129b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e2ad1ebf-8c8d-494f-a792-d40dadeb129b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f672754b-c175-4360-b75d-eb4d304e8c01 {
  min-height: 50px;
}








#s-f672754b-c175-4360-b75d-eb4d304e8c01 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f672754b-c175-4360-b75d-eb4d304e8c01.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-891af8b7-7f04-4c9a-a983-6622e58b4372 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-891af8b7-7f04-4c9a-a983-6622e58b4372"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-891af8b7-7f04-4c9a-a983-6622e58b4372"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-891af8b7-7f04-4c9a-a983-6622e58b4372"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-891af8b7-7f04-4c9a-a983-6622e58b4372"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-9e91ae2b-0ddd-47b1-9443-64e17222dea2 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-9e91ae2b-0ddd-47b1-9443-64e17222dea2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e91ae2b-0ddd-47b1-9443-64e17222dea2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9e91ae2b-0ddd-47b1-9443-64e17222dea2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e91ae2b-0ddd-47b1-9443-64e17222dea2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9e91ae2b-0ddd-47b1-9443-64e17222dea2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e91ae2b-0ddd-47b1-9443-64e17222dea2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9e91ae2b-0ddd-47b1-9443-64e17222dea2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e91ae2b-0ddd-47b1-9443-64e17222dea2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9e91ae2b-0ddd-47b1-9443-64e17222dea2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e91ae2b-0ddd-47b1-9443-64e17222dea2 img.shogun-image {
  width: 100%;
}



}
#s-196e4659-9753-4d41-b7a6-4a8ee464b902 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-196e4659-9753-4d41-b7a6-4a8ee464b902 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-196e4659-9753-4d41-b7a6-4a8ee464b902 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-196e4659-9753-4d41-b7a6-4a8ee464b902 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-196e4659-9753-4d41-b7a6-4a8ee464b902 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-196e4659-9753-4d41-b7a6-4a8ee464b902 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-196e4659-9753-4d41-b7a6-4a8ee464b902 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-196e4659-9753-4d41-b7a6-4a8ee464b902 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-196e4659-9753-4d41-b7a6-4a8ee464b902 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-196e4659-9753-4d41-b7a6-4a8ee464b902 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-196e4659-9753-4d41-b7a6-4a8ee464b902 img.shogun-image {
  width: 100%;
}



}
#s-5afc8b0b-e4ad-49b5-b7d6-065bc12dd31c {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-5afc8b0b-e4ad-49b5-b7d6-065bc12dd31c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5afc8b0b-e4ad-49b5-b7d6-065bc12dd31c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5afc8b0b-e4ad-49b5-b7d6-065bc12dd31c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5afc8b0b-e4ad-49b5-b7d6-065bc12dd31c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5afc8b0b-e4ad-49b5-b7d6-065bc12dd31c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5afc8b0b-e4ad-49b5-b7d6-065bc12dd31c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5afc8b0b-e4ad-49b5-b7d6-065bc12dd31c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5afc8b0b-e4ad-49b5-b7d6-065bc12dd31c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5afc8b0b-e4ad-49b5-b7d6-065bc12dd31c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5afc8b0b-e4ad-49b5-b7d6-065bc12dd31c img.shogun-image {
  width: 100%;
}



}
#s-8a5271f0-3859-4ab0-9364-fa62aff6a987 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-8a5271f0-3859-4ab0-9364-fa62aff6a987 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8a5271f0-3859-4ab0-9364-fa62aff6a987 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8a5271f0-3859-4ab0-9364-fa62aff6a987 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8a5271f0-3859-4ab0-9364-fa62aff6a987 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8a5271f0-3859-4ab0-9364-fa62aff6a987 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8a5271f0-3859-4ab0-9364-fa62aff6a987 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8a5271f0-3859-4ab0-9364-fa62aff6a987 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8a5271f0-3859-4ab0-9364-fa62aff6a987 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8a5271f0-3859-4ab0-9364-fa62aff6a987 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8a5271f0-3859-4ab0-9364-fa62aff6a987 img.shogun-image {
  width: 100%;
}



}
#s-ff892aff-32fb-49c7-be3e-7809c04551b6 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-ff892aff-32fb-49c7-be3e-7809c04551b6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff892aff-32fb-49c7-be3e-7809c04551b6 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ff892aff-32fb-49c7-be3e-7809c04551b6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff892aff-32fb-49c7-be3e-7809c04551b6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ff892aff-32fb-49c7-be3e-7809c04551b6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff892aff-32fb-49c7-be3e-7809c04551b6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ff892aff-32fb-49c7-be3e-7809c04551b6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff892aff-32fb-49c7-be3e-7809c04551b6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ff892aff-32fb-49c7-be3e-7809c04551b6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff892aff-32fb-49c7-be3e-7809c04551b6 img.shogun-image {
  width: 100%;
}



}
#s-86bcf738-82a9-4cab-9c91-48c53db57482 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-86bcf738-82a9-4cab-9c91-48c53db57482"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-86bcf738-82a9-4cab-9c91-48c53db57482"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-86bcf738-82a9-4cab-9c91-48c53db57482"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-86bcf738-82a9-4cab-9c91-48c53db57482"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-3d4fa65f-42dc-45e1-8379-508a29aaf1f0 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-3d4fa65f-42dc-45e1-8379-508a29aaf1f0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3d4fa65f-42dc-45e1-8379-508a29aaf1f0:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-3d4fa65f-42dc-45e1-8379-508a29aaf1f0-root {
    text-align: center;
  }


#s-3d4fa65f-42dc-45e1-8379-508a29aaf1f0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3d4fa65f-42dc-45e1-8379-508a29aaf1f0-root {
    text-align: center;
  }


#s-3d4fa65f-42dc-45e1-8379-508a29aaf1f0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3d4fa65f-42dc-45e1-8379-508a29aaf1f0-root {
    text-align: center;
  }


#s-3d4fa65f-42dc-45e1-8379-508a29aaf1f0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3d4fa65f-42dc-45e1-8379-508a29aaf1f0-root {
    text-align: center;
  }


#s-3d4fa65f-42dc-45e1-8379-508a29aaf1f0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3d4fa65f-42dc-45e1-8379-508a29aaf1f0-root {
    text-align: center;
  }


#s-3d4fa65f-42dc-45e1-8379-508a29aaf1f0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-c2825091-34d8-45d3-94e8-e747e696415d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-c2825091-34d8-45d3-94e8-e747e696415d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c2825091-34d8-45d3-94e8-e747e696415d:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-c2825091-34d8-45d3-94e8-e747e696415d-root {
    text-align: center;
  }


#s-c2825091-34d8-45d3-94e8-e747e696415d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c2825091-34d8-45d3-94e8-e747e696415d-root {
    text-align: center;
  }


#s-c2825091-34d8-45d3-94e8-e747e696415d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c2825091-34d8-45d3-94e8-e747e696415d-root {
    text-align: center;
  }


#s-c2825091-34d8-45d3-94e8-e747e696415d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c2825091-34d8-45d3-94e8-e747e696415d-root {
    text-align: center;
  }


#s-c2825091-34d8-45d3-94e8-e747e696415d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c2825091-34d8-45d3-94e8-e747e696415d-root {
    text-align: center;
  }


#s-c2825091-34d8-45d3-94e8-e747e696415d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-9fb6f7af-26a2-4f26-a5c7-52409f8b1dae {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-9fb6f7af-26a2-4f26-a5c7-52409f8b1dae:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9fb6f7af-26a2-4f26-a5c7-52409f8b1dae:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-9fb6f7af-26a2-4f26-a5c7-52409f8b1dae-root {
    text-align: center;
  }


#s-9fb6f7af-26a2-4f26-a5c7-52409f8b1dae.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9fb6f7af-26a2-4f26-a5c7-52409f8b1dae-root {
    text-align: center;
  }


#s-9fb6f7af-26a2-4f26-a5c7-52409f8b1dae.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9fb6f7af-26a2-4f26-a5c7-52409f8b1dae-root {
    text-align: center;
  }


#s-9fb6f7af-26a2-4f26-a5c7-52409f8b1dae.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9fb6f7af-26a2-4f26-a5c7-52409f8b1dae-root {
    text-align: center;
  }


#s-9fb6f7af-26a2-4f26-a5c7-52409f8b1dae.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9fb6f7af-26a2-4f26-a5c7-52409f8b1dae-root {
    text-align: center;
  }


#s-9fb6f7af-26a2-4f26-a5c7-52409f8b1dae.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-a64e14c5-2148-4d29-b35d-9e96100236fd {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-a64e14c5-2148-4d29-b35d-9e96100236fd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a64e14c5-2148-4d29-b35d-9e96100236fd:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-a64e14c5-2148-4d29-b35d-9e96100236fd-root {
    text-align: center;
  }


#s-a64e14c5-2148-4d29-b35d-9e96100236fd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a64e14c5-2148-4d29-b35d-9e96100236fd-root {
    text-align: center;
  }


#s-a64e14c5-2148-4d29-b35d-9e96100236fd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a64e14c5-2148-4d29-b35d-9e96100236fd-root {
    text-align: center;
  }


#s-a64e14c5-2148-4d29-b35d-9e96100236fd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a64e14c5-2148-4d29-b35d-9e96100236fd-root {
    text-align: center;
  }


#s-a64e14c5-2148-4d29-b35d-9e96100236fd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a64e14c5-2148-4d29-b35d-9e96100236fd-root {
    text-align: center;
  }


#s-a64e14c5-2148-4d29-b35d-9e96100236fd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-561d30be-82e4-436c-86cc-94a72795a4b7 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-561d30be-82e4-436c-86cc-94a72795a4b7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-561d30be-82e4-436c-86cc-94a72795a4b7:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-561d30be-82e4-436c-86cc-94a72795a4b7-root {
    text-align: center;
  }


#s-561d30be-82e4-436c-86cc-94a72795a4b7.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-561d30be-82e4-436c-86cc-94a72795a4b7-root {
    text-align: center;
  }


#s-561d30be-82e4-436c-86cc-94a72795a4b7.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-561d30be-82e4-436c-86cc-94a72795a4b7-root {
    text-align: center;
  }


#s-561d30be-82e4-436c-86cc-94a72795a4b7.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-561d30be-82e4-436c-86cc-94a72795a4b7-root {
    text-align: center;
  }


#s-561d30be-82e4-436c-86cc-94a72795a4b7.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-561d30be-82e4-436c-86cc-94a72795a4b7-root {
    text-align: center;
  }


#s-561d30be-82e4-436c-86cc-94a72795a4b7.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-c00caf83-6305-40a8-913c-3f985ef81ebc {
  min-height: 50px;
}








#s-c00caf83-6305-40a8-913c-3f985ef81ebc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c00caf83-6305-40a8-913c-3f985ef81ebc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-05abf780-e204-43f7-bb80-4736f4a8ab75 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-05abf780-e204-43f7-bb80-4736f4a8ab75"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-05abf780-e204-43f7-bb80-4736f4a8ab75"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-05abf780-e204-43f7-bb80-4736f4a8ab75"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-05abf780-e204-43f7-bb80-4736f4a8ab75"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-53972991-ce0c-4780-8a73-1690aa78bd96 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-53972991-ce0c-4780-8a73-1690aa78bd96 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-53972991-ce0c-4780-8a73-1690aa78bd96 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-53972991-ce0c-4780-8a73-1690aa78bd96 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-53972991-ce0c-4780-8a73-1690aa78bd96 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-53972991-ce0c-4780-8a73-1690aa78bd96 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-53972991-ce0c-4780-8a73-1690aa78bd96 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-53972991-ce0c-4780-8a73-1690aa78bd96 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-53972991-ce0c-4780-8a73-1690aa78bd96 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-53972991-ce0c-4780-8a73-1690aa78bd96 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-53972991-ce0c-4780-8a73-1690aa78bd96 img.shogun-image {
  width: 100%;
}



}
#s-db572721-4b29-4d9e-8d6a-b9bb252e841f {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-db572721-4b29-4d9e-8d6a-b9bb252e841f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-db572721-4b29-4d9e-8d6a-b9bb252e841f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-db572721-4b29-4d9e-8d6a-b9bb252e841f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-db572721-4b29-4d9e-8d6a-b9bb252e841f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-db572721-4b29-4d9e-8d6a-b9bb252e841f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-db572721-4b29-4d9e-8d6a-b9bb252e841f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-db572721-4b29-4d9e-8d6a-b9bb252e841f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-db572721-4b29-4d9e-8d6a-b9bb252e841f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-db572721-4b29-4d9e-8d6a-b9bb252e841f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-db572721-4b29-4d9e-8d6a-b9bb252e841f img.shogun-image {
  width: 100%;
}



}
#s-f9bf9b0d-8c79-4d64-8d00-c68767206d1f {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-f9bf9b0d-8c79-4d64-8d00-c68767206d1f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f9bf9b0d-8c79-4d64-8d00-c68767206d1f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f9bf9b0d-8c79-4d64-8d00-c68767206d1f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f9bf9b0d-8c79-4d64-8d00-c68767206d1f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f9bf9b0d-8c79-4d64-8d00-c68767206d1f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f9bf9b0d-8c79-4d64-8d00-c68767206d1f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f9bf9b0d-8c79-4d64-8d00-c68767206d1f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f9bf9b0d-8c79-4d64-8d00-c68767206d1f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f9bf9b0d-8c79-4d64-8d00-c68767206d1f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f9bf9b0d-8c79-4d64-8d00-c68767206d1f img.shogun-image {
  width: 100%;
}



}
#s-2e36aa6a-e38d-487b-ba0c-aecf5255cdf7 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-2e36aa6a-e38d-487b-ba0c-aecf5255cdf7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2e36aa6a-e38d-487b-ba0c-aecf5255cdf7"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-2e36aa6a-e38d-487b-ba0c-aecf5255cdf7"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-2e36aa6a-e38d-487b-ba0c-aecf5255cdf7"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-62909f28-2bad-47e3-af34-d9101b02c865 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-62909f28-2bad-47e3-af34-d9101b02c865:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-62909f28-2bad-47e3-af34-d9101b02c865:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-62909f28-2bad-47e3-af34-d9101b02c865-root {
    text-align: center;
  }


#s-62909f28-2bad-47e3-af34-d9101b02c865.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-62909f28-2bad-47e3-af34-d9101b02c865-root {
    text-align: center;
  }


#s-62909f28-2bad-47e3-af34-d9101b02c865.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-62909f28-2bad-47e3-af34-d9101b02c865-root {
    text-align: center;
  }


#s-62909f28-2bad-47e3-af34-d9101b02c865.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-62909f28-2bad-47e3-af34-d9101b02c865-root {
    text-align: center;
  }


#s-62909f28-2bad-47e3-af34-d9101b02c865.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-62909f28-2bad-47e3-af34-d9101b02c865-root {
    text-align: center;
  }


#s-62909f28-2bad-47e3-af34-d9101b02c865.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-97a51383-275c-4eb7-bdbd-060f07017095 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-97a51383-275c-4eb7-bdbd-060f07017095:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-97a51383-275c-4eb7-bdbd-060f07017095:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-97a51383-275c-4eb7-bdbd-060f07017095-root {
    text-align: center;
  }


#s-97a51383-275c-4eb7-bdbd-060f07017095.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-97a51383-275c-4eb7-bdbd-060f07017095-root {
    text-align: center;
  }


#s-97a51383-275c-4eb7-bdbd-060f07017095.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-97a51383-275c-4eb7-bdbd-060f07017095-root {
    text-align: center;
  }


#s-97a51383-275c-4eb7-bdbd-060f07017095.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-97a51383-275c-4eb7-bdbd-060f07017095-root {
    text-align: center;
  }


#s-97a51383-275c-4eb7-bdbd-060f07017095.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-97a51383-275c-4eb7-bdbd-060f07017095-root {
    text-align: center;
  }


#s-97a51383-275c-4eb7-bdbd-060f07017095.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-33b5830c-0c92-450a-8b60-70320e6be8bc {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-33b5830c-0c92-450a-8b60-70320e6be8bc:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-33b5830c-0c92-450a-8b60-70320e6be8bc:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-33b5830c-0c92-450a-8b60-70320e6be8bc-root {
    text-align: center;
  }


#s-33b5830c-0c92-450a-8b60-70320e6be8bc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-33b5830c-0c92-450a-8b60-70320e6be8bc-root {
    text-align: center;
  }


#s-33b5830c-0c92-450a-8b60-70320e6be8bc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-33b5830c-0c92-450a-8b60-70320e6be8bc-root {
    text-align: center;
  }


#s-33b5830c-0c92-450a-8b60-70320e6be8bc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-33b5830c-0c92-450a-8b60-70320e6be8bc-root {
    text-align: center;
  }


#s-33b5830c-0c92-450a-8b60-70320e6be8bc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-33b5830c-0c92-450a-8b60-70320e6be8bc-root {
    text-align: center;
  }


#s-33b5830c-0c92-450a-8b60-70320e6be8bc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-65fb1e0c-7449-4ca6-9ec0-05de488b7e7d {
  min-height: 50px;
}








#s-65fb1e0c-7449-4ca6-9ec0-05de488b7e7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-65fb1e0c-7449-4ca6-9ec0-05de488b7e7d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-abfef758-a4c2-49a9-a287-95fe579c65bb {
  margin-left: 25px;
margin-right: 25px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-abfef758-a4c2-49a9-a287-95fe579c65bb .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}



#s-81dcffcc-b7ec-44f3-b251-6c462ca0d379 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-81dcffcc-b7ec-44f3-b251-6c462ca0d379"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-81dcffcc-b7ec-44f3-b251-6c462ca0d379"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-81dcffcc-b7ec-44f3-b251-6c462ca0d379"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-81dcffcc-b7ec-44f3-b251-6c462ca0d379"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-07c7c347-6819-450a-9482-37203ace58aa {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-07c7c347-6819-450a-9482-37203ace58aa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-07c7c347-6819-450a-9482-37203ace58aa img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-07c7c347-6819-450a-9482-37203ace58aa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-07c7c347-6819-450a-9482-37203ace58aa img.shogun-image {
  width: 100%;
}



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

.shg-c#s-07c7c347-6819-450a-9482-37203ace58aa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-07c7c347-6819-450a-9482-37203ace58aa img.shogun-image {
  width: 100%;
}



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

.shg-c#s-07c7c347-6819-450a-9482-37203ace58aa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-07c7c347-6819-450a-9482-37203ace58aa img.shogun-image {
  width: 100%;
}



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

.shg-c#s-07c7c347-6819-450a-9482-37203ace58aa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-07c7c347-6819-450a-9482-37203ace58aa img.shogun-image {
  width: 100%;
}



}
#s-b560cacc-ad02-456a-b12b-d4477ba2a1a4 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-b560cacc-ad02-456a-b12b-d4477ba2a1a4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b560cacc-ad02-456a-b12b-d4477ba2a1a4 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b560cacc-ad02-456a-b12b-d4477ba2a1a4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b560cacc-ad02-456a-b12b-d4477ba2a1a4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b560cacc-ad02-456a-b12b-d4477ba2a1a4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b560cacc-ad02-456a-b12b-d4477ba2a1a4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b560cacc-ad02-456a-b12b-d4477ba2a1a4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b560cacc-ad02-456a-b12b-d4477ba2a1a4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b560cacc-ad02-456a-b12b-d4477ba2a1a4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b560cacc-ad02-456a-b12b-d4477ba2a1a4 img.shogun-image {
  width: 100%;
}



}
#s-05155431-bf37-4d87-8ff0-403b5e570c3b {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-05155431-bf37-4d87-8ff0-403b5e570c3b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05155431-bf37-4d87-8ff0-403b5e570c3b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-05155431-bf37-4d87-8ff0-403b5e570c3b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05155431-bf37-4d87-8ff0-403b5e570c3b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-05155431-bf37-4d87-8ff0-403b5e570c3b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05155431-bf37-4d87-8ff0-403b5e570c3b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-05155431-bf37-4d87-8ff0-403b5e570c3b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05155431-bf37-4d87-8ff0-403b5e570c3b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-05155431-bf37-4d87-8ff0-403b5e570c3b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-05155431-bf37-4d87-8ff0-403b5e570c3b img.shogun-image {
  width: 100%;
}



}
#s-854e07ad-d3f6-4aee-8e9c-33ccf2027a30 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-854e07ad-d3f6-4aee-8e9c-33ccf2027a30 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-854e07ad-d3f6-4aee-8e9c-33ccf2027a30 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-854e07ad-d3f6-4aee-8e9c-33ccf2027a30 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-854e07ad-d3f6-4aee-8e9c-33ccf2027a30 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-854e07ad-d3f6-4aee-8e9c-33ccf2027a30 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-854e07ad-d3f6-4aee-8e9c-33ccf2027a30 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-854e07ad-d3f6-4aee-8e9c-33ccf2027a30 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-854e07ad-d3f6-4aee-8e9c-33ccf2027a30 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-854e07ad-d3f6-4aee-8e9c-33ccf2027a30 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-854e07ad-d3f6-4aee-8e9c-33ccf2027a30 img.shogun-image {
  width: 100%;
}



}
#s-da9f8dda-b91e-4c56-9b2a-109189a5db0c {
  margin-left: 3%;
margin-right: 3%;
text-align: center;
}



.shg-c#s-da9f8dda-b91e-4c56-9b2a-109189a5db0c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-da9f8dda-b91e-4c56-9b2a-109189a5db0c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-da9f8dda-b91e-4c56-9b2a-109189a5db0c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-da9f8dda-b91e-4c56-9b2a-109189a5db0c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-da9f8dda-b91e-4c56-9b2a-109189a5db0c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-da9f8dda-b91e-4c56-9b2a-109189a5db0c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-da9f8dda-b91e-4c56-9b2a-109189a5db0c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-da9f8dda-b91e-4c56-9b2a-109189a5db0c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-da9f8dda-b91e-4c56-9b2a-109189a5db0c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-da9f8dda-b91e-4c56-9b2a-109189a5db0c img.shogun-image {
  width: 100%;
}



}
#s-84a57ed8-32ae-4fcb-87b2-7172f9fcca61 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-84a57ed8-32ae-4fcb-87b2-7172f9fcca61"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-84a57ed8-32ae-4fcb-87b2-7172f9fcca61"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-84a57ed8-32ae-4fcb-87b2-7172f9fcca61"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-84a57ed8-32ae-4fcb-87b2-7172f9fcca61"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-72ea81ec-b9a9-4a6d-a3ac-c728b5a639bb {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-72ea81ec-b9a9-4a6d-a3ac-c728b5a639bb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-72ea81ec-b9a9-4a6d-a3ac-c728b5a639bb:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-72ea81ec-b9a9-4a6d-a3ac-c728b5a639bb-root {
    text-align: center;
  }


#s-72ea81ec-b9a9-4a6d-a3ac-c728b5a639bb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-72ea81ec-b9a9-4a6d-a3ac-c728b5a639bb-root {
    text-align: center;
  }


#s-72ea81ec-b9a9-4a6d-a3ac-c728b5a639bb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-72ea81ec-b9a9-4a6d-a3ac-c728b5a639bb-root {
    text-align: center;
  }


#s-72ea81ec-b9a9-4a6d-a3ac-c728b5a639bb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-72ea81ec-b9a9-4a6d-a3ac-c728b5a639bb-root {
    text-align: center;
  }


#s-72ea81ec-b9a9-4a6d-a3ac-c728b5a639bb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-72ea81ec-b9a9-4a6d-a3ac-c728b5a639bb-root {
    text-align: center;
  }


#s-72ea81ec-b9a9-4a6d-a3ac-c728b5a639bb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-93cd3a76-d586-41f5-881e-502e0a2a22cd {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-93cd3a76-d586-41f5-881e-502e0a2a22cd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-93cd3a76-d586-41f5-881e-502e0a2a22cd:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-93cd3a76-d586-41f5-881e-502e0a2a22cd-root {
    text-align: center;
  }


#s-93cd3a76-d586-41f5-881e-502e0a2a22cd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-93cd3a76-d586-41f5-881e-502e0a2a22cd-root {
    text-align: center;
  }


#s-93cd3a76-d586-41f5-881e-502e0a2a22cd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-93cd3a76-d586-41f5-881e-502e0a2a22cd-root {
    text-align: center;
  }


#s-93cd3a76-d586-41f5-881e-502e0a2a22cd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-93cd3a76-d586-41f5-881e-502e0a2a22cd-root {
    text-align: center;
  }


#s-93cd3a76-d586-41f5-881e-502e0a2a22cd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-93cd3a76-d586-41f5-881e-502e0a2a22cd-root {
    text-align: center;
  }


#s-93cd3a76-d586-41f5-881e-502e0a2a22cd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-bcc90554-3619-4c5c-842c-b34dd29d8874 {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-bcc90554-3619-4c5c-842c-b34dd29d8874:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-bcc90554-3619-4c5c-842c-b34dd29d8874:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-bcc90554-3619-4c5c-842c-b34dd29d8874-root {
    text-align: center;
  }


#s-bcc90554-3619-4c5c-842c-b34dd29d8874.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-bcc90554-3619-4c5c-842c-b34dd29d8874-root {
    text-align: center;
  }


#s-bcc90554-3619-4c5c-842c-b34dd29d8874.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-bcc90554-3619-4c5c-842c-b34dd29d8874-root {
    text-align: center;
  }


#s-bcc90554-3619-4c5c-842c-b34dd29d8874.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-bcc90554-3619-4c5c-842c-b34dd29d8874-root {
    text-align: center;
  }


#s-bcc90554-3619-4c5c-842c-b34dd29d8874.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-bcc90554-3619-4c5c-842c-b34dd29d8874-root {
    text-align: center;
  }


#s-bcc90554-3619-4c5c-842c-b34dd29d8874.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-c9aeee5f-accf-47ad-8e35-ccaeff0aa936 {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-c9aeee5f-accf-47ad-8e35-ccaeff0aa936:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c9aeee5f-accf-47ad-8e35-ccaeff0aa936:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-c9aeee5f-accf-47ad-8e35-ccaeff0aa936-root {
    text-align: center;
  }


#s-c9aeee5f-accf-47ad-8e35-ccaeff0aa936.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c9aeee5f-accf-47ad-8e35-ccaeff0aa936-root {
    text-align: center;
  }


#s-c9aeee5f-accf-47ad-8e35-ccaeff0aa936.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c9aeee5f-accf-47ad-8e35-ccaeff0aa936-root {
    text-align: center;
  }


#s-c9aeee5f-accf-47ad-8e35-ccaeff0aa936.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c9aeee5f-accf-47ad-8e35-ccaeff0aa936-root {
    text-align: center;
  }


#s-c9aeee5f-accf-47ad-8e35-ccaeff0aa936.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c9aeee5f-accf-47ad-8e35-ccaeff0aa936-root {
    text-align: center;
  }


#s-c9aeee5f-accf-47ad-8e35-ccaeff0aa936.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-8e360472-d39d-471d-9b6f-7446dad8969d {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-8e360472-d39d-471d-9b6f-7446dad8969d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8e360472-d39d-471d-9b6f-7446dad8969d:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-8e360472-d39d-471d-9b6f-7446dad8969d-root {
    text-align: center;
  }


#s-8e360472-d39d-471d-9b6f-7446dad8969d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8e360472-d39d-471d-9b6f-7446dad8969d-root {
    text-align: center;
  }


#s-8e360472-d39d-471d-9b6f-7446dad8969d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8e360472-d39d-471d-9b6f-7446dad8969d-root {
    text-align: center;
  }


#s-8e360472-d39d-471d-9b6f-7446dad8969d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8e360472-d39d-471d-9b6f-7446dad8969d-root {
    text-align: center;
  }


#s-8e360472-d39d-471d-9b6f-7446dad8969d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8e360472-d39d-471d-9b6f-7446dad8969d-root {
    text-align: center;
  }


#s-8e360472-d39d-471d-9b6f-7446dad8969d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-ae6fbbe0-5eb2-4099-8b69-6c478b261258 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-ae6fbbe0-5eb2-4099-8b69-6c478b261258"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ae6fbbe0-5eb2-4099-8b69-6c478b261258"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-ae6fbbe0-5eb2-4099-8b69-6c478b261258"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-ae6fbbe0-5eb2-4099-8b69-6c478b261258"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-81777f18-0617-4434-9841-becbe075797a {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-81777f18-0617-4434-9841-becbe075797a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81777f18-0617-4434-9841-becbe075797a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-81777f18-0617-4434-9841-becbe075797a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81777f18-0617-4434-9841-becbe075797a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-81777f18-0617-4434-9841-becbe075797a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81777f18-0617-4434-9841-becbe075797a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-81777f18-0617-4434-9841-becbe075797a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81777f18-0617-4434-9841-becbe075797a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-81777f18-0617-4434-9841-becbe075797a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81777f18-0617-4434-9841-becbe075797a img.shogun-image {
  width: 100%;
}



}
#s-8813339f-c293-42b6-a9c7-7ae9520a0588 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-8813339f-c293-42b6-a9c7-7ae9520a0588 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8813339f-c293-42b6-a9c7-7ae9520a0588 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8813339f-c293-42b6-a9c7-7ae9520a0588 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8813339f-c293-42b6-a9c7-7ae9520a0588 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8813339f-c293-42b6-a9c7-7ae9520a0588 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8813339f-c293-42b6-a9c7-7ae9520a0588 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8813339f-c293-42b6-a9c7-7ae9520a0588 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8813339f-c293-42b6-a9c7-7ae9520a0588 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8813339f-c293-42b6-a9c7-7ae9520a0588 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8813339f-c293-42b6-a9c7-7ae9520a0588 img.shogun-image {
  width: 100%;
}



}
#s-5e84fbe8-ce5c-453f-8050-50dedf59ebbc {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-5e84fbe8-ce5c-453f-8050-50dedf59ebbc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e84fbe8-ce5c-453f-8050-50dedf59ebbc img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5e84fbe8-ce5c-453f-8050-50dedf59ebbc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e84fbe8-ce5c-453f-8050-50dedf59ebbc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5e84fbe8-ce5c-453f-8050-50dedf59ebbc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e84fbe8-ce5c-453f-8050-50dedf59ebbc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5e84fbe8-ce5c-453f-8050-50dedf59ebbc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e84fbe8-ce5c-453f-8050-50dedf59ebbc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5e84fbe8-ce5c-453f-8050-50dedf59ebbc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e84fbe8-ce5c-453f-8050-50dedf59ebbc img.shogun-image {
  width: 100%;
}



}
#s-2639109c-9da8-46b8-b1b4-274e9473cc3f {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-2639109c-9da8-46b8-b1b4-274e9473cc3f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2639109c-9da8-46b8-b1b4-274e9473cc3f"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-2639109c-9da8-46b8-b1b4-274e9473cc3f"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-2639109c-9da8-46b8-b1b4-274e9473cc3f"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-d9e7a534-0b6e-4b5d-bb13-9d76ffb869dd {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-d9e7a534-0b6e-4b5d-bb13-9d76ffb869dd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d9e7a534-0b6e-4b5d-bb13-9d76ffb869dd:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-d9e7a534-0b6e-4b5d-bb13-9d76ffb869dd-root {
    text-align: center;
  }


#s-d9e7a534-0b6e-4b5d-bb13-9d76ffb869dd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d9e7a534-0b6e-4b5d-bb13-9d76ffb869dd-root {
    text-align: center;
  }


#s-d9e7a534-0b6e-4b5d-bb13-9d76ffb869dd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d9e7a534-0b6e-4b5d-bb13-9d76ffb869dd-root {
    text-align: center;
  }


#s-d9e7a534-0b6e-4b5d-bb13-9d76ffb869dd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d9e7a534-0b6e-4b5d-bb13-9d76ffb869dd-root {
    text-align: center;
  }


#s-d9e7a534-0b6e-4b5d-bb13-9d76ffb869dd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d9e7a534-0b6e-4b5d-bb13-9d76ffb869dd-root {
    text-align: center;
  }


#s-d9e7a534-0b6e-4b5d-bb13-9d76ffb869dd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-2afb7477-9014-4f3b-aa4b-1db89737bece {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-2afb7477-9014-4f3b-aa4b-1db89737bece:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2afb7477-9014-4f3b-aa4b-1db89737bece:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-2afb7477-9014-4f3b-aa4b-1db89737bece-root {
    text-align: center;
  }


#s-2afb7477-9014-4f3b-aa4b-1db89737bece.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2afb7477-9014-4f3b-aa4b-1db89737bece-root {
    text-align: center;
  }


#s-2afb7477-9014-4f3b-aa4b-1db89737bece.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2afb7477-9014-4f3b-aa4b-1db89737bece-root {
    text-align: center;
  }


#s-2afb7477-9014-4f3b-aa4b-1db89737bece.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2afb7477-9014-4f3b-aa4b-1db89737bece-root {
    text-align: center;
  }


#s-2afb7477-9014-4f3b-aa4b-1db89737bece.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2afb7477-9014-4f3b-aa4b-1db89737bece-root {
    text-align: center;
  }


#s-2afb7477-9014-4f3b-aa4b-1db89737bece.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-2d90a781-47d6-4735-b515-9492b025d743 {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-2d90a781-47d6-4735-b515-9492b025d743:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2d90a781-47d6-4735-b515-9492b025d743:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-2d90a781-47d6-4735-b515-9492b025d743-root {
    text-align: center;
  }


#s-2d90a781-47d6-4735-b515-9492b025d743.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2d90a781-47d6-4735-b515-9492b025d743-root {
    text-align: center;
  }


#s-2d90a781-47d6-4735-b515-9492b025d743.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2d90a781-47d6-4735-b515-9492b025d743-root {
    text-align: center;
  }


#s-2d90a781-47d6-4735-b515-9492b025d743.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2d90a781-47d6-4735-b515-9492b025d743-root {
    text-align: center;
  }


#s-2d90a781-47d6-4735-b515-9492b025d743.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2d90a781-47d6-4735-b515-9492b025d743-root {
    text-align: center;
  }


#s-2d90a781-47d6-4735-b515-9492b025d743.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-503bf47f-432c-40e3-a9e1-2266f3e1ce4f {
  margin-left: 25px;
margin-right: 25px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-503bf47f-432c-40e3-a9e1-2266f3e1ce4f .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}



#s-7d26277b-2a19-4dfb-b9a0-d08aead1f4ab {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-7d26277b-2a19-4dfb-b9a0-d08aead1f4ab"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-7d26277b-2a19-4dfb-b9a0-d08aead1f4ab"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-7d26277b-2a19-4dfb-b9a0-d08aead1f4ab"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-7d26277b-2a19-4dfb-b9a0-d08aead1f4ab"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-e935aa3b-5826-446b-984d-d79d2682aad1 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-e935aa3b-5826-446b-984d-d79d2682aad1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e935aa3b-5826-446b-984d-d79d2682aad1 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e935aa3b-5826-446b-984d-d79d2682aad1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e935aa3b-5826-446b-984d-d79d2682aad1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e935aa3b-5826-446b-984d-d79d2682aad1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e935aa3b-5826-446b-984d-d79d2682aad1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e935aa3b-5826-446b-984d-d79d2682aad1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e935aa3b-5826-446b-984d-d79d2682aad1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e935aa3b-5826-446b-984d-d79d2682aad1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e935aa3b-5826-446b-984d-d79d2682aad1 img.shogun-image {
  width: 100%;
}



}
#s-ea8eeb97-6ecb-4cff-8859-cd5884f82e4a {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-ea8eeb97-6ecb-4cff-8859-cd5884f82e4a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea8eeb97-6ecb-4cff-8859-cd5884f82e4a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ea8eeb97-6ecb-4cff-8859-cd5884f82e4a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea8eeb97-6ecb-4cff-8859-cd5884f82e4a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ea8eeb97-6ecb-4cff-8859-cd5884f82e4a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea8eeb97-6ecb-4cff-8859-cd5884f82e4a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ea8eeb97-6ecb-4cff-8859-cd5884f82e4a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea8eeb97-6ecb-4cff-8859-cd5884f82e4a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ea8eeb97-6ecb-4cff-8859-cd5884f82e4a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea8eeb97-6ecb-4cff-8859-cd5884f82e4a img.shogun-image {
  width: 100%;
}



}
#s-0260e770-d0b7-406f-8912-770c11e7c611 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-0260e770-d0b7-406f-8912-770c11e7c611 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0260e770-d0b7-406f-8912-770c11e7c611 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0260e770-d0b7-406f-8912-770c11e7c611 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0260e770-d0b7-406f-8912-770c11e7c611 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0260e770-d0b7-406f-8912-770c11e7c611 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0260e770-d0b7-406f-8912-770c11e7c611 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0260e770-d0b7-406f-8912-770c11e7c611 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0260e770-d0b7-406f-8912-770c11e7c611 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0260e770-d0b7-406f-8912-770c11e7c611 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0260e770-d0b7-406f-8912-770c11e7c611 img.shogun-image {
  width: 100%;
}



}
#s-9c7e56ff-b402-4fd2-99b3-d14c2589ff77 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-9c7e56ff-b402-4fd2-99b3-d14c2589ff77"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-9c7e56ff-b402-4fd2-99b3-d14c2589ff77"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-9c7e56ff-b402-4fd2-99b3-d14c2589ff77"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-9c7e56ff-b402-4fd2-99b3-d14c2589ff77"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-b1d548b7-2181-46a4-9ee4-2ed78a5cc789 {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-b1d548b7-2181-46a4-9ee4-2ed78a5cc789:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b1d548b7-2181-46a4-9ee4-2ed78a5cc789:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-b1d548b7-2181-46a4-9ee4-2ed78a5cc789-root {
    text-align: center;
  }


#s-b1d548b7-2181-46a4-9ee4-2ed78a5cc789.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b1d548b7-2181-46a4-9ee4-2ed78a5cc789-root {
    text-align: center;
  }


#s-b1d548b7-2181-46a4-9ee4-2ed78a5cc789.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b1d548b7-2181-46a4-9ee4-2ed78a5cc789-root {
    text-align: center;
  }


#s-b1d548b7-2181-46a4-9ee4-2ed78a5cc789.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b1d548b7-2181-46a4-9ee4-2ed78a5cc789-root {
    text-align: center;
  }


#s-b1d548b7-2181-46a4-9ee4-2ed78a5cc789.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b1d548b7-2181-46a4-9ee4-2ed78a5cc789-root {
    text-align: center;
  }


#s-b1d548b7-2181-46a4-9ee4-2ed78a5cc789.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-e2dd58a9-f026-4623-8b22-58776684fc56 {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-e2dd58a9-f026-4623-8b22-58776684fc56:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e2dd58a9-f026-4623-8b22-58776684fc56:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-e2dd58a9-f026-4623-8b22-58776684fc56-root {
    text-align: center;
  }


#s-e2dd58a9-f026-4623-8b22-58776684fc56.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e2dd58a9-f026-4623-8b22-58776684fc56-root {
    text-align: center;
  }


#s-e2dd58a9-f026-4623-8b22-58776684fc56.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e2dd58a9-f026-4623-8b22-58776684fc56-root {
    text-align: center;
  }


#s-e2dd58a9-f026-4623-8b22-58776684fc56.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e2dd58a9-f026-4623-8b22-58776684fc56-root {
    text-align: center;
  }


#s-e2dd58a9-f026-4623-8b22-58776684fc56.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e2dd58a9-f026-4623-8b22-58776684fc56-root {
    text-align: center;
  }


#s-e2dd58a9-f026-4623-8b22-58776684fc56.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-0ea53533-e162-4d33-aae1-8af0c8118381 {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-0ea53533-e162-4d33-aae1-8af0c8118381:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0ea53533-e162-4d33-aae1-8af0c8118381:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-0ea53533-e162-4d33-aae1-8af0c8118381-root {
    text-align: center;
  }


#s-0ea53533-e162-4d33-aae1-8af0c8118381.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0ea53533-e162-4d33-aae1-8af0c8118381-root {
    text-align: center;
  }


#s-0ea53533-e162-4d33-aae1-8af0c8118381.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0ea53533-e162-4d33-aae1-8af0c8118381-root {
    text-align: center;
  }


#s-0ea53533-e162-4d33-aae1-8af0c8118381.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0ea53533-e162-4d33-aae1-8af0c8118381-root {
    text-align: center;
  }


#s-0ea53533-e162-4d33-aae1-8af0c8118381.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0ea53533-e162-4d33-aae1-8af0c8118381-root {
    text-align: center;
  }


#s-0ea53533-e162-4d33-aae1-8af0c8118381.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-75585547-7724-4caf-88a0-1ec7ae6deeff {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-75585547-7724-4caf-88a0-1ec7ae6deeff"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-75585547-7724-4caf-88a0-1ec7ae6deeff"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-75585547-7724-4caf-88a0-1ec7ae6deeff"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-75585547-7724-4caf-88a0-1ec7ae6deeff"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-5265ab4b-aac9-404a-ad75-76bffc04f1c1 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-5265ab4b-aac9-404a-ad75-76bffc04f1c1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5265ab4b-aac9-404a-ad75-76bffc04f1c1 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5265ab4b-aac9-404a-ad75-76bffc04f1c1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5265ab4b-aac9-404a-ad75-76bffc04f1c1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5265ab4b-aac9-404a-ad75-76bffc04f1c1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5265ab4b-aac9-404a-ad75-76bffc04f1c1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5265ab4b-aac9-404a-ad75-76bffc04f1c1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5265ab4b-aac9-404a-ad75-76bffc04f1c1 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5265ab4b-aac9-404a-ad75-76bffc04f1c1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5265ab4b-aac9-404a-ad75-76bffc04f1c1 img.shogun-image {
  width: 100%;
}



}
#s-d1d8d169-4498-4a50-a682-bd45d1dcd247 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-d1d8d169-4498-4a50-a682-bd45d1dcd247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d1d8d169-4498-4a50-a682-bd45d1dcd247 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d1d8d169-4498-4a50-a682-bd45d1dcd247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d1d8d169-4498-4a50-a682-bd45d1dcd247 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d1d8d169-4498-4a50-a682-bd45d1dcd247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d1d8d169-4498-4a50-a682-bd45d1dcd247 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d1d8d169-4498-4a50-a682-bd45d1dcd247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d1d8d169-4498-4a50-a682-bd45d1dcd247 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d1d8d169-4498-4a50-a682-bd45d1dcd247 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d1d8d169-4498-4a50-a682-bd45d1dcd247 img.shogun-image {
  width: 100%;
}



}
#s-e961e7d3-8578-4039-8c9b-18cb95f3894e {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-e961e7d3-8578-4039-8c9b-18cb95f3894e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e961e7d3-8578-4039-8c9b-18cb95f3894e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e961e7d3-8578-4039-8c9b-18cb95f3894e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e961e7d3-8578-4039-8c9b-18cb95f3894e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e961e7d3-8578-4039-8c9b-18cb95f3894e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e961e7d3-8578-4039-8c9b-18cb95f3894e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e961e7d3-8578-4039-8c9b-18cb95f3894e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e961e7d3-8578-4039-8c9b-18cb95f3894e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e961e7d3-8578-4039-8c9b-18cb95f3894e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e961e7d3-8578-4039-8c9b-18cb95f3894e img.shogun-image {
  width: 100%;
}



}
#s-3bb01160-c2c8-4a3b-b2a2-038ce3ba71f4 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-3bb01160-c2c8-4a3b-b2a2-038ce3ba71f4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bb01160-c2c8-4a3b-b2a2-038ce3ba71f4 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3bb01160-c2c8-4a3b-b2a2-038ce3ba71f4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bb01160-c2c8-4a3b-b2a2-038ce3ba71f4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3bb01160-c2c8-4a3b-b2a2-038ce3ba71f4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bb01160-c2c8-4a3b-b2a2-038ce3ba71f4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3bb01160-c2c8-4a3b-b2a2-038ce3ba71f4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bb01160-c2c8-4a3b-b2a2-038ce3ba71f4 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3bb01160-c2c8-4a3b-b2a2-038ce3ba71f4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bb01160-c2c8-4a3b-b2a2-038ce3ba71f4 img.shogun-image {
  width: 100%;
}



}
#s-9e9c82ce-df7e-41b5-b1d7-97eef01e5a41 {
  margin-left: 3%;
margin-right: 3%;
text-align: center;
}



.shg-c#s-9e9c82ce-df7e-41b5-b1d7-97eef01e5a41 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e9c82ce-df7e-41b5-b1d7-97eef01e5a41 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9e9c82ce-df7e-41b5-b1d7-97eef01e5a41 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e9c82ce-df7e-41b5-b1d7-97eef01e5a41 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9e9c82ce-df7e-41b5-b1d7-97eef01e5a41 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e9c82ce-df7e-41b5-b1d7-97eef01e5a41 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9e9c82ce-df7e-41b5-b1d7-97eef01e5a41 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e9c82ce-df7e-41b5-b1d7-97eef01e5a41 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9e9c82ce-df7e-41b5-b1d7-97eef01e5a41 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e9c82ce-df7e-41b5-b1d7-97eef01e5a41 img.shogun-image {
  width: 100%;
}



}
#s-b4fa2de4-5835-4983-86a7-d40416fa2f8c {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-b4fa2de4-5835-4983-86a7-d40416fa2f8c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b4fa2de4-5835-4983-86a7-d40416fa2f8c"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-b4fa2de4-5835-4983-86a7-d40416fa2f8c"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-b4fa2de4-5835-4983-86a7-d40416fa2f8c"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-1da11268-d7fb-4780-83e5-91635b651f10 {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-1da11268-d7fb-4780-83e5-91635b651f10:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1da11268-d7fb-4780-83e5-91635b651f10:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-1da11268-d7fb-4780-83e5-91635b651f10-root {
    text-align: center;
  }


#s-1da11268-d7fb-4780-83e5-91635b651f10.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1da11268-d7fb-4780-83e5-91635b651f10-root {
    text-align: center;
  }


#s-1da11268-d7fb-4780-83e5-91635b651f10.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1da11268-d7fb-4780-83e5-91635b651f10-root {
    text-align: center;
  }


#s-1da11268-d7fb-4780-83e5-91635b651f10.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1da11268-d7fb-4780-83e5-91635b651f10-root {
    text-align: center;
  }


#s-1da11268-d7fb-4780-83e5-91635b651f10.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1da11268-d7fb-4780-83e5-91635b651f10-root {
    text-align: center;
  }


#s-1da11268-d7fb-4780-83e5-91635b651f10.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-cf750ed7-3b67-4bd7-822c-8d1d0427f392 {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-cf750ed7-3b67-4bd7-822c-8d1d0427f392:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-cf750ed7-3b67-4bd7-822c-8d1d0427f392:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-cf750ed7-3b67-4bd7-822c-8d1d0427f392-root {
    text-align: center;
  }


#s-cf750ed7-3b67-4bd7-822c-8d1d0427f392.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-cf750ed7-3b67-4bd7-822c-8d1d0427f392-root {
    text-align: center;
  }


#s-cf750ed7-3b67-4bd7-822c-8d1d0427f392.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cf750ed7-3b67-4bd7-822c-8d1d0427f392-root {
    text-align: center;
  }


#s-cf750ed7-3b67-4bd7-822c-8d1d0427f392.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cf750ed7-3b67-4bd7-822c-8d1d0427f392-root {
    text-align: center;
  }


#s-cf750ed7-3b67-4bd7-822c-8d1d0427f392.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-cf750ed7-3b67-4bd7-822c-8d1d0427f392-root {
    text-align: center;
  }


#s-cf750ed7-3b67-4bd7-822c-8d1d0427f392.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-8491ad13-8e0a-4006-a5d2-d20103acc853 {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-8491ad13-8e0a-4006-a5d2-d20103acc853:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8491ad13-8e0a-4006-a5d2-d20103acc853:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-8491ad13-8e0a-4006-a5d2-d20103acc853-root {
    text-align: center;
  }


#s-8491ad13-8e0a-4006-a5d2-d20103acc853.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8491ad13-8e0a-4006-a5d2-d20103acc853-root {
    text-align: center;
  }


#s-8491ad13-8e0a-4006-a5d2-d20103acc853.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8491ad13-8e0a-4006-a5d2-d20103acc853-root {
    text-align: center;
  }


#s-8491ad13-8e0a-4006-a5d2-d20103acc853.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8491ad13-8e0a-4006-a5d2-d20103acc853-root {
    text-align: center;
  }


#s-8491ad13-8e0a-4006-a5d2-d20103acc853.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8491ad13-8e0a-4006-a5d2-d20103acc853-root {
    text-align: center;
  }


#s-8491ad13-8e0a-4006-a5d2-d20103acc853.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-f2686189-60fe-4c35-a52a-bb5f76989eec {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f2686189-60fe-4c35-a52a-bb5f76989eec:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f2686189-60fe-4c35-a52a-bb5f76989eec:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-f2686189-60fe-4c35-a52a-bb5f76989eec-root {
    text-align: center;
  }


#s-f2686189-60fe-4c35-a52a-bb5f76989eec.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f2686189-60fe-4c35-a52a-bb5f76989eec-root {
    text-align: center;
  }


#s-f2686189-60fe-4c35-a52a-bb5f76989eec.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f2686189-60fe-4c35-a52a-bb5f76989eec-root {
    text-align: center;
  }


#s-f2686189-60fe-4c35-a52a-bb5f76989eec.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f2686189-60fe-4c35-a52a-bb5f76989eec-root {
    text-align: center;
  }


#s-f2686189-60fe-4c35-a52a-bb5f76989eec.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f2686189-60fe-4c35-a52a-bb5f76989eec-root {
    text-align: center;
  }


#s-f2686189-60fe-4c35-a52a-bb5f76989eec.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-a65658bf-c00f-414d-a614-53659c3607c4 {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-a65658bf-c00f-414d-a614-53659c3607c4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a65658bf-c00f-414d-a614-53659c3607c4:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-a65658bf-c00f-414d-a614-53659c3607c4-root {
    text-align: center;
  }


#s-a65658bf-c00f-414d-a614-53659c3607c4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a65658bf-c00f-414d-a614-53659c3607c4-root {
    text-align: center;
  }


#s-a65658bf-c00f-414d-a614-53659c3607c4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a65658bf-c00f-414d-a614-53659c3607c4-root {
    text-align: center;
  }


#s-a65658bf-c00f-414d-a614-53659c3607c4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a65658bf-c00f-414d-a614-53659c3607c4-root {
    text-align: center;
  }


#s-a65658bf-c00f-414d-a614-53659c3607c4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a65658bf-c00f-414d-a614-53659c3607c4-root {
    text-align: center;
  }


#s-a65658bf-c00f-414d-a614-53659c3607c4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-0710fad7-c9f2-481b-bad7-a9453e83c824 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-0710fad7-c9f2-481b-bad7-a9453e83c824"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-0710fad7-c9f2-481b-bad7-a9453e83c824"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-0710fad7-c9f2-481b-bad7-a9453e83c824"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-0710fad7-c9f2-481b-bad7-a9453e83c824"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-43102ab6-668a-4b78-9bdf-52c69698dfd8 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-43102ab6-668a-4b78-9bdf-52c69698dfd8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-43102ab6-668a-4b78-9bdf-52c69698dfd8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-43102ab6-668a-4b78-9bdf-52c69698dfd8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-43102ab6-668a-4b78-9bdf-52c69698dfd8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-43102ab6-668a-4b78-9bdf-52c69698dfd8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-43102ab6-668a-4b78-9bdf-52c69698dfd8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-43102ab6-668a-4b78-9bdf-52c69698dfd8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-43102ab6-668a-4b78-9bdf-52c69698dfd8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-43102ab6-668a-4b78-9bdf-52c69698dfd8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-43102ab6-668a-4b78-9bdf-52c69698dfd8 img.shogun-image {
  width: 100%;
}



}
#s-a6d3c3f7-3ce5-4f64-8d03-cd79b36370a9 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}



.shg-c#s-a6d3c3f7-3ce5-4f64-8d03-cd79b36370a9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a6d3c3f7-3ce5-4f64-8d03-cd79b36370a9 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a6d3c3f7-3ce5-4f64-8d03-cd79b36370a9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a6d3c3f7-3ce5-4f64-8d03-cd79b36370a9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a6d3c3f7-3ce5-4f64-8d03-cd79b36370a9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a6d3c3f7-3ce5-4f64-8d03-cd79b36370a9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a6d3c3f7-3ce5-4f64-8d03-cd79b36370a9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a6d3c3f7-3ce5-4f64-8d03-cd79b36370a9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a6d3c3f7-3ce5-4f64-8d03-cd79b36370a9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a6d3c3f7-3ce5-4f64-8d03-cd79b36370a9 img.shogun-image {
  width: 100%;
}



}
#s-8019ad99-ddd0-4c45-af3e-d6ec8a1ef775 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-8019ad99-ddd0-4c45-af3e-d6ec8a1ef775"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-8019ad99-ddd0-4c45-af3e-d6ec8a1ef775"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-8019ad99-ddd0-4c45-af3e-d6ec8a1ef775"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-8019ad99-ddd0-4c45-af3e-d6ec8a1ef775"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-240d2f45-05cf-4374-a727-ccf4b1f6f5fc {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-240d2f45-05cf-4374-a727-ccf4b1f6f5fc:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-240d2f45-05cf-4374-a727-ccf4b1f6f5fc:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-240d2f45-05cf-4374-a727-ccf4b1f6f5fc-root {
    text-align: center;
  }


#s-240d2f45-05cf-4374-a727-ccf4b1f6f5fc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-240d2f45-05cf-4374-a727-ccf4b1f6f5fc-root {
    text-align: center;
  }


#s-240d2f45-05cf-4374-a727-ccf4b1f6f5fc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-240d2f45-05cf-4374-a727-ccf4b1f6f5fc-root {
    text-align: center;
  }


#s-240d2f45-05cf-4374-a727-ccf4b1f6f5fc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-240d2f45-05cf-4374-a727-ccf4b1f6f5fc-root {
    text-align: center;
  }


#s-240d2f45-05cf-4374-a727-ccf4b1f6f5fc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-240d2f45-05cf-4374-a727-ccf4b1f6f5fc-root {
    text-align: center;
  }


#s-240d2f45-05cf-4374-a727-ccf4b1f6f5fc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
#s-01912c45-91d1-404b-bd83-db36aaa70d4a {
  box-shadow:1px 1px 1px 1px rgba(231, 231, 231, 1);
margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(29, 153, 242, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-01912c45-91d1-404b-bd83-db36aaa70d4a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-01912c45-91d1-404b-bd83-db36aaa70d4a:active {background-color: rgba(29, 153, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-01912c45-91d1-404b-bd83-db36aaa70d4a-root {
    text-align: center;
  }


#s-01912c45-91d1-404b-bd83-db36aaa70d4a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-01912c45-91d1-404b-bd83-db36aaa70d4a-root {
    text-align: center;
  }


#s-01912c45-91d1-404b-bd83-db36aaa70d4a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-01912c45-91d1-404b-bd83-db36aaa70d4a-root {
    text-align: center;
  }


#s-01912c45-91d1-404b-bd83-db36aaa70d4a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-01912c45-91d1-404b-bd83-db36aaa70d4a-root {
    text-align: center;
  }


#s-01912c45-91d1-404b-bd83-db36aaa70d4a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-01912c45-91d1-404b-bd83-db36aaa70d4a-root {
    text-align: center;
  }


#s-01912c45-91d1-404b-bd83-db36aaa70d4a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Red Hat Display;
  display:  inline-block ;
}
}
/*
  $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}
