.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-ec7ed263-0c75-4279-86dd-3070ac5b583f {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
min-height: 20px;
background-color: rgba(133, 56, 255, 1);
}
@media (min-width: 1200px){#s-ec7ed263-0c75-4279-86dd-3070ac5b583f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ec7ed263-0c75-4279-86dd-3070ac5b583f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ec7ed263-0c75-4279-86dd-3070ac5b583f {
  
}
}@media (max-width: 767px){#s-ec7ed263-0c75-4279-86dd-3070ac5b583f {
  
}
}







#s-ec7ed263-0c75-4279-86dd-3070ac5b583f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ec7ed263-0c75-4279-86dd-3070ac5b583f.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.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-f1a4b6c5-67b5-4c25-9f64-04d4c72a3d9e {
  margin-bottom: 0px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-f1a4b6c5-67b5-4c25-9f64-04d4c72a3d9e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f1a4b6c5-67b5-4c25-9f64-04d4c72a3d9e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f1a4b6c5-67b5-4c25-9f64-04d4c72a3d9e {
  
}
}@media (max-width: 767px){#s-f1a4b6c5-67b5-4c25-9f64-04d4c72a3d9e {
  
}
}
#s-c9038a24-e7b8-45a4-9f5d-65a6f94561d5 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-c9038a24-e7b8-45a4-9f5d-65a6f94561d5 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c9038a24-e7b8-45a4-9f5d-65a6f94561d5 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c9038a24-e7b8-45a4-9f5d-65a6f94561d5 {
  
}
}@media (max-width: 767px){#s-c9038a24-e7b8-45a4-9f5d-65a6f94561d5 {
  
}
}







#s-c9038a24-e7b8-45a4-9f5d-65a6f94561d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c9038a24-e7b8-45a4-9f5d-65a6f94561d5.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-7b76ed5f-1329-4c40-9306-5c036d8bc2ef {
  background-repeat: no-repeat;
background-size: cover;
padding-top: 40px;
padding-left: 8%;
padding-bottom: 40px;
padding-right: 8%;
min-height: 550px;
background-position: center center;
}
@media (min-width: 1200px){#s-7b76ed5f-1329-4c40-9306-5c036d8bc2ef {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7b76ed5f-1329-4c40-9306-5c036d8bc2ef {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7b76ed5f-1329-4c40-9306-5c036d8bc2ef {
  
}
}@media (max-width: 767px){#s-7b76ed5f-1329-4c40-9306-5c036d8bc2ef {
  
}
}
#s-7b76ed5f-1329-4c40-9306-5c036d8bc2ef {
  background-image: url(https://i.shgcdn.com/82be4c24-9731-4a14-8090-c7ca49fe263f/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-7b76ed5f-1329-4c40-9306-5c036d8bc2ef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7b76ed5f-1329-4c40-9306-5c036d8bc2ef.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-042102a7-0d38-4113-8b9f-657bf5d14a9b {
  margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-left: 6%;
padding-bottom: 20px;
padding-right: 6%;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.7);
opacity: 1;
}
@media (min-width: 1200px){#s-042102a7-0d38-4113-8b9f-657bf5d14a9b {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-042102a7-0d38-4113-8b9f-657bf5d14a9b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-042102a7-0d38-4113-8b9f-657bf5d14a9b {
  
}
}@media (max-width: 767px){#s-042102a7-0d38-4113-8b9f-657bf5d14a9b {
  
}
}







#s-042102a7-0d38-4113-8b9f-657bf5d14a9b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-042102a7-0d38-4113-8b9f-657bf5d14a9b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

@media (min-width: 0px) {
[id="s-514113a4-0a39-475d-b3aa-45117701a291"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-514113a4-0a39-475d-b3aa-45117701a291"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-514113a4-0a39-475d-b3aa-45117701a291"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-514113a4-0a39-475d-b3aa-45117701a291"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c3b7c00f-67d0-4556-abe9-cb6b575ef7ae {
  margin-left: 6%;
margin-right: 6%;
}

#s-83526bf5-4cc7-4280-ade0-ff9f4279bf3f {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
}

#s-39aa6b74-00db-4cb6-87de-b8a8c507cb4b {
  text-align: left;
}

#s-b68e4b9a-dad2-453d-980f-451e952e330d {
  min-height: 50px;
}








#s-b68e4b9a-dad2-453d-980f-451e952e330d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b68e4b9a-dad2-453d-980f-451e952e330d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-62f02012-5cb5-4efc-b477-3db5aac663ed {
  min-height: 50px;
background-color: rgba(133, 56, 255, 1);
}








#s-62f02012-5cb5-4efc-b477-3db5aac663ed > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-62f02012-5cb5-4efc-b477-3db5aac663ed.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6ecc453e-ef88-4328-adbb-e2f96331a509 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-9c8d1a2e-e97e-48e4-95af-db6708c697c4 {
  margin-top: 15px;
margin-bottom: 0px;
padding-left: 2%;
padding-right: 2%;
}

@media (min-width: 0px) {
[id="s-9c8d1a2e-e97e-48e4-95af-db6708c697c4"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 12.5px);
}

}

@media (min-width: 768px) {
[id="s-9c8d1a2e-e97e-48e4-95af-db6708c697c4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.833333333333332px);
}

}

@media (min-width: 992px) {
[id="s-9c8d1a2e-e97e-48e4-95af-db6708c697c4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.833333333333332px);
}

}

@media (min-width: 1200px) {
[id="s-9c8d1a2e-e97e-48e4-95af-db6708c697c4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.833333333333332px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-a63c9cbd-ed48-48ae-91b8-72ae5591d642 {
  margin-left: 12%;
margin-right: 12%;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-a63c9cbd-ed48-48ae-91b8-72ae5591d642 img.shogun-image,
  #s-a63c9cbd-ed48-48ae-91b8-72ae5591d642 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a63c9cbd-ed48-48ae-91b8-72ae5591d642 {
    width: 100%;
    height: auto;
  }



  #s-a63c9cbd-ed48-48ae-91b8-72ae5591d642 img.shogun-image {
    

    
    
    
  }


