.shg-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  /**
   * 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;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  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-0ad7dd4d-796b-40af-bc19-e41296138c2b {
  margin-top: -145px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-0ad7dd4d-796b-40af-bc19-e41296138c2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0ad7dd4d-796b-40af-bc19-e41296138c2b.shg-box.shg-c {
  justify-content: center;
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  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;
}

/* 
  Shopify base css adds display none to empty divs
  This causes items in the second column position to shift when
  the first column is empty. In order to overwrite that style,
  we have to manually set empty divs in the column to display block 
  so the whole element holds its positioning on published pages.
*/

.shg-row > div:empty {
  display: block;
}

#s-e22761c8-8136-43f9-adf3-0293694c9854 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-e22761c8-8136-43f9-adf3-0293694c9854"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e22761c8-8136-43f9-adf3-0293694c9854"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-e22761c8-8136-43f9-adf3-0293694c9854"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-e22761c8-8136-43f9-adf3-0293694c9854"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-e22761c8-8136-43f9-adf3-0293694c9854"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-e22761c8-8136-43f9-adf3-0293694c9854"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-e22761c8-8136-43f9-adf3-0293694c9854"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-contain {
  font-family: "object-fit: contain;";
  -o-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;
  flex-direction: column;
  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-3890cc34-c90f-418f-a821-ca5961aa5abd {
  margin-top: -2%;
margin-bottom: 0%;
max-width: 2400px;
aspect-ratio: 2400/1200;
text-align: center;
}

#s-3890cc34-c90f-418f-a821-ca5961aa5abd {
  overflow: hidden;
  
  
      max-width: 2400px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}





  #s-3890cc34-c90f-418f-a821-ca5961aa5abd img.shogun-image,
  #s-3890cc34-c90f-418f-a821-ca5961aa5abd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3890cc34-c90f-418f-a821-ca5961aa5abd {
    width: 100%;
    height: auto;
  }




#s-3890cc34-c90f-418f-a821-ca5961aa5abd .shogun-image-content {
  
    justify-content: center;
  
}

#s-3ef0c02c-ab52-4170-a327-e5345187b0fe {
  border-style: solid;
