.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-79359fe1-fe01-424b-bed4-6a5fde53cf0d {
  min-height: 50px;
}
@media (min-width: 1200px){#s-79359fe1-fe01-424b-bed4-6a5fde53cf0d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-79359fe1-fe01-424b-bed4-6a5fde53cf0d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-79359fe1-fe01-424b-bed4-6a5fde53cf0d {
  display: none;
}
#s-79359fe1-fe01-424b-bed4-6a5fde53cf0d, #wrap-s-79359fe1-fe01-424b-bed4-6a5fde53cf0d { display:none !important; }}@media (max-width: 767px){#s-79359fe1-fe01-424b-bed4-6a5fde53cf0d {
  display: none;
}
#s-79359fe1-fe01-424b-bed4-6a5fde53cf0d, #wrap-s-79359fe1-fe01-424b-bed4-6a5fde53cf0d { display:none !important; }}







#s-79359fe1-fe01-424b-bed4-6a5fde53cf0d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-79359fe1-fe01-424b-bed4-6a5fde53cf0d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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;
  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;
}

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

.shogun-image.hover ~ * {
  z-index: 1;
}

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

#s-aae349c3-2ca5-4175-834f-074a9e56efc3 {
  text-align: center;
}








.s-aae349c3-2ca5-4175-834f-074a9e56efc3 .shogun-image-content {
  
    align-items: center;
  
}

.s-aae349c3-2ca5-4175-834f-074a9e56efc3.shg-align-container {
  text-align: center
}

.s-aae349c3-2ca5-4175-834f-074a9e56efc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aae349c3-2ca5-4175-834f-074a9e56efc3.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){






.s-aae349c3-2ca5-4175-834f-074a9e56efc3 .shogun-image-content {
  
    align-items: center;
  
}

.s-aae349c3-2ca5-4175-834f-074a9e56efc3.shg-align-container {
  text-align: center
}

.s-aae349c3-2ca5-4175-834f-074a9e56efc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aae349c3-2ca5-4175-834f-074a9e56efc3.shogun-image {
  box-sizing: border-box;
}


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






.s-aae349c3-2ca5-4175-834f-074a9e56efc3 .shogun-image-content {
  
    align-items: center;
  
}

.s-aae349c3-2ca5-4175-834f-074a9e56efc3.shg-align-container {
  text-align: center
}

.s-aae349c3-2ca5-4175-834f-074a9e56efc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aae349c3-2ca5-4175-834f-074a9e56efc3.shogun-image {
  box-sizing: border-box;
}


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






.s-aae349c3-2ca5-4175-834f-074a9e56efc3 .shogun-image-content {
  
    align-items: center;
  
}

.s-aae349c3-2ca5-4175-834f-074a9e56efc3.shg-align-container {
  text-align: center
}

.s-aae349c3-2ca5-4175-834f-074a9e56efc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aae349c3-2ca5-4175-834f-074a9e56efc3.shogun-image {
  box-sizing: border-box;
}


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






.s-aae349c3-2ca5-4175-834f-074a9e56efc3 .shogun-image-content {
  
    align-items: center;
  
}

.s-aae349c3-2ca5-4175-834f-074a9e56efc3.shg-align-container {
  text-align: center
}

.s-aae349c3-2ca5-4175-834f-074a9e56efc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aae349c3-2ca5-4175-834f-074a9e56efc3.shogun-image {
  box-sizing: border-box;
}


}
#s-3903c188-78dc-4be0-8c9b-a908ae573170 {
  padding-top: 30px;
padding-bottom: 20px;
min-height: 300px;
background-color: rgba(255, 248, 228, 1);
}








#s-3903c188-78dc-4be0-8c9b-a908ae573170 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3903c188-78dc-4be0-8c9b-a908ae573170.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: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

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

#s-5b8bc8e9-4a14-411c-a217-4e3348c9e6fb {
  padding-top: 10px;
text-align: center;
}

#s-5b8bc8e9-4a14-411c-a217-4e3348c9e6fb .shogun-heading-component h2 {
  color: rgba(44, 73, 91, 1);
  font-weight:  normal ;
  font-family: "june-expt-variable";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1.3em;
  
  
}



.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-815a8247-a1bd-4013-93f6-50f0266d7234 {
  padding-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-815a8247-a1bd-4013-93f6-50f0266d7234"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-815a8247-a1bd-4013-93f6-50f0266d7234"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-815a8247-a1bd-4013-93f6-50f0266d7234"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-815a8247-a1bd-4013-93f6-50f0266d7234"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-b591727c-d32c-4f94-b9c0-e06f0577f3ec {
  text-align: center;
}







  img.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shogun-image {
    
    
  }


.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec .shogun-image-content {
  
    align-items: center;
  
}

.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shg-align-container {
  text-align: center
}

.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shogun-image {
    
    
  }


.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec .shogun-image-content {
  
    align-items: center;
  
}

.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shg-align-container {
  text-align: center
}

.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shogun-image {
    
    
  }


.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec .shogun-image-content {
  
    align-items: center;
  
}

.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shg-align-container {
  text-align: center
}

.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shogun-image {
    
    
  }


.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec .shogun-image-content {
  
    align-items: center;
  
}

.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shg-align-container {
  text-align: center
}

.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shogun-image {
    
    
  }


.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec .shogun-image-content {
  
    align-items: center;
  
}

.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shg-align-container {
  text-align: center
}

.s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b591727c-d32c-4f94-b9c0-e06f0577f3ec.shogun-image {
  box-sizing: border-box;
}


}
#s-004cf01e-e237-4758-8c2e-675daecde2ad {
  padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-004cf01e-e237-4758-8c2e-675daecde2ad"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-004cf01e-e237-4758-8c2e-675daecde2ad"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-004cf01e-e237-4758-8c2e-675daecde2ad"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-004cf01e-e237-4758-8c2e-675daecde2ad"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-004cf01e-e237-4758-8c2e-675daecde2ad"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-004cf01e-e237-4758-8c2e-675daecde2ad"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-004cf01e-e237-4758-8c2e-675daecde2ad"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-714569f4-1240-4eed-a8c9-130ce4680c20 {
  background-repeat: no-repeat;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
min-height: 50px;
background-attachment: scroll;
}

#s-714569f4-1240-4eed-a8c9-130ce4680c20 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZTljNzNlZWYtZDZkZC00YzYxLWExNDktZGJhMDI3MzQxMmMyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZTNmMWY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmOGU0O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNlOWM3M2VlZi1kNmRkLTRjNjEtYTE0OS1kYmEwMjczNDEyYzIpIi8+PC9zdmc+);
}








#s-714569f4-1240-4eed-a8c9-130ce4680c20 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-714569f4-1240-4eed-a8c9-130ce4680c20.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-25c97655-8bf7-4397-8c89-769fcb07e2c6 {
  padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(188, 225, 232, 0);
}

@media (min-width: 0px) {
[id="s-25c97655-8bf7-4397-8c89-769fcb07e2c6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-25c97655-8bf7-4397-8c89-769fcb07e2c6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-25c97655-8bf7-4397-8c89-769fcb07e2c6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-25c97655-8bf7-4397-8c89-769fcb07e2c6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-25c97655-8bf7-4397-8c89-769fcb07e2c6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-25c97655-8bf7-4397-8c89-769fcb07e2c6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-25c97655-8bf7-4397-8c89-769fcb07e2c6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

}

#s-bef4859a-0c21-4782-9543-238cc0d0516a {
  min-height: 100px;
}








#s-bef4859a-0c21-4782-9543-238cc0d0516a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bef4859a-0c21-4782-9543-238cc0d0516a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d87ab62d-83ac-4753-8763-66caf0712f98 {
  text-align: center;
}







  img.s-d87ab62d-83ac-4753-8763-66caf0712f98.shogun-image {
    
    
  }


.s-d87ab62d-83ac-4753-8763-66caf0712f98 .shogun-image-content {
  
    align-items: center;
  
}

.s-d87ab62d-83ac-4753-8763-66caf0712f98.shg-align-container {
  text-align: center
}

.s-d87ab62d-83ac-4753-8763-66caf0712f98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d87ab62d-83ac-4753-8763-66caf0712f98.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-d87ab62d-83ac-4753-8763-66caf0712f98.shogun-image {
    
    
  }


.s-d87ab62d-83ac-4753-8763-66caf0712f98 .shogun-image-content {
  
    align-items: center;
  
}

.s-d87ab62d-83ac-4753-8763-66caf0712f98.shg-align-container {
  text-align: center
}

.s-d87ab62d-83ac-4753-8763-66caf0712f98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d87ab62d-83ac-4753-8763-66caf0712f98.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d87ab62d-83ac-4753-8763-66caf0712f98.shogun-image {
    
    
  }


.s-d87ab62d-83ac-4753-8763-66caf0712f98 .shogun-image-content {
  
    align-items: center;
  
}

.s-d87ab62d-83ac-4753-8763-66caf0712f98.shg-align-container {
  text-align: center
}

.s-d87ab62d-83ac-4753-8763-66caf0712f98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d87ab62d-83ac-4753-8763-66caf0712f98.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d87ab62d-83ac-4753-8763-66caf0712f98.shogun-image {
    
    
  }


.s-d87ab62d-83ac-4753-8763-66caf0712f98 .shogun-image-content {
  
    align-items: center;
  
}

.s-d87ab62d-83ac-4753-8763-66caf0712f98.shg-align-container {
  text-align: center
}

.s-d87ab62d-83ac-4753-8763-66caf0712f98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d87ab62d-83ac-4753-8763-66caf0712f98.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d87ab62d-83ac-4753-8763-66caf0712f98.shogun-image {
    
    
  }


.s-d87ab62d-83ac-4753-8763-66caf0712f98 .shogun-image-content {
  
    align-items: center;
  
}

.s-d87ab62d-83ac-4753-8763-66caf0712f98.shg-align-container {
  text-align: center
}

.s-d87ab62d-83ac-4753-8763-66caf0712f98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d87ab62d-83ac-4753-8763-66caf0712f98.shogun-image {
  box-sizing: border-box;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-29cf24bd-bad6-4dc7-86b2-35a7099c939a {
  padding-top: 15px;
padding-right: 5%;
}

#s-12004b13-6cf2-4a67-9f49-403eb897043f {
  padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-12004b13-6cf2-4a67-9f49-403eb897043f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-12004b13-6cf2-4a67-9f49-403eb897043f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-12004b13-6cf2-4a67-9f49-403eb897043f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-12004b13-6cf2-4a67-9f49-403eb897043f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-12004b13-6cf2-4a67-9f49-403eb897043f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-12004b13-6cf2-4a67-9f49-403eb897043f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-12004b13-6cf2-4a67-9f49-403eb897043f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-21855fd1-b3b9-4f42-8cf8-92f7555a5784 {
  background-repeat: no-repeat;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
min-height: 50px;
background-attachment: scroll;
}

#s-21855fd1-b3b9-4f42-8cf8-92f7555a5784 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZjY3YzU3ZGUtODRkMy00MzE3LWFjNTYtZjY2ZDgwOGZjZDA4IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZTNmMWY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmOGU0O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNmNjdjNTdkZS04NGQzLTQzMTctYWM1Ni1mNjZkODA4ZmNkMDgpIi8+PC9zdmc+);
}








#s-21855fd1-b3b9-4f42-8cf8-92f7555a5784 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-21855fd1-b3b9-4f42-8cf8-92f7555a5784.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3a32306e-cdf0-4af6-aacf-b40e918a0754 {
  padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(188, 225, 232, 0);
}

@media (min-width: 0px) {
[id="s-3a32306e-cdf0-4af6-aacf-b40e918a0754"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3a32306e-cdf0-4af6-aacf-b40e918a0754"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-3a32306e-cdf0-4af6-aacf-b40e918a0754"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-3a32306e-cdf0-4af6-aacf-b40e918a0754"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-3a32306e-cdf0-4af6-aacf-b40e918a0754"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-3a32306e-cdf0-4af6-aacf-b40e918a0754"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-3a32306e-cdf0-4af6-aacf-b40e918a0754"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

}

#s-4ff37092-d141-4537-9e79-656f27d62870 {
  min-height: 100px;
}








#s-4ff37092-d141-4537-9e79-656f27d62870 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4ff37092-d141-4537-9e79-656f27d62870.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-491605a7-429f-4acb-92f9-56093d2d0ae2 {
  text-align: center;
}







  img.s-491605a7-429f-4acb-92f9-56093d2d0ae2.shogun-image {
    
    
  }


.s-491605a7-429f-4acb-92f9-56093d2d0ae2 .shogun-image-content {
  
    align-items: center;
  
}

.s-491605a7-429f-4acb-92f9-56093d2d0ae2.shg-align-container {
  text-align: center
}

.s-491605a7-429f-4acb-92f9-56093d2d0ae2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-491605a7-429f-4acb-92f9-56093d2d0ae2.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-491605a7-429f-4acb-92f9-56093d2d0ae2.shogun-image {
    
    
  }


.s-491605a7-429f-4acb-92f9-56093d2d0ae2 .shogun-image-content {
  
    align-items: center;
  
}

.s-491605a7-429f-4acb-92f9-56093d2d0ae2.shg-align-container {
  text-align: center
}

.s-491605a7-429f-4acb-92f9-56093d2d0ae2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-491605a7-429f-4acb-92f9-56093d2d0ae2.shogun-image {
  box-sizing: border-box;
}


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





  img.s-491605a7-429f-4acb-92f9-56093d2d0ae2.shogun-image {
    
    
  }


.s-491605a7-429f-4acb-92f9-56093d2d0ae2 .shogun-image-content {
  
    align-items: center;
  
}

.s-491605a7-429f-4acb-92f9-56093d2d0ae2.shg-align-container {
  text-align: center
}

.s-491605a7-429f-4acb-92f9-56093d2d0ae2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-491605a7-429f-4acb-92f9-56093d2d0ae2.shogun-image {
  box-sizing: border-box;
}


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





  img.s-491605a7-429f-4acb-92f9-56093d2d0ae2.shogun-image {
    
    
  }


.s-491605a7-429f-4acb-92f9-56093d2d0ae2 .shogun-image-content {
  
    align-items: center;
  
}

.s-491605a7-429f-4acb-92f9-56093d2d0ae2.shg-align-container {
  text-align: center
}

.s-491605a7-429f-4acb-92f9-56093d2d0ae2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-491605a7-429f-4acb-92f9-56093d2d0ae2.shogun-image {
  box-sizing: border-box;
}


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





  img.s-491605a7-429f-4acb-92f9-56093d2d0ae2.shogun-image {
    
    
  }


.s-491605a7-429f-4acb-92f9-56093d2d0ae2 .shogun-image-content {
  
    align-items: center;
  
}

.s-491605a7-429f-4acb-92f9-56093d2d0ae2.shg-align-container {
  text-align: center
}

.s-491605a7-429f-4acb-92f9-56093d2d0ae2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-491605a7-429f-4acb-92f9-56093d2d0ae2.shogun-image {
  box-sizing: border-box;
}


}
#s-293af18c-7507-4f54-8270-8de5962fd385 {
  padding-top: 15px;
padding-right: 5%;
}

#s-c5d9ea6f-3f86-4f6f-8041-8822893a0dc5 {
  padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-c5d9ea6f-3f86-4f6f-8041-8822893a0dc5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c5d9ea6f-3f86-4f6f-8041-8822893a0dc5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c5d9ea6f-3f86-4f6f-8041-8822893a0dc5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c5d9ea6f-3f86-4f6f-8041-8822893a0dc5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c5d9ea6f-3f86-4f6f-8041-8822893a0dc5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c5d9ea6f-3f86-4f6f-8041-8822893a0dc5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c5d9ea6f-3f86-4f6f-8041-8822893a0dc5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-cd7cadb2-cb98-408e-956c-b2c2a7969c2b {
  background-repeat: no-repeat;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
min-height: 50px;
background-attachment: scroll;
}