#s-a63c9cbd-ed48-48ae-91b8-72ae5591d642 .shogun-image-content {
  
    align-items: center;
  
}

#s-92c1fac3-d715-42e9-a716-e9d2715cb0fb {
  padding-left: 10%;
padding-right: 10%;
}

#s-7a262c23-8ac4-4ab0-a10f-a006a6d21547 {
  margin-left: 12%;
margin-right: 12%;
text-align: center;
}







  #s-7a262c23-8ac4-4ab0-a10f-a006a6d21547 img.shogun-image {
    

    
    
    
  }


#s-7a262c23-8ac4-4ab0-a10f-a006a6d21547 .shogun-image-content {
  
    align-items: center;
  
}

#s-b854f155-4a38-4283-90cd-4b901db8f475 {
  padding-left: 10%;
padding-right: 10%;
}

#s-bd6ef2d1-7487-4934-8284-92a29ecaab33 {
  margin-left: 12%;
margin-right: 12%;
text-align: center;
}







  #s-bd6ef2d1-7487-4934-8284-92a29ecaab33 img.shogun-image {
    

    
    
    
  }


#s-bd6ef2d1-7487-4934-8284-92a29ecaab33 .shogun-image-content {
  
    align-items: center;
  
}

#s-1dc12bf2-56b6-48fa-a1a7-1f8076a78765 {
  padding-left: 10%;
padding-right: 10%;
}

#s-68d2c492-bdc4-4bb9-a827-fc180c445ddc {
  margin-left: 12%;
margin-right: 12%;
text-align: center;
}







  #s-68d2c492-bdc4-4bb9-a827-fc180c445ddc img.shogun-image {
    

    
    
    
  }


#s-68d2c492-bdc4-4bb9-a827-fc180c445ddc .shogun-image-content {
  
    align-items: center;
  
}

#s-36d6bfbb-e9f0-480d-8e23-29ae53c788e7 {
  padding-left: 10%;
padding-right: 10%;
}

#s-a70d007e-ac47-4d3c-ae8f-963d9edeeaf6 {
  margin-left: 12%;
margin-right: 12%;
max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-a70d007e-ac47-4d3c-ae8f-963d9edeeaf6 img.shogun-image,
  #s-a70d007e-ac47-4d3c-ae8f-963d9edeeaf6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a70d007e-ac47-4d3c-ae8f-963d9edeeaf6 {
    width: 100%;
    height: auto;
  }



  #s-a70d007e-ac47-4d3c-ae8f-963d9edeeaf6 img.shogun-image {
    

    
    
    
  }


#s-a70d007e-ac47-4d3c-ae8f-963d9edeeaf6 .shogun-image-content {
  
    align-items: center;
  
}

#s-add98309-8ecc-4172-b564-95b13d9cada2 {
  padding-left: 10%;
padding-right: 10%;
}

#s-3e2fb995-dab2-4a6a-94ef-dae9e39c3171 {
  margin-left: 12%;
margin-right: 12%;
text-align: center;
}







  #s-3e2fb995-dab2-4a6a-94ef-dae9e39c3171 img.shogun-image {
    

    
    
    
  }


#s-3e2fb995-dab2-4a6a-94ef-dae9e39c3171 .shogun-image-content {
  
    align-items: center;
  
}

#s-e7b1d352-6ab7-499b-a122-082fe9a8ec11 {
  padding-left: 10%;
padding-right: 10%;
}

#s-be8d1a20-40ab-425c-8faf-7cfd70662a51 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 40px;
padding-left: 40px;
padding-bottom: 20px;
padding-right: 40px;
min-height: 50px;
background-color: rgba(133, 56, 255, 0.11);
}
@media (min-width: 1200px){#s-be8d1a20-40ab-425c-8faf-7cfd70662a51 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-be8d1a20-40ab-425c-8faf-7cfd70662a51 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-be8d1a20-40ab-425c-8faf-7cfd70662a51 {
  
}
}@media (max-width: 767px){#s-be8d1a20-40ab-425c-8faf-7cfd70662a51 {
  
}
}







#s-be8d1a20-40ab-425c-8faf-7cfd70662a51 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-be8d1a20-40ab-425c-8faf-7cfd70662a51.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1abaf7e2-53c4-4dc0-8669-1df59d505493 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-3ca271ad-182a-49b5-8362-a481e08b3565 {
  margin-left: 8%;
margin-bottom: 30px;
margin-right: 8%;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-3ca271ad-182a-49b5-8362-a481e08b3565 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3ca271ad-182a-49b5-8362-a481e08b3565 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-3ca271ad-182a-49b5-8362-a481e08b3565 {
  
}
}@media (max-width: 767px){#s-3ca271ad-182a-49b5-8362-a481e08b3565 {
  
}
}
@media (min-width: 0px) {
[id="s-e37f5648-6ed4-4fa1-a0ae-3d92a0e05bb7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e37f5648-6ed4-4fa1-a0ae-3d92a0e05bb7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-e37f5648-6ed4-4fa1-a0ae-3d92a0e05bb7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-e37f5648-6ed4-4fa1-a0ae-3d92a0e05bb7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

#s-9d3c2005-acc9-4828-a946-71e4d84d8263 {
  margin-bottom: 20px;
padding-top: 30px;
padding-left: 30px;
padding-bottom: 20px;
padding-right: 30px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-9d3c2005-acc9-4828-a946-71e4d84d8263 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9d3c2005-acc9-4828-a946-71e4d84d8263.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.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-ae71d360-747c-47de-b05c-ddc82e7ed611 {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
text-align: center;
}

#s-ae71d360-747c-47de-b05c-ddc82e7ed611 .shogun-heading-component h3 {
  color: rgba(9, 5, 93, 1);
  font-weight:  normal ;
  font-family: "Libre Baskerville";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: 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;
}

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

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

#s-63c5485f-9bf6-4770-b611-bb0e923a8284 {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-63c5485f-9bf6-4770-b611-bb0e923a8284 img.shogun-image,
  #s-63c5485f-9bf6-4770-b611-bb0e923a8284 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-63c5485f-9bf6-4770-b611-bb0e923a8284 {
    width: 100%;
    height: auto;
  }



  img.s-63c5485f-9bf6-4770-b611-bb0e923a8284.shogun-image {
    
    
  }