margin-left: 20px;
margin-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 105, 122, 1);
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-3ef0c02c-ab52-4170-a327-e5345187b0fe {
  
}
}
@media (min-width: 0px) {
[id="s-3ef0c02c-ab52-4170-a327-e5345187b0fe"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3ef0c02c-ab52-4170-a327-e5345187b0fe"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-3ef0c02c-ab52-4170-a327-e5345187b0fe"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-3ef0c02c-ab52-4170-a327-e5345187b0fe"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-3ef0c02c-ab52-4170-a327-e5345187b0fe"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-3ef0c02c-ab52-4170-a327-e5345187b0fe"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-3ef0c02c-ab52-4170-a327-e5345187b0fe"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

.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;
  
  
  text-transform: none;
  
  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-204a5e28-f83d-47d1-9923-5451c21690a1 {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-204a5e28-f83d-47d1-9923-5451c21690a1 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-9b55697b-e107-4a37-a410-c895ed7c0854 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9b55697b-e107-4a37-a410-c895ed7c0854 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "Anton";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


@media (max-width: 767px){#s-9b55697b-e107-4a37-a410-c895ed7c0854 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "Anton";
  font-style:  normal ;
  font-size: 35px;
  
  
  
}


}
#s-ef682fa3-3ff4-4b2a-b675-b6201caaffe6 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-ef682fa3-3ff4-4b2a-b675-b6201caaffe6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ef682fa3-3ff4-4b2a-b675-b6201caaffe6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ef682fa3-3ff4-4b2a-b675-b6201caaffe6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ef682fa3-3ff4-4b2a-b675-b6201caaffe6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ef682fa3-3ff4-4b2a-b675-b6201caaffe6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ef682fa3-3ff4-4b2a-b675-b6201caaffe6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ef682fa3-3ff4-4b2a-b675-b6201caaffe6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

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

.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 ::-moz-selection, .shg-default-text-content *::-moz-selection {
  background: #accef7;
}
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

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

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

.shg-theme-text-content p {
  
  
  
}

#s-3fb457da-6798-43ba-95d9-07588d7caa13 {
  margin-left: auto;
margin-right: auto;
}

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

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

.shg-btn-text {
  
  
}

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

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

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

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

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

#s-ac7ecf5e-4079-4202-94c8-338225e5237e {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNmM2Y2I4OTUtYWQ3Zi00YzJjLThhZDQtODMxYWQ2MzQ2NzA5IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwLjA1IiBzdHlsZT0ic3RvcC1jb2xvcjojOWU0OGM4O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIwLjcxODE4MTgxODE4MTgxODEiIHN0eWxlPSJzdG9wLWNvbG9yOiMyMDRmY2Y7c3RvcC1vcGFjaXR5OjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoIzZjNmNiODk1LWFkN2YtNGMyYy04YWQ0LTgzMWFkNjM0NjcwOSkiLz48L3N2Zz4=);
background-repeat: no-repeat;
margin-top: 3%;
padding-top: 1%;
padding-left: 6%;
padding-bottom: 1%;
padding-right: 6%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(177, 177, 177, 1);
border-style: none;
border-radius: 0px;
text-align: center;
text-decoration: none;
background-gradient: [{"id"=>1, "pos"=>0.05, "color"=>"#9e48c8"}, {"id"=>2, "pos"=>0.7181818181818181, "color"=>"#204fcf"}];
hover-type: gradient;
color: rgba(255, 255, 255, 1);
}
#s-ac7ecf5e-4079-4202-94c8-338225e5237e:hover {border-style: solid !important;
border-color: rgba(161, 161, 161, 1) !important;
background-color: rgba(161, 161, 161, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-ac7ecf5e-4079-4202-94c8-338225e5237e:active {border-style: solid !important;
border-color: rgba(0, 105, 122, 1) !important;
background-color: rgba(0, 105, 122, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-ac7ecf5e-4079-4202-94c8-338225e5237e-root {
    text-align: center;
  }


#s-ac7ecf5e-4079-4202-94c8-338225e5237e.shg-btn {
  color: rgba(255, 255, 255, 1);
  
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ac7ecf5e-4079-4202-94c8-338225e5237e-root {
    text-align: center;
  }


#s-ac7ecf5e-4079-4202-94c8-338225e5237e.shg-btn {
  color: rgba(255, 255, 255, 1);
  
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ac7ecf5e-4079-4202-94c8-338225e5237e-root {
    text-align: center;
  }


#s-ac7ecf5e-4079-4202-94c8-338225e5237e.shg-btn {
  color: rgba(255, 255, 255, 1);
  
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ac7ecf5e-4079-4202-94c8-338225e5237e-root {
    text-align: center;
  }


#s-ac7ecf5e-4079-4202-94c8-338225e5237e.shg-btn {
  color: rgba(255, 255, 255, 1);
  
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ac7ecf5e-4079-4202-94c8-338225e5237e-root {
    text-align: center;
  }


#s-ac7ecf5e-4079-4202-94c8-338225e5237e.shg-btn {
  color: rgba(255, 255, 255, 1);
  
  
  
  
  display:  inline-block ;
}
}
#s-ee861804-e652-450c-b3e7-745767b0b72b {
  margin-top: 5%;
margin-left: auto;
margin-bottom: 5%;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-ee861804-e652-450c-b3e7-745767b0b72b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ee861804-e652-450c-b3e7-745767b0b72b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ee861804-e652-450c-b3e7-745767b0b72b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ee861804-e652-450c-b3e7-745767b0b72b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ee861804-e652-450c-b3e7-745767b0b72b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ee861804-e652-450c-b3e7-745767b0b72b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ee861804-e652-450c-b3e7-745767b0b72b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

#s-7faee449-de73-4893-ad7a-c75f757d6a8e {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-7faee449-de73-4893-ad7a-c75f757d6a8e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7faee449-de73-4893-ad7a-c75f757d6a8e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-7faee449-de73-4893-ad7a-c75f757d6a8e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-7faee449-de73-4893-ad7a-c75f757d6a8e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

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

.shg-image-content-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.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;
  flex-direction: column;
  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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

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

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

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

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

.shogun-image-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  min-width: 100%;
  min-height: 100%;
  /* Ensures that the content children fills the container */
  align-items: stretch;
}