#s-cd7cadb2-cb98-408e-956c-b2c2a7969c2b {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZjY3YzU3ZGUtODRkMy00MzE3LWFjNTYtZjY2ZDgwOGZjZDA4IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZTNmMWY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmOGU0O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNmNjdjNTdkZS04NGQzLTQzMTctYWM1Ni1mNjZkODA4ZmNkMDgpIi8+PC9zdmc+);
}








#s-cd7cadb2-cb98-408e-956c-b2c2a7969c2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cd7cadb2-cb98-408e-956c-b2c2a7969c2b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-16795229-c1a5-423d-b5f1-70813eaaaab8 {
  padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(188, 225, 232, 0);
}

@media (min-width: 0px) {
[id="s-16795229-c1a5-423d-b5f1-70813eaaaab8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-16795229-c1a5-423d-b5f1-70813eaaaab8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-16795229-c1a5-423d-b5f1-70813eaaaab8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-16795229-c1a5-423d-b5f1-70813eaaaab8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-16795229-c1a5-423d-b5f1-70813eaaaab8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-16795229-c1a5-423d-b5f1-70813eaaaab8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-16795229-c1a5-423d-b5f1-70813eaaaab8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

}

#s-868e5544-7230-45e9-a377-14e42b9c8f61 {
  min-height: 100px;
}








#s-868e5544-7230-45e9-a377-14e42b9c8f61 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-868e5544-7230-45e9-a377-14e42b9c8f61.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2e0665e3-6f0f-4ea0-a479-12d248110f91 {
  text-align: center;
}







  img.s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shogun-image {
    
    
  }


.s-2e0665e3-6f0f-4ea0-a479-12d248110f91 .shogun-image-content {
  
    align-items: center;
  
}

.s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shg-align-container {
  text-align: center
}

.s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shogun-image {
    
    
  }


.s-2e0665e3-6f0f-4ea0-a479-12d248110f91 .shogun-image-content {
  
    align-items: center;
  
}

.s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shg-align-container {
  text-align: center
}

.s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shogun-image {
    
    
  }


.s-2e0665e3-6f0f-4ea0-a479-12d248110f91 .shogun-image-content {
  
    align-items: center;
  
}

.s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shg-align-container {
  text-align: center
}

.s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shogun-image {
    
    
  }


.s-2e0665e3-6f0f-4ea0-a479-12d248110f91 .shogun-image-content {
  
    align-items: center;
  
}

.s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shg-align-container {
  text-align: center
}

.s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shogun-image {
    
    
  }


.s-2e0665e3-6f0f-4ea0-a479-12d248110f91 .shogun-image-content {
  
    align-items: center;
  
}

.s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shg-align-container {
  text-align: center
}

.s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e0665e3-6f0f-4ea0-a479-12d248110f91.shogun-image {
  box-sizing: border-box;
}


}
#s-56a2b6f8-24da-4e91-b780-bae6ae9dffff {
  padding-top: 15px;
padding-right: 5%;
}

#s-cec52864-fe1d-46ef-be3d-ed383a5cb61c {
  padding-bottom: 50px;
}

@media (min-width: 0px) {
[id="s-cec52864-fe1d-46ef-be3d-ed383a5cb61c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cec52864-fe1d-46ef-be3d-ed383a5cb61c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-cec52864-fe1d-46ef-be3d-ed383a5cb61c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-cec52864-fe1d-46ef-be3d-ed383a5cb61c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-cec52864-fe1d-46ef-be3d-ed383a5cb61c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-cec52864-fe1d-46ef-be3d-ed383a5cb61c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-cec52864-fe1d-46ef-be3d-ed383a5cb61c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-ff306010-182d-472a-b666-324c3692a520 {
  background-repeat: no-repeat;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
min-height: 50px;
background-attachment: scroll;
}

#s-ff306010-182d-472a-b666-324c3692a520 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMzA5NGFjMTAtOWQ2Zi00MjAwLTg1MjAtOTk5M2E3NjZlNjMyIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZTNmMWY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmOGU0O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMzMDk0YWMxMC05ZDZmLTQyMDAtODUyMC05OTkzYTc2NmU2MzIpIi8+PC9zdmc+);
}








#s-ff306010-182d-472a-b666-324c3692a520 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ff306010-182d-472a-b666-324c3692a520.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-772bad11-b90b-467f-a29c-d3a340dc09fb {
  padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(188, 225, 232, 0);
}

@media (min-width: 0px) {
[id="s-772bad11-b90b-467f-a29c-d3a340dc09fb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-772bad11-b90b-467f-a29c-d3a340dc09fb"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-772bad11-b90b-467f-a29c-d3a340dc09fb"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-772bad11-b90b-467f-a29c-d3a340dc09fb"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-772bad11-b90b-467f-a29c-d3a340dc09fb"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-772bad11-b90b-467f-a29c-d3a340dc09fb"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-772bad11-b90b-467f-a29c-d3a340dc09fb"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

}

#s-8d8feac3-4a54-4d19-ae2e-f2912f3977bd {
  min-height: 150px;
}








#s-8d8feac3-4a54-4d19-ae2e-f2912f3977bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8d8feac3-4a54-4d19-ae2e-f2912f3977bd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e7624482-53bd-425f-aa84-3e80f295b495 {
  text-align: center;
}







  img.s-e7624482-53bd-425f-aa84-3e80f295b495.shogun-image {
    
    
  }


.s-e7624482-53bd-425f-aa84-3e80f295b495 .shogun-image-content {
  
    align-items: center;
  
}

.s-e7624482-53bd-425f-aa84-3e80f295b495.shg-align-container {
  text-align: center
}

.s-e7624482-53bd-425f-aa84-3e80f295b495.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7624482-53bd-425f-aa84-3e80f295b495.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-e7624482-53bd-425f-aa84-3e80f295b495.shogun-image {
    
    
  }


.s-e7624482-53bd-425f-aa84-3e80f295b495 .shogun-image-content {
  
    align-items: center;
  
}

.s-e7624482-53bd-425f-aa84-3e80f295b495.shg-align-container {
  text-align: center
}

.s-e7624482-53bd-425f-aa84-3e80f295b495.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7624482-53bd-425f-aa84-3e80f295b495.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e7624482-53bd-425f-aa84-3e80f295b495.shogun-image {
    
    
  }


.s-e7624482-53bd-425f-aa84-3e80f295b495 .shogun-image-content {
  
    align-items: center;
  
}

.s-e7624482-53bd-425f-aa84-3e80f295b495.shg-align-container {
  text-align: center
}

.s-e7624482-53bd-425f-aa84-3e80f295b495.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7624482-53bd-425f-aa84-3e80f295b495.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e7624482-53bd-425f-aa84-3e80f295b495.shogun-image {
    
    
  }


.s-e7624482-53bd-425f-aa84-3e80f295b495 .shogun-image-content {
  
    align-items: center;
  
}

.s-e7624482-53bd-425f-aa84-3e80f295b495.shg-align-container {
  text-align: center
}

.s-e7624482-53bd-425f-aa84-3e80f295b495.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7624482-53bd-425f-aa84-3e80f295b495.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e7624482-53bd-425f-aa84-3e80f295b495.shogun-image {
    
    
  }


.s-e7624482-53bd-425f-aa84-3e80f295b495 .shogun-image-content {
  
    align-items: center;
  
}

.s-e7624482-53bd-425f-aa84-3e80f295b495.shg-align-container {
  text-align: center
}

.s-e7624482-53bd-425f-aa84-3e80f295b495.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e7624482-53bd-425f-aa84-3e80f295b495.shogun-image {
  box-sizing: border-box;
}


}
#s-f5e21dff-5892-412c-bdfa-8fbb1db36085 {
  padding-top: 15px;
padding-right: 5%;
}

#s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25 {
  text-align: center;
}








.s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25 .shogun-image-content {
  
    align-items: center;
  
}

.s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25.shg-align-container {
  text-align: center
}

.s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){






.s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25 .shogun-image-content {
  
    align-items: center;
  
}

.s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25.shg-align-container {
  text-align: center
}

.s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25.shogun-image {
  box-sizing: border-box;
}


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






.s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25 .shogun-image-content {
  
    align-items: center;
  
}

.s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25.shg-align-container {
  text-align: center
}

.s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25.shogun-image {
  box-sizing: border-box;
}


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






.s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25 .shogun-image-content {
  
    align-items: center;
  
}

.s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25.shg-align-container {
  text-align: center
}

.s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25.shogun-image {
  box-sizing: border-box;
}


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






.s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25 .shogun-image-content {
  
    align-items: center;
  
}

.s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25.shg-align-container {
  text-align: center
}

.s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b0c5a5cc-098e-4c16-98a0-7476dde9ac25.shogun-image {
  box-sizing: border-box;
}


}
#s-c4b21af3-2845-4885-a8b1-574c2b16c238 {
  padding-top: 40px;
padding-bottom: 60px;
min-height: 300px;
background-color: rgba(211, 234, 239, 1);
}








#s-c4b21af3-2845-4885-a8b1-574c2b16c238 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c4b21af3-2845-4885-a8b1-574c2b16c238.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-34dc3afa-f11a-418a-b783-6a6408e5c407"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-34dc3afa-f11a-418a-b783-6a6408e5c407"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-34dc3afa-f11a-418a-b783-6a6408e5c407"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-34dc3afa-f11a-418a-b783-6a6408e5c407"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-34dc3afa-f11a-418a-b783-6a6408e5c407"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-34dc3afa-f11a-418a-b783-6a6408e5c407"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-34dc3afa-f11a-418a-b783-6a6408e5c407"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-8e20729a-39d2-42a9-bf0d-0157248399dc {
  padding-top: 10px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
text-align: center;
}

#s-8e20729a-39d2-42a9-bf0d-0157248399dc .shogun-heading-component h2 {
  color: rgba(44, 73, 91, 1);
  font-weight:  normal ;
  font-family: "june-expt-variable";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1.3em;
  
  
}



#s-7b6d67da-1d83-4144-87f9-ddf5ee0f7cd6 {
  background-size: cover;
margin-top: 2px;
margin-left: 5%;
margin-bottom: 2px;
margin-right: 5%;
padding-left: 5%;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 20px;
min-height: 140px;
background-color: rgba(255, 255, 255, 1);
background-position: center top;
}








#s-7b6d67da-1d83-4144-87f9-ddf5ee0f7cd6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7b6d67da-1d83-4144-87f9-ddf5ee0f7cd6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-13ce52c0-89b3-40cc-b02b-76547327e4bc {
  padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-13ce52c0-89b3-40cc-b02b-76547327e4bc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-13ce52c0-89b3-40cc-b02b-76547327e4bc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-13ce52c0-89b3-40cc-b02b-76547327e4bc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-13ce52c0-89b3-40cc-b02b-76547327e4bc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-13ce52c0-89b3-40cc-b02b-76547327e4bc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-13ce52c0-89b3-40cc-b02b-76547327e4bc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-13ce52c0-89b3-40cc-b02b-76547327e4bc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-41c5922c-c972-411a-a3ed-5de78d07ff62 {
  text-align: center;
}







  img.s-41c5922c-c972-411a-a3ed-5de78d07ff62.shogun-image {
    
    
  }


.s-41c5922c-c972-411a-a3ed-5de78d07ff62 .shogun-image-content {
  
    align-items: center;
  
}

.s-41c5922c-c972-411a-a3ed-5de78d07ff62.shg-align-container {
  text-align: center
}

.s-41c5922c-c972-411a-a3ed-5de78d07ff62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41c5922c-c972-411a-a3ed-5de78d07ff62.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-41c5922c-c972-411a-a3ed-5de78d07ff62.shogun-image {
    
    
  }


.s-41c5922c-c972-411a-a3ed-5de78d07ff62 .shogun-image-content {
  
    align-items: center;
  
}

.s-41c5922c-c972-411a-a3ed-5de78d07ff62.shg-align-container {
  text-align: center
}

.s-41c5922c-c972-411a-a3ed-5de78d07ff62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41c5922c-c972-411a-a3ed-5de78d07ff62.shogun-image {
  box-sizing: border-box;
}


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





  img.s-41c5922c-c972-411a-a3ed-5de78d07ff62.shogun-image {
    
    
  }


.s-41c5922c-c972-411a-a3ed-5de78d07ff62 .shogun-image-content {
  
    align-items: center;
  
}

.s-41c5922c-c972-411a-a3ed-5de78d07ff62.shg-align-container {
  text-align: center
}

.s-41c5922c-c972-411a-a3ed-5de78d07ff62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41c5922c-c972-411a-a3ed-5de78d07ff62.shogun-image {
  box-sizing: border-box;
}


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





  img.s-41c5922c-c972-411a-a3ed-5de78d07ff62.shogun-image {
    
    
  }


.s-41c5922c-c972-411a-a3ed-5de78d07ff62 .shogun-image-content {
  
    align-items: center;
  
}

.s-41c5922c-c972-411a-a3ed-5de78d07ff62.shg-align-container {
  text-align: center
}

.s-41c5922c-c972-411a-a3ed-5de78d07ff62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41c5922c-c972-411a-a3ed-5de78d07ff62.shogun-image {
  box-sizing: border-box;
}


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





  img.s-41c5922c-c972-411a-a3ed-5de78d07ff62.shogun-image {
    
    
  }


.s-41c5922c-c972-411a-a3ed-5de78d07ff62 .shogun-image-content {
  
    align-items: center;
  
}

.s-41c5922c-c972-411a-a3ed-5de78d07ff62.shg-align-container {
  text-align: center
}

.s-41c5922c-c972-411a-a3ed-5de78d07ff62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-41c5922c-c972-411a-a3ed-5de78d07ff62.shogun-image {
  box-sizing: border-box;
}


}
#s-6a09d770-66b9-430e-8b57-84caeedc36d8 {
  padding-top: 10px;
padding-right: 5%;
}

#s-0c519a09-3a66-4f1e-9231-4d8eacfdbcaf {
  padding-right: 5%;
}

#s-caf9a95f-5cd7-444b-9454-6fb353e38953 {
  text-align: center;
}








.s-caf9a95f-5cd7-444b-9454-6fb353e38953 .shogun-image-content {
  
    align-items: center;
  
}

.s-caf9a95f-5cd7-444b-9454-6fb353e38953.shg-align-container {
  text-align: center
}

.s-caf9a95f-5cd7-444b-9454-6fb353e38953.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-caf9a95f-5cd7-444b-9454-6fb353e38953.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){






.s-caf9a95f-5cd7-444b-9454-6fb353e38953 .shogun-image-content {
  
    align-items: center;
  
}

.s-caf9a95f-5cd7-444b-9454-6fb353e38953.shg-align-container {
  text-align: center
}

.s-caf9a95f-5cd7-444b-9454-6fb353e38953.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-caf9a95f-5cd7-444b-9454-6fb353e38953.shogun-image {
  box-sizing: border-box;
}


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






.s-caf9a95f-5cd7-444b-9454-6fb353e38953 .shogun-image-content {
  
    align-items: center;
  
}

.s-caf9a95f-5cd7-444b-9454-6fb353e38953.shg-align-container {
  text-align: center
}

.s-caf9a95f-5cd7-444b-9454-6fb353e38953.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-caf9a95f-5cd7-444b-9454-6fb353e38953.shogun-image {
  box-sizing: border-box;
}


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






.s-caf9a95f-5cd7-444b-9454-6fb353e38953 .shogun-image-content {
  
    align-items: center;
  
}

.s-caf9a95f-5cd7-444b-9454-6fb353e38953.shg-align-container {
  text-align: center
}

.s-caf9a95f-5cd7-444b-9454-6fb353e38953.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-caf9a95f-5cd7-444b-9454-6fb353e38953.shogun-image {
  box-sizing: border-box;
}


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






.s-caf9a95f-5cd7-444b-9454-6fb353e38953 .shogun-image-content {
  
    align-items: center;
  
}

.s-caf9a95f-5cd7-444b-9454-6fb353e38953.shg-align-container {
  text-align: center
}

.s-caf9a95f-5cd7-444b-9454-6fb353e38953.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-caf9a95f-5cd7-444b-9454-6fb353e38953.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 0px) {
[id="s-fcd09b7e-8a47-421e-8190-437f135737b9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fcd09b7e-8a47-421e-8190-437f135737b9"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-fcd09b7e-8a47-421e-8190-437f135737b9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-fcd09b7e-8a47-421e-8190-437f135737b9"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-fcd09b7e-8a47-421e-8190-437f135737b9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-fcd09b7e-8a47-421e-8190-437f135737b9"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-fcd09b7e-8a47-421e-8190-437f135737b9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

#s-32b5a1a6-819a-420a-95d5-e234eabcbe1b {
  padding-top: 30px;
padding-bottom: 60px;
min-height: 300px;
}








#s-32b5a1a6-819a-420a-95d5-e234eabcbe1b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-32b5a1a6-819a-420a-95d5-e234eabcbe1b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2cad5232-6937-46f7-bda1-5457947aa966 {
  padding-top: 10px;
padding-bottom: 30px;
text-align: center;
}