.s-63c5485f-9bf6-4770-b611-bb0e923a8284 .shogun-image-content {
  
    align-items: center;
  
}

.s-63c5485f-9bf6-4770-b611-bb0e923a8284.shg-align-container {
  text-align: center
}

.s-63c5485f-9bf6-4770-b611-bb0e923a8284.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-63c5485f-9bf6-4770-b611-bb0e923a8284.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-63c5485f-9bf6-4770-b611-bb0e923a8284 img.shogun-image,
  #s-63c5485f-9bf6-4770-b611-bb0e923a8284 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-63c5485f-9bf6-4770-b611-bb0e923a8284 {
    width: 100%;
    height: auto;
  }



  img.s-63c5485f-9bf6-4770-b611-bb0e923a8284.shogun-image {
    
    
  }


.s-63c5485f-9bf6-4770-b611-bb0e923a8284 .shogun-image-content {
  
    align-items: center;
  
}

.s-63c5485f-9bf6-4770-b611-bb0e923a8284.shg-align-container {
  text-align: center
}

.s-63c5485f-9bf6-4770-b611-bb0e923a8284.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-63c5485f-9bf6-4770-b611-bb0e923a8284.shogun-image {
  box-sizing: border-box;
}


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



  #s-63c5485f-9bf6-4770-b611-bb0e923a8284 img.shogun-image,
  #s-63c5485f-9bf6-4770-b611-bb0e923a8284 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-63c5485f-9bf6-4770-b611-bb0e923a8284 {
    width: 100%;
    height: auto;
  }



  img.s-63c5485f-9bf6-4770-b611-bb0e923a8284.shogun-image {
    
    
  }


.s-63c5485f-9bf6-4770-b611-bb0e923a8284 .shogun-image-content {
  
    align-items: center;
  
}

.s-63c5485f-9bf6-4770-b611-bb0e923a8284.shg-align-container {
  text-align: center
}

.s-63c5485f-9bf6-4770-b611-bb0e923a8284.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-63c5485f-9bf6-4770-b611-bb0e923a8284.shogun-image {
  box-sizing: border-box;
}


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



  #s-63c5485f-9bf6-4770-b611-bb0e923a8284 img.shogun-image,
  #s-63c5485f-9bf6-4770-b611-bb0e923a8284 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-63c5485f-9bf6-4770-b611-bb0e923a8284 {
    width: 100%;
    height: auto;
  }



  img.s-63c5485f-9bf6-4770-b611-bb0e923a8284.shogun-image {
    
    
  }


.s-63c5485f-9bf6-4770-b611-bb0e923a8284 .shogun-image-content {
  
    align-items: center;
  
}

.s-63c5485f-9bf6-4770-b611-bb0e923a8284.shg-align-container {
  text-align: center
}

.s-63c5485f-9bf6-4770-b611-bb0e923a8284.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-63c5485f-9bf6-4770-b611-bb0e923a8284.shogun-image {
  box-sizing: border-box;
}


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



  #s-63c5485f-9bf6-4770-b611-bb0e923a8284 img.shogun-image,
  #s-63c5485f-9bf6-4770-b611-bb0e923a8284 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-63c5485f-9bf6-4770-b611-bb0e923a8284 {
    width: 100%;
    height: auto;
  }



  img.s-63c5485f-9bf6-4770-b611-bb0e923a8284.shogun-image {
    
    
  }


.s-63c5485f-9bf6-4770-b611-bb0e923a8284 .shogun-image-content {
  
    align-items: center;
  
}

.s-63c5485f-9bf6-4770-b611-bb0e923a8284.shg-align-container {
  text-align: center
}

.s-63c5485f-9bf6-4770-b611-bb0e923a8284.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-63c5485f-9bf6-4770-b611-bb0e923a8284.shogun-image {
  box-sizing: border-box;
}


}
#s-ba300ff7-5443-4162-adcd-79896ec4d6cc {
  margin-bottom: 30px;
padding-top: 10px;
padding-left: 0px;
padding-right: 0px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-ba300ff7-5443-4162-adcd-79896ec4d6cc {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ba300ff7-5443-4162-adcd-79896ec4d6cc {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ba300ff7-5443-4162-adcd-79896ec4d6cc {
  
}
}@media (max-width: 767px){#s-ba300ff7-5443-4162-adcd-79896ec4d6cc {
  
}
}
#s-1e5a1093-deb2-4f2c-90ed-ce31a1106b7d {
  margin-bottom: 20px;
padding-top: 30px;
padding-left: 30px;
padding-bottom: 20px;
padding-right: 30px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-1e5a1093-deb2-4f2c-90ed-ce31a1106b7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1e5a1093-deb2-4f2c-90ed-ce31a1106b7d.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-d1c255df-2ff4-404a-8d60-3f0af3c9308f {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
text-align: center;
}

#s-d1c255df-2ff4-404a-8d60-3f0af3c9308f .shogun-heading-component h3 {
  color: rgba(9, 5, 93, 1);
  font-weight:  normal ;
  font-family: "Libre Baskerville";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}



#s-fdb2a608-d298-457b-89c6-112d539b3843 {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
opacity: 0.95;
}





  #s-fdb2a608-d298-457b-89c6-112d539b3843 img.shogun-image,
  #s-fdb2a608-d298-457b-89c6-112d539b3843 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fdb2a608-d298-457b-89c6-112d539b3843 {
    width: 100%;
    height: auto;
  }



  img.s-fdb2a608-d298-457b-89c6-112d539b3843.shogun-image {
    
    
  }


.s-fdb2a608-d298-457b-89c6-112d539b3843 .shogun-image-content {
  
    align-items: center;
  
}

.s-fdb2a608-d298-457b-89c6-112d539b3843.shg-align-container {
  text-align: center
}

