.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-d51babd5-c9c9-4aad-b350-a5991244327a {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}








#s-d51babd5-c9c9-4aad-b350-a5991244327a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d51babd5-c9c9-4aad-b350-a5991244327a.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-e7ed8fa2-f29c-4376-abf3-bbed8cead766 {
  min-height: 50px;
}

@media (min-width: 0px) {
[id="s-e7ed8fa2-f29c-4376-abf3-bbed8cead766"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e7ed8fa2-f29c-4376-abf3-bbed8cead766"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e7ed8fa2-f29c-4376-abf3-bbed8cead766"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e7ed8fa2-f29c-4376-abf3-bbed8cead766"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e7ed8fa2-f29c-4376-abf3-bbed8cead766"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e7ed8fa2-f29c-4376-abf3-bbed8cead766"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e7ed8fa2-f29c-4376-abf3-bbed8cead766"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content-bottom {
  align-items: flex-end;
}
#s-d22e6da3-3f28-4b5c-88bc-9a5e053512c3 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(215, 213, 223, 1);
border-radius: 0px;
text-align: left;
}







  #s-d22e6da3-3f28-4b5c-88bc-9a5e053512c3 img.shogun-image {
    

    
    
    
  }


#s-d22e6da3-3f28-4b5c-88bc-9a5e053512c3 .shogun-image-content {
  
    align-items: center;
  
}

#s-8be1623d-b9b6-4430-a54c-ce903463a0d5 {
  min-height: 50px;
}








#s-8be1623d-b9b6-4430-a54c-ce903463a0d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8be1623d-b9b6-4430-a54c-ce903463a0d5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3c08de08-ab91-4131-98e5-c9adba48598c {
  border-style: solid;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(211, 210, 210, 1);
border-style: solid;
min-height: 40px;
}








#s-3c08de08-ab91-4131-98e5-c9adba48598c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c08de08-ab91-4131-98e5-c9adba48598c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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.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-05bfccab-3ba9-417b-859c-b01e0675b13d {
  border-style: solid;
padding-top: 10px;
padding-left: 2%;
padding-bottom: 10px;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 0px;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
background-position: left undefined;
}
#s-05bfccab-3ba9-417b-859c-b01e0675b13d:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(223, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-05bfccab-3ba9-417b-859c-b01e0675b13d:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(223, 0, 0, 1) !important;}

  #s-05bfccab-3ba9-417b-859c-b01e0675b13d-btn-wrapper {
    text-align: left;
  }


#s-05bfccab-3ba9-417b-859c-b01e0675b13d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Source Sans Pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-05bfccab-3ba9-417b-859c-b01e0675b13d-btn-wrapper {
    text-align: left;
  }


#s-05bfccab-3ba9-417b-859c-b01e0675b13d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-05bfccab-3ba9-417b-859c-b01e0675b13d-btn-wrapper {
    text-align: left;
  }


#s-05bfccab-3ba9-417b-859c-b01e0675b13d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-05bfccab-3ba9-417b-859c-b01e0675b13d-btn-wrapper {
    text-align: left;
  }


#s-05bfccab-3ba9-417b-859c-b01e0675b13d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-05bfccab-3ba9-417b-859c-b01e0675b13d-btn-wrapper {
    text-align: left;
  }


#s-05bfccab-3ba9-417b-859c-b01e0675b13d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Source Sans Pro;
  display:  block ;
}
}
#s-54574f10-5c23-4866-8471-b604a16b3a2f {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(211, 210, 210, 1);
border-style: solid;
min-height: 40px;
}








#s-54574f10-5c23-4866-8471-b604a16b3a2f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-54574f10-5c23-4866-8471-b604a16b3a2f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5a911318-1795-46cb-93d2-7aa9d10930dd {
  border-style: solid;
padding-top: 10px;
padding-left: 2%;
padding-bottom: 10px;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 0px;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
background-position: left undefined;
}
#s-5a911318-1795-46cb-93d2-7aa9d10930dd:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(223, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-5a911318-1795-46cb-93d2-7aa9d10930dd:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(223, 0, 0, 1) !important;}

  #s-5a911318-1795-46cb-93d2-7aa9d10930dd-btn-wrapper {
    text-align: left;
  }


#s-5a911318-1795-46cb-93d2-7aa9d10930dd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Source Sans Pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-5a911318-1795-46cb-93d2-7aa9d10930dd-btn-wrapper {
    text-align: left;
  }


#s-5a911318-1795-46cb-93d2-7aa9d10930dd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5a911318-1795-46cb-93d2-7aa9d10930dd-btn-wrapper {
    text-align: left;
  }


#s-5a911318-1795-46cb-93d2-7aa9d10930dd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5a911318-1795-46cb-93d2-7aa9d10930dd-btn-wrapper {
    text-align: left;
  }


#s-5a911318-1795-46cb-93d2-7aa9d10930dd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-5a911318-1795-46cb-93d2-7aa9d10930dd-btn-wrapper {
    text-align: left;
  }


#s-5a911318-1795-46cb-93d2-7aa9d10930dd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Source Sans Pro;
  display:  block ;
}
}
#s-ede0b460-25c1-4eb3-8433-b92a4fadab02 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(211, 210, 210, 1);
border-style: solid;
min-height: 40px;
}








