.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-51da5e86-4aa5-45b4-96ae-4196fea6194d {
  min-height: 50px;
}








#s-51da5e86-4aa5-45b4-96ae-4196fea6194d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-51da5e86-4aa5-45b4-96ae-4196fea6194d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f48aec02-c4cd-43ab-a6ce-9d892d19399d {
  padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
}
@media (min-width: 1200px){#s-f48aec02-c4cd-43ab-a6ce-9d892d19399d {
  margin-top: 5px;
margin-left: 15%;
margin-bottom: 5px;
margin-right: 15%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f48aec02-c4cd-43ab-a6ce-9d892d19399d {
  margin-top: 5px;
margin-left: 15%;
margin-bottom: 5px;
margin-right: 15%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f48aec02-c4cd-43ab-a6ce-9d892d19399d {
  margin-top: 5px;
margin-left: 5%;
margin-bottom: 5px;
margin-right: 5%;
}
}@media (max-width: 767px){#s-f48aec02-c4cd-43ab-a6ce-9d892d19399d {
  margin-top: 5px;
margin-left: 5%;
margin-bottom: 5px;
margin-right: 5%;
}
}







#s-f48aec02-c4cd-43ab-a6ce-9d892d19399d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f48aec02-c4cd-43ab-a6ce-9d892d19399d.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;
}

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-4b36d653-49a3-441b-8cc3-4f0e493237c8 {
  border-style: solid;
margin-top: 8px;
margin-left: 0%;
margin-bottom: 8px;
margin-right: 0%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
max-width: 150px;
aspect-ratio: 600/180;
text-align: center;
opacity: 1;
}





  #s-4b36d653-49a3-441b-8cc3-4f0e493237c8 img.shogun-image,
  #s-4b36d653-49a3-441b-8cc3-4f0e493237c8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4b36d653-49a3-441b-8cc3-4f0e493237c8 {
    width: 100%;
    height: auto;
  }



  img.s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shogun-image {
    
    
  }


.s-4b36d653-49a3-441b-8cc3-4f0e493237c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shg-align-container {
  text-align: center
}

.s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-4b36d653-49a3-441b-8cc3-4f0e493237c8 img.shogun-image,
  #s-4b36d653-49a3-441b-8cc3-4f0e493237c8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4b36d653-49a3-441b-8cc3-4f0e493237c8 {
    width: 100%;
    height: auto;
  }



  img.s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shogun-image {
    
    
  }


.s-4b36d653-49a3-441b-8cc3-4f0e493237c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shg-align-container {
  text-align: center
}

.s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shogun-image {
  box-sizing: border-box;
}


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



  #s-4b36d653-49a3-441b-8cc3-4f0e493237c8 img.shogun-image,
  #s-4b36d653-49a3-441b-8cc3-4f0e493237c8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4b36d653-49a3-441b-8cc3-4f0e493237c8 {
    width: 100%;
    height: auto;
  }



  img.s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shogun-image {
    
    
  }


.s-4b36d653-49a3-441b-8cc3-4f0e493237c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shg-align-container {
  text-align: center
}

.s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shogun-image {
  box-sizing: border-box;
}


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



  #s-4b36d653-49a3-441b-8cc3-4f0e493237c8 img.shogun-image,
  #s-4b36d653-49a3-441b-8cc3-4f0e493237c8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4b36d653-49a3-441b-8cc3-4f0e493237c8 {
    width: 100%;
    height: auto;
  }



  img.s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shogun-image {
    
    
  }


.s-4b36d653-49a3-441b-8cc3-4f0e493237c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shg-align-container {
  text-align: center
}

.s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shogun-image {
  box-sizing: border-box;
}


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



  #s-4b36d653-49a3-441b-8cc3-4f0e493237c8 img.shogun-image,
  #s-4b36d653-49a3-441b-8cc3-4f0e493237c8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4b36d653-49a3-441b-8cc3-4f0e493237c8 {
    width: 100%;
    height: auto;
  }



  img.s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shogun-image {
    
    
  }


.s-4b36d653-49a3-441b-8cc3-4f0e493237c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shg-align-container {
  text-align: center
}

.s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4b36d653-49a3-441b-8cc3-4f0e493237c8.shogun-image {
  box-sizing: border-box;
}


}
#s-a7b12051-6f67-4793-ab17-1f456e322d3d {
  margin-top: 10px;
margin-bottom: 0px;
max-width: 1200px;
aspect-ratio: 1200/800;
text-align: center;
}





  #s-a7b12051-6f67-4793-ab17-1f456e322d3d img.shogun-image,
  #s-a7b12051-6f67-4793-ab17-1f456e322d3d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7b12051-6f67-4793-ab17-1f456e322d3d {
    width: 100%;
    height: auto;
  }



  img.s-a7b12051-6f67-4793-ab17-1f456e322d3d.shogun-image {
    
    
  }