.s-fdb2a608-d298-457b-89c6-112d539b3843.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fdb2a608-d298-457b-89c6-112d539b3843.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-fdb2a608-d298-457b-89c6-112d539b3843 img.shogun-image,
  #s-fdb2a608-d298-457b-89c6-112d539b3843 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fdb2a608-d298-457b-89c6-112d539b3843 {
    width: 100%;
    height: auto;
  }



  img.s-fdb2a608-d298-457b-89c6-112d539b3843.shogun-image {
    
    
  }


.s-fdb2a608-d298-457b-89c6-112d539b3843 .shogun-image-content {
  
    align-items: center;
  
}

.s-fdb2a608-d298-457b-89c6-112d539b3843.shg-align-container {
  text-align: center
}

.s-fdb2a608-d298-457b-89c6-112d539b3843.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fdb2a608-d298-457b-89c6-112d539b3843.shogun-image {
  box-sizing: border-box;
}


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



  #s-fdb2a608-d298-457b-89c6-112d539b3843 img.shogun-image,
  #s-fdb2a608-d298-457b-89c6-112d539b3843 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fdb2a608-d298-457b-89c6-112d539b3843 {
    width: 100%;
    height: auto;
  }



  img.s-fdb2a608-d298-457b-89c6-112d539b3843.shogun-image {
    
    
  }


.s-fdb2a608-d298-457b-89c6-112d539b3843 .shogun-image-content {
  
    align-items: center;
  
}

.s-fdb2a608-d298-457b-89c6-112d539b3843.shg-align-container {
  text-align: center
}

.s-fdb2a608-d298-457b-89c6-112d539b3843.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fdb2a608-d298-457b-89c6-112d539b3843.shogun-image {
  box-sizing: border-box;
}


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



  #s-fdb2a608-d298-457b-89c6-112d539b3843 img.shogun-image,
  #s-fdb2a608-d298-457b-89c6-112d539b3843 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fdb2a608-d298-457b-89c6-112d539b3843 {
    width: 100%;
    height: auto;
  }



  img.s-fdb2a608-d298-457b-89c6-112d539b3843.shogun-image {
    
    
  }


.s-fdb2a608-d298-457b-89c6-112d539b3843 .shogun-image-content {
  
    align-items: center;
  
}

.s-fdb2a608-d298-457b-89c6-112d539b3843.shg-align-container {
  text-align: center
}

.s-fdb2a608-d298-457b-89c6-112d539b3843.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fdb2a608-d298-457b-89c6-112d539b3843.shogun-image {
  box-sizing: border-box;
}


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



  #s-fdb2a608-d298-457b-89c6-112d539b3843 img.shogun-image,
  #s-fdb2a608-d298-457b-89c6-112d539b3843 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fdb2a608-d298-457b-89c6-112d539b3843 {
    width: 100%;
    height: auto;
  }



  img.s-fdb2a608-d298-457b-89c6-112d539b3843.shogun-image {
    
    
  }


.s-fdb2a608-d298-457b-89c6-112d539b3843 .shogun-image-content {
  
    align-items: center;
  
}

.s-fdb2a608-d298-457b-89c6-112d539b3843.shg-align-container {
  text-align: center
}

.s-fdb2a608-d298-457b-89c6-112d539b3843.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fdb2a608-d298-457b-89c6-112d539b3843.shogun-image {
  box-sizing: border-box;
}


}
#s-67ab4f16-ff25-4fa4-8999-195dda363314 {
  margin-bottom: 30px;
padding-top: 10px;
padding-left: 0px;
padding-right: 0px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-67ab4f16-ff25-4fa4-8999-195dda363314 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-67ab4f16-ff25-4fa4-8999-195dda363314 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-67ab4f16-ff25-4fa4-8999-195dda363314 {
  
}
}@media (max-width: 767px){#s-67ab4f16-ff25-4fa4-8999-195dda363314 {
  
}
}
#s-4f822fd2-1314-4a05-9a0a-0ba1c77724ca {
  margin-bottom: 20px;
padding-top: 30px;
padding-left: 30px;
padding-bottom: 20px;
padding-right: 30px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-4f822fd2-1314-4a05-9a0a-0ba1c77724ca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4f822fd2-1314-4a05-9a0a-0ba1c77724ca.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-60fe747e-d224-4377-8f61-12c72f8e5daf {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
text-align: center;
}

#s-60fe747e-d224-4377-8f61-12c72f8e5daf .shogun-heading-component h3 {
  color: rgba(9, 5, 93, 1);
  font-weight:  normal ;
  font-family: "Libre Baskerville";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}



#s-565ced3a-915e-4760-bad5-105cbb88c684 {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
opacity: 0.95;
}





  #s-565ced3a-915e-4760-bad5-105cbb88c684 img.shogun-image,
  #s-565ced3a-915e-4760-bad5-105cbb88c684 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-565ced3a-915e-4760-bad5-105cbb88c684 {
    width: 100%;
    height: auto;
  }



  img.s-565ced3a-915e-4760-bad5-105cbb88c684.shogun-image {
    
    
  }


.s-565ced3a-915e-4760-bad5-105cbb88c684 .shogun-image-content {
  
    align-items: center;
  
}

.s-565ced3a-915e-4760-bad5-105cbb88c684.shg-align-container {
  text-align: center
}

.s-565ced3a-915e-4760-bad5-105cbb88c684.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-565ced3a-915e-4760-bad5-105cbb88c684.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-565ced3a-915e-4760-bad5-105cbb88c684 img.shogun-image,
  #s-565ced3a-915e-4760-bad5-105cbb88c684 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-565ced3a-915e-4760-bad5-105cbb88c684 {
    width: 100%;
    height: auto;
  }



  img.s-565ced3a-915e-4760-bad5-105cbb88c684.shogun-image {
    
    
  }


.s-565ced3a-915e-4760-bad5-105cbb88c684 .shogun-image-content {
  
    align-items: center;
  
}

.s-565ced3a-915e-4760-bad5-105cbb88c684.shg-align-container {
  text-align: center
}