.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-top {
  align-items: flex-start;
}

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

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

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

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
text-align: center;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  margin: 0 !important;
  overflow: visible;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd img.shogun-image {
  /* Add background color handling */
  
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-21c6e63b-3160-49e3-be52-973341e0b3cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-21c6e63b-3160-49e3-be52-973341e0b3cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-21c6e63b-3160-49e3-be52-973341e0b3cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd.shogun-image {
  box-sizing: border-box;
}



.s-21c6e63b-3160-49e3-be52-973341e0b3cd img.shogun-image {
  
}


@media (min-width: 1200px){#s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  margin: 0 !important;
  overflow: visible;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd img.shogun-image {
  /* Add background color handling */
  
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-21c6e63b-3160-49e3-be52-973341e0b3cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-21c6e63b-3160-49e3-be52-973341e0b3cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-21c6e63b-3160-49e3-be52-973341e0b3cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd.shogun-image {
  box-sizing: border-box;
}



.s-21c6e63b-3160-49e3-be52-973341e0b3cd img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  margin: 0 !important;
  overflow: visible;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd img.shogun-image {
  /* Add background color handling */
  
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-21c6e63b-3160-49e3-be52-973341e0b3cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-21c6e63b-3160-49e3-be52-973341e0b3cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-21c6e63b-3160-49e3-be52-973341e0b3cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd.shogun-image {
  box-sizing: border-box;
}



.s-21c6e63b-3160-49e3-be52-973341e0b3cd img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  margin: 0 !important;
  overflow: visible;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd img.shogun-image {
  /* Add background color handling */
  
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-21c6e63b-3160-49e3-be52-973341e0b3cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-21c6e63b-3160-49e3-be52-973341e0b3cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-21c6e63b-3160-49e3-be52-973341e0b3cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd.shogun-image {
  box-sizing: border-box;
}



.s-21c6e63b-3160-49e3-be52-973341e0b3cd img.shogun-image {
  
}


}@media (max-width: 767px){#s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  margin: 0 !important;
  overflow: visible;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-21c6e63b-3160-49e3-be52-973341e0b3cd {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd img.shogun-image {
  /* Add background color handling */
  
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-21c6e63b-3160-49e3-be52-973341e0b3cd .shogun-image-content {
  
    justify-content: center;
  
}

.s-21c6e63b-3160-49e3-be52-973341e0b3cd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-21c6e63b-3160-49e3-be52-973341e0b3cd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-21c6e63b-3160-49e3-be52-973341e0b3cd.shogun-image {
  box-sizing: border-box;
}



.s-21c6e63b-3160-49e3-be52-973341e0b3cd img.shogun-image {
  
}


}
#s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
text-align: center;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  margin: 0 !important;
  overflow: visible;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e img.shogun-image {
  /* Add background color handling */
  
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-45bcf2b0-5196-418b-8f97-42b03d53a23e .shogun-image-content {
  
    justify-content: center;
  
}

.s-45bcf2b0-5196-418b-8f97-42b03d53a23e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45bcf2b0-5196-418b-8f97-42b03d53a23e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e.shogun-image {
  box-sizing: border-box;
}



.s-45bcf2b0-5196-418b-8f97-42b03d53a23e img.shogun-image {
  
}


@media (min-width: 1200px){#s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  margin: 0 !important;
  overflow: visible;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e img.shogun-image {
  /* Add background color handling */
  
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-45bcf2b0-5196-418b-8f97-42b03d53a23e .shogun-image-content {
  
    justify-content: center;
  
}

.s-45bcf2b0-5196-418b-8f97-42b03d53a23e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45bcf2b0-5196-418b-8f97-42b03d53a23e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e.shogun-image {
  box-sizing: border-box;
}



.s-45bcf2b0-5196-418b-8f97-42b03d53a23e img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  margin: 0 !important;
  overflow: visible;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e img.shogun-image {
  /* Add background color handling */
  
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-45bcf2b0-5196-418b-8f97-42b03d53a23e .shogun-image-content {
  
    justify-content: center;
  
}

.s-45bcf2b0-5196-418b-8f97-42b03d53a23e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45bcf2b0-5196-418b-8f97-42b03d53a23e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e.shogun-image {
  box-sizing: border-box;
}



.s-45bcf2b0-5196-418b-8f97-42b03d53a23e img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  margin: 0 !important;
  overflow: visible;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e img.shogun-image {
  /* Add background color handling */
  
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-45bcf2b0-5196-418b-8f97-42b03d53a23e .shogun-image-content {
  
    justify-content: center;
  
}

.s-45bcf2b0-5196-418b-8f97-42b03d53a23e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45bcf2b0-5196-418b-8f97-42b03d53a23e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e.shogun-image {
  box-sizing: border-box;
}



.s-45bcf2b0-5196-418b-8f97-42b03d53a23e img.shogun-image {
  
}


}@media (max-width: 767px){#s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  margin: 0 !important;
  overflow: visible;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-45bcf2b0-5196-418b-8f97-42b03d53a23e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e img.shogun-image {
  /* Add background color handling */
  
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-45bcf2b0-5196-418b-8f97-42b03d53a23e .shogun-image-content {
  
    justify-content: center;
  
}

.s-45bcf2b0-5196-418b-8f97-42b03d53a23e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45bcf2b0-5196-418b-8f97-42b03d53a23e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45bcf2b0-5196-418b-8f97-42b03d53a23e.shogun-image {
  box-sizing: border-box;
}



.s-45bcf2b0-5196-418b-8f97-42b03d53a23e img.shogun-image {
  
}


}
#s-d35bc723-575e-49a3-b72b-4958639bcb0c {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-d35bc723-575e-49a3-b72b-4958639bcb0c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d35bc723-575e-49a3-b72b-4958639bcb0c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-d35bc723-575e-49a3-b72b-4958639bcb0c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-d35bc723-575e-49a3-b72b-4958639bcb0c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-d35bc723-575e-49a3-b72b-4958639bcb0c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-d35bc723-575e-49a3-b72b-4958639bcb0c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-d35bc723-575e-49a3-b72b-4958639bcb0c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

#s-6cde516d-dd77-47a8-a464-a3894da9c1be {
  margin-top: 10%;
margin-left: auto;
margin-bottom: 10%;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-6cde516d-dd77-47a8-a464-a3894da9c1be"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6cde516d-dd77-47a8-a464-a3894da9c1be"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-6cde516d-dd77-47a8-a464-a3894da9c1be"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6cde516d-dd77-47a8-a464-a3894da9c1be"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-6cde516d-dd77-47a8-a464-a3894da9c1be"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6cde516d-dd77-47a8-a464-a3894da9c1be"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-6cde516d-dd77-47a8-a464-a3894da9c1be"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-ff47d9cb-2cc2-4f5d-9243-fa75aab1dd0a {
  margin-top: 7%;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ff47d9cb-2cc2-4f5d-9243-fa75aab1dd0a .shogun-heading-component h2 {
  
  font-weight:  normal ;
  font-family: "Anton";
  font-style:  normal ;
  font-size: 35px;
  
  
  
}



.shogun-table-wrapper {
  overflow: auto;
}

table.shogun-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

thead.shogun-table-column-container {
  font-weight: bold;
}

td.shogun-table-column {
  padding: 10px;
}

td.shogun-table-row {
  padding: 10px;
  min-height: 45px;
}

td.shogun-table-column:only-child, td.shogun-table-row:only-child {
  width: 100%;
}

#s-afb2ea72-8c64-4485-920d-1f9161f5aad6 {
  margin-left: auto;
margin-right: auto;
}

#s-afb2ea72-8c64-4485-920d-1f9161f5aad6 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid #D5D6D7;
  border-radius: 0px;
}

#s-afb2ea72-8c64-4485-920d-1f9161f5aad6 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-afb2ea72-8c64-4485-920d-1f9161f5aad6 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: center;
  
  font-size: 22px;
  
  
  
  
  
}

#s-afb2ea72-8c64-4485-920d-1f9161f5aad6 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-afb2ea72-8c64-4485-920d-1f9161f5aad6 td.shogun-table-column, #s-afb2ea72-8c64-4485-920d-1f9161f5aad6 td.shogun-table-row {
  border: 1px solid #D5D6D7;
}

#s-d2a837d6-5f27-4b51-a87b-d782a4832140 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d2a837d6-5f27-4b51-a87b-d782a4832140 .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-43f2dc2b-09fb-46a1-b1d9-d9c44025205e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-43f2dc2b-09fb-46a1-b1d9-d9c44025205e .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-e66b45f0-3da0-4d09-829f-a2c8f49f797d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e66b45f0-3da0-4d09-829f-a2c8f49f797d .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-5ac7109c-beda-439b-acea-00ee39f7aaf5 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5ac7109c-beda-439b-acea-00ee39f7aaf5 .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-d3606fae-b483-448b-a4d4-d847a5d6a0b2 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d3606fae-b483-448b-a4d4-d847a5d6a0b2 .shogun-heading-component h3 {
  
  font-weight:  normal ;
  font-family: "Anton";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-89bbb380-6a3b-4638-af36-ca910fdaa5e1 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-89bbb380-6a3b-4638-af36-ca910fdaa5e1 .shogun-heading-component h3 {
  
  font-weight:  normal ;
  font-family: "Anton";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-9243a7ed-8920-4ef5-97c3-25d66032709d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9243a7ed-8920-4ef5-97c3-25d66032709d .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-e9e86d89-c984-42d7-900b-68482b90401e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e9e86d89-c984-42d7-900b-68482b90401e .shogun-heading-component h3 {
  
  font-weight:  normal ;
  font-family: "Anton";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-6af7fef9-855a-4c31-a8e6-a2b79ca0f233 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6af7fef9-855a-4c31-a8e6-a2b79ca0f233 .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-60a7d4f6-10b1-4d8d-bc41-0554425fa2bd {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-60a7d4f6-10b1-4d8d-bc41-0554425fa2bd .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-e821d17a-ca49-4e31-81ef-a10f6ccf65a6 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e821d17a-ca49-4e31-81ef-a10f6ccf65a6 .shogun-heading-component h3 {
  
  font-weight:  normal ;
  font-family: "Anton";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-9864fb79-6184-478b-b7d1-ca279543757b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9864fb79-6184-478b-b7d1-ca279543757b .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-0fc8379e-ecc1-4244-8b4d-fca177732e65 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0fc8379e-ecc1-4244-8b4d-fca177732e65 .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-484ad8fa-e2f6-4a78-8607-9d3884d82cb6 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-484ad8fa-e2f6-4a78-8607-9d3884d82cb6 .shogun-heading-component h3 {
  
  font-weight:  normal ;
  font-family: "Anton";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-4807f22a-fc2b-479d-aad4-2a58c106ddc2 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4807f22a-fc2b-479d-aad4-2a58c106ddc2 .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-6136a120-963d-4870-808d-072dd551ff5b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6136a120-963d-4870-808d-072dd551ff5b .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-990cdbb7-6669-4011-ae41-24b85b2cbec8 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-990cdbb7-6669-4011-ae41-24b85b2cbec8 .shogun-heading-component h3 {
  
  font-weight:  normal ;
  font-family: "Anton";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-30794565-0f7e-4092-982a-6dbbb601ee19 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-30794565-0f7e-4092-982a-6dbbb601ee19 .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-93bfa2a0-eb1a-4959-9aea-40bca55db0b3 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-93bfa2a0-eb1a-4959-9aea-40bca55db0b3 .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-8bef77b4-1753-4b9e-904f-1f118c4a2f7a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8bef77b4-1753-4b9e-904f-1f118c4a2f7a .shogun-heading-component h3 {
  
  font-weight:  normal ;
  font-family: "Anton";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-b3ae6dca-e57d-4908-a431-05587b76c184 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b3ae6dca-e57d-4908-a431-05587b76c184 .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-c04397bc-2365-4bfb-9ecb-8dc990c2baa9 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c04397bc-2365-4bfb-9ecb-8dc990c2baa9 .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-4f347cf6-40d1-4def-a337-2ee23d09565f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4f347cf6-40d1-4def-a337-2ee23d09565f .shogun-heading-component h3 {
  
  font-weight:  normal ;
  font-family: "Anton";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



#s-c9e26853-50cb-4932-9531-9563306d13af {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c9e26853-50cb-4932-9531-9563306d13af .shogun-heading-component h4 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-0f7d8f81-68b3-4ec8-879a-acf7bacf36ee {
  margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
min-height: 50px;
}








#s-0f7d8f81-68b3-4ec8-879a-acf7bacf36ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0f7d8f81-68b3-4ec8-879a-acf7bacf36ee.shg-box.shg-c {
  justify-content: center;
}

#s-9af07040-daa1-4743-a142-0424651d7f48 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9af07040-daa1-4743-a142-0424651d7f48 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "Anton";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-48800be2-ea9c-4aa9-bab8-3ce1ffd958df {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-48800be2-ea9c-4aa9-bab8-3ce1ffd958df"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-48800be2-ea9c-4aa9-bab8-3ce1ffd958df"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-48800be2-ea9c-4aa9-bab8-3ce1ffd958df"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-48800be2-ea9c-4aa9-bab8-3ce1ffd958df"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-48800be2-ea9c-4aa9-bab8-3ce1ffd958df"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-48800be2-ea9c-4aa9-bab8-3ce1ffd958df"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-48800be2-ea9c-4aa9-bab8-3ce1ffd958df"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-d378f7b4-0d2a-4ab2-8a7c-5401422a0ec6 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d378f7b4-0d2a-4ab2-8a7c-5401422a0ec6 .shogun-heading-component h3 {
  
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-e2465d1b-f2c5-4b03-a8b5-c931a84e1fa3 {
  margin-left: auto;
margin-right: auto;
}

#s-cb51d9fb-23dd-4310-83d7-805e170206d8 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-cb51d9fb-23dd-4310-83d7-805e170206d8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cb51d9fb-23dd-4310-83d7-805e170206d8"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 3.3333333333333335px);
}

[id="s-cb51d9fb-23dd-4310-83d7-805e170206d8"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-cb51d9fb-23dd-4310-83d7-805e170206d8"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 3.3333333333333335px);
}

[id="s-cb51d9fb-23dd-4310-83d7-805e170206d8"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-cb51d9fb-23dd-4310-83d7-805e170206d8"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 3.3333333333333335px);
}

[id="s-cb51d9fb-23dd-4310-83d7-805e170206d8"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 3.3333333333333335px);
}

}

#s-43858484-2d89-42c1-9c6d-a4325adebcf3 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-43858484-2d89-42c1-9c6d-a4325adebcf3 .shogun-form-box label.shogun-form-label {
  display: flex;
  font-weight:  normal;
  color: #000;
  
  
  
  
  
  
  padding-top: 5px;
  padding-bottom: 5px;
  
  
}

#s-43858484-2d89-42c1-9c6d-a4325adebcf3 .shogun-form-success-msg {
  visibility: hidden;
  display: flex;
  align-items: center;
  
  
  color: rgba(0, 105, 122, 1);
  
  
  
  
  
}

#s-43858484-2d89-42c1-9c6d-a4325adebcf3 .shogun-form-success-msg > svg {
  margin-right: 4px;
  stroke: rgba(0, 105, 122, 1);
}

#s-43858484-2d89-42c1-9c6d-a4325adebcf3 .shogun-form-error-msg-container, #s-43858484-2d89-42c1-9c6d-a4325adebcf3 .shogun-form-field-error-msg-container {
  display: none;
}

#s-43858484-2d89-42c1-9c6d-a4325adebcf3 .shogun-form-error-msg {
  
  
  color: #ff0000;
  
  
  
  
  
}

#s-43858484-2d89-42c1-9c6d-a4325adebcf3 .shogun-form-field-error-msg > svg {
  margin-right: 4px;
  stroke: #ff0000;
}

#s-3deec1e4-a3ab-4d7c-be0a-76fcb731be72 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-3deec1e4-a3ab-4d7c-be0a-76fcb731be72"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3deec1e4-a3ab-4d7c-be0a-76fcb731be72"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3deec1e4-a3ab-4d7c-be0a-76fcb731be72"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3deec1e4-a3ab-4d7c-be0a-76fcb731be72"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

.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-d7a2c4da-fed8-4159-a54d-568df3b25788 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
}

#s-d7a2c4da-fed8-4159-a54d-568df3b25788  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 20px;
  
  color: rgba(0, 0, 0, 1);
  
  
  line-height: 1.5em;
  
}

#s-d7a2c4da-fed8-4159-a54d-568df3b25788  .shogun-form-text-input-field::-moz-placeholder {
  
  
  color: #000;
  
  
  
  
}

#s-d7a2c4da-fed8-4159-a54d-568df3b25788  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-d7a2c4da-fed8-4159-a54d-568df3b25788 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-d7a2c4da-fed8-4159-a54d-568df3b25788 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-cfd560b1-75e4-4439-99c6-4dac3e06648e {
  margin-top: 5%;
margin-left: auto;
margin-bottom: 5%;
margin-right: auto;
}