.s-a7b12051-6f67-4793-ab17-1f456e322d3d .shogun-image-content {
  
    align-items: center;
  
}

.s-a7b12051-6f67-4793-ab17-1f456e322d3d.shg-align-container {
  text-align: center
}

.s-a7b12051-6f67-4793-ab17-1f456e322d3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7b12051-6f67-4793-ab17-1f456e322d3d.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-a7b12051-6f67-4793-ab17-1f456e322d3d img.shogun-image,
  #s-a7b12051-6f67-4793-ab17-1f456e322d3d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7b12051-6f67-4793-ab17-1f456e322d3d {
    width: 100%;
    height: auto;
  }



  img.s-a7b12051-6f67-4793-ab17-1f456e322d3d.shogun-image {
    
    
  }


.s-a7b12051-6f67-4793-ab17-1f456e322d3d .shogun-image-content {
  
    align-items: center;
  
}

.s-a7b12051-6f67-4793-ab17-1f456e322d3d.shg-align-container {
  text-align: center
}

.s-a7b12051-6f67-4793-ab17-1f456e322d3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7b12051-6f67-4793-ab17-1f456e322d3d.shogun-image {
  box-sizing: border-box;
}


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



  #s-a7b12051-6f67-4793-ab17-1f456e322d3d img.shogun-image,
  #s-a7b12051-6f67-4793-ab17-1f456e322d3d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7b12051-6f67-4793-ab17-1f456e322d3d {
    width: 100%;
    height: auto;
  }



  img.s-a7b12051-6f67-4793-ab17-1f456e322d3d.shogun-image {
    
    
  }


.s-a7b12051-6f67-4793-ab17-1f456e322d3d .shogun-image-content {
  
    align-items: center;
  
}

.s-a7b12051-6f67-4793-ab17-1f456e322d3d.shg-align-container {
  text-align: center
}

.s-a7b12051-6f67-4793-ab17-1f456e322d3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7b12051-6f67-4793-ab17-1f456e322d3d.shogun-image {
  box-sizing: border-box;
}


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



  #s-a7b12051-6f67-4793-ab17-1f456e322d3d img.shogun-image,
  #s-a7b12051-6f67-4793-ab17-1f456e322d3d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7b12051-6f67-4793-ab17-1f456e322d3d {
    width: 100%;
    height: auto;
  }



  img.s-a7b12051-6f67-4793-ab17-1f456e322d3d.shogun-image {
    
    
  }


.s-a7b12051-6f67-4793-ab17-1f456e322d3d .shogun-image-content {
  
    align-items: center;
  
}

.s-a7b12051-6f67-4793-ab17-1f456e322d3d.shg-align-container {
  text-align: center
}

.s-a7b12051-6f67-4793-ab17-1f456e322d3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7b12051-6f67-4793-ab17-1f456e322d3d.shogun-image {
  box-sizing: border-box;
}


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



  #s-a7b12051-6f67-4793-ab17-1f456e322d3d img.shogun-image,
  #s-a7b12051-6f67-4793-ab17-1f456e322d3d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7b12051-6f67-4793-ab17-1f456e322d3d {
    width: 100%;
    height: auto;
  }



  img.s-a7b12051-6f67-4793-ab17-1f456e322d3d.shogun-image {
    
    
  }


.s-a7b12051-6f67-4793-ab17-1f456e322d3d .shogun-image-content {
  
    align-items: center;
  
}

.s-a7b12051-6f67-4793-ab17-1f456e322d3d.shg-align-container {
  text-align: center
}

.s-a7b12051-6f67-4793-ab17-1f456e322d3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7b12051-6f67-4793-ab17-1f456e322d3d.shogun-image {
  box-sizing: border-box;
}


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

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

#s-775997b1-e7c4-4d05-b54f-96478f0178c8 hr {
  border-top: 1px solid #ddd;
}

.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: #000000;
  font-family: Alef;
  font-weight: 400;
}

.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: 400;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: #000000;
  font-family: Alef;
}

.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: #000000;
  font-family: Alef;
  font-weight: 400;
}

.shg-theme-text-content p {
  color: #000000;
  font-family: Alef;
  font-weight: 400;
}