.s-565ced3a-915e-4760-bad5-105cbb88c684.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-565ced3a-915e-4760-bad5-105cbb88c684.shogun-image {
  box-sizing: border-box;
}


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



  #s-565ced3a-915e-4760-bad5-105cbb88c684 img.shogun-image,
  #s-565ced3a-915e-4760-bad5-105cbb88c684 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-565ced3a-915e-4760-bad5-105cbb88c684 {
    width: 100%;
    height: auto;
  }



  img.s-565ced3a-915e-4760-bad5-105cbb88c684.shogun-image {
    
    
  }


.s-565ced3a-915e-4760-bad5-105cbb88c684 .shogun-image-content {
  
    align-items: center;
  
}

.s-565ced3a-915e-4760-bad5-105cbb88c684.shg-align-container {
  text-align: center
}

.s-565ced3a-915e-4760-bad5-105cbb88c684.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-565ced3a-915e-4760-bad5-105cbb88c684.shogun-image {
  box-sizing: border-box;
}


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



  #s-565ced3a-915e-4760-bad5-105cbb88c684 img.shogun-image,
  #s-565ced3a-915e-4760-bad5-105cbb88c684 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-565ced3a-915e-4760-bad5-105cbb88c684 {
    width: 100%;
    height: auto;
  }



  img.s-565ced3a-915e-4760-bad5-105cbb88c684.shogun-image {
    
    
  }


.s-565ced3a-915e-4760-bad5-105cbb88c684 .shogun-image-content {
  
    align-items: center;
  
}

.s-565ced3a-915e-4760-bad5-105cbb88c684.shg-align-container {
  text-align: center
}

.s-565ced3a-915e-4760-bad5-105cbb88c684.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-565ced3a-915e-4760-bad5-105cbb88c684.shogun-image {
  box-sizing: border-box;
}


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



  #s-565ced3a-915e-4760-bad5-105cbb88c684 img.shogun-image,
  #s-565ced3a-915e-4760-bad5-105cbb88c684 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-565ced3a-915e-4760-bad5-105cbb88c684 {
    width: 100%;
    height: auto;
  }



  img.s-565ced3a-915e-4760-bad5-105cbb88c684.shogun-image {
    
    
  }


.s-565ced3a-915e-4760-bad5-105cbb88c684 .shogun-image-content {
  
    align-items: center;
  
}

.s-565ced3a-915e-4760-bad5-105cbb88c684.shg-align-container {
  text-align: center
}

.s-565ced3a-915e-4760-bad5-105cbb88c684.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-565ced3a-915e-4760-bad5-105cbb88c684.shogun-image {
  box-sizing: border-box;
}


}
#s-fc11a489-c51d-43ce-80ad-c2a3f2faad78 {
  margin-bottom: 30px;
padding-top: 10px;
padding-left: 0px;
padding-right: 0px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-fc11a489-c51d-43ce-80ad-c2a3f2faad78 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-fc11a489-c51d-43ce-80ad-c2a3f2faad78 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-fc11a489-c51d-43ce-80ad-c2a3f2faad78 {
  
}
}@media (max-width: 767px){#s-fc11a489-c51d-43ce-80ad-c2a3f2faad78 {
  
}
}
@media (min-width: 0px) {
[id="s-629880e6-9e31-4c0b-a13d-88dffbe81221"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-629880e6-9e31-4c0b-a13d-88dffbe81221"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-629880e6-9e31-4c0b-a13d-88dffbe81221"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-629880e6-9e31-4c0b-a13d-88dffbe81221"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

#s-2cd2f9fd-2e0d-4b8c-a7c4-4381a5308069 {
  margin-bottom: 20px;
padding-top: 30px;
padding-left: 30px;
padding-bottom: 20px;
padding-right: 30px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-2cd2f9fd-2e0d-4b8c-a7c4-4381a5308069 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2cd2f9fd-2e0d-4b8c-a7c4-4381a5308069.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2a24189a-d2b2-4c23-9c19-1160cae67ac0 {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
text-align: center;
}

#s-2a24189a-d2b2-4c23-9c19-1160cae67ac0 .shogun-heading-component h3 {
  color: rgba(9, 5, 93, 1);
  font-weight:  normal ;
  font-family: "Libre Baskerville";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}



#s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 img.shogun-image,
  #s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 {
    width: 100%;
    height: auto;
  }



  img.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shogun-image {
    
    
  }


.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 .shogun-image-content {
  
    align-items: center;
  
}

.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shg-align-container {
  text-align: center
}

.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 img.shogun-image,
  #s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 {
    width: 100%;
    height: auto;
  }



  img.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shogun-image {
    
    
  }


.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 .shogun-image-content {
  
    align-items: center;
  
}

.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shg-align-container {
  text-align: center
}

.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shogun-image {
  box-sizing: border-box;
}


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



  #s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 img.shogun-image,
  #s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 {
    width: 100%;
    height: auto;
  }



  img.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shogun-image {
    
    
  }


.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 .shogun-image-content {
  
    align-items: center;
  
}

.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shg-align-container {
  text-align: center
}

.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shogun-image {
  box-sizing: border-box;
}


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



  #s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 img.shogun-image,
  #s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 {
    width: 100%;
    height: auto;
  }



  img.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shogun-image {
    
    
  }


.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 .shogun-image-content {
  
    align-items: center;
  
}

.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shg-align-container {
  text-align: center
}

.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shogun-image {
  box-sizing: border-box;
}


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



  #s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 img.shogun-image,
  #s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 {
    width: 100%;
    height: auto;
  }



  img.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shogun-image {
    
    
  }


.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3 .shogun-image-content {
  
    align-items: center;
  
}

.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shg-align-container {
  text-align: center
}

.s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-02fcb7fb-6657-4daa-a0d9-c7a313214ff3.shogun-image {
  box-sizing: border-box;
}


}
#s-89d2f5b9-f8be-4d9e-b5af-335bbefd4977 {
  margin-bottom: 30px;