#s-2cad5232-6937-46f7-bda1-5457947aa966 .shogun-heading-component h3 {
  color: rgba(44, 73, 91, 1);
  font-weight:  normal ;
  font-family: "june-expt-variable";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1.3em;
  
  
}



@media (min-width: 0px) {
[id="s-9ebab128-f53b-4ec8-aff0-5f5f65953072"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9ebab128-f53b-4ec8-aff0-5f5f65953072"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-9ebab128-f53b-4ec8-aff0-5f5f65953072"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9ebab128-f53b-4ec8-aff0-5f5f65953072"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-9ebab128-f53b-4ec8-aff0-5f5f65953072"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9ebab128-f53b-4ec8-aff0-5f5f65953072"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-9ebab128-f53b-4ec8-aff0-5f5f65953072"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-02463b31-61d8-496c-9822-14c84de9e8ea"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-02463b31-61d8-496c-9822-14c84de9e8ea"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-02463b31-61d8-496c-9822-14c84de9e8ea"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-02463b31-61d8-496c-9822-14c84de9e8ea"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-02463b31-61d8-496c-9822-14c84de9e8ea"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-02463b31-61d8-496c-9822-14c84de9e8ea"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-02463b31-61d8-496c-9822-14c84de9e8ea"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

#s-acb66944-7cb1-4660-96bf-07b8ee9ed363 {
  padding-top: 10px;
text-align: center;
}







  img.s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shogun-image {
    
    
  }


.s-acb66944-7cb1-4660-96bf-07b8ee9ed363 .shogun-image-content {
  
    align-items: center;
  
}

.s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shg-align-container {
  text-align: center
}

.s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shogun-image {
    
    
  }


.s-acb66944-7cb1-4660-96bf-07b8ee9ed363 .shogun-image-content {
  
    align-items: center;
  
}

.s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shg-align-container {
  text-align: center
}

.s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shogun-image {
  box-sizing: border-box;
}


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





  img.s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shogun-image {
    
    
  }


.s-acb66944-7cb1-4660-96bf-07b8ee9ed363 .shogun-image-content {
  
    align-items: center;
  
}

.s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shg-align-container {
  text-align: center
}

.s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shogun-image {
  box-sizing: border-box;
}


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





  img.s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shogun-image {
    
    
  }


.s-acb66944-7cb1-4660-96bf-07b8ee9ed363 .shogun-image-content {
  
    align-items: center;
  
}

.s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shg-align-container {
  text-align: center
}

.s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shogun-image {
  box-sizing: border-box;
}


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





  img.s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shogun-image {
    
    
  }


.s-acb66944-7cb1-4660-96bf-07b8ee9ed363 .shogun-image-content {
  
    align-items: center;
  
}

.s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shg-align-container {
  text-align: center
}

.s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-acb66944-7cb1-4660-96bf-07b8ee9ed363.shogun-image {
  box-sizing: border-box;
}


}
#s-2618bf30-37b8-482c-8411-c68aa78287c6 {
  padding-top: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-ae452966-df99-4971-abc1-9b83b035602a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ae452966-df99-4971-abc1-9b83b035602a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ae452966-df99-4971-abc1-9b83b035602a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ae452966-df99-4971-abc1-9b83b035602a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ae452966-df99-4971-abc1-9b83b035602a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ae452966-df99-4971-abc1-9b83b035602a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ae452966-df99-4971-abc1-9b83b035602a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

#s-def925d1-2391-47a7-98c7-9e765d4fb30e {
  padding-top: 10px;
text-align: center;
}







  img.s-def925d1-2391-47a7-98c7-9e765d4fb30e.shogun-image {
    
    
  }


.s-def925d1-2391-47a7-98c7-9e765d4fb30e .shogun-image-content {
  
    align-items: center;
  
}

.s-def925d1-2391-47a7-98c7-9e765d4fb30e.shg-align-container {
  text-align: center
}

.s-def925d1-2391-47a7-98c7-9e765d4fb30e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-def925d1-2391-47a7-98c7-9e765d4fb30e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-def925d1-2391-47a7-98c7-9e765d4fb30e.shogun-image {
    
    
  }


.s-def925d1-2391-47a7-98c7-9e765d4fb30e .shogun-image-content {
  
    align-items: center;
  
}

.s-def925d1-2391-47a7-98c7-9e765d4fb30e.shg-align-container {
  text-align: center
}

.s-def925d1-2391-47a7-98c7-9e765d4fb30e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-def925d1-2391-47a7-98c7-9e765d4fb30e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-def925d1-2391-47a7-98c7-9e765d4fb30e.shogun-image {
    
    
  }


.s-def925d1-2391-47a7-98c7-9e765d4fb30e .shogun-image-content {
  
    align-items: center;
  
}

.s-def925d1-2391-47a7-98c7-9e765d4fb30e.shg-align-container {
  text-align: center
}

.s-def925d1-2391-47a7-98c7-9e765d4fb30e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-def925d1-2391-47a7-98c7-9e765d4fb30e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-def925d1-2391-47a7-98c7-9e765d4fb30e.shogun-image {
    
    
  }


.s-def925d1-2391-47a7-98c7-9e765d4fb30e .shogun-image-content {
  
    align-items: center;
  
}

.s-def925d1-2391-47a7-98c7-9e765d4fb30e.shg-align-container {
  text-align: center
}

.s-def925d1-2391-47a7-98c7-9e765d4fb30e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-def925d1-2391-47a7-98c7-9e765d4fb30e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-def925d1-2391-47a7-98c7-9e765d4fb30e.shogun-image {
    
    
  }


.s-def925d1-2391-47a7-98c7-9e765d4fb30e .shogun-image-content {
  
    align-items: center;
  
}

.s-def925d1-2391-47a7-98c7-9e765d4fb30e.shg-align-container {
  text-align: center
}

.s-def925d1-2391-47a7-98c7-9e765d4fb30e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-def925d1-2391-47a7-98c7-9e765d4fb30e.shogun-image {
  box-sizing: border-box;
}


}
#s-1f10f4bb-af0c-4f97-87d1-8779a742b5f2 {
  padding-top: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-0ef2ef07-fb10-44a3-a853-883eec4a6117"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0ef2ef07-fb10-44a3-a853-883eec4a6117"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-0ef2ef07-fb10-44a3-a853-883eec4a6117"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0ef2ef07-fb10-44a3-a853-883eec4a6117"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-0ef2ef07-fb10-44a3-a853-883eec4a6117"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0ef2ef07-fb10-44a3-a853-883eec4a6117"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-0ef2ef07-fb10-44a3-a853-883eec4a6117"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

#s-2554b659-049e-42b1-afa5-437d07b7a6a1 {
  padding-top: 10px;
text-align: center;
}







  img.s-2554b659-049e-42b1-afa5-437d07b7a6a1.shogun-image {
    
    
  }


.s-2554b659-049e-42b1-afa5-437d07b7a6a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-2554b659-049e-42b1-afa5-437d07b7a6a1.shg-align-container {
  text-align: center
}

.s-2554b659-049e-42b1-afa5-437d07b7a6a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2554b659-049e-42b1-afa5-437d07b7a6a1.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-2554b659-049e-42b1-afa5-437d07b7a6a1.shogun-image {
    
    
  }


.s-2554b659-049e-42b1-afa5-437d07b7a6a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-2554b659-049e-42b1-afa5-437d07b7a6a1.shg-align-container {
  text-align: center
}

.s-2554b659-049e-42b1-afa5-437d07b7a6a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2554b659-049e-42b1-afa5-437d07b7a6a1.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2554b659-049e-42b1-afa5-437d07b7a6a1.shogun-image {
    
    
  }


.s-2554b659-049e-42b1-afa5-437d07b7a6a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-2554b659-049e-42b1-afa5-437d07b7a6a1.shg-align-container {
  text-align: center
}

.s-2554b659-049e-42b1-afa5-437d07b7a6a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2554b659-049e-42b1-afa5-437d07b7a6a1.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2554b659-049e-42b1-afa5-437d07b7a6a1.shogun-image {
    
    
  }


.s-2554b659-049e-42b1-afa5-437d07b7a6a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-2554b659-049e-42b1-afa5-437d07b7a6a1.shg-align-container {
  text-align: center
}

.s-2554b659-049e-42b1-afa5-437d07b7a6a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2554b659-049e-42b1-afa5-437d07b7a6a1.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2554b659-049e-42b1-afa5-437d07b7a6a1.shogun-image {
    
    
  }


.s-2554b659-049e-42b1-afa5-437d07b7a6a1 .shogun-image-content {
  
    align-items: center;
  
}

.s-2554b659-049e-42b1-afa5-437d07b7a6a1.shg-align-container {
  text-align: center
}

.s-2554b659-049e-42b1-afa5-437d07b7a6a1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2554b659-049e-42b1-afa5-437d07b7a6a1.shogun-image {
  box-sizing: border-box;
}


}
#s-fad79bfa-45b7-4500-89e4-454e3006fb91 {
  padding-top: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-1e62f8bc-add7-49a9-bb3c-641acc6fd38a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1e62f8bc-add7-49a9-bb3c-641acc6fd38a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-1e62f8bc-add7-49a9-bb3c-641acc6fd38a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1e62f8bc-add7-49a9-bb3c-641acc6fd38a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-1e62f8bc-add7-49a9-bb3c-641acc6fd38a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1e62f8bc-add7-49a9-bb3c-641acc6fd38a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-1e62f8bc-add7-49a9-bb3c-641acc6fd38a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

#s-c173b35f-a6af-4f96-af24-5d3b40525ac6 {
  padding-top: 10px;
text-align: center;
}







  img.s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shogun-image {
    
    
  }


.s-c173b35f-a6af-4f96-af24-5d3b40525ac6 .shogun-image-content {
  
    align-items: center;
  
}

.s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shg-align-container {
  text-align: center
}

.s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shogun-image {
    
    
  }


.s-c173b35f-a6af-4f96-af24-5d3b40525ac6 .shogun-image-content {
  
    align-items: center;
  
}

.s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shg-align-container {
  text-align: center
}

.s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shogun-image {
    
    
  }


.s-c173b35f-a6af-4f96-af24-5d3b40525ac6 .shogun-image-content {
  
    align-items: center;
  
}

.s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shg-align-container {
  text-align: center
}

.s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shogun-image {
    
    
  }


.s-c173b35f-a6af-4f96-af24-5d3b40525ac6 .shogun-image-content {
  
    align-items: center;
  
}

.s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shg-align-container {
  text-align: center
}

.s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shogun-image {
    
    
  }


.s-c173b35f-a6af-4f96-af24-5d3b40525ac6 .shogun-image-content {
  
    align-items: center;
  
}

.s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shg-align-container {
  text-align: center
}

.s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c173b35f-a6af-4f96-af24-5d3b40525ac6.shogun-image {
  box-sizing: border-box;
}


}
#s-bd8c1e8a-b80d-47c5-a5c0-3c6e0e1774e4 {
  padding-top: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 255, 255, 1);
}

#s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa {
  text-align: center;
}







  img.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shogun-image {
    
    
  }


.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa .shogun-image-content {
  
    align-items: center;
  
}

.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shg-align-container {
  text-align: center
}

.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shogun-image {
    
    
  }


.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa .shogun-image-content {
  
    align-items: center;
  
}

.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shg-align-container {
  text-align: center
}

.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shogun-image {
    
    
  }


.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa .shogun-image-content {
  
    align-items: center;
  
}

.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shg-align-container {
  text-align: center
}

.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shogun-image {
    
    
  }


.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa .shogun-image-content {
  
    align-items: center;
  
}

.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shg-align-container {
  text-align: center
}

.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shogun-image {
    
    
  }


.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa .shogun-image-content {
  
    align-items: center;
  
}

.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shg-align-container {
  text-align: center
}

.s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a1de0ad-fdd9-4ec4-90a0-1f1cbba3c9fa.shogun-image {
  box-sizing: border-box;
}


}
#s-5bf9fca0-7541-4f5d-9d10-c13a92cbda66 {
  padding-top: 30px;
padding-left: 5%;
padding-right: 4%;
}

@media (min-width: 0px) {
[id="s-5bf9fca0-7541-4f5d-9d10-c13a92cbda66"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-5bf9fca0-7541-4f5d-9d10-c13a92cbda66"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-5bf9fca0-7541-4f5d-9d10-c13a92cbda66"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-5bf9fca0-7541-4f5d-9d10-c13a92cbda66"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-e1cfdc71-e390-4e26-8af2-09578a5e5885 {
  text-align: center;
}







  img.s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shogun-image {
    
    
  }


.s-e1cfdc71-e390-4e26-8af2-09578a5e5885 .shogun-image-content {
  
    align-items: center;
  
}

.s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shg-align-container {
  text-align: center
}

.s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shogun-image {
    
    
  }


.s-e1cfdc71-e390-4e26-8af2-09578a5e5885 .shogun-image-content {
  
    align-items: center;
  
}

.s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shg-align-container {
  text-align: center
}

.s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shogun-image {
    
    
  }


.s-e1cfdc71-e390-4e26-8af2-09578a5e5885 .shogun-image-content {
  
    align-items: center;
  
}

.s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shg-align-container {
  text-align: center
}

.s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shogun-image {
    
    
  }


.s-e1cfdc71-e390-4e26-8af2-09578a5e5885 .shogun-image-content {
  
    align-items: center;
  
}

.s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shg-align-container {
  text-align: center
}

.s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shogun-image {
    
    
  }


.s-e1cfdc71-e390-4e26-8af2-09578a5e5885 .shogun-image-content {
  
    align-items: center;
  
}

.s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shg-align-container {
  text-align: center
}

.s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e1cfdc71-e390-4e26-8af2-09578a5e5885.shogun-image {
  box-sizing: border-box;
}


}
#s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c {
  text-align: center;
}







  img.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shogun-image {
    
    
  }


.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c .shogun-image-content {
  
    align-items: center;
  
}

.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shg-align-container {
  text-align: center
}

.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shogun-image {
    
    
  }


.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c .shogun-image-content {
  
    align-items: center;
  
}

.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shg-align-container {
  text-align: center
}

.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shogun-image {
    
    
  }


.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c .shogun-image-content {
  
    align-items: center;
  
}

.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shg-align-container {
  text-align: center
}

.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shogun-image {
    
    
  }


.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c .shogun-image-content {
  
    align-items: center;
  
}

.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shg-align-container {
  text-align: center
}

.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shogun-image {
    
    
  }


.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c .shogun-image-content {
  
    align-items: center;
  
}

.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shg-align-container {
  text-align: center
}

.s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2867fed0-01d9-4a5e-9a1b-20ca0b0e162c.shogun-image {
  box-sizing: border-box;
}


}
#s-438dcb3e-d06d-4606-90bb-57ac68db99f4 {
  text-align: center;
}







  img.s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shogun-image {
    
    
  }


.s-438dcb3e-d06d-4606-90bb-57ac68db99f4 .shogun-image-content {
  
    align-items: center;
  
}

.s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shg-align-container {
  text-align: center
}

.s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shogun-image {
    
    
  }


.s-438dcb3e-d06d-4606-90bb-57ac68db99f4 .shogun-image-content {
  
    align-items: center;
  
}

.s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shg-align-container {
  text-align: center
}

.s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shogun-image {
    
    
  }


.s-438dcb3e-d06d-4606-90bb-57ac68db99f4 .shogun-image-content {
  
    align-items: center;
  
}