#s-89cef3ee-ded8-4ae7-8601-67a77613aab3 {
  background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-89cef3ee-ded8-4ae7-8601-67a77613aab3 {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-89cef3ee-ded8-4ae7-8601-67a77613aab3 {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-89cef3ee-ded8-4ae7-8601-67a77613aab3 {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
}
}@media (max-width: 767px){#s-89cef3ee-ded8-4ae7-8601-67a77613aab3 {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
}
}
#s-53fd8529-2b17-40a7-8289-6994d6a4ca9f hr {
  border-top: 1px solid #ddd;
}

#s-3ff36b33-7421-44e0-8d48-d85bbb82a1f4 {
  padding-top: 3px;
padding-left: 3%;
padding-bottom: 3px;
padding-right: 3%;
background-color: rgba(96, 96, 96, 1);
}

#s-57bbdc41-7f53-41d0-8954-54db4d4272e8 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
background-color: rgba(255, 251, 236, 1);
}

#s-57bbdc41-7f53-41d0-8954-54db4d4272e8 .shogun-form-box label.shogun-form-label {
  display: flex;
  font-weight:  normal;
  color: #000;
  
  
  
  
  
  
  padding-top: 5px;
  padding-bottom: 5px;
  
  
}

#s-57bbdc41-7f53-41d0-8954-54db4d4272e8 .shogun-form-success-msg {
  visibility: hidden;
  display: flex;
  align-items: center;
  
  
  color: #008000;
  
  
  
  
  
}

#s-57bbdc41-7f53-41d0-8954-54db4d4272e8 .shogun-form-success-msg > svg {
  margin-right: 4px;
  stroke: #008000;
}

#s-57bbdc41-7f53-41d0-8954-54db4d4272e8 .shogun-form-error-msg-container, #s-57bbdc41-7f53-41d0-8954-54db4d4272e8 .shogun-form-field-error-msg-container {
  display: none;
}

#s-57bbdc41-7f53-41d0-8954-54db4d4272e8 .shogun-form-error-msg {
  
  
  color: #ff0000;
  
  
  
  
  
}

#s-57bbdc41-7f53-41d0-8954-54db4d4272e8 .shogun-form-field-error-msg > svg {
  margin-right: 4px;
  stroke: #ff0000;
}

#s-7643e28b-5835-4e5c-be85-247b71fdd0d9 {
  margin-top: 3px;
margin-left: 3%;
margin-bottom: 3px;
margin-right: 3%;
}

#s-7643e28b-5835-4e5c-be85-247b71fdd0d9 .shogun-form-radio-input-wrapper {
  position: relative;
}

#s-7643e28b-5835-4e5c-be85-247b71fdd0d9 input {
  opacity: 0;
  position: absolute;
}

#s-7643e28b-5835-4e5c-be85-247b71fdd0d9 .shogun-form-radio-input-wrapper label {
  align-items: center;
  display: inline-flex !important;
}

#s-7643e28b-5835-4e5c-be85-247b71fdd0d9 .shogun-form-radio-input-value {
  color: #000;
  font-family: ABeeZee;
  
  
  
  
  
}

#s-7643e28b-5835-4e5c-be85-247b71fdd0d9 .shogun-form-radio-outer {
  align-items: center;
  background: #ffffff;
  border-radius:  100% ;
  border: 1px solid #000;
  cursor: pointer;
  display: flex;
  min-height: 20px;
  justify-content: center;
  margin-right: 8px;
  transition: all 250ms ease;
  min-width: 20px;
  
}

#s-7643e28b-5835-4e5c-be85-247b71fdd0d9 .shogun-form-radio-inner {
  display: inline-block;
  height: 14px;
  margin: 2px;
  width: 14px;
  border-radius:  100% ;
}

#s-7643e28b-5835-4e5c-be85-247b71fdd0d9 input:checked + label .shogun-form-radio-inner {
  background-color: #000;
  border-radius:  100% ;
}





.shogun-form-text-input-field {
  width: 100%;
}

.shogun-form-text-input-field:focus {
  outline: none;
}

textarea.shogun-form-text-input-field {
  resize: none;
  overflow: hidden;
  min-height: 70px !important;
}

#s-377af7fd-a7b2-494d-9324-cd46438581c2 {
  margin-top: 3px;
margin-left: 5%;
margin-bottom: 3px;
margin-right: 5%;
}

#s-377af7fd-a7b2-494d-9324-cd46438581c2  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 14px;
  
  color: #000;
  font-family: ABeeZee;
  
  
  
}

#s-377af7fd-a7b2-494d-9324-cd46438581c2  .shogun-form-text-input-field::placeholder {
  font-size: 14px;
  
  color: rgba(188, 188, 188, 1);
  
  
  
  
}


#s-377af7fd-a7b2-494d-9324-cd46438581c2 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-377af7fd-a7b2-494d-9324-cd46438581c2 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