padding-top: 10px;
padding-left: 0px;
padding-right: 0px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-89d2f5b9-f8be-4d9e-b5af-335bbefd4977 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-89d2f5b9-f8be-4d9e-b5af-335bbefd4977 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-89d2f5b9-f8be-4d9e-b5af-335bbefd4977 {
  
}
}@media (max-width: 767px){#s-89d2f5b9-f8be-4d9e-b5af-335bbefd4977 {
  
}
}
#s-d5ea7135-457b-4a47-bd8a-e7c533b9cf49 {
  margin-bottom: 20px;
padding-top: 30px;
padding-left: 30px;
padding-bottom: 20px;
padding-right: 30px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-d5ea7135-457b-4a47-bd8a-e7c533b9cf49 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d5ea7135-457b-4a47-bd8a-e7c533b9cf49.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-fce5c925-a041-4b37-b3cb-01edf2ed470b {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
text-align: center;
}

#s-fce5c925-a041-4b37-b3cb-01edf2ed470b .shogun-heading-component h3 {
  color: rgba(9, 5, 93, 1);
  font-weight:  normal ;
  font-family: "Libre Baskerville";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}



#s-83aa50f6-4b05-4c08-aeab-def7b14334ee {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
opacity: 0.95;
}





  #s-83aa50f6-4b05-4c08-aeab-def7b14334ee img.shogun-image,
  #s-83aa50f6-4b05-4c08-aeab-def7b14334ee .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83aa50f6-4b05-4c08-aeab-def7b14334ee {
    width: 100%;
    height: auto;
  }



  img.s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shogun-image {
    
    
  }


.s-83aa50f6-4b05-4c08-aeab-def7b14334ee .shogun-image-content {
  
    align-items: center;
  
}

.s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shg-align-container {
  text-align: center
}

.s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-83aa50f6-4b05-4c08-aeab-def7b14334ee img.shogun-image,
  #s-83aa50f6-4b05-4c08-aeab-def7b14334ee .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83aa50f6-4b05-4c08-aeab-def7b14334ee {
    width: 100%;
    height: auto;
  }



  img.s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shogun-image {
    
    
  }


.s-83aa50f6-4b05-4c08-aeab-def7b14334ee .shogun-image-content {
  
    align-items: center;
  
}

.s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shg-align-container {
  text-align: center
}

.s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shogun-image {
  box-sizing: border-box;
}


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



  #s-83aa50f6-4b05-4c08-aeab-def7b14334ee img.shogun-image,
  #s-83aa50f6-4b05-4c08-aeab-def7b14334ee .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83aa50f6-4b05-4c08-aeab-def7b14334ee {
    width: 100%;
    height: auto;
  }



  img.s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shogun-image {
    
    
  }


.s-83aa50f6-4b05-4c08-aeab-def7b14334ee .shogun-image-content {
  
    align-items: center;
  
}

.s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shg-align-container {
  text-align: center
}

.s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shogun-image {
  box-sizing: border-box;
}


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



  #s-83aa50f6-4b05-4c08-aeab-def7b14334ee img.shogun-image,
  #s-83aa50f6-4b05-4c08-aeab-def7b14334ee .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83aa50f6-4b05-4c08-aeab-def7b14334ee {
    width: 100%;
    height: auto;
  }



  img.s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shogun-image {
    
    
  }


.s-83aa50f6-4b05-4c08-aeab-def7b14334ee .shogun-image-content {
  
    align-items: center;
  
}

.s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shg-align-container {
  text-align: center
}

.s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shogun-image {
  box-sizing: border-box;
}


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



  #s-83aa50f6-4b05-4c08-aeab-def7b14334ee img.shogun-image,
  #s-83aa50f6-4b05-4c08-aeab-def7b14334ee .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-83aa50f6-4b05-4c08-aeab-def7b14334ee {
    width: 100%;
    height: auto;
  }



  img.s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shogun-image {
    
    
  }


.s-83aa50f6-4b05-4c08-aeab-def7b14334ee .shogun-image-content {
  
    align-items: center;
  
}

.s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shg-align-container {
  text-align: center
}

.s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83aa50f6-4b05-4c08-aeab-def7b14334ee.shogun-image {
  box-sizing: border-box;
}


}
#s-da4ec3d9-65b5-46fb-961a-767d3ca1fa34 {
  margin-bottom: 30px;
padding-top: 10px;
padding-left: 0px;
padding-right: 0px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-da4ec3d9-65b5-46fb-961a-767d3ca1fa34 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-da4ec3d9-65b5-46fb-961a-767d3ca1fa34 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-da4ec3d9-65b5-46fb-961a-767d3ca1fa34 {
  
}
}@media (max-width: 767px){#s-da4ec3d9-65b5-46fb-961a-767d3ca1fa34 {
  
}
}
#s-14f844fb-f9d3-4146-8744-e7178a553329 {
  margin-bottom: 20px;
padding-top: 30px;
padding-left: 30px;
padding-bottom: 20px;
padding-right: 30px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-14f844fb-f9d3-4146-8744-e7178a553329 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-14f844fb-f9d3-4146-8744-e7178a553329.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a17b3617-b644-40e6-9507-253a3e0dd622 {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
text-align: center;
}

#s-a17b3617-b644-40e6-9507-253a3e0dd622 .shogun-heading-component h3 {
  color: rgba(9, 5, 93, 1);
  font-weight:  normal ;
  font-family: "Libre Baskerville";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}



#s-237fed90-a0ce-497e-9f80-fdc22d5543a9 {
  max-width: 1080px;
aspect-ratio: 1/1;
text-align: center;
opacity: 0.95;
}





  #s-237fed90-a0ce-497e-9f80-fdc22d5543a9 img.shogun-image,
  #s-237fed90-a0ce-497e-9f80-fdc22d5543a9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-237fed90-a0ce-497e-9f80-fdc22d5543a9 {
    width: 100%;
    height: auto;
  }



  img.s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shogun-image {
    
    
  }


.s-237fed90-a0ce-497e-9f80-fdc22d5543a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shg-align-container {
  text-align: center
}