.s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shg-align-container {
  text-align: center
}

.s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shogun-image {
    
    
  }


.s-438dcb3e-d06d-4606-90bb-57ac68db99f4 .shogun-image-content {
  
    align-items: center;
  
}

.s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shg-align-container {
  text-align: center
}

.s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shogun-image {
    
    
  }


.s-438dcb3e-d06d-4606-90bb-57ac68db99f4 .shogun-image-content {
  
    align-items: center;
  
}

.s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shg-align-container {
  text-align: center
}

.s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-438dcb3e-d06d-4606-90bb-57ac68db99f4.shogun-image {
  box-sizing: border-box;
}


}
#s-169c329d-c11d-460d-b127-19ddd5a66e3b {
  text-align: center;
}







  img.s-169c329d-c11d-460d-b127-19ddd5a66e3b.shogun-image {
    
    
  }


.s-169c329d-c11d-460d-b127-19ddd5a66e3b .shogun-image-content {
  
    align-items: center;
  
}

.s-169c329d-c11d-460d-b127-19ddd5a66e3b.shg-align-container {
  text-align: center
}

.s-169c329d-c11d-460d-b127-19ddd5a66e3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-169c329d-c11d-460d-b127-19ddd5a66e3b.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-169c329d-c11d-460d-b127-19ddd5a66e3b.shogun-image {
    
    
  }


.s-169c329d-c11d-460d-b127-19ddd5a66e3b .shogun-image-content {
  
    align-items: center;
  
}

.s-169c329d-c11d-460d-b127-19ddd5a66e3b.shg-align-container {
  text-align: center
}

.s-169c329d-c11d-460d-b127-19ddd5a66e3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-169c329d-c11d-460d-b127-19ddd5a66e3b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-169c329d-c11d-460d-b127-19ddd5a66e3b.shogun-image {
    
    
  }


.s-169c329d-c11d-460d-b127-19ddd5a66e3b .shogun-image-content {
  
    align-items: center;
  
}

.s-169c329d-c11d-460d-b127-19ddd5a66e3b.shg-align-container {
  text-align: center
}

.s-169c329d-c11d-460d-b127-19ddd5a66e3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-169c329d-c11d-460d-b127-19ddd5a66e3b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-169c329d-c11d-460d-b127-19ddd5a66e3b.shogun-image {
    
    
  }


.s-169c329d-c11d-460d-b127-19ddd5a66e3b .shogun-image-content {
  
    align-items: center;
  
}

.s-169c329d-c11d-460d-b127-19ddd5a66e3b.shg-align-container {
  text-align: center
}

.s-169c329d-c11d-460d-b127-19ddd5a66e3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-169c329d-c11d-460d-b127-19ddd5a66e3b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-169c329d-c11d-460d-b127-19ddd5a66e3b.shogun-image {
    
    
  }


.s-169c329d-c11d-460d-b127-19ddd5a66e3b .shogun-image-content {
  
    align-items: center;
  
}

.s-169c329d-c11d-460d-b127-19ddd5a66e3b.shg-align-container {
  text-align: center
}

.s-169c329d-c11d-460d-b127-19ddd5a66e3b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-169c329d-c11d-460d-b127-19ddd5a66e3b.shogun-image {
  box-sizing: border-box;
}


}
#s-a89dd949-b97a-4952-ae4a-e08417a4bc9a {
  text-align: center;
}







  img.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shogun-image {
    
    
  }


.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a .shogun-image-content {
  
    align-items: center;
  
}

.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shg-align-container {
  text-align: center
}

.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shogun-image {
    
    
  }


.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a .shogun-image-content {
  
    align-items: center;
  
}

.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shg-align-container {
  text-align: center
}

.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shogun-image {
    
    
  }


.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a .shogun-image-content {
  
    align-items: center;
  
}

.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shg-align-container {
  text-align: center
}

.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shogun-image {
    
    
  }


.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a .shogun-image-content {
  
    align-items: center;
  
}

.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shg-align-container {
  text-align: center
}

.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shogun-image {
    
    
  }


.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a .shogun-image-content {
  
    align-items: center;
  
}

.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shg-align-container {
  text-align: center
}

.s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a89dd949-b97a-4952-ae4a-e08417a4bc9a.shogun-image {
  box-sizing: border-box;
}


}
#s-b3b5ee31-7e9d-4450-8570-eef750ac19e2 {
  text-align: center;
}







  img.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shogun-image {
    
    
  }


.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2 .shogun-image-content {
  
    align-items: center;
  
}

.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shg-align-container {
  text-align: center
}

.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shogun-image {
    
    
  }


.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2 .shogun-image-content {
  
    align-items: center;
  
}

.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shg-align-container {
  text-align: center
}

.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shogun-image {
    
    
  }


.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2 .shogun-image-content {
  
    align-items: center;
  
}

.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shg-align-container {
  text-align: center
}

.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shogun-image {
    
    
  }


.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2 .shogun-image-content {
  
    align-items: center;
  
}

.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shg-align-container {
  text-align: center
}

.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shogun-image {
    
    
  }


.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2 .shogun-image-content {
  
    align-items: center;
  
}

.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shg-align-container {
  text-align: center
}

.s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b3b5ee31-7e9d-4450-8570-eef750ac19e2.shogun-image {
  box-sizing: border-box;
}


}
#s-106ec6ad-8eca-4117-ade6-a351d66c6dd8 {
  text-align: center;
}








.s-106ec6ad-8eca-4117-ade6-a351d66c6dd8 .shogun-image-content {
  
    align-items: center;
  
}

.s-106ec6ad-8eca-4117-ade6-a351d66c6dd8.shg-align-container {
  text-align: center
}

.s-106ec6ad-8eca-4117-ade6-a351d66c6dd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-106ec6ad-8eca-4117-ade6-a351d66c6dd8.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){






.s-106ec6ad-8eca-4117-ade6-a351d66c6dd8 .shogun-image-content {
  
    align-items: center;
  
}

.s-106ec6ad-8eca-4117-ade6-a351d66c6dd8.shg-align-container {
  text-align: center
}

.s-106ec6ad-8eca-4117-ade6-a351d66c6dd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-106ec6ad-8eca-4117-ade6-a351d66c6dd8.shogun-image {
  box-sizing: border-box;
}


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






.s-106ec6ad-8eca-4117-ade6-a351d66c6dd8 .shogun-image-content {
  
    align-items: center;
  
}

.s-106ec6ad-8eca-4117-ade6-a351d66c6dd8.shg-align-container {
  text-align: center
}

.s-106ec6ad-8eca-4117-ade6-a351d66c6dd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-106ec6ad-8eca-4117-ade6-a351d66c6dd8.shogun-image {
  box-sizing: border-box;
}


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






.s-106ec6ad-8eca-4117-ade6-a351d66c6dd8 .shogun-image-content {
  
    align-items: center;
  
}

.s-106ec6ad-8eca-4117-ade6-a351d66c6dd8.shg-align-container {
  text-align: center
}

.s-106ec6ad-8eca-4117-ade6-a351d66c6dd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-106ec6ad-8eca-4117-ade6-a351d66c6dd8.shogun-image {
  box-sizing: border-box;
}


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






.s-106ec6ad-8eca-4117-ade6-a351d66c6dd8 .shogun-image-content {
  
    align-items: center;
  
}

.s-106ec6ad-8eca-4117-ade6-a351d66c6dd8.shg-align-container {
  text-align: center
}

.s-106ec6ad-8eca-4117-ade6-a351d66c6dd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-106ec6ad-8eca-4117-ade6-a351d66c6dd8.shogun-image {
  box-sizing: border-box;
}


}
#s-d41661c6-6772-4402-9ec2-bf55998b9e73 {
  padding-top: 50px;
padding-bottom: 10px;
min-height: 300px;
background-color: rgba(251, 207, 169, 1);
}








#s-d41661c6-6772-4402-9ec2-bf55998b9e73 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d41661c6-6772-4402-9ec2-bf55998b9e73.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c4d9aae4-6af6-4ce0-9c29-00d7505fd1ee {
  padding-bottom: 40px;
}

@media (min-width: 0px) {
[id="s-c4d9aae4-6af6-4ce0-9c29-00d7505fd1ee"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c4d9aae4-6af6-4ce0-9c29-00d7505fd1ee"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c4d9aae4-6af6-4ce0-9c29-00d7505fd1ee"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c4d9aae4-6af6-4ce0-9c29-00d7505fd1ee"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c4d9aae4-6af6-4ce0-9c29-00d7505fd1ee"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c4d9aae4-6af6-4ce0-9c29-00d7505fd1ee"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c4d9aae4-6af6-4ce0-9c29-00d7505fd1ee"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

#s-809ed648-1999-4cf2-8c7a-94b05c613aad {
  padding-top: 10px;
padding-bottom: 20px;
text-align: center;
}

#s-809ed648-1999-4cf2-8c7a-94b05c613aad .shogun-heading-component h3 {
  color: rgba(44, 73, 91, 1);
  font-weight:  normal ;
  font-family: "june-expt-variable";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1.3em;
  
  
}



@media (min-width: 0px) {
[id="s-c45026b4-0340-4891-8790-4a74c5ce97d3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c45026b4-0340-4891-8790-4a74c5ce97d3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c45026b4-0340-4891-8790-4a74c5ce97d3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c45026b4-0340-4891-8790-4a74c5ce97d3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-93a85498-ea04-4e4e-ba4e-233511df57b4 {
  padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 30px;
min-height: 400px;
background-color: rgba(241, 232, 217, 1);
}








#s-93a85498-ea04-4e4e-ba4e-233511df57b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-93a85498-ea04-4e4e-ba4e-233511df57b4.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-f782ac34-e8bb-4448-be88-dcfb91accf7d {
  text-align: center;
}







  img.s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shogun-image {
    
    
  }


.s-f782ac34-e8bb-4448-be88-dcfb91accf7d .shogun-image-content {
  
    align-items: center;
  
}

.s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shg-align-container {
  text-align: center
}

.s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shogun-image {
    
    
  }


.s-f782ac34-e8bb-4448-be88-dcfb91accf7d .shogun-image-content {
  
    align-items: center;
  
}

.s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shg-align-container {
  text-align: center
}

.s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shogun-image {
    
    
  }


.s-f782ac34-e8bb-4448-be88-dcfb91accf7d .shogun-image-content {
  
    align-items: center;
  
}

.s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shg-align-container {
  text-align: center
}

.s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shogun-image {
    
    
  }


.s-f782ac34-e8bb-4448-be88-dcfb91accf7d .shogun-image-content {
  
    align-items: center;
  
}

.s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shg-align-container {
  text-align: center
}

.s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shogun-image {
    
    
  }


.s-f782ac34-e8bb-4448-be88-dcfb91accf7d .shogun-image-content {
  
    align-items: center;
  
}

.s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shg-align-container {
  text-align: center
}

.s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f782ac34-e8bb-4448-be88-dcfb91accf7d.shogun-image {
  box-sizing: border-box;
}


}
#s-678c88b4-9f1e-4d5a-88e2-c3c1f1cb2c6a {
  padding-top: 10px;
text-align: center;
}

#s-678c88b4-9f1e-4d5a-88e2-c3c1f1cb2c6a .shogun-heading-component h1 {
  color: rgba(44, 73, 91, 1);
  font-weight:  normal ;
  font-family: "june-expt-variable";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.3em;
  
  
}



#s-94059ad6-681d-413a-a768-995f065eb787 {
  padding-top: 10px;
padding-left: 5%;
padding-right: 5%;
}

#s-679fe58d-7034-419d-a2de-5a42a31634e1 {
  padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 30px;
min-height: 400px;
background-color: rgba(241, 232, 217, 1);
}








#s-679fe58d-7034-419d-a2de-5a42a31634e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-679fe58d-7034-419d-a2de-5a42a31634e1.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-bc867331-2fa9-416f-a484-cd68c5201291 {
  text-align: center;
}







  img.s-bc867331-2fa9-416f-a484-cd68c5201291.shogun-image {
    
    
  }


.s-bc867331-2fa9-416f-a484-cd68c5201291 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc867331-2fa9-416f-a484-cd68c5201291.shg-align-container {
  text-align: center
}

.s-bc867331-2fa9-416f-a484-cd68c5201291.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc867331-2fa9-416f-a484-cd68c5201291.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-bc867331-2fa9-416f-a484-cd68c5201291.shogun-image {
    
    
  }


.s-bc867331-2fa9-416f-a484-cd68c5201291 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc867331-2fa9-416f-a484-cd68c5201291.shg-align-container {
  text-align: center
}

.s-bc867331-2fa9-416f-a484-cd68c5201291.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc867331-2fa9-416f-a484-cd68c5201291.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bc867331-2fa9-416f-a484-cd68c5201291.shogun-image {
    
    
  }


.s-bc867331-2fa9-416f-a484-cd68c5201291 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc867331-2fa9-416f-a484-cd68c5201291.shg-align-container {
  text-align: center
}

.s-bc867331-2fa9-416f-a484-cd68c5201291.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc867331-2fa9-416f-a484-cd68c5201291.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bc867331-2fa9-416f-a484-cd68c5201291.shogun-image {
    
    
  }


.s-bc867331-2fa9-416f-a484-cd68c5201291 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc867331-2fa9-416f-a484-cd68c5201291.shg-align-container {
  text-align: center
}

.s-bc867331-2fa9-416f-a484-cd68c5201291.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc867331-2fa9-416f-a484-cd68c5201291.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bc867331-2fa9-416f-a484-cd68c5201291.shogun-image {
    
    
  }


.s-bc867331-2fa9-416f-a484-cd68c5201291 .shogun-image-content {
  
    align-items: center;
  
}

.s-bc867331-2fa9-416f-a484-cd68c5201291.shg-align-container {
  text-align: center
}

.s-bc867331-2fa9-416f-a484-cd68c5201291.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bc867331-2fa9-416f-a484-cd68c5201291.shogun-image {
  box-sizing: border-box;
}


}
#s-fd165904-564b-465a-8bed-521683701063 {
  padding-top: 10px;
text-align: center;
}

#s-fd165904-564b-465a-8bed-521683701063 .shogun-heading-component h1 {
  color: rgba(44, 73, 91, 1);
  font-weight:  normal ;
  font-family: "june-expt-variable";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.3em;
  
  
}



#s-838545ad-458b-4de8-8cf4-ac4aebd4c336 {
  padding-top: 10px;
padding-left: 5%;
padding-right: 5%;
}

#s-3ceabd76-ac3e-4a78-a9a0-d5d335ad0836 {
  min-height: 50px;
background-color: rgba(241, 241, 241, 0);
}
@media (min-width: 1200px){#s-3ceabd76-ac3e-4a78-a9a0-d5d335ad0836 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3ceabd76-ac3e-4a78-a9a0-d5d335ad0836 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-3ceabd76-ac3e-4a78-a9a0-d5d335ad0836 {
  
}
}@media (max-width: 767px){#s-3ceabd76-ac3e-4a78-a9a0-d5d335ad0836 {
  
}
}







#s-3ceabd76-ac3e-4a78-a9a0-d5d335ad0836 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3ceabd76-ac3e-4a78-a9a0-d5d335ad0836.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e9214563-e0b5-4c76-9316-90f40791145e {
  padding-top: 50px;
background-color: rgba(0, 0, 0, 0);
}

#s-0d386371-c89b-41c8-86fe-f7a2a295bab1 {
  padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-0d386371-c89b-41c8-86fe-f7a2a295bab1"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-0d386371-c89b-41c8-86fe-f7a2a295bab1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-0d386371-c89b-41c8-86fe-f7a2a295bab1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-0d386371-c89b-41c8-86fe-f7a2a295bab1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-b461eadb-5776-4e57-8e05-bf62cb9149bc {
  text-align: center;
}







  img.s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shogun-image {
    
    
  }


.s-b461eadb-5776-4e57-8e05-bf62cb9149bc .shogun-image-content {
  
    align-items: center;
  
}

.s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shg-align-container {
  text-align: center
}

.s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shogun-image {
    
    
  }


.s-b461eadb-5776-4e57-8e05-bf62cb9149bc .shogun-image-content {
  
    align-items: center;
  
}