.shogun-form-check-box {
}

#s-3713fef5-c28b-4b99-89cf-c76d477ca547 {
  margin-top: 3px;
margin-left: 3%;
margin-bottom: 3px;
margin-right: 3%;
}

#s-3713fef5-c28b-4b99-89cf-c76d477ca547 .shogun-form-checkbox-input-wrapper {
  position: relative;
}

#s-3713fef5-c28b-4b99-89cf-c76d477ca547 input {
  opacity: 0;
  position: absolute;
}

#s-3713fef5-c28b-4b99-89cf-c76d477ca547 .shogun-form-checkbox-input-wrapper label {
  align-items: center;
  display: inline-flex !important;
}

#s-3713fef5-c28b-4b99-89cf-c76d477ca547 .shogun-form-checkbox-input-value {
  color: #000;
  font-family: ABeeZee;
  font-size: 15px;
  
  
  
  
}

#s-3713fef5-c28b-4b99-89cf-c76d477ca547 .shogun-form-checkbox-outer {
  align-items: center;
  background: #ffffff;
  border: 1px solid #000;
  border-radius: ;
  cursor: pointer;
  display: flex;
  min-height: 20px;
  justify-content: center;
  margin-right: 8px;
  transition: all 250ms ease;
  min-width: 20px;
  
}

#s-3713fef5-c28b-4b99-89cf-c76d477ca547 .shogun-form-checkbox-inner {
  display: inline-block;
  margin: 2px;
  height: 14px;
  width: 14px;
  border-radius: ;
}

#s-3713fef5-c28b-4b99-89cf-c76d477ca547 input:checked + label .shogun-form-checkbox-inner {
  background-color: #000;
}





#s-15039fcc-03af-4889-9a6b-b541907b0c69 {
  margin-top: 3px;
margin-left: 5%;
margin-bottom: 3px;
margin-right: 5%;
}

#s-15039fcc-03af-4889-9a6b-b541907b0c69  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 14px;
  
  color: #000;
  
  
  
  
}

#s-15039fcc-03af-4889-9a6b-b541907b0c69  .shogun-form-text-input-field::placeholder {
  font-size: 14px;
  
  color: rgba(188, 188, 188, 1);
  
  
  
  
}


#s-15039fcc-03af-4889-9a6b-b541907b0c69 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-15039fcc-03af-4889-9a6b-b541907b0c69 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-58cf1ba2-a971-4c58-938d-4135731c4cb3 {
  margin-top: 3px;
margin-left: 3%;
margin-bottom: 3px;
margin-right: 3%;
}

#s-58cf1ba2-a971-4c58-938d-4135731c4cb3 .shogun-form-radio-input-wrapper {
  position: relative;
}

#s-58cf1ba2-a971-4c58-938d-4135731c4cb3 input {
  opacity: 0;
  position: absolute;
}

#s-58cf1ba2-a971-4c58-938d-4135731c4cb3 .shogun-form-radio-input-wrapper label {
  align-items: center;
  display: inline-flex !important;
}

#s-58cf1ba2-a971-4c58-938d-4135731c4cb3 .shogun-form-radio-input-value {
  color: #000;
  font-family: ABeeZee;
  
  
  
  
  
}

#s-58cf1ba2-a971-4c58-938d-4135731c4cb3 .shogun-form-radio-outer {
  align-items: center;
  background: #ffffff;
  border-radius:  100% ;
  border: 1px solid #000;
  cursor: pointer;
  display: flex;
  min-height: 20px;
  justify-content: center;
  margin-right: 8px;
  transition: all 250ms ease;
  min-width: 20px;
  
}

#s-58cf1ba2-a971-4c58-938d-4135731c4cb3 .shogun-form-radio-inner {
  display: inline-block;
  height: 14px;
  margin: 2px;
  width: 14px;
  border-radius:  100% ;
}

#s-58cf1ba2-a971-4c58-938d-4135731c4cb3 input:checked + label .shogun-form-radio-inner {
  background-color: #000;
  border-radius:  100% ;
}





#s-d518ecbf-1a32-484e-af17-bbea35a57a82 {
  margin-top: 3px;
margin-left: 5%;
margin-bottom: 3px;
margin-right: 5%;
}

#s-d518ecbf-1a32-484e-af17-bbea35a57a82  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 14px;
  
  color: #000;
  
  
  
  
}

#s-d518ecbf-1a32-484e-af17-bbea35a57a82  .shogun-form-text-input-field::placeholder {
  font-size: 14px;
  
  color: rgba(188, 188, 188, 1);
  
  
  
  
}