#s-cfd560b1-75e4-4439-99c6-4dac3e06648e  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 20px;
  
  color: #000;
  
  
  line-height: 1.5em;
  
}

#s-cfd560b1-75e4-4439-99c6-4dac3e06648e  .shogun-form-text-input-field::-moz-placeholder {
  
  
  color: #000;
  
  
  
  
}

#s-cfd560b1-75e4-4439-99c6-4dac3e06648e  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-cfd560b1-75e4-4439-99c6-4dac3e06648e .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-cfd560b1-75e4-4439-99c6-4dac3e06648e .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-8b7d4ace-c16e-47dd-94aa-647e2bc05c3c {
  margin-top: 5%;
margin-left: auto;
margin-bottom: 5%;
margin-right: auto;
}

#s-8b7d4ace-c16e-47dd-94aa-647e2bc05c3c  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 20px;
  
  color: #000;
  
  
  line-height: 1.5em;
  
}

#s-8b7d4ace-c16e-47dd-94aa-647e2bc05c3c  .shogun-form-text-input-field::-moz-placeholder {
  
  
  color: #000;
  
  
  
  
}

#s-8b7d4ace-c16e-47dd-94aa-647e2bc05c3c  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-8b7d4ace-c16e-47dd-94aa-647e2bc05c3c .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-8b7d4ace-c16e-47dd-94aa-647e2bc05c3c .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-504fd663-5916-485d-b186-47fe9dd48747 {
  margin-left: auto;