.s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shg-align-container {
  text-align: center
}

.s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shogun-image {
    
    
  }


.s-b461eadb-5776-4e57-8e05-bf62cb9149bc .shogun-image-content {
  
    align-items: center;
  
}

.s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shg-align-container {
  text-align: center
}

.s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shogun-image {
    
    
  }


.s-b461eadb-5776-4e57-8e05-bf62cb9149bc .shogun-image-content {
  
    align-items: center;
  
}

.s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shg-align-container {
  text-align: center
}

.s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shogun-image {
    
    
  }


.s-b461eadb-5776-4e57-8e05-bf62cb9149bc .shogun-image-content {
  
    align-items: center;
  
}

.s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shg-align-container {
  text-align: center
}

.s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b461eadb-5776-4e57-8e05-bf62cb9149bc.shogun-image {
  box-sizing: border-box;
}


}
#s-4a0d693b-cfd2-4d9d-b856-69393b7c119c {
  text-align: center;
}







  img.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shogun-image {
    
    
  }


.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c .shogun-image-content {
  
    align-items: center;
  
}

.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shg-align-container {
  text-align: center
}

.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shogun-image {
    
    
  }


.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c .shogun-image-content {
  
    align-items: center;
  
}

.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shg-align-container {
  text-align: center
}

.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shogun-image {
    
    
  }


.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c .shogun-image-content {
  
    align-items: center;
  
}

.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shg-align-container {
  text-align: center
}

.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shogun-image {
    
    
  }


.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c .shogun-image-content {
  
    align-items: center;
  
}

.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shg-align-container {
  text-align: center
}

.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shogun-image {
    
    
  }


.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c .shogun-image-content {
  
    align-items: center;
  
}

.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shg-align-container {
  text-align: center
}

.s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a0d693b-cfd2-4d9d-b856-69393b7c119c.shogun-image {
  box-sizing: border-box;
}


}
#s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7 {
  text-align: center;
}







  img.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shogun-image {
    
    
  }


.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7 .shogun-image-content {
  
    align-items: center;
  
}

.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shg-align-container {
  text-align: center
}

.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shogun-image {
    
    
  }


.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7 .shogun-image-content {
  
    align-items: center;
  
}

.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shg-align-container {
  text-align: center
}

.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shogun-image {
    
    
  }


.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7 .shogun-image-content {
  
    align-items: center;
  
}

.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shg-align-container {
  text-align: center
}

.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shogun-image {
    
    
  }


.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7 .shogun-image-content {
  
    align-items: center;
  
}

.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shg-align-container {
  text-align: center
}

.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shogun-image {
    
    
  }


.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7 .shogun-image-content {
  
    align-items: center;
  
}

.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shg-align-container {
  text-align: center
}

.s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6dfd96c9-2bef-4523-bb89-8d430fa5dfb7.shogun-image {
  box-sizing: border-box;
}


}
#s-f06b49e4-d119-4b3b-b11c-e287dd2817fc {
  min-height: 50px;
background-color: rgba(241, 241, 241, 0);
}
@media (min-width: 1200px){#s-f06b49e4-d119-4b3b-b11c-e287dd2817fc {
  display: none;
}
#s-f06b49e4-d119-4b3b-b11c-e287dd2817fc, #wrap-s-f06b49e4-d119-4b3b-b11c-e287dd2817fc { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f06b49e4-d119-4b3b-b11c-e287dd2817fc {
  display: none;
}
#s-f06b49e4-d119-4b3b-b11c-e287dd2817fc, #wrap-s-f06b49e4-d119-4b3b-b11c-e287dd2817fc { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f06b49e4-d119-4b3b-b11c-e287dd2817fc {
  display: none;
}
#s-f06b49e4-d119-4b3b-b11c-e287dd2817fc, #wrap-s-f06b49e4-d119-4b3b-b11c-e287dd2817fc { display:none !important; }}@media (max-width: 767px){#s-f06b49e4-d119-4b3b-b11c-e287dd2817fc {
  
}
}







#s-f06b49e4-d119-4b3b-b11c-e287dd2817fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f06b49e4-d119-4b3b-b11c-e287dd2817fc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-afc5860f-ff62-4f68-9f85-38f84e43e379 {
  padding-top: 30px;
background-color: rgba(0, 0, 0, 0);
}

#s-98bb39bc-3929-4fac-b90e-81c6063748f0 {
  padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-98bb39bc-3929-4fac-b90e-81c6063748f0"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-98bb39bc-3929-4fac-b90e-81c6063748f0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-98bb39bc-3929-4fac-b90e-81c6063748f0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-98bb39bc-3929-4fac-b90e-81c6063748f0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-97f8a64f-342d-4607-9912-78258bd7a526 {
  text-align: center;
}







  img.s-97f8a64f-342d-4607-9912-78258bd7a526.shogun-image {
    
    
  }


.s-97f8a64f-342d-4607-9912-78258bd7a526 .shogun-image-content {
  
    align-items: center;
  
}

.s-97f8a64f-342d-4607-9912-78258bd7a526.shg-align-container {
  text-align: center
}

.s-97f8a64f-342d-4607-9912-78258bd7a526.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97f8a64f-342d-4607-9912-78258bd7a526.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-97f8a64f-342d-4607-9912-78258bd7a526.shogun-image {
    
    
  }


.s-97f8a64f-342d-4607-9912-78258bd7a526 .shogun-image-content {
  
    align-items: center;
  
}

.s-97f8a64f-342d-4607-9912-78258bd7a526.shg-align-container {
  text-align: center
}

.s-97f8a64f-342d-4607-9912-78258bd7a526.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97f8a64f-342d-4607-9912-78258bd7a526.shogun-image {
  box-sizing: border-box;
}


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





  img.s-97f8a64f-342d-4607-9912-78258bd7a526.shogun-image {
    
    
  }


.s-97f8a64f-342d-4607-9912-78258bd7a526 .shogun-image-content {
  
    align-items: center;
  
}

.s-97f8a64f-342d-4607-9912-78258bd7a526.shg-align-container {
  text-align: center
}

.s-97f8a64f-342d-4607-9912-78258bd7a526.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97f8a64f-342d-4607-9912-78258bd7a526.shogun-image {
  box-sizing: border-box;
}


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





  img.s-97f8a64f-342d-4607-9912-78258bd7a526.shogun-image {
    
    
  }


.s-97f8a64f-342d-4607-9912-78258bd7a526 .shogun-image-content {
  
    align-items: center;
  
}

.s-97f8a64f-342d-4607-9912-78258bd7a526.shg-align-container {
  text-align: center
}

.s-97f8a64f-342d-4607-9912-78258bd7a526.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97f8a64f-342d-4607-9912-78258bd7a526.shogun-image {
  box-sizing: border-box;
}


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





  img.s-97f8a64f-342d-4607-9912-78258bd7a526.shogun-image {
    
    
  }


.s-97f8a64f-342d-4607-9912-78258bd7a526 .shogun-image-content {
  
    align-items: center;
  
}

.s-97f8a64f-342d-4607-9912-78258bd7a526.shg-align-container {
  text-align: center
}

.s-97f8a64f-342d-4607-9912-78258bd7a526.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97f8a64f-342d-4607-9912-78258bd7a526.shogun-image {
  box-sizing: border-box;
}


}
#s-f5be6e8f-7d64-46bd-854d-45c8ed164722 {
  text-align: center;
}







  img.s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shogun-image {
    
    
  }


.s-f5be6e8f-7d64-46bd-854d-45c8ed164722 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shg-align-container {
  text-align: center
}

.s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shogun-image {
    
    
  }


.s-f5be6e8f-7d64-46bd-854d-45c8ed164722 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shg-align-container {
  text-align: center
}

.s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shogun-image {
    
    
  }


.s-f5be6e8f-7d64-46bd-854d-45c8ed164722 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shg-align-container {
  text-align: center
}

.s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shogun-image {
    
    
  }


.s-f5be6e8f-7d64-46bd-854d-45c8ed164722 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shg-align-container {
  text-align: center
}

.s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shogun-image {
    
    
  }


.s-f5be6e8f-7d64-46bd-854d-45c8ed164722 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shg-align-container {
  text-align: center
}

.s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5be6e8f-7d64-46bd-854d-45c8ed164722.shogun-image {
  box-sizing: border-box;
}


}
#s-660cb719-8f8b-483b-8d38-0d97301dd69b {
  text-align: center;
}







  img.s-660cb719-8f8b-483b-8d38-0d97301dd69b.shogun-image {
    
    
  }


.s-660cb719-8f8b-483b-8d38-0d97301dd69b .shogun-image-content {
  
    align-items: center;
  
}

.s-660cb719-8f8b-483b-8d38-0d97301dd69b.shg-align-container {
  text-align: center
}

.s-660cb719-8f8b-483b-8d38-0d97301dd69b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-660cb719-8f8b-483b-8d38-0d97301dd69b.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-660cb719-8f8b-483b-8d38-0d97301dd69b.shogun-image {
    
    
  }


.s-660cb719-8f8b-483b-8d38-0d97301dd69b .shogun-image-content {
  
    align-items: center;
  
}

.s-660cb719-8f8b-483b-8d38-0d97301dd69b.shg-align-container {
  text-align: center
}

.s-660cb719-8f8b-483b-8d38-0d97301dd69b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-660cb719-8f8b-483b-8d38-0d97301dd69b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-660cb719-8f8b-483b-8d38-0d97301dd69b.shogun-image {
    
    
  }


.s-660cb719-8f8b-483b-8d38-0d97301dd69b .shogun-image-content {
  
    align-items: center;
  
}

.s-660cb719-8f8b-483b-8d38-0d97301dd69b.shg-align-container {
  text-align: center
}

.s-660cb719-8f8b-483b-8d38-0d97301dd69b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-660cb719-8f8b-483b-8d38-0d97301dd69b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-660cb719-8f8b-483b-8d38-0d97301dd69b.shogun-image {
    
    
  }


.s-660cb719-8f8b-483b-8d38-0d97301dd69b .shogun-image-content {
  
    align-items: center;
  
}

.s-660cb719-8f8b-483b-8d38-0d97301dd69b.shg-align-container {
  text-align: center
}

.s-660cb719-8f8b-483b-8d38-0d97301dd69b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-660cb719-8f8b-483b-8d38-0d97301dd69b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-660cb719-8f8b-483b-8d38-0d97301dd69b.shogun-image {
    
    
  }


.s-660cb719-8f8b-483b-8d38-0d97301dd69b .shogun-image-content {
  
    align-items: center;
  
}

.s-660cb719-8f8b-483b-8d38-0d97301dd69b.shg-align-container {
  text-align: center
}

.s-660cb719-8f8b-483b-8d38-0d97301dd69b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-660cb719-8f8b-483b-8d38-0d97301dd69b.shogun-image {
  box-sizing: border-box;
}


}
#s-7550b109-5aba-4536-b919-5352bfa4ad48 {
  text-align: center;
}








.s-7550b109-5aba-4536-b919-5352bfa4ad48 .shogun-image-content {
  
    align-items: center;
  
}

.s-7550b109-5aba-4536-b919-5352bfa4ad48.shg-align-container {
  text-align: center
}

.s-7550b109-5aba-4536-b919-5352bfa4ad48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7550b109-5aba-4536-b919-5352bfa4ad48.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){






.s-7550b109-5aba-4536-b919-5352bfa4ad48 .shogun-image-content {
  
    align-items: center;
  
}

.s-7550b109-5aba-4536-b919-5352bfa4ad48.shg-align-container {
  text-align: center
}

.s-7550b109-5aba-4536-b919-5352bfa4ad48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7550b109-5aba-4536-b919-5352bfa4ad48.shogun-image {
  box-sizing: border-box;
}


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






.s-7550b109-5aba-4536-b919-5352bfa4ad48 .shogun-image-content {
  
    align-items: center;
  
}

.s-7550b109-5aba-4536-b919-5352bfa4ad48.shg-align-container {
  text-align: center
}

.s-7550b109-5aba-4536-b919-5352bfa4ad48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7550b109-5aba-4536-b919-5352bfa4ad48.shogun-image {
  box-sizing: border-box;
}


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






.s-7550b109-5aba-4536-b919-5352bfa4ad48 .shogun-image-content {
  
    align-items: center;
  
}

.s-7550b109-5aba-4536-b919-5352bfa4ad48.shg-align-container {
  text-align: center
}

.s-7550b109-5aba-4536-b919-5352bfa4ad48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7550b109-5aba-4536-b919-5352bfa4ad48.shogun-image {
  box-sizing: border-box;
}


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






.s-7550b109-5aba-4536-b919-5352bfa4ad48 .shogun-image-content {
  
    align-items: center;
  
}

.s-7550b109-5aba-4536-b919-5352bfa4ad48.shg-align-container {
  text-align: center
}

.s-7550b109-5aba-4536-b919-5352bfa4ad48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7550b109-5aba-4536-b919-5352bfa4ad48.shogun-image {
  box-sizing: border-box;
}


}
#s-b3e18c36-49a7-4478-8e89-6bbe119eb7c7 {
  padding-top: 20px;
padding-left: 5%;
padding-bottom: 70px;
padding-right: 5%;
min-height: 50px;
background-color: rgba(211, 234, 239, 1);
}








#s-b3e18c36-49a7-4478-8e89-6bbe119eb7c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b3e18c36-49a7-4478-8e89-6bbe119eb7c7.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-91e8f7c3-1cbf-45e0-8c60-e60bdd50e62d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-91e8f7c3-1cbf-45e0-8c60-e60bdd50e62d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-91e8f7c3-1cbf-45e0-8c60-e60bdd50e62d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-91e8f7c3-1cbf-45e0-8c60-e60bdd50e62d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-91e8f7c3-1cbf-45e0-8c60-e60bdd50e62d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-91e8f7c3-1cbf-45e0-8c60-e60bdd50e62d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-91e8f7c3-1cbf-45e0-8c60-e60bdd50e62d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-46bdaf8f-7d98-4817-af4a-6f5a43e1d72a {
  padding-top: 10px;
padding-bottom: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
min-height: 150px;
background-color: rgba(190, 230, 237, 1);
}








#s-46bdaf8f-7d98-4817-af4a-6f5a43e1d72a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-46bdaf8f-7d98-4817-af4a-6f5a43e1d72a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f4b10591-44ce-4ae6-82a6-e29c772fdc71 {
  padding-top: 20px;
padding-left: 5%;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
}

#s-3e3a38f2-043a-4fe2-a2d0-3b54afaebef7 {
  padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-26a590ad-486f-4da4-99b6-6e5766407a5f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-26a590ad-486f-4da4-99b6-6e5766407a5f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-26a590ad-486f-4da4-99b6-6e5766407a5f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-26a590ad-486f-4da4-99b6-6e5766407a5f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-26a590ad-486f-4da4-99b6-6e5766407a5f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-26a590ad-486f-4da4-99b6-6e5766407a5f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-26a590ad-486f-4da4-99b6-6e5766407a5f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

#s-bfc87bcf-d7de-44a6-896a-16190c53b58e {
  padding-top: 50px;
padding-bottom: 20px;
text-align: center;
}

#s-bfc87bcf-d7de-44a6-896a-16190c53b58e .shogun-heading-component h4 {
  color: rgba(44, 73, 91, 1);
  font-weight:  normal ;
  font-family: "june-expt-variable";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1.3em;
  
  
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-3e1ecb02-577e-4960-833a-22e8dbed3141 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-3e1ecb02-577e-4960-833a-22e8dbed3141 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-3e1ecb02-577e-4960-833a-22e8dbed3141 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(44, 73, 91, 1);
}