#s-d518ecbf-1a32-484e-af17-bbea35a57a82 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-d518ecbf-1a32-484e-af17-bbea35a57a82 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-50a4a4d2-5dec-4b03-9bf9-bf978dfe224c {
  margin-top: 3px;
margin-left: 3%;
margin-bottom: 3px;
margin-right: 3%;
}

#s-50a4a4d2-5dec-4b03-9bf9-bf978dfe224c  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: ;
  font-style: ;
  color: #000;
  font-family: ABeeZee;
  font-weight: ;
  
  
}

#s-50a4a4d2-5dec-4b03-9bf9-bf978dfe224c  .shogun-form-text-input-field::placeholder {
  font-size: 14px;
  
  color: rgba(188, 188, 188, 1);
  font-family: ABeeZee;
  
  
  
}


#s-50a4a4d2-5dec-4b03-9bf9-bf978dfe224c .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-50a4a4d2-5dec-4b03-9bf9-bf978dfe224c .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-91101f29-da7a-424d-b30e-dea656b94627 {
  margin-top: 3px;
margin-left: 3%;
margin-bottom: 3px;
margin-right: 3%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}

#s-625805f8-c588-4406-88ff-711a60763ad3 {
  margin-top: 3px;
margin-left: 5%;
margin-bottom: 3px;
margin-right: 5%;
}

#s-625805f8-c588-4406-88ff-711a60763ad3  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 14px;
  
  color: #000;
  
  
  
  
}

#s-625805f8-c588-4406-88ff-711a60763ad3  .shogun-form-text-input-field::placeholder {
  font-size: 14px;
  
  color: rgba(188, 188, 188, 1);
  
  
  
  
}


#s-625805f8-c588-4406-88ff-711a60763ad3 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-625805f8-c588-4406-88ff-711a60763ad3 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-56658299-e70f-40f7-a937-716b2405e3d1 {
  margin-top: 3px;
margin-left: 5%;
margin-bottom: 3px;
margin-right: 5%;
}

#s-56658299-e70f-40f7-a937-716b2405e3d1  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 14px;
  
  color: #000;
  font-family: ABeeZee;
  
  
  
}

#s-56658299-e70f-40f7-a937-716b2405e3d1  .shogun-form-text-input-field::placeholder {
  font-size: 14px;
  
  color: rgba(188, 188, 188, 1);
  
  
  
  
}


#s-56658299-e70f-40f7-a937-716b2405e3d1 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-56658299-e70f-40f7-a937-716b2405e3d1 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


.shogun-form-dropdown .shogun-form-label {
  margin-bottom: 8px;
}

.shogun-form-dropdown select {
  margin: 0;
  width: 100%;
}

#s-6fd0c73b-3e5c-4de8-90d9-634e7a8f2226 {
  padding-left: 5%;
padding-right: 5%;
}

#s-6fd0c73b-3e5c-4de8-90d9-634e7a8f2226 select.is-placeholder-selected {
  color: #000 !important;
  font-weight:  normal  !important;
  font-family: ABeeZee !important;
  
  
  
  
}

#s-6fd0c73b-3e5c-4de8-90d9-634e7a8f2226 .shogun-form-dropdown > select {
  display: block;
  width: 100%;
  cursor: initial;

  
  border-color: #000;
  border-width: 1px;
  
  box-shadow: ;

  
  
  
  
  
  
  
}

#s-6fd0c73b-3e5c-4de8-90d9-634e7a8f2226 .shogun-form-dropdown > select:focus {
  outline: none;
}


  #s-6fd0c73b-3e5c-4de8-90d9-634e7a8f2226 .shogun-form-dropdown > select:hover {
    
    border-color: #000;
    border-width: 1px;
    
    box-shadow: ;
  }



  #s-6fd0c73b-3e5c-4de8-90d9-634e7a8f2226 .shogun-form-dropdown > select:focus {
     
     border-color: #000;
     border-width: 1px;
     
     box-shadow: ;
  }


#s-92eb6e01-f155-44cc-8d07-401f242a7866 {
  margin-top: 3px;
margin-left: 5%;
margin-bottom: 3px;
margin-right: 5%;
}

#s-92eb6e01-f155-44cc-8d07-401f242a7866  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 14px;
  
  color: #000;
  font-family: ABeeZee;
  
  
  
}

#s-92eb6e01-f155-44cc-8d07-401f242a7866  .shogun-form-text-input-field::placeholder {
  font-size: 14px;
  
  color: rgba(188, 188, 188, 1);
  
  
  
  
}