#s-ede0b460-25c1-4eb3-8433-b92a4fadab02 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ede0b460-25c1-4eb3-8433-b92a4fadab02.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c11c626a-9183-4bd3-9979-c3e64f7578e5 {
  border-style: solid;
padding-top: 10px;
padding-left: 2%;
padding-bottom: 10px;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 0px;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
background-position: left undefined;
}
#s-c11c626a-9183-4bd3-9979-c3e64f7578e5:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(223, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-c11c626a-9183-4bd3-9979-c3e64f7578e5:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(223, 0, 0, 1) !important;}

  #s-c11c626a-9183-4bd3-9979-c3e64f7578e5-btn-wrapper {
    text-align: left;
  }


#s-c11c626a-9183-4bd3-9979-c3e64f7578e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Source Sans Pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-c11c626a-9183-4bd3-9979-c3e64f7578e5-btn-wrapper {
    text-align: left;
  }


#s-c11c626a-9183-4bd3-9979-c3e64f7578e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c11c626a-9183-4bd3-9979-c3e64f7578e5-btn-wrapper {
    text-align: left;
  }


#s-c11c626a-9183-4bd3-9979-c3e64f7578e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c11c626a-9183-4bd3-9979-c3e64f7578e5-btn-wrapper {
    text-align: left;
  }


#s-c11c626a-9183-4bd3-9979-c3e64f7578e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-c11c626a-9183-4bd3-9979-c3e64f7578e5-btn-wrapper {
    text-align: left;
  }


#s-c11c626a-9183-4bd3-9979-c3e64f7578e5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  font-family: Source Sans Pro;
  display:  block ;
}
}
@media (min-width: 0px) {
[id="s-cc51b993-00fd-480c-9160-ca81af161bb4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc51b993-00fd-480c-9160-ca81af161bb4"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-cc51b993-00fd-480c-9160-ca81af161bb4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-cc51b993-00fd-480c-9160-ca81af161bb4"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-cc51b993-00fd-480c-9160-ca81af161bb4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc51b993-00fd-480c-9160-ca81af161bb4"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-cc51b993-00fd-480c-9160-ca81af161bb4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

}

#s-8e0c150a-6181-4416-9b78-978abf2ba683 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(215, 213, 223, 1);
border-radius: 0px;
text-align: center;
}







  #s-8e0c150a-6181-4416-9b78-978abf2ba683 img.shogun-image {
    

    
    
    
  }


#s-8e0c150a-6181-4416-9b78-978abf2ba683 .shogun-image-content {
  
    align-items: center;
  
}

#s-591473ef-b5ad-4680-8df1-c8d3894ae779 {
  min-height: 50px;
}








#s-591473ef-b5ad-4680-8df1-c8d3894ae779 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-591473ef-b5ad-4680-8df1-c8d3894ae779.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-0eae1d19-03a2-4fd6-a235-033366c7902d {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-0eae1d19-03a2-4fd6-a235-033366c7902d .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-0eae1d19-03a2-4fd6-a235-033366c7902d .shg-sld-nav-button.shg-sld-left,
#s-0eae1d19-03a2-4fd6-a235-033366c7902d .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

.shg-align-container {
  box-sizing: border-box;
}

.shg-image-content-wrapper {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-imageV2-content {
  text-align: initial;
}

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

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

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

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

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

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

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

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

#s-46dde545-a5c1-4cef-88b1-67aed4ead8d9 {
  text-align: center;
}







  img.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shogun-image {
    
    
  }


.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shg-align-container {
  text-align: center
}

.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shogun-image {
    
    
  }


.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shg-align-container {
  text-align: center
}

.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shogun-image {
    
    
  }


.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shg-align-container {
  text-align: center
}

.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shogun-image {
    
    
  }


.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shg-align-container {
  text-align: center
}

.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shogun-image {
    
    
  }


.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shg-align-container {
  text-align: center
}

.s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46dde545-a5c1-4cef-88b1-67aed4ead8d9.shogun-image {
  box-sizing: border-box;
}


}
#s-a1d8d710-8170-4ba7-a837-f11688f62507 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(215, 213, 223, 1);
border-radius: 0px;
text-align: center;
}







  #s-a1d8d710-8170-4ba7-a837-f11688f62507 img.shogun-image {
    

    
    
    
  }


#s-a1d8d710-8170-4ba7-a837-f11688f62507 .shogun-image-content {
  
    align-items: center;
  
}

#s-f29676cd-7416-4e9a-8814-76a2355f4609 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(215, 213, 223, 1);
border-radius: 0px;
text-align: center;
}







  #s-f29676cd-7416-4e9a-8814-76a2355f4609 img.shogun-image {
    

    
    
    
  }


#s-f29676cd-7416-4e9a-8814-76a2355f4609 .shogun-image-content {
  
    align-items: center;
  
}

#s-0333fd3b-1c9a-42f1-8736-a3dc26db5e0c {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(215, 213, 223, 1);
border-radius: 0px;
text-align: center;
}







  #s-0333fd3b-1c9a-42f1-8736-a3dc26db5e0c img.shogun-image {
    

    
    
    
  }


#s-0333fd3b-1c9a-42f1-8736-a3dc26db5e0c .shogun-image-content {
  
    align-items: center;
  
}