margin-right: auto;
}

#s-504fd663-5916-485d-b186-47fe9dd48747  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 20px;
  
  color: rgba(0, 0, 0, 1);
  
  
  line-height: 1.5em;
  
}

#s-504fd663-5916-485d-b186-47fe9dd48747  .shogun-form-text-input-field::-moz-placeholder {
  
  
  color: #000;
  
  
  
  
}

#s-504fd663-5916-485d-b186-47fe9dd48747  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-504fd663-5916-485d-b186-47fe9dd48747 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-504fd663-5916-485d-b186-47fe9dd48747 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-e3e36993-e55f-41fa-befe-09398f4a7138 {
  margin-top: 5%;
margin-left: auto;
margin-bottom: 5%;
margin-right: auto;
}

#s-e3e36993-e55f-41fa-befe-09398f4a7138  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 20px;
  
  color: #000;
  
  
  line-height: 1.5em;
  
}

#s-e3e36993-e55f-41fa-befe-09398f4a7138  .shogun-form-text-input-field::-moz-placeholder {
  
  
  color: #000;
  
  
  
  
}

#s-e3e36993-e55f-41fa-befe-09398f4a7138  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-e3e36993-e55f-41fa-befe-09398f4a7138 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-e3e36993-e55f-41fa-befe-09398f4a7138 .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-bf944b32-5d90-4345-ab2b-71fcf1b9f595 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
}