#s-92eb6e01-f155-44cc-8d07-401f242a7866 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-92eb6e01-f155-44cc-8d07-401f242a7866 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-e2b007f6-eb7e-468f-82bb-75f1fbaa7a86 {
  margin-top: 3px;
margin-left: 5%;
margin-bottom: 3px;
margin-right: 5%;
}

#s-e2b007f6-eb7e-468f-82bb-75f1fbaa7a86  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 14px;
  
  color: #000;
  font-family: ABeeZee;
  
  
  
}

#s-e2b007f6-eb7e-468f-82bb-75f1fbaa7a86  .shogun-form-text-input-field::placeholder {
  font-size: 12px;
  
  color: rgba(188, 188, 188, 1);
  
  
  line-height: 1.5em;
  letter-spacing: 0px;
}


#s-e2b007f6-eb7e-468f-82bb-75f1fbaa7a86 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-e2b007f6-eb7e-468f-82bb-75f1fbaa7a86 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-9aadb327-5dc3-4edc-be62-d68d30924ffc {
  margin-top: -30px;
margin-bottom: -30px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-9aadb327-5dc3-4edc-be62-d68d30924ffc hr {
  border-top: 1px solid #ddd;
}

#s-96f1df53-6be9-464b-b79d-776f866b6aa1 {
  margin-top: 3px;
margin-left: 5%;
margin-bottom: 3px;
margin-right: 5%;
}

#s-96f1df53-6be9-464b-b79d-776f866b6aa1  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 14px;
  
  color: #000;
  
  
  
  
}

#s-96f1df53-6be9-464b-b79d-776f866b6aa1  .shogun-form-text-input-field::placeholder {
  font-size: 14px;
  
  color: rgba(188, 188, 188, 1);
  
  
  
  
}


#s-96f1df53-6be9-464b-b79d-776f866b6aa1 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-96f1df53-6be9-464b-b79d-776f866b6aa1 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-d61de32d-1b22-45c2-bda3-a46e79d843e3 {
  margin-top: 3px;
margin-left: 5%;
margin-bottom: 3px;
margin-right: 5%;
}

#s-d61de32d-1b22-45c2-bda3-a46e79d843e3  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 14px;
  
  color: #000;
  font-family: ABeeZee;
  
  
  
}

#s-d61de32d-1b22-45c2-bda3-a46e79d843e3  .shogun-form-text-input-field::placeholder {
  font-size: 14px;
  
  color: rgba(188, 188, 188, 1);
  
  
  
  
}


#s-d61de32d-1b22-45c2-bda3-a46e79d843e3 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-d61de32d-1b22-45c2-bda3-a46e79d843e3 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-e8e742c6-443e-4815-b48b-e1a177bc2bb7 {
  padding-left: 5%;
padding-right: 5%;
}

#s-e8e742c6-443e-4815-b48b-e1a177bc2bb7 select.is-placeholder-selected {
  color: #000 !important;
  font-weight:  normal  !important;
  font-family: ABeeZee !important;
  
  
  
  
}

#s-e8e742c6-443e-4815-b48b-e1a177bc2bb7 .shogun-form-dropdown > select {
  display: block;
  width: 100%;
  cursor: initial;

  
  border-color: #000;
  border-width: 1px;
  
  box-shadow: ;

  
  
  
  
  
  
  
}

#s-e8e742c6-443e-4815-b48b-e1a177bc2bb7 .shogun-form-dropdown > select:focus {
  outline: none;
}


  #s-e8e742c6-443e-4815-b48b-e1a177bc2bb7 .shogun-form-dropdown > select:hover {
    
    border-color: #000;
    border-width: 1px;
    
    box-shadow: ;
  }



  #s-e8e742c6-443e-4815-b48b-e1a177bc2bb7 .shogun-form-dropdown > select:focus {
     
     border-color: #000;
     border-width: 1px;
     
     box-shadow: ;
  }


#s-ed0bce8f-125f-4b85-b053-660d09a39437 {
  margin-top: 3px;
margin-left: 5%;
margin-bottom: 3px;
margin-right: 5%;
}

#s-ed0bce8f-125f-4b85-b053-660d09a39437  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 14px;
  
  color: #000;
  font-family: ABeeZee;
  
  
  
}

#s-ed0bce8f-125f-4b85-b053-660d09a39437  .shogun-form-text-input-field::placeholder {
  font-size: 14px;
  
  color: rgba(188, 188, 188, 1);
  
  
  
  
}


#s-ed0bce8f-125f-4b85-b053-660d09a39437 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-ed0bce8f-125f-4b85-b053-660d09a39437 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-5cd0adae-82a4-4952-9211-30daf2ed3420 {
  margin-top: 3px;
margin-left: 5%;
margin-bottom: 3px;
margin-right: 5%;
}