#s-3e1ecb02-577e-4960-833a-22e8dbed3141 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-3e1ecb02-577e-4960-833a-22e8dbed3141 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(44, 73, 91, 1);
  text-align: left;
  font-family: calluna-sans;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-3e1ecb02-577e-4960-833a-22e8dbed3141 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-8b49ab90-d4e7-4f68-b458-b69b739bf7e1 {
  padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-ff54496a-4ba0-4827-9f4c-1fcb1b74d340 {
  padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-81d7690e-e924-45da-b27c-bdd10658f83c {
  padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-949e86f2-ece8-40cd-9c51-3c6011cb0624 {
  padding-top: 50px;
}

@media (min-width: 0px) {
[id="s-949e86f2-ece8-40cd-9c51-3c6011cb0624"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-949e86f2-ece8-40cd-9c51-3c6011cb0624"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-949e86f2-ece8-40cd-9c51-3c6011cb0624"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-949e86f2-ece8-40cd-9c51-3c6011cb0624"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-949e86f2-ece8-40cd-9c51-3c6011cb0624"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-949e86f2-ece8-40cd-9c51-3c6011cb0624"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-949e86f2-ece8-40cd-9c51-3c6011cb0624"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-0fe71780-1c42-4006-844c-d6d374c0268d {
  text-align: center;
}







  img.s-0fe71780-1c42-4006-844c-d6d374c0268d.shogun-image {
    
    
  }


.s-0fe71780-1c42-4006-844c-d6d374c0268d .shogun-image-content {
  
    align-items: center;
  
}

.s-0fe71780-1c42-4006-844c-d6d374c0268d.shg-align-container {
  text-align: center
}

.s-0fe71780-1c42-4006-844c-d6d374c0268d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fe71780-1c42-4006-844c-d6d374c0268d.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-0fe71780-1c42-4006-844c-d6d374c0268d.shogun-image {
    
    
  }


.s-0fe71780-1c42-4006-844c-d6d374c0268d .shogun-image-content {
  
    align-items: center;
  
}

.s-0fe71780-1c42-4006-844c-d6d374c0268d.shg-align-container {
  text-align: center
}

.s-0fe71780-1c42-4006-844c-d6d374c0268d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fe71780-1c42-4006-844c-d6d374c0268d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0fe71780-1c42-4006-844c-d6d374c0268d.shogun-image {
    
    
  }


.s-0fe71780-1c42-4006-844c-d6d374c0268d .shogun-image-content {
  
    align-items: center;
  
}

.s-0fe71780-1c42-4006-844c-d6d374c0268d.shg-align-container {
  text-align: center
}

.s-0fe71780-1c42-4006-844c-d6d374c0268d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fe71780-1c42-4006-844c-d6d374c0268d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0fe71780-1c42-4006-844c-d6d374c0268d.shogun-image {
    
    
  }


.s-0fe71780-1c42-4006-844c-d6d374c0268d .shogun-image-content {
  
    align-items: center;
  
}

.s-0fe71780-1c42-4006-844c-d6d374c0268d.shg-align-container {
  text-align: center
}

.s-0fe71780-1c42-4006-844c-d6d374c0268d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fe71780-1c42-4006-844c-d6d374c0268d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0fe71780-1c42-4006-844c-d6d374c0268d.shogun-image {
    
    
  }


.s-0fe71780-1c42-4006-844c-d6d374c0268d .shogun-image-content {
  
    align-items: center;
  
}

.s-0fe71780-1c42-4006-844c-d6d374c0268d.shg-align-container {
  text-align: center
}

.s-0fe71780-1c42-4006-844c-d6d374c0268d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0fe71780-1c42-4006-844c-d6d374c0268d.shogun-image {
  box-sizing: border-box;
}


}
#s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2 {
  text-align: center;
}








.s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2.shg-align-container {
  text-align: center
}

.s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){






.s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2.shg-align-container {
  text-align: center
}

.s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2.shogun-image {
  box-sizing: border-box;
}


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






.s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2.shg-align-container {
  text-align: center
}

.s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2.shogun-image {
  box-sizing: border-box;
}


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






.s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2.shg-align-container {
  text-align: center
}

.s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2.shogun-image {
  box-sizing: border-box;
}


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






.s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2 .shogun-image-content {
  
    align-items: center;
  
}

.s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2.shg-align-container {
  text-align: center
}

.s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8c6f3db6-4a9f-44c2-b68f-4db4e2c150b2.shogun-image {
  box-sizing: border-box;
}


}
#s-078b4897-ee33-49c1-b2ee-a6f1a47cdcbb {
  min-height: 50px;
}
@media (min-width: 1200px){#s-078b4897-ee33-49c1-b2ee-a6f1a47cdcbb {
  display: none;
}
#s-078b4897-ee33-49c1-b2ee-a6f1a47cdcbb, #wrap-s-078b4897-ee33-49c1-b2ee-a6f1a47cdcbb { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-078b4897-ee33-49c1-b2ee-a6f1a47cdcbb {
  display: none;
}
#s-078b4897-ee33-49c1-b2ee-a6f1a47cdcbb, #wrap-s-078b4897-ee33-49c1-b2ee-a6f1a47cdcbb { display:none !important; }}







#s-078b4897-ee33-49c1-b2ee-a6f1a47cdcbb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-078b4897-ee33-49c1-b2ee-a6f1a47cdcbb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6e0e4265-81a0-4709-b352-c6cc4f6accd0 {
  text-align: center;
}







  img.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shogun-image {
    
    
  }


.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shg-align-container {
  text-align: center
}

.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shogun-image {
    
    
  }


.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shg-align-container {
  text-align: center
}

.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shogun-image {
    
    
  }


.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shg-align-container {
  text-align: center
}

.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shogun-image {
    
    
  }


.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shg-align-container {
  text-align: center
}

.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shogun-image {
    
    
  }


.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shg-align-container {
  text-align: center
}

.s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e0e4265-81a0-4709-b352-c6cc4f6accd0.shogun-image {
  box-sizing: border-box;
}


}
#s-d1342a05-8031-4580-a7a0-be5923f7cb9c {
  padding-top: 30px;
padding-bottom: 50px;
min-height: 300px;
background-color: rgba(255, 248, 228, 1);
}








#s-d1342a05-8031-4580-a7a0-be5923f7cb9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d1342a05-8031-4580-a7a0-be5923f7cb9c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c29b875b-55a5-4419-b97a-9422463bf44a {
  padding-top: 10px;
text-align: center;
}

#s-c29b875b-55a5-4419-b97a-9422463bf44a .shogun-heading-component h2 {
  color: rgba(44, 73, 91, 1);
  font-weight:  normal ;
  font-family: "june-expt-variable";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.3em;
  
  
}



#s-05530fc0-bc88-4db5-b069-b59c2e9d2fed {
  padding-bottom: 20px;
text-align: center;
}







  img.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shogun-image {
    
    
  }


.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed .shogun-image-content {
  
    align-items: center;
  
}

.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shg-align-container {
  text-align: center
}

.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shogun-image {
    
    
  }


.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed .shogun-image-content {
  
    align-items: center;
  
}

.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shg-align-container {
  text-align: center
}

.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shogun-image {
  box-sizing: border-box;
}


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





  img.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shogun-image {
    
    
  }


.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed .shogun-image-content {
  
    align-items: center;
  
}

.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shg-align-container {
  text-align: center
}

.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shogun-image {
  box-sizing: border-box;
}


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





  img.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shogun-image {
    
    
  }


.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed .shogun-image-content {
  
    align-items: center;
  
}

.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shg-align-container {
  text-align: center
}

.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shogun-image {
  box-sizing: border-box;
}


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





  img.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shogun-image {
    
    
  }


.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed .shogun-image-content {
  
    align-items: center;
  
}

.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shg-align-container {
  text-align: center
}

.s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-05530fc0-bc88-4db5-b069-b59c2e9d2fed.shogun-image {
  box-sizing: border-box;
}


}
#s-b673aba9-a8cc-4458-badc-f620da8d17f6 {
  background-repeat: no-repeat;
margin-left: 5%;
margin-right: 5%;
padding-left: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
background-attachment: scroll;
}

#s-b673aba9-a8cc-4458-badc-f620da8d17f6 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYTIyZmQxNzgtMzVmZS00OGQ4LThkOGItNWMyOTA1OGViZjcwIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZTNmMWY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmOGU0O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNhMjJmZDE3OC0zNWZlLTQ4ZDgtOGQ4Yi01YzI5MDU4ZWJmNzApIi8+PC9zdmc+);
}








#s-b673aba9-a8cc-4458-badc-f620da8d17f6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b673aba9-a8cc-4458-badc-f620da8d17f6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fbe59f56-6d3d-4371-a66e-b7e2bc8ef749 {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-5a384a63-8f15-49ae-9f65-a3932beea679 {
  background-repeat: no-repeat;
margin-top: 20px;
margin-left: 5%;
margin-right: 5%;
padding-left: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
background-attachment: scroll;
}

#s-5a384a63-8f15-49ae-9f65-a3932beea679 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNzBkM2E5YTktNjI5OS00ZmU2LWJiZDAtOGFjMjNlNzA0ZTM2IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZTNmMWY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmOGU0O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM3MGQzYTlhOS02Mjk5LTRmZTYtYmJkMC04YWMyM2U3MDRlMzYpIi8+PC9zdmc+);
}








#s-5a384a63-8f15-49ae-9f65-a3932beea679 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5a384a63-8f15-49ae-9f65-a3932beea679.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cc9fab59-864d-4591-87e8-5cf8d711db0f {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-d2f51463-2da9-447e-8487-213533866954 {
  background-repeat: no-repeat;
margin-top: 20px;
margin-left: 5%;
margin-right: 5%;
padding-left: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
background-attachment: scroll;
}

#s-d2f51463-2da9-447e-8487-213533866954 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZWM4MWNiNDMtMGZkNi00ZTA1LWI1NmItNjgyMGU0MWM2ZDc4IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZTNmMWY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmOGU0O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNlYzgxY2I0My0wZmQ2LTRlMDUtYjU2Yi02ODIwZTQxYzZkNzgpIi8+PC9zdmc+);
}








#s-d2f51463-2da9-447e-8487-213533866954 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d2f51463-2da9-447e-8487-213533866954.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6478686e-88fd-4705-ac52-c90d24f7b211 {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-a40890d9-0492-4026-bc2e-de051bae375c {
  background-repeat: no-repeat;
margin-top: 20px;
margin-left: 5%;
margin-right: 5%;
padding-left: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
background-attachment: scroll;
}

#s-a40890d9-0492-4026-bc2e-de051bae375c {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iM2NiNzYyZGQtZGMzZi00MGU2LWE5NTItYzRiYzAxYzQ2OWIxIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZTNmMWY0O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmOGU0O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMzY2I3NjJkZC1kYzNmLTQwZTYtYTk1Mi1jNGJjMDFjNDY5YjEpIi8+PC9zdmc+);
}








#s-a40890d9-0492-4026-bc2e-de051bae375c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a40890d9-0492-4026-bc2e-de051bae375c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-99a61a3e-523e-43cf-b1b6-77f2ce2873c6 {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f {
  text-align: center;
}








.s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f .shogun-image-content {
  
    align-items: center;
  
}

.s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f.shg-align-container {
  text-align: center
}

.s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){






.s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f .shogun-image-content {
  
    align-items: center;
  
}

.s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f.shg-align-container {
  text-align: center
}

.s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f.shogun-image {
  box-sizing: border-box;
}


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






.s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f .shogun-image-content {
  
    align-items: center;
  
}

.s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f.shg-align-container {
  text-align: center
}

.s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f.shogun-image {
  box-sizing: border-box;
}


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






.s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f .shogun-image-content {
  
    align-items: center;
  
}

.s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f.shg-align-container {
  text-align: center
}

.s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f.shogun-image {
  box-sizing: border-box;
}


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






.s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f .shogun-image-content {
  
    align-items: center;
  
}

.s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f.shg-align-container {
  text-align: center
}

.s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9b6b2d5d-8b62-42bc-81d1-a353be3a878f.shogun-image {
  box-sizing: border-box;
}


}
#s-8fabeea2-2b47-49c0-b605-dac993e7df16 {
  padding-top: 20px;
padding-bottom: 60px;
min-height: 300px;
background-color: rgba(211, 234, 239, 1);
}








#s-8fabeea2-2b47-49c0-b605-dac993e7df16 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8fabeea2-2b47-49c0-b605-dac993e7df16.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2911ee69-82f8-401e-8aee-18207e102a7f {
  padding-top: 10px;
padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
text-align: center;
}

#s-2911ee69-82f8-401e-8aee-18207e102a7f .shogun-heading-component h2 {
  color: rgba(44, 73, 91, 1);
  font-weight:  normal ;
  font-family: "june-expt-variable";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.3em;
  
  
}



#s-361a20c0-426b-4db5-9b49-631b2626b2e7 {
  margin-top: 2px;
margin-left: 5%;
margin-bottom: 2px;
margin-right: 5%;
padding-left: 5%;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 20px;
min-height: 140px;
background-color: rgba(255, 255, 255, 1);
}








#s-361a20c0-426b-4db5-9b49-631b2626b2e7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-361a20c0-426b-4db5-9b49-631b2626b2e7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-575aa68b-8744-407f-a25f-35c9ab3bfad3 {
  padding-top: 10px;
text-align: left;
}







  img.s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shogun-image {
    
    
  }


.s-575aa68b-8744-407f-a25f-35c9ab3bfad3 .shogun-image-content {
  
    align-items: center;
  
}

.s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shg-align-container {
  text-align: left
}

.s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shogun-image {
    
    
  }


.s-575aa68b-8744-407f-a25f-35c9ab3bfad3 .shogun-image-content {
  
    align-items: center;
  
}

.s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shg-align-container {
  text-align: left
}

.s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shogun-image {
  box-sizing: border-box;
}


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





  img.s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shogun-image {
    
    
  }


.s-575aa68b-8744-407f-a25f-35c9ab3bfad3 .shogun-image-content {
  
    align-items: center;
  
}

.s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shg-align-container {
  text-align: left
}

.s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shogun-image {
  box-sizing: border-box;
}


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





  img.s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shogun-image {
    
    
  }


.s-575aa68b-8744-407f-a25f-35c9ab3bfad3 .shogun-image-content {
  
    align-items: center;
  
}

.s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shg-align-container {
  text-align: left
}

.s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shogun-image {
  box-sizing: border-box;
}


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





  img.s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shogun-image {
    
    
  }


.s-575aa68b-8744-407f-a25f-35c9ab3bfad3 .shogun-image-content {
  
    align-items: center;
  
}

.s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shg-align-container {
  text-align: left
}

.s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-575aa68b-8744-407f-a25f-35c9ab3bfad3.shogun-image {
  box-sizing: border-box;
}


}
#s-0a3d7580-faa8-44af-a549-6c6c0a6b5fc0 {
  padding-top: 10px;
padding-right: 5%;
}

#s-4327e519-5ef8-4591-9ec7-af85f0dcf790 {
  padding-bottom: 10px;
padding-right: 5%;
}

#s-d2e766b5-9372-4190-8ac4-edc2705cc1be {
  margin-top: -2px;
margin-bottom: -2px;
text-align: center;
}








.s-d2e766b5-9372-4190-8ac4-edc2705cc1be .shogun-image-content {
  
    align-items: center;
  
}

.s-d2e766b5-9372-4190-8ac4-edc2705cc1be.shg-align-container {
  text-align: center
}

.s-d2e766b5-9372-4190-8ac4-edc2705cc1be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2e766b5-9372-4190-8ac4-edc2705cc1be.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){






.s-d2e766b5-9372-4190-8ac4-edc2705cc1be .shogun-image-content {
  
    align-items: center;
  
}

.s-d2e766b5-9372-4190-8ac4-edc2705cc1be.shg-align-container {
  text-align: center
}

.s-d2e766b5-9372-4190-8ac4-edc2705cc1be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2e766b5-9372-4190-8ac4-edc2705cc1be.shogun-image {
  box-sizing: border-box;
}


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






.s-d2e766b5-9372-4190-8ac4-edc2705cc1be .shogun-image-content {
  
    align-items: center;
  
}

.s-d2e766b5-9372-4190-8ac4-edc2705cc1be.shg-align-container {
  text-align: center
}

.s-d2e766b5-9372-4190-8ac4-edc2705cc1be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2e766b5-9372-4190-8ac4-edc2705cc1be.shogun-image {
  box-sizing: border-box;
}


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






.s-d2e766b5-9372-4190-8ac4-edc2705cc1be .shogun-image-content {
  
    align-items: center;
  
}

.s-d2e766b5-9372-4190-8ac4-edc2705cc1be.shg-align-container {
  text-align: center
}

.s-d2e766b5-9372-4190-8ac4-edc2705cc1be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2e766b5-9372-4190-8ac4-edc2705cc1be.shogun-image {
  box-sizing: border-box;
}


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






.s-d2e766b5-9372-4190-8ac4-edc2705cc1be .shogun-image-content {
  
    align-items: center;
  
}

.s-d2e766b5-9372-4190-8ac4-edc2705cc1be.shg-align-container {
  text-align: center
}

.s-d2e766b5-9372-4190-8ac4-edc2705cc1be.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d2e766b5-9372-4190-8ac4-edc2705cc1be.shogun-image {
  box-sizing: border-box;
}


}
#s-d77c66ea-c3ba-4888-9d38-5f46aac0969e {
  padding-top: 30px;