#s-b4a04f8c-9fb2-48ca-859d-fbc032404263 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(215, 213, 223, 1);
border-radius: 0px;
text-align: center;
}







  #s-b4a04f8c-9fb2-48ca-859d-fbc032404263 img.shogun-image {
    

    
    
    
  }


#s-b4a04f8c-9fb2-48ca-859d-fbc032404263 .shogun-image-content {
  
    align-items: center;
  
}

#s-df3bfce9-32bb-4ce5-b5fd-0152eae65f3f {
  min-height: 50px;
}








#s-df3bfce9-32bb-4ce5-b5fd-0152eae65f3f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-df3bfce9-32bb-4ce5-b5fd-0152eae65f3f.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: #000;
  font-family: ;
  text-transform: none;
  font-weight: normal;
  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-75eb0d05-ad31-436c-a3d1-0f4f4ea695ba {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-75eb0d05-ad31-436c-a3d1-0f4f4ea695ba .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Source Sans Pro";
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-6d06c516-258e-4d16-a9d1-3259a145d7fe {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-bc5404f5-e7c3-4ca5-b743-77a3c27e5165 {
  min-height: 50px;
}








#s-bc5404f5-e7c3-4ca5-b743-77a3c27e5165 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bc5404f5-e7c3-4ca5-b743-77a3c27e5165.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-20428784-6f64-4486-b16c-802edda18dc7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-20428784-6f64-4486-b16c-802edda18dc7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Source Sans Pro";
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



@media (min-width: 0px) {
[id="s-ee8bf6ea-4947-4469-bce8-d834e6c3fdf8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ee8bf6ea-4947-4469-bce8-d834e6c3fdf8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ee8bf6ea-4947-4469-bce8-d834e6c3fdf8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ee8bf6ea-4947-4469-bce8-d834e6c3fdf8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-0d45af69-e2cb-4aaf-8ee0-6cf07cec911e {
  border-style: solid;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
}








#s-0d45af69-e2cb-4aaf-8ee0-6cf07cec911e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0d45af69-e2cb-4aaf-8ee0-6cf07cec911e.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-8bd3586b-6762-4681-8216-a637afcee4de {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(215, 213, 223, 1);
border-radius: 0px;
text-align: center;
}







  #s-8bd3586b-6762-4681-8216-a637afcee4de img.shogun-image {
    

    
    
    
  }


#s-8bd3586b-6762-4681-8216-a637afcee4de .shogun-image-content {
  
    align-items: center;
  
}

#s-4ccd9a05-956b-4762-8446-2b636c9f86b1 {
  margin-left: 5%;
margin-right: 5%;
min-height: 200px;
}








#s-4ccd9a05-956b-4762-8446-2b636c9f86b1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4ccd9a05-956b-4762-8446-2b636c9f86b1.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-4b87a20d-77a9-498a-b238-74749e121b45 {
  border-style: solid;
margin-top: 3px;
margin-bottom: 8px;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 2px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
text-align: left;
}

#s-4b87a20d-77a9-498a-b238-74749e121b45 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Source Sans Pro";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-4d845579-0c24-491e-84ee-1c0b7dca450d {
  padding-top: 0px;
padding-left: 5px;
padding-bottom: 0px;
padding-right: 5px;
border-radius: 0px;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
line-height: 1.5em;
}
#s-4d845579-0c24-491e-84ee-1c0b7dca450d:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(223, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-4d845579-0c24-491e-84ee-1c0b7dca450d:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(223, 0, 0, 1) !important;}

  #s-4d845579-0c24-491e-84ee-1c0b7dca450d-btn-wrapper {
    text-align: left;
  }


#s-4d845579-0c24-491e-84ee-1c0b7dca450d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-4d845579-0c24-491e-84ee-1c0b7dca450d-btn-wrapper {
    text-align: left;
  }


#s-4d845579-0c24-491e-84ee-1c0b7dca450d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4d845579-0c24-491e-84ee-1c0b7dca450d-btn-wrapper {
    text-align: left;
  }


#s-4d845579-0c24-491e-84ee-1c0b7dca450d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4d845579-0c24-491e-84ee-1c0b7dca450d-btn-wrapper {
    text-align: left;
  }


#s-4d845579-0c24-491e-84ee-1c0b7dca450d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-4d845579-0c24-491e-84ee-1c0b7dca450d-btn-wrapper {
    text-align: left;
  }


#s-4d845579-0c24-491e-84ee-1c0b7dca450d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-5acc1906-eb9c-4a67-9ff7-eb6a76d878d4 {
  padding-top: 0px;
padding-left: 19px;
padding-bottom: 0px;
padding-right: 19px;
border-radius: 0px;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
line-height: 1.5em;
}
#s-5acc1906-eb9c-4a67-9ff7-eb6a76d878d4:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(223, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-5acc1906-eb9c-4a67-9ff7-eb6a76d878d4:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(223, 0, 0, 1) !important;}

  #s-5acc1906-eb9c-4a67-9ff7-eb6a76d878d4-btn-wrapper {
    text-align: left;
  }


#s-5acc1906-eb9c-4a67-9ff7-eb6a76d878d4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-5acc1906-eb9c-4a67-9ff7-eb6a76d878d4-btn-wrapper {
    text-align: left;
  }