.s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-237fed90-a0ce-497e-9f80-fdc22d5543a9 img.shogun-image,
  #s-237fed90-a0ce-497e-9f80-fdc22d5543a9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-237fed90-a0ce-497e-9f80-fdc22d5543a9 {
    width: 100%;
    height: auto;
  }



  img.s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shogun-image {
    
    
  }


.s-237fed90-a0ce-497e-9f80-fdc22d5543a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shg-align-container {
  text-align: center
}

.s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shogun-image {
  box-sizing: border-box;
}


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



  #s-237fed90-a0ce-497e-9f80-fdc22d5543a9 img.shogun-image,
  #s-237fed90-a0ce-497e-9f80-fdc22d5543a9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-237fed90-a0ce-497e-9f80-fdc22d5543a9 {
    width: 100%;
    height: auto;
  }



  img.s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shogun-image {
    
    
  }


.s-237fed90-a0ce-497e-9f80-fdc22d5543a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shg-align-container {
  text-align: center
}

.s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shogun-image {
  box-sizing: border-box;
}


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



  #s-237fed90-a0ce-497e-9f80-fdc22d5543a9 img.shogun-image,
  #s-237fed90-a0ce-497e-9f80-fdc22d5543a9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-237fed90-a0ce-497e-9f80-fdc22d5543a9 {
    width: 100%;
    height: auto;
  }



  img.s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shogun-image {
    
    
  }


.s-237fed90-a0ce-497e-9f80-fdc22d5543a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shg-align-container {
  text-align: center
}

.s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shogun-image {
  box-sizing: border-box;
}


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



  #s-237fed90-a0ce-497e-9f80-fdc22d5543a9 img.shogun-image,
  #s-237fed90-a0ce-497e-9f80-fdc22d5543a9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-237fed90-a0ce-497e-9f80-fdc22d5543a9 {
    width: 100%;
    height: auto;
  }



  img.s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shogun-image {
    
    
  }


.s-237fed90-a0ce-497e-9f80-fdc22d5543a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shg-align-container {
  text-align: center
}

.s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-237fed90-a0ce-497e-9f80-fdc22d5543a9.shogun-image {
  box-sizing: border-box;
}


}
#s-7ad20969-50c9-4cc7-989d-bfa0fec1f075 {
  margin-bottom: 30px;
padding-top: 10px;
padding-left: 0px;
padding-right: 0px;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 1200px){#s-7ad20969-50c9-4cc7-989d-bfa0fec1f075 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7ad20969-50c9-4cc7-989d-bfa0fec1f075 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7ad20969-50c9-4cc7-989d-bfa0fec1f075 {
  
}
}@media (max-width: 767px){#s-7ad20969-50c9-4cc7-989d-bfa0fec1f075 {
  
}
}
#s-bb85bb26-2fd4-4b13-944e-38696c59754c {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 20px;
padding-left: 40px;
padding-bottom: 40px;
padding-right: 40px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-bb85bb26-2fd4-4b13-944e-38696c59754c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bb85bb26-2fd4-4b13-944e-38696c59754c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bb85bb26-2fd4-4b13-944e-38696c59754c {
  
}
}@media (max-width: 767px){#s-bb85bb26-2fd4-4b13-944e-38696c59754c {
  
}
}







#s-bb85bb26-2fd4-4b13-944e-38696c59754c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bb85bb26-2fd4-4b13-944e-38696c59754c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-b302280b-159f-41fc-ac9c-ed60e2a99508 {
  border-style: solid;
margin-top: 20px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(242, 242, 242, 1);
text-align: center;
}
@media (min-width: 1200px){#s-b302280b-159f-41fc-ac9c-ed60e2a99508 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b302280b-159f-41fc-ac9c-ed60e2a99508 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b302280b-159f-41fc-ac9c-ed60e2a99508 {
  
}
}@media (max-width: 767px){#s-b302280b-159f-41fc-ac9c-ed60e2a99508 {
  
}
}
#s-b302280b-159f-41fc-ac9c-ed60e2a99508 .shogun-heading-component h2 {
  color: rgba(133, 56, 255, 1);
  font-weight:  normal ;
  font-family: "Libre Baskerville";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



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

.shg-category-grid {
  margin: -20px 0;
}

.shg-category-row,
.shg-category-row-hor {
  display: flex;
  margin: 20px 0;
}

.shg-category-col,
.shg-category-col-1 {
  flex: 1;
  padding: 0 10px;
}

.shg-category-col:last-child {
  padding-right: 0;
}

.shg-category-col:first-child {
  padding-left: 0;
}

.shg-category-col-2 {
  flex: 2;
  padding: 0 20px;
}

.shg-category-col-3 {
  flex: 3;
  padding: 0 30px;
}

.shg-category-col-4 {
  flex: 4;
  padding: 0 40px;
}

.shg-category-col-5 {
  flex: 5;
  padding: 0 50px;
}

@media (max-width: 768px) {
  .shg-category-row.stacked {
    display: block;
  }

  .shg-category-row .shg-category-col {
    padding: 20px 0;
  }

  .shg-category-row .shg-category-col:first-child {
    padding-top: 0;
  }

  .shg-category-row .shg-category-col:last-child {
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .shg-category-row-hor {
    display: flex;
    flex-wrap: wrap;
  }

  .shg-category-row-hor .shg-category-col,
  .shg-category-row-hor .shg-category-col:first-child,
  .shg-category-row-hor .shg-category-col:last-child {
    min-width: 50%;
    max-width: 50%;
    padding-top: 0;
    padding-left: 3px;
    padding-right: 3px;
    padding-bottom: 3px;
  }
}

#s-cf872c63-921b-446b-b9ab-f610a232cd2d {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

#s-ddc29711-36d0-4951-8af9-07cfd4fcd4ed {
  text-align: left;
}