padding-bottom: 60px;
min-height: 300px;
}








#s-d77c66ea-c3ba-4888-9d38-5f46aac0969e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d77c66ea-c3ba-4888-9d38-5f46aac0969e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bb333bb2-227c-436c-a405-ed806849ae1f {
  padding-top: 10px;
padding-bottom: 30px;
text-align: center;
}

#s-bb333bb2-227c-436c-a405-ed806849ae1f .shogun-heading-component h3 {
  color: rgba(44, 73, 91, 1);
  font-weight:  normal ;
  font-family: "june-expt-variable";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.3em;
  
  
}



#s-a36fa8a1-a5ad-4f94-8710-9a93930e935e {
  margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
background-color: rgba(211, 234, 239, 1);
}

#s-3a9d24c8-0a27-4e96-91c1-1177f2d066b5 {
  margin-top: 10px;
margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
background-color: rgba(211, 234, 239, 1);
}

#s-529a18cd-0cde-42b2-9a95-486233cad451 {
  margin-top: 10px;
margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
background-color: rgba(211, 234, 239, 1);
}

#s-fdeed09e-4b85-47b8-92d1-1057ee39be66 {
  margin-top: 10px;
margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
background-color: rgba(211, 234, 239, 1);
}

#s-b797545b-03ee-45e2-a291-6b83a5a28573 {
  padding-top: 30px;
padding-left: 10%;
padding-right: 10%;
}

@media (min-width: 0px) {
[id="s-b797545b-03ee-45e2-a291-6b83a5a28573"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-b797545b-03ee-45e2-a291-6b83a5a28573"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-b797545b-03ee-45e2-a291-6b83a5a28573"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-b797545b-03ee-45e2-a291-6b83a5a28573"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-b5832638-a54b-456e-bdc3-d9f5cdcd988d {
  text-align: center;
}







  img.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shogun-image {
    
    
  }


.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d .shogun-image-content {
  
    align-items: center;
  
}

.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shg-align-container {
  text-align: center
}

.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shogun-image {
    
    
  }


.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d .shogun-image-content {
  
    align-items: center;
  
}

.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shg-align-container {
  text-align: center
}

.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shogun-image {
    
    
  }


.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d .shogun-image-content {
  
    align-items: center;
  
}

.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shg-align-container {
  text-align: center
}

.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shogun-image {
    
    
  }


.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d .shogun-image-content {
  
    align-items: center;
  
}

.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shg-align-container {
  text-align: center
}

.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shogun-image {
    
    
  }


.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d .shogun-image-content {
  
    align-items: center;
  
}

.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shg-align-container {
  text-align: center
}

.s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b5832638-a54b-456e-bdc3-d9f5cdcd988d.shogun-image {
  box-sizing: border-box;
}


}
#s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc {
  text-align: center;
}







  img.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shogun-image {
    
    
  }


.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc .shogun-image-content {
  
    align-items: center;
  
}

.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shg-align-container {
  text-align: center
}

.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shogun-image {
    
    
  }


.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc .shogun-image-content {
  
    align-items: center;
  
}

.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shg-align-container {
  text-align: center
}

.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shogun-image {
    
    
  }


.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc .shogun-image-content {
  
    align-items: center;
  
}

.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shg-align-container {
  text-align: center
}

.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shogun-image {
    
    
  }


.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc .shogun-image-content {
  
    align-items: center;
  
}

.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shg-align-container {
  text-align: center
}

.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shogun-image {
    
    
  }


.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc .shogun-image-content {
  
    align-items: center;
  
}

.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shg-align-container {
  text-align: center
}

.s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4361c4f3-72c6-44bb-af6b-9b20ccef4abc.shogun-image {
  box-sizing: border-box;
}


}
#s-2908ba15-2c3b-45bd-ad34-ca58e4b97527 {
  text-align: center;
}







  img.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shogun-image {
    
    
  }


.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527 .shogun-image-content {
  
    align-items: center;
  
}

.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shg-align-container {
  text-align: center
}

.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shogun-image {
    
    
  }


.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527 .shogun-image-content {
  
    align-items: center;
  
}

.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shg-align-container {
  text-align: center
}

.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shogun-image {
    
    
  }


.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527 .shogun-image-content {
  
    align-items: center;
  
}

.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shg-align-container {
  text-align: center
}

.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shogun-image {
    
    
  }


.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527 .shogun-image-content {
  
    align-items: center;
  
}

.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shg-align-container {
  text-align: center
}

.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shogun-image {
    
    
  }


.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527 .shogun-image-content {
  
    align-items: center;
  
}

.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shg-align-container {
  text-align: center
}

.s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2908ba15-2c3b-45bd-ad34-ca58e4b97527.shogun-image {
  box-sizing: border-box;
}


}
#s-93b50530-a92d-469c-bfa9-956ec966cb65 {
  padding-left: 10%;
padding-right: 10%;
}

@media (min-width: 0px) {
[id="s-93b50530-a92d-469c-bfa9-956ec966cb65"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-93b50530-a92d-469c-bfa9-956ec966cb65"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-93b50530-a92d-469c-bfa9-956ec966cb65"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-93b50530-a92d-469c-bfa9-956ec966cb65"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-d68d3c36-1c81-4f28-9232-a27274ab689a {
  text-align: center;
}







  img.s-d68d3c36-1c81-4f28-9232-a27274ab689a.shogun-image {
    
    
  }


.s-d68d3c36-1c81-4f28-9232-a27274ab689a .shogun-image-content {
  
    align-items: center;
  
}

.s-d68d3c36-1c81-4f28-9232-a27274ab689a.shg-align-container {
  text-align: center
}

.s-d68d3c36-1c81-4f28-9232-a27274ab689a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d68d3c36-1c81-4f28-9232-a27274ab689a.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-d68d3c36-1c81-4f28-9232-a27274ab689a.shogun-image {
    
    
  }


.s-d68d3c36-1c81-4f28-9232-a27274ab689a .shogun-image-content {
  
    align-items: center;
  
}

.s-d68d3c36-1c81-4f28-9232-a27274ab689a.shg-align-container {
  text-align: center
}

.s-d68d3c36-1c81-4f28-9232-a27274ab689a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d68d3c36-1c81-4f28-9232-a27274ab689a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d68d3c36-1c81-4f28-9232-a27274ab689a.shogun-image {
    
    
  }


.s-d68d3c36-1c81-4f28-9232-a27274ab689a .shogun-image-content {
  
    align-items: center;
  
}

.s-d68d3c36-1c81-4f28-9232-a27274ab689a.shg-align-container {
  text-align: center
}

.s-d68d3c36-1c81-4f28-9232-a27274ab689a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d68d3c36-1c81-4f28-9232-a27274ab689a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d68d3c36-1c81-4f28-9232-a27274ab689a.shogun-image {
    
    
  }


.s-d68d3c36-1c81-4f28-9232-a27274ab689a .shogun-image-content {
  
    align-items: center;
  
}

.s-d68d3c36-1c81-4f28-9232-a27274ab689a.shg-align-container {
  text-align: center
}

.s-d68d3c36-1c81-4f28-9232-a27274ab689a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d68d3c36-1c81-4f28-9232-a27274ab689a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d68d3c36-1c81-4f28-9232-a27274ab689a.shogun-image {
    
    
  }


.s-d68d3c36-1c81-4f28-9232-a27274ab689a .shogun-image-content {
  
    align-items: center;
  
}

.s-d68d3c36-1c81-4f28-9232-a27274ab689a.shg-align-container {
  text-align: center
}

.s-d68d3c36-1c81-4f28-9232-a27274ab689a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d68d3c36-1c81-4f28-9232-a27274ab689a.shogun-image {
  box-sizing: border-box;
}


}
#s-1525cf03-57b0-4177-830f-05c56396ee7e {
  text-align: center;
}







  img.s-1525cf03-57b0-4177-830f-05c56396ee7e.shogun-image {
    
    
  }


.s-1525cf03-57b0-4177-830f-05c56396ee7e .shogun-image-content {
  
    align-items: center;
  
}

.s-1525cf03-57b0-4177-830f-05c56396ee7e.shg-align-container {
  text-align: center
}

.s-1525cf03-57b0-4177-830f-05c56396ee7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1525cf03-57b0-4177-830f-05c56396ee7e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-1525cf03-57b0-4177-830f-05c56396ee7e.shogun-image {
    
    
  }


.s-1525cf03-57b0-4177-830f-05c56396ee7e .shogun-image-content {
  
    align-items: center;
  
}

.s-1525cf03-57b0-4177-830f-05c56396ee7e.shg-align-container {
  text-align: center
}

.s-1525cf03-57b0-4177-830f-05c56396ee7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1525cf03-57b0-4177-830f-05c56396ee7e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1525cf03-57b0-4177-830f-05c56396ee7e.shogun-image {
    
    
  }


.s-1525cf03-57b0-4177-830f-05c56396ee7e .shogun-image-content {
  
    align-items: center;
  
}

.s-1525cf03-57b0-4177-830f-05c56396ee7e.shg-align-container {
  text-align: center
}

.s-1525cf03-57b0-4177-830f-05c56396ee7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1525cf03-57b0-4177-830f-05c56396ee7e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1525cf03-57b0-4177-830f-05c56396ee7e.shogun-image {
    
    
  }


.s-1525cf03-57b0-4177-830f-05c56396ee7e .shogun-image-content {
  
    align-items: center;
  
}

.s-1525cf03-57b0-4177-830f-05c56396ee7e.shg-align-container {
  text-align: center
}

.s-1525cf03-57b0-4177-830f-05c56396ee7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1525cf03-57b0-4177-830f-05c56396ee7e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1525cf03-57b0-4177-830f-05c56396ee7e.shogun-image {
    
    
  }


.s-1525cf03-57b0-4177-830f-05c56396ee7e .shogun-image-content {
  
    align-items: center;
  
}

.s-1525cf03-57b0-4177-830f-05c56396ee7e.shg-align-container {
  text-align: center
}

.s-1525cf03-57b0-4177-830f-05c56396ee7e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1525cf03-57b0-4177-830f-05c56396ee7e.shogun-image {
  box-sizing: border-box;
}


}
#s-4e67e4ce-6804-49c5-bd31-b4bedd563034 {
  text-align: center;
}







  img.s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shogun-image {
    
    
  }


.s-4e67e4ce-6804-49c5-bd31-b4bedd563034 .shogun-image-content {
  
    align-items: center;
  
}

.s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shg-align-container {
  text-align: center
}

.s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shogun-image {
    
    
  }


.s-4e67e4ce-6804-49c5-bd31-b4bedd563034 .shogun-image-content {
  
    align-items: center;
  
}

.s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shg-align-container {
  text-align: center
}

.s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shogun-image {
    
    
  }


.s-4e67e4ce-6804-49c5-bd31-b4bedd563034 .shogun-image-content {
  
    align-items: center;
  
}

.s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shg-align-container {
  text-align: center
}

.s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shogun-image {
    
    
  }


.s-4e67e4ce-6804-49c5-bd31-b4bedd563034 .shogun-image-content {
  
    align-items: center;
  
}

.s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shg-align-container {
  text-align: center
}

.s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shogun-image {
    
    
  }


.s-4e67e4ce-6804-49c5-bd31-b4bedd563034 .shogun-image-content {
  
    align-items: center;
  
}

.s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shg-align-container {
  text-align: center
}

.s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4e67e4ce-6804-49c5-bd31-b4bedd563034.shogun-image {
  box-sizing: border-box;
}


}
#s-02681432-0a3d-41ba-956c-1bb1fae8e8c4 {
  text-align: center;
}








.s-02681432-0a3d-41ba-956c-1bb1fae8e8c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-02681432-0a3d-41ba-956c-1bb1fae8e8c4.shg-align-container {
  text-align: center
}

.s-02681432-0a3d-41ba-956c-1bb1fae8e8c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-02681432-0a3d-41ba-956c-1bb1fae8e8c4.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){






.s-02681432-0a3d-41ba-956c-1bb1fae8e8c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-02681432-0a3d-41ba-956c-1bb1fae8e8c4.shg-align-container {
  text-align: center
}

.s-02681432-0a3d-41ba-956c-1bb1fae8e8c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-02681432-0a3d-41ba-956c-1bb1fae8e8c4.shogun-image {
  box-sizing: border-box;
}


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






.s-02681432-0a3d-41ba-956c-1bb1fae8e8c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-02681432-0a3d-41ba-956c-1bb1fae8e8c4.shg-align-container {
  text-align: center
}

.s-02681432-0a3d-41ba-956c-1bb1fae8e8c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-02681432-0a3d-41ba-956c-1bb1fae8e8c4.shogun-image {
  box-sizing: border-box;
}


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






.s-02681432-0a3d-41ba-956c-1bb1fae8e8c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-02681432-0a3d-41ba-956c-1bb1fae8e8c4.shg-align-container {
  text-align: center
}

.s-02681432-0a3d-41ba-956c-1bb1fae8e8c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-02681432-0a3d-41ba-956c-1bb1fae8e8c4.shogun-image {
  box-sizing: border-box;
}


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






.s-02681432-0a3d-41ba-956c-1bb1fae8e8c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-02681432-0a3d-41ba-956c-1bb1fae8e8c4.shg-align-container {
  text-align: center
}

.s-02681432-0a3d-41ba-956c-1bb1fae8e8c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-02681432-0a3d-41ba-956c-1bb1fae8e8c4.shogun-image {
  box-sizing: border-box;
}


}
#s-412b3cae-5fc3-4e78-aeb2-f1adca792228 {
  padding-top: 50px;
padding-bottom: 10px;
min-height: 300px;
background-color: rgba(251, 207, 169, 1);
}








#s-412b3cae-5fc3-4e78-aeb2-f1adca792228 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-412b3cae-5fc3-4e78-aeb2-f1adca792228.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8d3824ea-f07f-470c-9fc3-2f1b528a7391 {
  padding-top: 10px;
padding-bottom: 20px;
text-align: center;
}

#s-8d3824ea-f07f-470c-9fc3-2f1b528a7391 .shogun-heading-component h3 {
  color: rgba(44, 73, 91, 1);
  font-weight:  normal ;
  font-family: "june-expt-variable";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.3em;
  
  
}



.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-f445d027-2985-4b77-a596-f8283d5bbb6c {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
}

#s-f445d027-2985-4b77-a596-f8283d5bbb6c .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-f445d027-2985-4b77-a596-f8283d5bbb6c .shg-sld-nav-button.shg-sld-left,
#s-f445d027-2985-4b77-a596-f8283d5bbb6c .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-b73034ac-a67e-4686-97d7-fe0e30b1f971 {
  padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 30px;
min-height: 50px;
background-color: rgba(241, 232, 217, 1);
}








#s-b73034ac-a67e-4686-97d7-fe0e30b1f971 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b73034ac-a67e-4686-97d7-fe0e30b1f971.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-edfcf095-b977-4e18-9e5c-754c0a5de34c {
  text-align: center;
}







  img.s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shogun-image {
    
    
  }


.s-edfcf095-b977-4e18-9e5c-754c0a5de34c .shogun-image-content {
  
    align-items: center;
  
}

.s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shg-align-container {
  text-align: center
}

.s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shogun-image {
    
    
  }