#s-bf944b32-5d90-4345-ab2b-71fcf1b9f595 select.is-placeholder-selected {
  color: #000 !important;
  font-weight:  normal  !important;
  
  
  
  
  
}

#s-bf944b32-5d90-4345-ab2b-71fcf1b9f595 .shogun-form-dropdown > select {
  display: block;
  width: 100%;
  cursor: initial;

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

  
  font-size: 20px;
  
  
  
  line-height: 1.5em;
  
}

#s-bf944b32-5d90-4345-ab2b-71fcf1b9f595 .shogun-form-dropdown > select:focus {
  outline: none;
}


  #s-bf944b32-5d90-4345-ab2b-71fcf1b9f595 .shogun-form-dropdown > select:hover {
    
    border-color: #000;
    border-width: 1px;
    
    
  }



  #s-bf944b32-5d90-4345-ab2b-71fcf1b9f595 .shogun-form-dropdown > select:focus {
     
     border-color: #000;
     border-width: 1px;
     
     
  }


#s-22a381ae-1c5f-4cca-9696-44080b42eb69 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 5%;
margin-right: auto;
}

#s-22a381ae-1c5f-4cca-9696-44080b42eb69  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 20px;
  
  color: #000;
  
  
  
  
}

#s-22a381ae-1c5f-4cca-9696-44080b42eb69  .shogun-form-text-input-field::-moz-placeholder {
  
  
  color: #000;
  
  
  
  
}