#s-5cd0adae-82a4-4952-9211-30daf2ed3420  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 14px;
  
  color: #000;
  font-family: ABeeZee;
  
  
  
}

#s-5cd0adae-82a4-4952-9211-30daf2ed3420  .shogun-form-text-input-field::placeholder {
  font-size: 12px;
  
  color: rgba(188, 188, 188, 1);
  
  
  line-height: 1.5em;
  letter-spacing: 0px;
}


#s-5cd0adae-82a4-4952-9211-30daf2ed3420 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-5cd0adae-82a4-4952-9211-30daf2ed3420 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-c377c26e-a3de-45e0-be0a-c8f443a0ecab {
  margin-top: 3px;
margin-left: 5%;
margin-bottom: 3px;
margin-right: 5%;
}

#s-c377c26e-a3de-45e0-be0a-c8f443a0ecab  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 14px;
  
  color: #000;
  font-family: ABeeZee;
  
  
  
}

#s-c377c26e-a3de-45e0-be0a-c8f443a0ecab  .shogun-form-text-input-field::placeholder {
  font-size: 14px;
  
  color: rgba(188, 188, 188, 1);
  
  
  
  
}


#s-c377c26e-a3de-45e0-be0a-c8f443a0ecab .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-c377c26e-a3de-45e0-be0a-c8f443a0ecab .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-9e970863-1e2e-4392-a8da-6d0ffc6d507f {
  margin-top: 3px;
margin-left: 3%;
margin-bottom: 3px;
margin-right: 3%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}

#s-de4c15b7-e1b2-4f60-8d94-8f6ebc732399 {
  margin-top: 3px;
margin-left: 5%;
margin-bottom: 3px;
margin-right: 5%;
}

#s-de4c15b7-e1b2-4f60-8d94-8f6ebc732399 .shogun-form-radio-input-wrapper {
  position: relative;
}

#s-de4c15b7-e1b2-4f60-8d94-8f6ebc732399 input {
  opacity: 0;
  position: absolute;
}

#s-de4c15b7-e1b2-4f60-8d94-8f6ebc732399 .shogun-form-radio-input-wrapper label {
  align-items: center;
  display: inline-flex !important;
}

#s-de4c15b7-e1b2-4f60-8d94-8f6ebc732399 .shogun-form-radio-input-value {
  color: #000;
  font-family: ABeeZee;
  
  
  
  
  
}

#s-de4c15b7-e1b2-4f60-8d94-8f6ebc732399 .shogun-form-radio-outer {
  align-items: center;
  background: #ffffff;
  border-radius:  100% ;
  border: 1px solid #000;
  cursor: pointer;
  display: flex;
  min-height: 20px;
  justify-content: center;
  margin-right: 8px;
  transition: all 250ms ease;
  min-width: 20px;
  
}

#s-de4c15b7-e1b2-4f60-8d94-8f6ebc732399 .shogun-form-radio-inner {
  display: inline-block;
  height: 14px;
  margin: 2px;
  width: 14px;
  border-radius:  100% ;
}

#s-de4c15b7-e1b2-4f60-8d94-8f6ebc732399 input:checked + label .shogun-form-radio-inner {
  background-color: #000;
  border-radius:  100% ;
}





#s-69ca5da7-cbcb-4330-bc85-38fdd3b1d1e1 {
  margin-top: 3px;
margin-left: 5%;
margin-bottom: 3px;
margin-right: 5%;
}

#s-69ca5da7-cbcb-4330-bc85-38fdd3b1d1e1 .shogun-form-radio-input-wrapper {
  position: relative;
}

#s-69ca5da7-cbcb-4330-bc85-38fdd3b1d1e1 input {
  opacity: 0;
  position: absolute;
}

#s-69ca5da7-cbcb-4330-bc85-38fdd3b1d1e1 .shogun-form-radio-input-wrapper label {
  align-items: center;
  display: inline-flex !important;
}

#s-69ca5da7-cbcb-4330-bc85-38fdd3b1d1e1 .shogun-form-radio-input-value {
  color: #000;
  font-family: ABeeZee;
  
  
  
  
  
}

#s-69ca5da7-cbcb-4330-bc85-38fdd3b1d1e1 .shogun-form-radio-outer {
  align-items: center;
  background: #ffffff;
  border-radius:  100% ;
  border: 1px solid #000;
  cursor: pointer;
  display: flex;
  min-height: 20px;
  justify-content: center;
  margin-right: 8px;
  transition: all 250ms ease;
  min-width: 20px;
  
}