.s-edfcf095-b977-4e18-9e5c-754c0a5de34c .shogun-image-content {
  
    align-items: center;
  
}

.s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shg-align-container {
  text-align: center
}

.s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shogun-image {
    
    
  }


.s-edfcf095-b977-4e18-9e5c-754c0a5de34c .shogun-image-content {
  
    align-items: center;
  
}

.s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shg-align-container {
  text-align: center
}

.s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shogun-image {
    
    
  }


.s-edfcf095-b977-4e18-9e5c-754c0a5de34c .shogun-image-content {
  
    align-items: center;
  
}

.s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shg-align-container {
  text-align: center
}

.s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shogun-image {
    
    
  }


.s-edfcf095-b977-4e18-9e5c-754c0a5de34c .shogun-image-content {
  
    align-items: center;
  
}

.s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shg-align-container {
  text-align: center
}

.s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-edfcf095-b977-4e18-9e5c-754c0a5de34c.shogun-image {
  box-sizing: border-box;
}


}
#s-a214f997-46a1-427c-9591-35b16576c5ed {
  padding-top: 10px;
text-align: center;
}

#s-a214f997-46a1-427c-9591-35b16576c5ed .shogun-heading-component h1 {
  color: rgba(44, 73, 91, 1);
  font-weight:  normal ;
  font-family: "june-expt-variable";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.3em;
  
  
}



#s-a13ff798-ce17-4423-a333-bcdbd7cceff4 {
  padding-top: 10px;
padding-left: 5%;
padding-right: 5%;
}

#s-6a777b45-f99f-465a-8738-d74c0f9b356a {
  padding-top: 20px;
padding-bottom: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 30px;
min-height: 50px;
background-color: rgba(241, 232, 217, 1);
}








#s-6a777b45-f99f-465a-8738-d74c0f9b356a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6a777b45-f99f-465a-8738-d74c0f9b356a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a {
  text-align: center;
}







  img.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shogun-image {
    
    
  }


.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a .shogun-image-content {
  
    align-items: center;
  
}

.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shg-align-container {
  text-align: center
}

.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shogun-image {
    
    
  }


.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a .shogun-image-content {
  
    align-items: center;
  
}

.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shg-align-container {
  text-align: center
}

.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shogun-image {
    
    
  }


.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a .shogun-image-content {
  
    align-items: center;
  
}

.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shg-align-container {
  text-align: center
}

.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shogun-image {
    
    
  }


.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a .shogun-image-content {
  
    align-items: center;
  
}

.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shg-align-container {
  text-align: center
}

.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shogun-image {
    
    
  }


.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a .shogun-image-content {
  
    align-items: center;
  
}

.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shg-align-container {
  text-align: center
}

.s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e82d0cf-929b-4eda-93a6-8c78c4bad39a.shogun-image {
  box-sizing: border-box;
}


}
#s-31362792-805c-453d-b8ca-b1a2a6b6cb17 {
  padding-top: 10px;
text-align: center;
}

#s-31362792-805c-453d-b8ca-b1a2a6b6cb17 .shogun-heading-component h1 {
  color: rgba(44, 73, 91, 1);
  font-weight:  normal ;
  font-family: "june-expt-variable";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.3em;
  
  
}



#s-1fa22c76-9d60-410d-aca6-de23dadc1851 {
  padding-top: 10px;
padding-left: 5%;
padding-right: 5%;
}

#s-b6a00d57-a63f-417e-a497-0140539aefc0 {
  min-height: 50px;
background-color: rgba(241, 241, 241, 0);
}
@media (min-width: 1200px){#s-b6a00d57-a63f-417e-a497-0140539aefc0 {
  display: none;
}
#s-b6a00d57-a63f-417e-a497-0140539aefc0, #wrap-s-b6a00d57-a63f-417e-a497-0140539aefc0 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b6a00d57-a63f-417e-a497-0140539aefc0 {
  display: none;
}
#s-b6a00d57-a63f-417e-a497-0140539aefc0, #wrap-s-b6a00d57-a63f-417e-a497-0140539aefc0 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b6a00d57-a63f-417e-a497-0140539aefc0 {
  
}
}@media (max-width: 767px){#s-b6a00d57-a63f-417e-a497-0140539aefc0 {
  
}
}







#s-b6a00d57-a63f-417e-a497-0140539aefc0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b6a00d57-a63f-417e-a497-0140539aefc0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-760d94e0-70e0-4d94-8860-69be7ea2836c {
  padding-top: 30px;
background-color: rgba(0, 0, 0, 0);
}

#s-49fed791-f592-405a-8f49-4162af27c0df {
  padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-49fed791-f592-405a-8f49-4162af27c0df"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-49fed791-f592-405a-8f49-4162af27c0df"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-49fed791-f592-405a-8f49-4162af27c0df"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-49fed791-f592-405a-8f49-4162af27c0df"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-656d6143-1563-4506-b914-48c6b4e158ab {
  text-align: center;
}







  img.s-656d6143-1563-4506-b914-48c6b4e158ab.shogun-image {
    
    
  }


.s-656d6143-1563-4506-b914-48c6b4e158ab .shogun-image-content {
  
    align-items: center;
  
}

.s-656d6143-1563-4506-b914-48c6b4e158ab.shg-align-container {
  text-align: center
}

.s-656d6143-1563-4506-b914-48c6b4e158ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-656d6143-1563-4506-b914-48c6b4e158ab.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-656d6143-1563-4506-b914-48c6b4e158ab.shogun-image {
    
    
  }


.s-656d6143-1563-4506-b914-48c6b4e158ab .shogun-image-content {
  
    align-items: center;
  
}

.s-656d6143-1563-4506-b914-48c6b4e158ab.shg-align-container {
  text-align: center
}

.s-656d6143-1563-4506-b914-48c6b4e158ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-656d6143-1563-4506-b914-48c6b4e158ab.shogun-image {
  box-sizing: border-box;
}


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





  img.s-656d6143-1563-4506-b914-48c6b4e158ab.shogun-image {
    
    
  }


.s-656d6143-1563-4506-b914-48c6b4e158ab .shogun-image-content {
  
    align-items: center;
  
}

.s-656d6143-1563-4506-b914-48c6b4e158ab.shg-align-container {
  text-align: center
}

.s-656d6143-1563-4506-b914-48c6b4e158ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-656d6143-1563-4506-b914-48c6b4e158ab.shogun-image {
  box-sizing: border-box;
}


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





  img.s-656d6143-1563-4506-b914-48c6b4e158ab.shogun-image {
    
    
  }


.s-656d6143-1563-4506-b914-48c6b4e158ab .shogun-image-content {
  
    align-items: center;
  
}

.s-656d6143-1563-4506-b914-48c6b4e158ab.shg-align-container {
  text-align: center
}

.s-656d6143-1563-4506-b914-48c6b4e158ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-656d6143-1563-4506-b914-48c6b4e158ab.shogun-image {
  box-sizing: border-box;
}


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





  img.s-656d6143-1563-4506-b914-48c6b4e158ab.shogun-image {
    
    
  }


.s-656d6143-1563-4506-b914-48c6b4e158ab .shogun-image-content {
  
    align-items: center;
  
}

.s-656d6143-1563-4506-b914-48c6b4e158ab.shg-align-container {
  text-align: center
}

.s-656d6143-1563-4506-b914-48c6b4e158ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-656d6143-1563-4506-b914-48c6b4e158ab.shogun-image {
  box-sizing: border-box;
}


}
#s-5e1f0e62-41d0-49a3-a946-d5772e9860b0 {
  text-align: center;
}







  img.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shogun-image {
    
    
  }


.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shg-align-container {
  text-align: center
}

.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shogun-image {
    
    
  }


.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shg-align-container {
  text-align: center
}

.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shogun-image {
  box-sizing: border-box;
}


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





  img.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shogun-image {
    
    
  }


.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shg-align-container {
  text-align: center
}

.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shogun-image {
  box-sizing: border-box;
}


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





  img.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shogun-image {
    
    
  }


.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shg-align-container {
  text-align: center
}

.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shogun-image {
  box-sizing: border-box;
}


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





  img.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shogun-image {
    
    
  }


.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shg-align-container {
  text-align: center
}

.s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e1f0e62-41d0-49a3-a946-d5772e9860b0.shogun-image {
  box-sizing: border-box;
}


}
#s-d555d7ca-51b7-48ca-8f68-b781e031a123 {
  text-align: center;
}







  img.s-d555d7ca-51b7-48ca-8f68-b781e031a123.shogun-image {
    
    
  }


.s-d555d7ca-51b7-48ca-8f68-b781e031a123 .shogun-image-content {
  
    align-items: center;
  
}

.s-d555d7ca-51b7-48ca-8f68-b781e031a123.shg-align-container {
  text-align: center
}

.s-d555d7ca-51b7-48ca-8f68-b781e031a123.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d555d7ca-51b7-48ca-8f68-b781e031a123.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-d555d7ca-51b7-48ca-8f68-b781e031a123.shogun-image {
    
    
  }


.s-d555d7ca-51b7-48ca-8f68-b781e031a123 .shogun-image-content {
  
    align-items: center;
  
}

.s-d555d7ca-51b7-48ca-8f68-b781e031a123.shg-align-container {
  text-align: center
}

.s-d555d7ca-51b7-48ca-8f68-b781e031a123.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d555d7ca-51b7-48ca-8f68-b781e031a123.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d555d7ca-51b7-48ca-8f68-b781e031a123.shogun-image {
    
    
  }


.s-d555d7ca-51b7-48ca-8f68-b781e031a123 .shogun-image-content {
  
    align-items: center;
  
}

.s-d555d7ca-51b7-48ca-8f68-b781e031a123.shg-align-container {
  text-align: center
}

.s-d555d7ca-51b7-48ca-8f68-b781e031a123.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d555d7ca-51b7-48ca-8f68-b781e031a123.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d555d7ca-51b7-48ca-8f68-b781e031a123.shogun-image {
    
    
  }


.s-d555d7ca-51b7-48ca-8f68-b781e031a123 .shogun-image-content {
  
    align-items: center;
  
}

.s-d555d7ca-51b7-48ca-8f68-b781e031a123.shg-align-container {
  text-align: center
}

.s-d555d7ca-51b7-48ca-8f68-b781e031a123.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d555d7ca-51b7-48ca-8f68-b781e031a123.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d555d7ca-51b7-48ca-8f68-b781e031a123.shogun-image {
    
    
  }


.s-d555d7ca-51b7-48ca-8f68-b781e031a123 .shogun-image-content {
  
    align-items: center;
  
}

.s-d555d7ca-51b7-48ca-8f68-b781e031a123.shg-align-container {
  text-align: center
}

.s-d555d7ca-51b7-48ca-8f68-b781e031a123.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d555d7ca-51b7-48ca-8f68-b781e031a123.shogun-image {
  box-sizing: border-box;
}


}
#s-aad5968a-b734-4a27-b81b-7f8a12fe8a18 {
  margin-top: -2px;
margin-bottom: -2px;
text-align: center;
}








.s-aad5968a-b734-4a27-b81b-7f8a12fe8a18 .shogun-image-content {
  
    align-items: center;
  
}

.s-aad5968a-b734-4a27-b81b-7f8a12fe8a18.shg-align-container {
  text-align: center
}

.s-aad5968a-b734-4a27-b81b-7f8a12fe8a18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aad5968a-b734-4a27-b81b-7f8a12fe8a18.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){






.s-aad5968a-b734-4a27-b81b-7f8a12fe8a18 .shogun-image-content {
  
    align-items: center;
  
}

.s-aad5968a-b734-4a27-b81b-7f8a12fe8a18.shg-align-container {
  text-align: center
}

.s-aad5968a-b734-4a27-b81b-7f8a12fe8a18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aad5968a-b734-4a27-b81b-7f8a12fe8a18.shogun-image {
  box-sizing: border-box;
}


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






.s-aad5968a-b734-4a27-b81b-7f8a12fe8a18 .shogun-image-content {
  
    align-items: center;
  
}

.s-aad5968a-b734-4a27-b81b-7f8a12fe8a18.shg-align-container {
  text-align: center
}

.s-aad5968a-b734-4a27-b81b-7f8a12fe8a18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aad5968a-b734-4a27-b81b-7f8a12fe8a18.shogun-image {
  box-sizing: border-box;
}


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






.s-aad5968a-b734-4a27-b81b-7f8a12fe8a18 .shogun-image-content {
  
    align-items: center;
  
}

.s-aad5968a-b734-4a27-b81b-7f8a12fe8a18.shg-align-container {
  text-align: center
}

.s-aad5968a-b734-4a27-b81b-7f8a12fe8a18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aad5968a-b734-4a27-b81b-7f8a12fe8a18.shogun-image {
  box-sizing: border-box;
}


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






.s-aad5968a-b734-4a27-b81b-7f8a12fe8a18 .shogun-image-content {
  
    align-items: center;
  
}

.s-aad5968a-b734-4a27-b81b-7f8a12fe8a18.shg-align-container {
  text-align: center
}

.s-aad5968a-b734-4a27-b81b-7f8a12fe8a18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aad5968a-b734-4a27-b81b-7f8a12fe8a18.shogun-image {
  box-sizing: border-box;
}


}
#s-92125795-90a7-4846-925e-028890693dc9 {
  padding-top: 20px;
padding-left: 5%;
padding-bottom: 70px;
padding-right: 5%;
min-height: 50px;
background-color: rgba(211, 234, 239, 1);
}








#s-92125795-90a7-4846-925e-028890693dc9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-92125795-90a7-4846-925e-028890693dc9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-015de13d-f33e-4e17-92b0-92c88c37a856 {
  padding-top: 10px;
padding-bottom: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
border-radius: 30px;
min-height: 150px;
background-color: rgba(190, 230, 237, 1);
}








#s-015de13d-f33e-4e17-92b0-92c88c37a856 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-015de13d-f33e-4e17-92b0-92c88c37a856.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-279ffaef-caba-4307-97b8-16fa43200ee6 {
  padding-top: 20px;
padding-left: 5%;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
}

#s-84e6df64-07f4-48f8-928f-fc33dfaae1af {
  padding-left: 5%;
padding-bottom: 20px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(44, 73, 91, 1);
border-style: solid;
}

#s-aee35a42-1557-4ca3-88c8-b39f36c273fe {
  padding-top: 50px;
padding-bottom: 20px;
text-align: center;
}

#s-aee35a42-1557-4ca3-88c8-b39f36c273fe .shogun-heading-component h4 {
  color: rgba(44, 73, 91, 1);
  font-weight:  normal ;
  font-family: "june-expt-variable";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.3em;
  
  
}



#s-187f65e9-4a8b-42a0-ae9d-64488fc33b9f > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-187f65e9-4a8b-42a0-ae9d-64488fc33b9f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-187f65e9-4a8b-42a0-ae9d-64488fc33b9f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(44, 73, 91, 1);
}

#s-187f65e9-4a8b-42a0-ae9d-64488fc33b9f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-187f65e9-4a8b-42a0-ae9d-64488fc33b9f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(44, 73, 91, 1);
  text-align: left;
  font-family: calluna-sans;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-187f65e9-4a8b-42a0-ae9d-64488fc33b9f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-cd835e80-0cda-4718-877b-d28142f3e23d {
  padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-51dbede0-ca1c-4e2b-ac0e-94d3539220c9 {
  padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
padding-right: 5%;
}

#s-f9570479-3123-4601-a702-a83c418a4b0f {
  padding-top: 10px;
padding-left: 5%;
padding-bottom: 10px;
padding-right: 5%;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-c:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{background-attachment:scroll!important}}@media only screen and (min-width:1024px) and (max-height:1366px) and (-webkit-min-device-pixel-ratio:1.5) and (hover:none) and (orientation:landscape){.shg-box{background-attachment:scroll!important}}#mc_embed_signup .clear{width:auto!important;height:auto!important;visibility:visible!important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline!important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,.85)}.shg-lightbox.hidden{display:none!important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:focus,.shg-lightbox .shg-lightbox-close:hover{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0,-50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none!important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width:769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity .3s}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*=enterviewport][data-animations*=fadeIn],[data-animations*=enterviewport][data-animations*=zoomIn]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}