#s-5acc1906-eb9c-4a67-9ff7-eb6a76d878d4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5acc1906-eb9c-4a67-9ff7-eb6a76d878d4-btn-wrapper {
    text-align: left;
  }


#s-5acc1906-eb9c-4a67-9ff7-eb6a76d878d4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5acc1906-eb9c-4a67-9ff7-eb6a76d878d4-btn-wrapper {
    text-align: left;
  }


#s-5acc1906-eb9c-4a67-9ff7-eb6a76d878d4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-5acc1906-eb9c-4a67-9ff7-eb6a76d878d4-btn-wrapper {
    text-align: left;
  }


#s-5acc1906-eb9c-4a67-9ff7-eb6a76d878d4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-07bb03e0-fc8d-4fb8-b182-1b011cdea0b8 {
  background-color: rgba(242, 242, 242, 0);
}








#s-07bb03e0-fc8d-4fb8-b182-1b011cdea0b8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-07bb03e0-fc8d-4fb8-b182-1b011cdea0b8.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-4b303a53-6af7-4123-969b-5d3ba48e884e {
  margin-top: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(242, 242, 242, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-4b303a53-6af7-4123-969b-5d3ba48e884e:hover {background-color: rgba(242, 242, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(223, 0, 0, 1) !important;}#s-4b303a53-6af7-4123-969b-5d3ba48e884e:active {background-color: rgba(211, 210, 210, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-4b303a53-6af7-4123-969b-5d3ba48e884e-btn-wrapper {
    text-align: left;
  }


#s-4b303a53-6af7-4123-969b-5d3ba48e884e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Source Sans Pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-4b303a53-6af7-4123-969b-5d3ba48e884e-btn-wrapper {
    text-align: left;
  }


#s-4b303a53-6af7-4123-969b-5d3ba48e884e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4b303a53-6af7-4123-969b-5d3ba48e884e-btn-wrapper {
    text-align: left;
  }


#s-4b303a53-6af7-4123-969b-5d3ba48e884e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4b303a53-6af7-4123-969b-5d3ba48e884e-btn-wrapper {
    text-align: left;
  }


#s-4b303a53-6af7-4123-969b-5d3ba48e884e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-4b303a53-6af7-4123-969b-5d3ba48e884e-btn-wrapper {
    text-align: left;
  }


#s-4b303a53-6af7-4123-969b-5d3ba48e884e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Source Sans Pro;
  display:  block ;
}
}
#s-319dd96d-ce1d-4747-9a00-b3195ecf4c62 {
  border-style: solid;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
}








#s-319dd96d-ce1d-4747-9a00-b3195ecf4c62 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-319dd96d-ce1d-4747-9a00-b3195ecf4c62.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-43f76552-9bb0-4d0e-87e8-eef3db64032e {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(215, 213, 223, 1);
border-radius: 0px;
text-align: center;
}







  #s-43f76552-9bb0-4d0e-87e8-eef3db64032e img.shogun-image {
    

    
    
    
  }


#s-43f76552-9bb0-4d0e-87e8-eef3db64032e .shogun-image-content {
  
    align-items: center;
  
}

#s-8f6e25ae-aa8c-49d8-9a6b-e4070eeb2ded {
  margin-left: 5%;
margin-right: 5%;
min-height: 200px;
}








#s-8f6e25ae-aa8c-49d8-9a6b-e4070eeb2ded > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8f6e25ae-aa8c-49d8-9a6b-e4070eeb2ded.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-997c9a65-fad6-4fed-a092-6827875472b9 {
  border-style: solid;
margin-top: 3px;
margin-bottom: 8px;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 2px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
text-align: left;
}

#s-997c9a65-fad6-4fed-a092-6827875472b9 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Source Sans Pro";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-f59db243-7812-4a6b-b356-1fc334904c24 {
  padding-top: 0px;
padding-left: 5px;
padding-bottom: 0px;
padding-right: 5px;
border-radius: 0px;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
line-height: 1.5em;
}
#s-f59db243-7812-4a6b-b356-1fc334904c24:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(223, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-f59db243-7812-4a6b-b356-1fc334904c24:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(223, 0, 0, 1) !important;}

  #s-f59db243-7812-4a6b-b356-1fc334904c24-btn-wrapper {
    text-align: left;
  }


#s-f59db243-7812-4a6b-b356-1fc334904c24.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-f59db243-7812-4a6b-b356-1fc334904c24-btn-wrapper {
    text-align: left;
  }


#s-f59db243-7812-4a6b-b356-1fc334904c24.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f59db243-7812-4a6b-b356-1fc334904c24-btn-wrapper {
    text-align: left;
  }


#s-f59db243-7812-4a6b-b356-1fc334904c24.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f59db243-7812-4a6b-b356-1fc334904c24-btn-wrapper {
    text-align: left;
  }


#s-f59db243-7812-4a6b-b356-1fc334904c24.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-f59db243-7812-4a6b-b356-1fc334904c24-btn-wrapper {
    text-align: left;
  }


#s-f59db243-7812-4a6b-b356-1fc334904c24.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-3397a118-7659-4ab2-88f2-7da96070030d {
  background-color: rgba(211, 210, 210, 0);
}








#s-3397a118-7659-4ab2-88f2-7da96070030d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3397a118-7659-4ab2-88f2-7da96070030d.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-45e0a215-252a-4923-b0f0-193779a7efa9 {
  padding-top: 0px;