#s-22a381ae-1c5f-4cca-9696-44080b42eb69  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-22a381ae-1c5f-4cca-9696-44080b42eb69 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-22a381ae-1c5f-4cca-9696-44080b42eb69 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-eb16caf1-c79d-49c0-94a6-8ab2acfd7b7d {
  margin-left: auto;
margin-right: auto;
}

#s-eb16caf1-c79d-49c0-94a6-8ab2acfd7b7d select.is-placeholder-selected {
  color: #000 !important;
  font-weight:  normal  !important;
  
  
  
  
  
}

#s-eb16caf1-c79d-49c0-94a6-8ab2acfd7b7d .shogun-form-dropdown > select {
  display: block;
  width: 100%;
  cursor: initial;

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

  
  font-size: 20px;
  
  
  
  line-height: 1.5em;
  
}

#s-eb16caf1-c79d-49c0-94a6-8ab2acfd7b7d .shogun-form-dropdown > select:focus {
  outline: none;
}


  #s-eb16caf1-c79d-49c0-94a6-8ab2acfd7b7d .shogun-form-dropdown > select:hover {
    
    border-color: #000;
    border-width: 1px;
    
    
  }



  #s-eb16caf1-c79d-49c0-94a6-8ab2acfd7b7d .shogun-form-dropdown > select:focus {
     
     border-color: #000;
     border-width: 1px;
     
     
  }


.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-d1fec1ae-d448-4c8b-ba32-79c3d377c9ab {
  margin-top: 5%;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 35px;
padding-bottom: 10px;
padding-right: 35px;
border-radius: 2px;
color: #FFFFFF;
background-color: rgba(0, 105, 122, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
font-size: 18px;
}
#s-d1fec1ae-d448-4c8b-ba32-79c3d377c9ab:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d1fec1ae-d448-4c8b-ba32-79c3d377c9ab:active {background-color: #000000 !important;
text-decoration: none !important;}
#s-d1fec1ae-d448-4c8b-ba32-79c3d377c9ab[disabled],
#s-d1fec1ae-d448-4c8b-ba32-79c3d377c9ab[disabled]:hover,
#s-d1fec1ae-d448-4c8b-ba32-79c3d377c9ab[disabled]:focus {
  background-color: #D7D5E2 !important;
}

#s-d1fec1ae-d448-4c8b-ba32-79c3d377c9ab {
  display:  inline-block ;
  width:  auto ;
}