.shg-c#s-ddc29711-36d0-4951-8af9-07cfd4fcd4ed .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ddc29711-36d0-4951-8af9-07cfd4fcd4ed img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ddc29711-36d0-4951-8af9-07cfd4fcd4ed .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ddc29711-36d0-4951-8af9-07cfd4fcd4ed img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ddc29711-36d0-4951-8af9-07cfd4fcd4ed .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ddc29711-36d0-4951-8af9-07cfd4fcd4ed img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ddc29711-36d0-4951-8af9-07cfd4fcd4ed .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ddc29711-36d0-4951-8af9-07cfd4fcd4ed img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ddc29711-36d0-4951-8af9-07cfd4fcd4ed .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ddc29711-36d0-4951-8af9-07cfd4fcd4ed img.shogun-image {
  width: 100%;
}



}
.shg-product-title-component h1,
.shg-product-title-component h2,
.shg-product-title-component h3,
.shg-product-title-component h4,
.shg-product-title-component h5,
.shg-product-title-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;
}

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-7ba4a898-a24b-4926-b5b4-4cc1edb38846 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7ba4a898-a24b-4926-b5b4-4cc1edb38846 .shg-product-title-component h3 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-f6a33972-dabd-4e23-b6c3-78359a65f4ee {
  text-align: center;
}

#s-f6a33972-dabd-4e23-b6c3-78359a65f4ee .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f6a33972-dabd-4e23-b6c3-78359a65f4ee .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-f6a33972-dabd-4e23-b6c3-78359a65f4ee .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

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

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

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

#s-27287fdc-be33-4c08-bb95-6c3f346881e7 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(133, 56, 255, 1);
border-style: solid;
border-radius: 10px;
background-color: rgba(133, 56, 255, 1);
text-align: center;
cursor: pointer;
}
#s-27287fdc-be33-4c08-bb95-6c3f346881e7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-27287fdc-be33-4c08-bb95-6c3f346881e7:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-27287fdc-be33-4c08-bb95-6c3f346881e7 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-27287fdc-be33-4c08-bb95-6c3f346881e7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-27287fdc-be33-4c08-bb95-6c3f346881e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-27287fdc-be33-4c08-bb95-6c3f346881e7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-55326644-7a88-420f-896d-7daafebe8a39 {
  display: none;
}
#s-0cdd490e-2801-4cee-90c6-d090dc6a3659 {
  text-align: left;
}



.shg-c#s-0cdd490e-2801-4cee-90c6-d090dc6a3659 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0cdd490e-2801-4cee-90c6-d090dc6a3659 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0cdd490e-2801-4cee-90c6-d090dc6a3659 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0cdd490e-2801-4cee-90c6-d090dc6a3659 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0cdd490e-2801-4cee-90c6-d090dc6a3659 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0cdd490e-2801-4cee-90c6-d090dc6a3659 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0cdd490e-2801-4cee-90c6-d090dc6a3659 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0cdd490e-2801-4cee-90c6-d090dc6a3659 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0cdd490e-2801-4cee-90c6-d090dc6a3659 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0cdd490e-2801-4cee-90c6-d090dc6a3659 img.shogun-image {
  width: 100%;
}



}
#s-8478a5a1-61e0-4a6f-b8d1-12b00774e19b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8478a5a1-61e0-4a6f-b8d1-12b00774e19b .shg-product-title-component h3 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-02aad6cd-6bec-4f5b-9e91-bd617569628b {
  text-align: center;
}

#s-02aad6cd-6bec-4f5b-9e91-bd617569628b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-02aad6cd-6bec-4f5b-9e91-bd617569628b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-02aad6cd-6bec-4f5b-9e91-bd617569628b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-0e9aaed7-2612-4f96-b6ca-187c81d4d9d2 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(133, 56, 255, 1);
border-style: solid;
border-radius: 10px;
background-color: rgba(133, 56, 255, 1);
text-align: center;
cursor: pointer;
}
#s-0e9aaed7-2612-4f96-b6ca-187c81d4d9d2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0e9aaed7-2612-4f96-b6ca-187c81d4d9d2:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-0e9aaed7-2612-4f96-b6ca-187c81d4d9d2 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0e9aaed7-2612-4f96-b6ca-187c81d4d9d2.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0e9aaed7-2612-4f96-b6ca-187c81d4d9d2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-0e9aaed7-2612-4f96-b6ca-187c81d4d9d2.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-73f1b896-1e31-4d1a-967f-ff4bc314da86 {
  display: none;
}
#s-4a270b49-e5ee-45ee-8df5-a91822b9f719 {
  text-align: left;
}



.shg-c#s-4a270b49-e5ee-45ee-8df5-a91822b9f719 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4a270b49-e5ee-45ee-8df5-a91822b9f719 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4a270b49-e5ee-45ee-8df5-a91822b9f719 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4a270b49-e5ee-45ee-8df5-a91822b9f719 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4a270b49-e5ee-45ee-8df5-a91822b9f719 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4a270b49-e5ee-45ee-8df5-a91822b9f719 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4a270b49-e5ee-45ee-8df5-a91822b9f719 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4a270b49-e5ee-45ee-8df5-a91822b9f719 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4a270b49-e5ee-45ee-8df5-a91822b9f719 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4a270b49-e5ee-45ee-8df5-a91822b9f719 img.shogun-image {
  width: 100%;
}



}
#s-ce431a3d-7040-47e0-a17e-a1711545f109 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ce431a3d-7040-47e0-a17e-a1711545f109 .shg-product-title-component h3 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-5d542187-c782-4012-9a05-a432c9c98048 {
  text-align: center;
}

#s-5d542187-c782-4012-9a05-a432c9c98048 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-5d542187-c782-4012-9a05-a432c9c98048 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-5d542187-c782-4012-9a05-a432c9c98048 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-6d6b44b2-6f3e-4493-967b-6598044ada06 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(133, 56, 255, 1);
border-style: solid;
border-radius: 10px;
background-color: rgba(133, 56, 255, 1);
text-align: center;
cursor: pointer;
}
#s-6d6b44b2-6f3e-4493-967b-6598044ada06:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6d6b44b2-6f3e-4493-967b-6598044ada06:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-6d6b44b2-6f3e-4493-967b-6598044ada06 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6d6b44b2-6f3e-4493-967b-6598044ada06.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6d6b44b2-6f3e-4493-967b-6598044ada06.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-6d6b44b2-6f3e-4493-967b-6598044ada06.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



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