padding-left: 19px;
padding-bottom: 0px;
padding-right: 19px;
border-radius: 0px;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
line-height: 1.5em;
}
#s-45e0a215-252a-4923-b0f0-193779a7efa9:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(223, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-45e0a215-252a-4923-b0f0-193779a7efa9:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(223, 0, 0, 1) !important;}

  #s-45e0a215-252a-4923-b0f0-193779a7efa9-btn-wrapper {
    text-align: left;
  }


#s-45e0a215-252a-4923-b0f0-193779a7efa9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-45e0a215-252a-4923-b0f0-193779a7efa9-btn-wrapper {
    text-align: left;
  }


#s-45e0a215-252a-4923-b0f0-193779a7efa9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-45e0a215-252a-4923-b0f0-193779a7efa9-btn-wrapper {
    text-align: left;
  }


#s-45e0a215-252a-4923-b0f0-193779a7efa9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-45e0a215-252a-4923-b0f0-193779a7efa9-btn-wrapper {
    text-align: left;
  }


#s-45e0a215-252a-4923-b0f0-193779a7efa9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-45e0a215-252a-4923-b0f0-193779a7efa9-btn-wrapper {
    text-align: left;
  }


#s-45e0a215-252a-4923-b0f0-193779a7efa9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-f6258b03-eca4-417c-8eda-71d3fe92dae2 {
  margin-top: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(242, 242, 242, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-f6258b03-eca4-417c-8eda-71d3fe92dae2:hover {background-color: rgba(242, 242, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(223, 0, 0, 1) !important;}#s-f6258b03-eca4-417c-8eda-71d3fe92dae2:active {background-color: rgba(211, 210, 210, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-f6258b03-eca4-417c-8eda-71d3fe92dae2-btn-wrapper {
    text-align: left;
  }


#s-f6258b03-eca4-417c-8eda-71d3fe92dae2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Source Sans Pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f6258b03-eca4-417c-8eda-71d3fe92dae2-btn-wrapper {
    text-align: left;
  }


#s-f6258b03-eca4-417c-8eda-71d3fe92dae2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f6258b03-eca4-417c-8eda-71d3fe92dae2-btn-wrapper {
    text-align: left;
  }


#s-f6258b03-eca4-417c-8eda-71d3fe92dae2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f6258b03-eca4-417c-8eda-71d3fe92dae2-btn-wrapper {
    text-align: left;
  }


#s-f6258b03-eca4-417c-8eda-71d3fe92dae2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f6258b03-eca4-417c-8eda-71d3fe92dae2-btn-wrapper {
    text-align: left;
  }


#s-f6258b03-eca4-417c-8eda-71d3fe92dae2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Source Sans Pro;
  display:  block ;
}
}
#s-75d4e35e-9ff9-4c0f-a988-253023ca4690 {
  border-style: solid;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
}








#s-75d4e35e-9ff9-4c0f-a988-253023ca4690 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-75d4e35e-9ff9-4c0f-a988-253023ca4690.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-7d4662de-68a0-4100-8431-b54e89657912 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(215, 213, 223, 1);
border-radius: 0px;
text-align: center;
}







  #s-7d4662de-68a0-4100-8431-b54e89657912 img.shogun-image {
    

    
    
    
  }


#s-7d4662de-68a0-4100-8431-b54e89657912 .shogun-image-content {
  
    align-items: center;
  
}

#s-23bcd484-2b49-43f9-a1c0-8b009003e09c {
  margin-left: 5%;
margin-right: 5%;
min-height: 200px;
}








#s-23bcd484-2b49-43f9-a1c0-8b009003e09c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-23bcd484-2b49-43f9-a1c0-8b009003e09c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-33b49eda-19c6-40a4-90a0-af96616eacd2 {
  border-style: solid;
margin-top: 3px;
margin-bottom: 8px;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 2px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
text-align: left;
}

#s-33b49eda-19c6-40a4-90a0-af96616eacd2 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Source Sans Pro";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-48d008ee-1e3d-4193-ba13-49bf8d06675b {
  padding-top: 0px;
padding-left: 5px;
padding-bottom: 0px;
padding-right: 5px;
border-radius: 0px;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
line-height: 1.5em;
}
#s-48d008ee-1e3d-4193-ba13-49bf8d06675b:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(223, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-48d008ee-1e3d-4193-ba13-49bf8d06675b:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(223, 0, 0, 1) !important;}

  #s-48d008ee-1e3d-4193-ba13-49bf8d06675b-btn-wrapper {
    text-align: left;
  }


#s-48d008ee-1e3d-4193-ba13-49bf8d06675b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-48d008ee-1e3d-4193-ba13-49bf8d06675b-btn-wrapper {
    text-align: left;
  }


#s-48d008ee-1e3d-4193-ba13-49bf8d06675b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-48d008ee-1e3d-4193-ba13-49bf8d06675b-btn-wrapper {
    text-align: left;
  }


#s-48d008ee-1e3d-4193-ba13-49bf8d06675b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-48d008ee-1e3d-4193-ba13-49bf8d06675b-btn-wrapper {
    text-align: left;
  }