#s-f19d60a3-f041-4f3e-9a07-76c0097299cb {
  border-style: solid;
margin-top: 5%;
margin-left: 20px;
margin-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 105, 122, 1);
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-f19d60a3-f041-4f3e-9a07-76c0097299cb {
  
}
}
@media (min-width: 0px) {
[id="s-f19d60a3-f041-4f3e-9a07-76c0097299cb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f19d60a3-f041-4f3e-9a07-76c0097299cb"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-f19d60a3-f041-4f3e-9a07-76c0097299cb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-f19d60a3-f041-4f3e-9a07-76c0097299cb"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-f19d60a3-f041-4f3e-9a07-76c0097299cb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-f19d60a3-f041-4f3e-9a07-76c0097299cb"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-f19d60a3-f041-4f3e-9a07-76c0097299cb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-88ed68d6-560a-4549-8bd0-5bf2aad8dfe6 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-88ed68d6-560a-4549-8bd0-5bf2aad8dfe6 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "Anton";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-fe5bd0dd-d91b-43c0-9e95-49a49ae7021b {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-fe5bd0dd-d91b-43c0-9e95-49a49ae7021b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fe5bd0dd-d91b-43c0-9e95-49a49ae7021b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-fe5bd0dd-d91b-43c0-9e95-49a49ae7021b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-fe5bd0dd-d91b-43c0-9e95-49a49ae7021b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-fe5bd0dd-d91b-43c0-9e95-49a49ae7021b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-fe5bd0dd-d91b-43c0-9e95-49a49ae7021b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-fe5bd0dd-d91b-43c0-9e95-49a49ae7021b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-aae97ec4-3bc6-403d-b950-a25ada07ba4b {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
}

#s-aae97ec4-3bc6-403d-b950-a25ada07ba4b > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-aae97ec4-3bc6-403d-b950-a25ada07ba4b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(252, 252, 252, 1);
  padding: 10px;
}

#s-aae97ec4-3bc6-403d-b950-a25ada07ba4b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-aae97ec4-3bc6-403d-b950-a25ada07ba4b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-aae97ec4-3bc6-403d-b950-a25ada07ba4b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: left;
  
  
  
  font-size: 16px;
}

#s-aae97ec4-3bc6-403d-b950-a25ada07ba4b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-28f9b017-9fdc-4648-b52f-14d0c8d98b84 {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
}

#s-c40b1854-3cac-4010-97dd-80bdc8a7c805 {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
}

#s-57f54a8b-daea-452b-b88f-0f1d17d72d0f {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
}

#s-cf2105b5-df53-4d3b-83e6-363af2a61d07 {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
}

#s-ee635df5-85e2-420b-95e3-3231cf55e4ad {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
}

#s-7638a9d0-3d02-4d99-9789-49f7e83fd79d {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
}

#s-f3af12b5-327f-41dc-bc40-6fb7bb7bb286 {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
}

#s-454a6a0c-cb0d-456b-9b64-b39828d542a1 {
  margin-left: auto;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
}

#s-037c1e61-1c9b-4edd-8b5e-16baa05ca768 {
  border-style: solid;
margin-top: 5%;
margin-left: 20px;
margin-bottom: 5%;
margin-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 105, 122, 1);
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-037c1e61-1c9b-4edd-8b5e-16baa05ca768 {
  
}
}
@media (min-width: 0px) {
[id="s-037c1e61-1c9b-4edd-8b5e-16baa05ca768"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-037c1e61-1c9b-4edd-8b5e-16baa05ca768"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-037c1e61-1c9b-4edd-8b5e-16baa05ca768"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-037c1e61-1c9b-4edd-8b5e-16baa05ca768"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-037c1e61-1c9b-4edd-8b5e-16baa05ca768"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-037c1e61-1c9b-4edd-8b5e-16baa05ca768"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-037c1e61-1c9b-4edd-8b5e-16baa05ca768"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-538535fc-069c-4150-bb73-d1a190d84975 {
  margin-top: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-538535fc-069c-4150-bb73-d1a190d84975 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "Anton";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-e245dad9-c012-49d7-a3d9-33e5b444a1a3 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-e245dad9-c012-49d7-a3d9-33e5b444a1a3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e245dad9-c012-49d7-a3d9-33e5b444a1a3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-e245dad9-c012-49d7-a3d9-33e5b444a1a3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-e245dad9-c012-49d7-a3d9-33e5b444a1a3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-3f02607c-2bac-4443-b7fd-568dee35d66f {
  margin-left: auto;
margin-right: auto;
}

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

#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;
  -webkit-user-select: none;
     -moz-user-select: none;
          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-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:not(.shopify-section *):not([id^="wistia"]) {
  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;
}