#s-69ca5da7-cbcb-4330-bc85-38fdd3b1d1e1 .shogun-form-radio-inner {
  display: inline-block;
  height: 14px;
  margin: 2px;
  width: 14px;
  border-radius:  100% ;
}

#s-69ca5da7-cbcb-4330-bc85-38fdd3b1d1e1 input:checked + label .shogun-form-radio-inner {
  background-color: #000;
  border-radius:  100% ;
}





#s-253cb118-6cdc-40a1-9529-a2713599cd35 {
  margin-top: 3px;
margin-left: 5%;
margin-bottom: 3px;
margin-right: 5%;
}

#s-253cb118-6cdc-40a1-9529-a2713599cd35 .shogun-form-radio-input-wrapper {
  position: relative;
}

#s-253cb118-6cdc-40a1-9529-a2713599cd35 input {
  opacity: 0;
  position: absolute;
}

#s-253cb118-6cdc-40a1-9529-a2713599cd35 .shogun-form-radio-input-wrapper label {
  align-items: center;
  display: inline-flex !important;
}

#s-253cb118-6cdc-40a1-9529-a2713599cd35 .shogun-form-radio-input-value {
  color: #000;
  font-family: ABeeZee;
  
  
  
  
  
}

#s-253cb118-6cdc-40a1-9529-a2713599cd35 .shogun-form-radio-outer {
  align-items: center;
  background: #ffffff;
  border-radius:  100% ;
  border: 1px solid #000;
  cursor: pointer;
  display: flex;
  min-height: 20px;
  justify-content: center;
  margin-right: 8px;
  transition: all 250ms ease;
  min-width: 20px;
  
}

#s-253cb118-6cdc-40a1-9529-a2713599cd35 .shogun-form-radio-inner {
  display: inline-block;
  height: 14px;
  margin: 2px;
  width: 14px;
  border-radius:  100% ;
}

#s-253cb118-6cdc-40a1-9529-a2713599cd35 input:checked + label .shogun-form-radio-inner {
  background-color: #000;
  border-radius:  100% ;
}





.shogun-form-box-submit {
  border: 0;
  font-size: 1em;
  line-height: 1.8;
}

.shogun-form-box-submit:focus {
  outline: none;
}

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

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

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

#s-17ebcaa1-3ba6-4158-b797-13737742134a {
  box-shadow:2px 2px 2px 0px rgba(188, 188, 188, 1);
margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
color: #FFFFFF;
background-color: rgba(236, 121, 134, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-17ebcaa1-3ba6-4158-b797-13737742134a:hover {background-color: rgba(236, 121, 134, 0.5) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-17ebcaa1-3ba6-4158-b797-13737742134a:active {background-color: #000000 !important;
text-decoration: none !important;}
#s-17ebcaa1-3ba6-4158-b797-13737742134a[disabled],
#s-17ebcaa1-3ba6-4158-b797-13737742134a[disabled]:hover,
#s-17ebcaa1-3ba6-4158-b797-13737742134a[disabled]:focus {
  background-color: #D7D5E2 !important;
}

#s-17ebcaa1-3ba6-4158-b797-13737742134a {
  display:  inline-block ;
  width:  auto ;
}


#s-039f7eed-9ba9-4f07-b9d4-aea9b39e7c81 hr {
  border-top: 1px solid #ddd;
}

#s-5951ba87-1947-4f4a-825d-58bc48eac513 {
  padding-top: 3px;
padding-left: 3%;
padding-bottom: 3px;
padding-right: 3%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
background-color: rgba(96, 96, 96, 1);
}

#s-ab99670e-6325-4f8d-a664-0a1ac36f019e {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(96, 96, 96, 1);
border-style: solid;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-ab99670e-6325-4f8d-a664-0a1ac36f019e {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ab99670e-6325-4f8d-a664-0a1ac36f019e {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ab99670e-6325-4f8d-a664-0a1ac36f019e {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
}
}@media (max-width: 767px){#s-ab99670e-6325-4f8d-a664-0a1ac36f019e {
  padding-top: 5px;
padding-left: 5%;
padding-bottom: 5px;
padding-right: 5%;
}
}
#s-48b89b7d-e25c-4af3-a318-9438f48ca020 {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 1);
margin-top: 8px;
margin-left: 0%;
margin-bottom: 8px;
margin-right: 0%;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(243, 245, 246, 1);
}








#s-48b89b7d-e25c-4af3-a318-9438f48ca020 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-48b89b7d-e25c-4af3-a318-9438f48ca020.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-023ec2f0-e1eb-4f73-9636-0a10acfb4861 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
}

#s-9c00136e-7dce-4723-a5a1-e86f3e09f6b6 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
}

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