#s-48d008ee-1e3d-4193-ba13-49bf8d06675b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-48d008ee-1e3d-4193-ba13-49bf8d06675b-btn-wrapper {
    text-align: left;
  }


#s-48d008ee-1e3d-4193-ba13-49bf8d06675b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-3381e995-998e-4f7b-b3cf-b3d242363999 {
  padding-top: 0px;
padding-left: 5px;
padding-bottom: 0px;
padding-right: 5px;
border-radius: 0px;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
line-height: 1.5em;
}
#s-3381e995-998e-4f7b-b3cf-b3d242363999:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(223, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-3381e995-998e-4f7b-b3cf-b3d242363999:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(223, 0, 0, 1) !important;}

  #s-3381e995-998e-4f7b-b3cf-b3d242363999-btn-wrapper {
    text-align: left;
  }


#s-3381e995-998e-4f7b-b3cf-b3d242363999.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-3381e995-998e-4f7b-b3cf-b3d242363999-btn-wrapper {
    text-align: left;
  }


#s-3381e995-998e-4f7b-b3cf-b3d242363999.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3381e995-998e-4f7b-b3cf-b3d242363999-btn-wrapper {
    text-align: left;
  }


#s-3381e995-998e-4f7b-b3cf-b3d242363999.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3381e995-998e-4f7b-b3cf-b3d242363999-btn-wrapper {
    text-align: left;
  }


#s-3381e995-998e-4f7b-b3cf-b3d242363999.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-3381e995-998e-4f7b-b3cf-b3d242363999-btn-wrapper {
    text-align: left;
  }


#s-3381e995-998e-4f7b-b3cf-b3d242363999.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-2942cef2-1621-498d-8ed4-d2b1059b0891 {
  padding-top: 0px;
padding-left: 5px;
padding-bottom: 0px;
padding-right: 5px;
border-radius: 0px;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
line-height: 1.5em;
}
#s-2942cef2-1621-498d-8ed4-d2b1059b0891:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(223, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-2942cef2-1621-498d-8ed4-d2b1059b0891:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(223, 0, 0, 1) !important;}

  #s-2942cef2-1621-498d-8ed4-d2b1059b0891-btn-wrapper {
    text-align: left;
  }


#s-2942cef2-1621-498d-8ed4-d2b1059b0891.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-2942cef2-1621-498d-8ed4-d2b1059b0891-btn-wrapper {
    text-align: left;
  }


#s-2942cef2-1621-498d-8ed4-d2b1059b0891.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2942cef2-1621-498d-8ed4-d2b1059b0891-btn-wrapper {
    text-align: left;
  }


#s-2942cef2-1621-498d-8ed4-d2b1059b0891.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2942cef2-1621-498d-8ed4-d2b1059b0891-btn-wrapper {
    text-align: left;
  }


#s-2942cef2-1621-498d-8ed4-d2b1059b0891.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-2942cef2-1621-498d-8ed4-d2b1059b0891-btn-wrapper {
    text-align: left;
  }


#s-2942cef2-1621-498d-8ed4-d2b1059b0891.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-76619332-a917-478e-bb31-2d3cc0707c50 {
  padding-top: 0px;
padding-left: 5px;
padding-bottom: 0px;
padding-right: 5px;
border-radius: 0px;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
line-height: 1.5em;
}
#s-76619332-a917-478e-bb31-2d3cc0707c50:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(223, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-76619332-a917-478e-bb31-2d3cc0707c50:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(223, 0, 0, 1) !important;}

  #s-76619332-a917-478e-bb31-2d3cc0707c50-btn-wrapper {
    text-align: left;
  }


#s-76619332-a917-478e-bb31-2d3cc0707c50.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-76619332-a917-478e-bb31-2d3cc0707c50-btn-wrapper {
    text-align: left;
  }


#s-76619332-a917-478e-bb31-2d3cc0707c50.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-76619332-a917-478e-bb31-2d3cc0707c50-btn-wrapper {
    text-align: left;
  }


#s-76619332-a917-478e-bb31-2d3cc0707c50.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-76619332-a917-478e-bb31-2d3cc0707c50-btn-wrapper {
    text-align: left;
  }


#s-76619332-a917-478e-bb31-2d3cc0707c50.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-76619332-a917-478e-bb31-2d3cc0707c50-btn-wrapper {
    text-align: left;
  }


#s-76619332-a917-478e-bb31-2d3cc0707c50.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-f91bb396-1dd5-48e9-887a-988ad9d68aad {
  background-color: rgba(211, 210, 210, 0);
}








#s-f91bb396-1dd5-48e9-887a-988ad9d68aad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f91bb396-1dd5-48e9-887a-988ad9d68aad.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-d9e24264-3e2a-455f-aa60-6dece6681dde {
  padding-top: 0px;
padding-left: 19px;
padding-bottom: 0px;
padding-right: 19px;
border-radius: 0px;
background-color: rgba(37, 37, 37, 0);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
line-height: 1.5em;
}
#s-d9e24264-3e2a-455f-aa60-6dece6681dde:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(223, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-d9e24264-3e2a-455f-aa60-6dece6681dde:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(223, 0, 0, 1) !important;}

  #s-d9e24264-3e2a-455f-aa60-6dece6681dde-btn-wrapper {
    text-align: left;
  }


#s-d9e24264-3e2a-455f-aa60-6dece6681dde.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-d9e24264-3e2a-455f-aa60-6dece6681dde-btn-wrapper {
    text-align: left;
  }


#s-d9e24264-3e2a-455f-aa60-6dece6681dde.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d9e24264-3e2a-455f-aa60-6dece6681dde-btn-wrapper {
    text-align: left;
  }


#s-d9e24264-3e2a-455f-aa60-6dece6681dde.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d9e24264-3e2a-455f-aa60-6dece6681dde-btn-wrapper {
    text-align: left;
  }


#s-d9e24264-3e2a-455f-aa60-6dece6681dde.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-d9e24264-3e2a-455f-aa60-6dece6681dde-btn-wrapper {
    text-align: left;
  }


#s-d9e24264-3e2a-455f-aa60-6dece6681dde.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-f3312495-a69b-4bce-92dc-cf27cb8ea410 {
  margin-top: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 0px;
background-color: rgba(242, 242, 242, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-f3312495-a69b-4bce-92dc-cf27cb8ea410:hover {background-color: rgba(242, 242, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(223, 0, 0, 1) !important;}#s-f3312495-a69b-4bce-92dc-cf27cb8ea410:active {background-color: rgba(211, 210, 210, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-f3312495-a69b-4bce-92dc-cf27cb8ea410-btn-wrapper {
    text-align: left;
  }


#s-f3312495-a69b-4bce-92dc-cf27cb8ea410.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Source Sans Pro;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f3312495-a69b-4bce-92dc-cf27cb8ea410-btn-wrapper {
    text-align: left;
  }


#s-f3312495-a69b-4bce-92dc-cf27cb8ea410.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f3312495-a69b-4bce-92dc-cf27cb8ea410-btn-wrapper {
    text-align: left;
  }


#s-f3312495-a69b-4bce-92dc-cf27cb8ea410.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f3312495-a69b-4bce-92dc-cf27cb8ea410-btn-wrapper {
    text-align: left;
  }


#s-f3312495-a69b-4bce-92dc-cf27cb8ea410.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Source Sans Pro;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f3312495-a69b-4bce-92dc-cf27cb8ea410-btn-wrapper {
    text-align: left;
  }


#s-f3312495-a69b-4bce-92dc-cf27cb8ea410.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 700;
  
  font-family: Source Sans Pro;
  display:  block ;
}
}
#s-80c3de9a-fcba-4a3e-a69b-ab8cc59646a8 {
  min-height: 50px;
}








#s-80c3de9a-fcba-4a3e-a69b-ab8cc59646a8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-80c3de9a-fcba-4a3e-a69b-ab8cc59646a8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d551dac0-9bea-4f3e-9fa2-ff0e8a9f7a6d {
  padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
min-height: 50px;
background-color: rgba(211, 210, 210, 1);
}








#s-d551dac0-9bea-4f3e-9fa2-ff0e8a9f7a6d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d551dac0-9bea-4f3e-9fa2-ff0e8a9f7a6d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6ce254a3-bea0-4012-925c-05ffa2436230 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 25px;
padding-left: 3%;
padding-bottom: 25px;
padding-right: 3%;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}








#s-6ce254a3-bea0-4012-925c-05ffa2436230 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6ce254a3-bea0-4012-925c-05ffa2436230.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-c75ccda8-a8d3-4f20-985a-40350773bd7d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c75ccda8-a8d3-4f20-985a-40350773bd7d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-c75ccda8-a8d3-4f20-985a-40350773bd7d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c75ccda8-a8d3-4f20-985a-40350773bd7d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-c75ccda8-a8d3-4f20-985a-40350773bd7d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c75ccda8-a8d3-4f20-985a-40350773bd7d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-c75ccda8-a8d3-4f20-985a-40350773bd7d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

#s-50037759-ebcf-4c4a-b3b2-d44b3cf6f24a {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(215, 213, 223, 1);
border-radius: 0px;
text-align: center;
}







  #s-50037759-ebcf-4c4a-b3b2-d44b3cf6f24a img.shogun-image {
    

    
    
    
  }


#s-50037759-ebcf-4c4a-b3b2-d44b3cf6f24a .shogun-image-content {
  
    align-items: center;
  
}

#s-351dfad2-66de-4fd8-87dc-f235edbb5a09 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}








#s-351dfad2-66de-4fd8-87dc-f235edbb5a09 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-351dfad2-66de-4fd8-87dc-f235edbb5a09.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2956090d-e416-4274-920b-053b82e9d05f {
  border-style: solid;
padding-top: 16px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-2956090d-e416-4274-920b-053b82e9d05f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2956090d-e416-4274-920b-053b82e9d05f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5a6de47c-e963-44b4-b7e4-ef517dd36a6c {
  border-style: solid;
margin-top: 0px;
margin-bottom: 3px;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 3px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
text-align: left;
}

#s-5a6de47c-e963-44b4-b7e4-ef517dd36a6c .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Source Sans Pro";
  font-style:   ;
  font-size: 22px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-222596a7-f8ec-4652-a938-a83f3c3ee645 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-222596a7-f8ec-4652-a938-a83f3c3ee645"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-222596a7-f8ec-4652-a938-a83f3c3ee645"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-222596a7-f8ec-4652-a938-a83f3c3ee645"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-222596a7-f8ec-4652-a938-a83f3c3ee645"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9dec6846-b0fb-4edb-9d4d-f0b206624a98 {
  border-style: solid;
padding-top: 16px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-9dec6846-b0fb-4edb-9d4d-f0b206624a98 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9dec6846-b0fb-4edb-9d4d-f0b206624a98.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-04f770d1-9130-4eda-ac52-b03849b7e0b6 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 3px;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 3px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
text-align: left;
}

#s-04f770d1-9130-4eda-ac52-b03849b7e0b6 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Source Sans Pro";
  font-style:   ;
  font-size: 22px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-897f4ada-2b8a-408b-ad39-d8c321f51943 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-897f4ada-2b8a-408b-ad39-d8c321f51943"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-897f4ada-2b8a-408b-ad39-d8c321f51943"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-897f4ada-2b8a-408b-ad39-d8c321f51943"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-897f4ada-2b8a-408b-ad39-d8c321f51943"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-74ea8262-031d-4182-b69a-7e2b02e8beff {
  border-style: solid;
padding-top: 16px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-74ea8262-031d-4182-b69a-7e2b02e8beff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-74ea8262-031d-4182-b69a-7e2b02e8beff.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-abef3a5f-58f6-4699-8a11-efff60773b13 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 3px;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 3px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
text-align: left;
}

#s-abef3a5f-58f6-4699-8a11-efff60773b13 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Source Sans Pro";
  font-style:   ;
  font-size: 22px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-953c453e-2c4e-4dcf-b67c-d047f0fd3b5a {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-953c453e-2c4e-4dcf-b67c-d047f0fd3b5a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-953c453e-2c4e-4dcf-b67c-d047f0fd3b5a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-953c453e-2c4e-4dcf-b67c-d047f0fd3b5a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-953c453e-2c4e-4dcf-b67c-d047f0fd3b5a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-fdd356a6-b6eb-46cb-9040-89be2a148413 {
  border-style: solid;
padding-top: 16px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-fdd356a6-b6eb-46cb-9040-89be2a148413 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fdd356a6-b6eb-46cb-9040-89be2a148413.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-34165a12-fa0f-4159-a0f3-9f090c433a8c {
  border-style: solid;
margin-top: 0px;
margin-bottom: 3px;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 3px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
text-align: left;
}

#s-34165a12-fa0f-4159-a0f3-9f090c433a8c .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Source Sans Pro";
  font-style:   ;
  font-size: 22px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-830c98ee-9b07-4e30-a0a1-184aaabd7e65 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-830c98ee-9b07-4e30-a0a1-184aaabd7e65"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-830c98ee-9b07-4e30-a0a1-184aaabd7e65"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-830c98ee-9b07-4e30-a0a1-184aaabd7e65"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-830c98ee-9b07-4e30-a0a1-184aaabd7e65"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a6a480ae-5117-402c-b9b7-38836b07303c {
  border-style: solid;
padding-top: 16px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-a6a480ae-5117-402c-b9b7-38836b07303c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a6a480ae-5117-402c-b9b7-38836b07303c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a723265b-a948-4476-bdcd-afeb1cb56e24 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 3px;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 3px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
text-align: left;
}

#s-a723265b-a948-4476-bdcd-afeb1cb56e24 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Source Sans Pro";
  font-style:   ;
  font-size: 22px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-9247f2c7-9e4a-4222-bed5-d493f4378d8d {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-9247f2c7-9e4a-4222-bed5-d493f4378d8d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9247f2c7-9e4a-4222-bed5-d493f4378d8d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9247f2c7-9e4a-4222-bed5-d493f4378d8d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9247f2c7-9e4a-4222-bed5-d493f4378d8d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0b6c6ec8-ba9d-4933-beca-a70601f190a0 {
  border-style: solid;
padding-top: 16px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-0b6c6ec8-ba9d-4933-beca-a70601f190a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0b6c6ec8-ba9d-4933-beca-a70601f190a0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-138cbd48-8eed-40c5-8a18-f77a6cdad40e {
  border-style: solid;
margin-top: 3px;
margin-bottom: 3px;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 3px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
text-align: left;
}

#s-138cbd48-8eed-40c5-8a18-f77a6cdad40e .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Source Sans Pro";
  font-style:   ;
  font-size: 22px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-a1d193ff-1e11-4b9d-b222-0b7bb1c3d4fd {
  min-height: 50px;
}








#s-a1d193ff-1e11-4b9d-b222-0b7bb1c3d4fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a1d193ff-1e11-4b9d-b222-0b7bb1c3d4fd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bed59a04-2364-4268-9921-61f80b7c89e7 {
  border-style: solid;
margin-top: 3px;
margin-bottom: 3px;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 3px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
border-style: solid;
text-align: left;
}

#s-bed59a04-2364-4268-9921-61f80b7c89e7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  700 ;
  font-family: "Source Sans Pro";
  font-style:   ;
  font-size: 22px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-b6f8f25d-e9da-4759-8a6f-db1640202fbd {
  min-height: 50px;
}








#s-b6f8f25d-e9da-4759-8a6f-db1640202fbd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b6f8f25d-e9da-4759-8a6f-db1640202fbd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-641cf182-fee1-41d3-afeb-a022bf54e4ab {
  text-align: left;
}

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

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c: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}
