.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-c6bfaccd-35e0-45ed-93e3-9687558b9dca {
  background-size: contain;
border-style: solid;
margin-bottom: -120px;
padding-bottom: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
background-position: center center;
background-color: rgba(238, 238, 238, 1);
background-attachment: scroll;
background-repeat: repeat;
}
@media (min-width: 1200px){#s-c6bfaccd-35e0-45ed-93e3-9687558b9dca {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c6bfaccd-35e0-45ed-93e3-9687558b9dca {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c6bfaccd-35e0-45ed-93e3-9687558b9dca {
  
}
}@media (max-width: 767px){#s-c6bfaccd-35e0-45ed-93e3-9687558b9dca {
  display: none;
}
#s-c6bfaccd-35e0-45ed-93e3-9687558b9dca, #wrap-s-c6bfaccd-35e0-45ed-93e3-9687558b9dca { display: none !important; }}







#s-c6bfaccd-35e0-45ed-93e3-9687558b9dca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c6bfaccd-35e0-45ed-93e3-9687558b9dca.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-b120f4df-53f1-446d-a456-1aa935c0b50b {
  max-width: 2880px;
aspect-ratio: 2880/720;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-b120f4df-53f1-446d-a456-1aa935c0b50b {
  
}
}@media (max-width: 767px){#s-b120f4df-53f1-446d-a456-1aa935c0b50b {
  
}
}




  #s-b120f4df-53f1-446d-a456-1aa935c0b50b img.shogun-image,
  #s-b120f4df-53f1-446d-a456-1aa935c0b50b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b120f4df-53f1-446d-a456-1aa935c0b50b {
    width: 100%;
    height: auto;
  }



  #s-b120f4df-53f1-446d-a456-1aa935c0b50b img.shogun-image {
    

    
    
    
  }


#s-b120f4df-53f1-446d-a456-1aa935c0b50b .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767px){#s-9b7742d8-3a44-41fa-9c47-05997127734b {
  
}
}
#s-02095a45-0882-4e47-984b-b428ed12e4bd {
  margin-left: auto;
margin-right: auto;
padding-top: 45px;
padding-left: 30px;
padding-bottom: 25px;
padding-right: 30px;
max-width: 870px;
}

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

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

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

#s-6510e1ed-8ee6-46e1-81a9-2d00a32a8d39 {
  margin-left: auto;
margin-right: auto;
padding-top: 40px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
max-width: 1920px;
}

@media (min-width: 0px) {
[id="s-6510e1ed-8ee6-46e1-81a9-2d00a32a8d39"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6510e1ed-8ee6-46e1-81a9-2d00a32a8d39"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6510e1ed-8ee6-46e1-81a9-2d00a32a8d39"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6510e1ed-8ee6-46e1-81a9-2d00a32a8d39"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-6ede8caa-6978-4d42-a48b-ee731f5f508e {
  min-height: 50px;
}








#s-6ede8caa-6978-4d42-a48b-ee731f5f508e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6ede8caa-6978-4d42-a48b-ee731f5f508e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cb757c48-2c7e-4723-a83e-0c1b05b4957b {
  padding-top: 0px;
padding-bottom: 0px;
max-width: 1800px;
aspect-ratio: 1800/1200;
text-align: center;
}





  #s-cb757c48-2c7e-4723-a83e-0c1b05b4957b img.shogun-image,
  #s-cb757c48-2c7e-4723-a83e-0c1b05b4957b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb757c48-2c7e-4723-a83e-0c1b05b4957b {
    width: 100%;
    height: auto;
  }



  #s-cb757c48-2c7e-4723-a83e-0c1b05b4957b img.shogun-image {
    

    
    
    
  }


#s-cb757c48-2c7e-4723-a83e-0c1b05b4957b .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-f4d2f1d8-8554-4ef4-b0be-8dd738a432db {
  margin-top: 15px;
margin-left: 10px;
padding-bottom: 5px;
}

#s-78aea145-23bc-4906-86d9-07db502448d3 {
  margin-left: 10px;
margin-bottom: 35px;
padding-bottom: 10px;
}

#s-a4bbea90-5eff-4660-adc8-065b65f1fe6c {
  text-align: center;
}







  #s-a4bbea90-5eff-4660-adc8-065b65f1fe6c img.shogun-image {
    

    
    
    
  }


#s-a4bbea90-5eff-4660-adc8-065b65f1fe6c .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-0f9a4487-8a5d-4f26-a9e9-9212e78f1d89 {
  margin-top: 15px;
margin-left: 10px;
padding-bottom: 5px;
}

#s-75e0f8e6-005e-4931-a834-8bc73245c868 {
  margin-left: 10px;
margin-bottom: 35px;
padding-bottom: 10px;
}

#s-44be07ec-9a9d-4bbb-8f65-c75ca3d0665f {
  opacity: 1;
text-align: center;
}







  #s-44be07ec-9a9d-4bbb-8f65-c75ca3d0665f img.shogun-image {
    

    
    
    
  }


#s-44be07ec-9a9d-4bbb-8f65-c75ca3d0665f .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-f19ac2bb-3507-414e-94c0-5e423fbb9b9b {
  margin-top: 15px;
margin-left: 10px;
padding-bottom: 5px;
}

#s-65b767bc-6f2f-4bdc-a79a-2c6969a739ab {
  margin-left: 10px;
margin-bottom: 35px;
padding-bottom: 10px;
}

#s-b55c3fa8-b10e-49cb-8b17-8ae18d540ea7 {
  margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
max-width: 1920px;
}

@media (min-width: 0px) {
[id="s-b55c3fa8-b10e-49cb-8b17-8ae18d540ea7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b55c3fa8-b10e-49cb-8b17-8ae18d540ea7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-b55c3fa8-b10e-49cb-8b17-8ae18d540ea7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-b55c3fa8-b10e-49cb-8b17-8ae18d540ea7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-96a7cda2-9b21-441a-8d3e-925b3d3f85a6 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}







  #s-96a7cda2-9b21-441a-8d3e-925b3d3f85a6 img.shogun-image {
    

    
    
    
  }


#s-96a7cda2-9b21-441a-8d3e-925b3d3f85a6 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-276c8934-8a0d-4280-92bf-48ed1d49f653 {
  margin-top: 15px;
margin-left: 10px;
padding-bottom: 5px;
}

#s-aeb36cf1-e50a-4900-8883-711699d3e466 {
  margin-left: 10px;
margin-bottom: 35px;
padding-bottom: 10px;
}

#s-f7d151ef-c816-418a-9685-c3b21ad9792a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}







  #s-f7d151ef-c816-418a-9685-c3b21ad9792a img.shogun-image {
    

    
    
    
  }


#s-f7d151ef-c816-418a-9685-c3b21ad9792a .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-3a273f28-82ea-4131-bad9-66100452d2ba {
  margin-top: 15px;
margin-left: 10px;
padding-bottom: 5px;
}

#s-87f105e3-ae05-4286-927b-97e2e086977d {
  margin-left: 10px;
margin-bottom: 35px;
padding-bottom: 10px;
}

#s-2cb90b88-e2cb-44d9-a60d-7efa01f25925 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}







  #s-2cb90b88-e2cb-44d9-a60d-7efa01f25925 img.shogun-image {
    

    
    
    
  }


#s-2cb90b88-e2cb-44d9-a60d-7efa01f25925 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-e2c5ea29-bbf9-4c29-9a83-0b64c0defae6 {
  margin-top: 15px;
margin-left: 10px;
padding-bottom: 5px;
}

#s-482ebe1a-49e3-4fd9-a2b9-37918efce59e {
  margin-left: 10px;
margin-bottom: 35px;
padding-bottom: 10px;
}

#s-9be03dfd-689f-4ceb-955b-4843dc9fcc0d {
  margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
max-width: 1920px;
}

@media (min-width: 0px) {
[id="s-9be03dfd-689f-4ceb-955b-4843dc9fcc0d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9be03dfd-689f-4ceb-955b-4843dc9fcc0d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-9be03dfd-689f-4ceb-955b-4843dc9fcc0d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-9be03dfd-689f-4ceb-955b-4843dc9fcc0d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-4a595312-0021-40b8-b1fe-5256f927e330 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}







  #s-4a595312-0021-40b8-b1fe-5256f927e330 img.shogun-image {
    

    
    
    
  }


#s-4a595312-0021-40b8-b1fe-5256f927e330 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-1ff6cbf7-1657-4229-a9af-a5b60ff68ba2 {
  margin-top: 15px;
margin-left: 10px;
padding-bottom: 5px;
}

#s-553f6dd4-2fe2-4d16-beff-a8cd9dde986f {
  margin-left: 10px;
margin-bottom: 35px;
padding-bottom: 10px;
}

#s-114c78ca-77ba-4e5e-a6c3-61603fec687e {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}







  #s-114c78ca-77ba-4e5e-a6c3-61603fec687e img.shogun-image {
    

    
    
    
  }


#s-114c78ca-77ba-4e5e-a6c3-61603fec687e .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-4e2fb606-1aa7-469a-aff6-c0901ca40cbb {
  margin-top: 15px;
margin-left: 10px;
padding-bottom: 5px;
}

#s-cce6fd85-bd7b-42ce-b88d-218c48619eed {
  margin-left: 10px;
margin-bottom: 35px;
padding-bottom: 10px;
}

#s-7ad91ee6-f61d-41ed-a3cb-f4b5be6afc5d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}







  #s-7ad91ee6-f61d-41ed-a3cb-f4b5be6afc5d img.shogun-image {
    

    
    
    
  }


#s-7ad91ee6-f61d-41ed-a3cb-f4b5be6afc5d .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-7773eb29-518d-4bd1-9f16-9349707c50f2 {
  margin-top: 15px;
margin-left: 10px;
padding-bottom: 5px;
}

#s-88f9db0c-d8e0-40cf-957c-91062afc012b {
  margin-left: 10px;
margin-bottom: 35px;
padding-bottom: 10px;
}

#s-d799be4a-e6ae-4cef-aebf-50afc8a1c3de {
  margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
max-width: 1920px;
}

@media (min-width: 0px) {
[id="s-d799be4a-e6ae-4cef-aebf-50afc8a1c3de"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d799be4a-e6ae-4cef-aebf-50afc8a1c3de"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-d799be4a-e6ae-4cef-aebf-50afc8a1c3de"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-d799be4a-e6ae-4cef-aebf-50afc8a1c3de"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-9a0f2d44-18eb-4dce-87e2-b8034d1d0352 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}







  #s-9a0f2d44-18eb-4dce-87e2-b8034d1d0352 img.shogun-image {
    

    
    
    
  }


#s-9a0f2d44-18eb-4dce-87e2-b8034d1d0352 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-815dd6ac-4fa4-4daa-9461-efc5200a953a {
  margin-top: 15px;
margin-left: 10px;
padding-bottom: 5px;
}

#s-e3a0e28d-4a6e-4b73-9e65-c6e4fa78f6aa {
  margin-left: 10px;
margin-bottom: 35px;
padding-bottom: 10px;
}

#s-350ad152-d4c4-4ff9-9c72-b16c00b71d82 {
  padding-top: 0px;
padding-bottom: 0px;
max-width: 1800px;
aspect-ratio: 1800/1200;
text-align: center;
}





  #s-350ad152-d4c4-4ff9-9c72-b16c00b71d82 img.shogun-image,
  #s-350ad152-d4c4-4ff9-9c72-b16c00b71d82 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-350ad152-d4c4-4ff9-9c72-b16c00b71d82 {
    width: 100%;
    height: auto;
  }



  #s-350ad152-d4c4-4ff9-9c72-b16c00b71d82 img.shogun-image {
    

    
    
    
  }


#s-350ad152-d4c4-4ff9-9c72-b16c00b71d82 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-ece3f9ce-a9fe-4c32-a0cd-7e5040194134 {
  margin-top: 15px;
margin-left: 10px;
padding-bottom: 5px;
}

#s-76221108-d432-4288-a2d7-bfa4fbd145c2 {
  margin-left: 10px;
margin-bottom: 35px;
padding-bottom: 10px;
}

#s-967fca4f-098f-4f82-9c3d-68aaa39e17cd {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 60px;
padding-right: 30px;
max-width: 865px;
}

#s-b96279d0-d37a-4aea-b104-8ba5d204379b {
  background-size: contain;
border-style: solid;
margin-bottom: -80px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
background-position: center center;
background-color: rgba(238, 238, 238, 1);
background-attachment: scroll;
background-repeat: repeat;
}
@media (min-width: 1200px){#s-b96279d0-d37a-4aea-b104-8ba5d204379b {
  display: none;
}
#s-b96279d0-d37a-4aea-b104-8ba5d204379b, #wrap-s-b96279d0-d37a-4aea-b104-8ba5d204379b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b96279d0-d37a-4aea-b104-8ba5d204379b {
  display: none;
}
#s-b96279d0-d37a-4aea-b104-8ba5d204379b, #wrap-s-b96279d0-d37a-4aea-b104-8ba5d204379b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b96279d0-d37a-4aea-b104-8ba5d204379b {
  display: none;
}
#s-b96279d0-d37a-4aea-b104-8ba5d204379b, #wrap-s-b96279d0-d37a-4aea-b104-8ba5d204379b { display: none !important; }}@media (max-width: 767px){#s-b96279d0-d37a-4aea-b104-8ba5d204379b {
  
}
}







#s-b96279d0-d37a-4aea-b104-8ba5d204379b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b96279d0-d37a-4aea-b104-8ba5d204379b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-9003c268-3edc-4855-bb7f-c0a719727f55 {
  max-width: 1200px;
aspect-ratio: 1200/600;
text-align: center;
}
@media (min-width: 1200px){#s-9003c268-3edc-4855-bb7f-c0a719727f55 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9003c268-3edc-4855-bb7f-c0a719727f55 {
  
}
}




  #s-9003c268-3edc-4855-bb7f-c0a719727f55 img.shogun-image,
  #s-9003c268-3edc-4855-bb7f-c0a719727f55 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9003c268-3edc-4855-bb7f-c0a719727f55 {
    width: 100%;
    height: auto;
  }



  #s-9003c268-3edc-4855-bb7f-c0a719727f55 img.shogun-image {
    

    
    
    
  }


#s-9003c268-3edc-4855-bb7f-c0a719727f55 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 1200px){#s-ae7cdbdf-8ecd-4cab-bf9b-a0f7852bb6eb {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ae7cdbdf-8ecd-4cab-bf9b-a0f7852bb6eb {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ae7cdbdf-8ecd-4cab-bf9b-a0f7852bb6eb {
  
}
}
#s-c78f886c-64f0-459e-8bae-0d2985e546e5 {
  margin-left: auto;
margin-right: auto;
padding-top: 35px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
max-width: 650px;
}

#s-54faed2f-df69-43e1-9c9e-146eeb7254d2 {
  margin-top: 35px;
padding-left: 15px;
padding-right: 15px;
text-align: center;
}







  #s-54faed2f-df69-43e1-9c9e-146eeb7254d2 img.shogun-image {
    

    
    
    
  }


#s-54faed2f-df69-43e1-9c9e-146eeb7254d2 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-021c4761-cff3-4147-bd75-7aefbe6a5948 {
  padding-top: 15px;
padding-left: 25px;
padding-bottom: 5px;
padding-right: 25px;
}

#s-2147ed4c-fff1-4acd-bab2-7d5e772a4d1b {
  padding-left: 25px;
padding-bottom: 47px;
padding-right: 25px;
}

#s-c7bbeece-0b75-4e0a-a870-c066e09d596c {
  padding-left: 15px;
padding-right: 15px;
text-align: center;
}







  #s-c7bbeece-0b75-4e0a-a870-c066e09d596c img.shogun-image {
    

    
    
    
  }


#s-c7bbeece-0b75-4e0a-a870-c066e09d596c .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-eedc7a33-698d-42b1-965c-8feff450bbdc {
  padding-top: 15px;
padding-left: 25px;
padding-bottom: 5px;
padding-right: 25px;
}

#s-13ad4c33-d3ae-4d33-b1d7-c3b6a715bc2f {
  padding-left: 25px;
padding-bottom: 45px;
padding-right: 25px;
}

#s-8e7279ec-1275-4365-a207-4825bc923174 {
  padding-left: 15px;
padding-right: 15px;
opacity: 1;
text-align: center;
}







  #s-8e7279ec-1275-4365-a207-4825bc923174 img.shogun-image {
    

    
    
    
  }


#s-8e7279ec-1275-4365-a207-4825bc923174 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-77370aba-d8d1-401c-b544-70ee37f1013f {
  padding-top: 15px;
padding-left: 25px;
padding-bottom: 5px;
padding-right: 25px;
}

#s-a331dfbc-ad8f-47b0-b99f-890bfcd6a510 {
  padding-left: 25px;
padding-bottom: 45px;
padding-right: 25px;
}

#s-8d77aad9-92e1-4ede-91f4-e14d5fdb9ed7 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 15px;
padding-bottom: 0px;
padding-right: 15px;
text-align: center;
}







  #s-8d77aad9-92e1-4ede-91f4-e14d5fdb9ed7 img.shogun-image {
    

    
    
    
  }


#s-8d77aad9-92e1-4ede-91f4-e14d5fdb9ed7 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-f99498f0-9311-4efa-a5dc-8a91a4b7bcd5 {
  padding-top: 15px;
padding-left: 25px;
padding-bottom: 5px;
padding-right: 25px;
}

#s-1eb2884a-5698-4f1b-b159-d26d69abbec9 {
  padding-left: 25px;
padding-bottom: 45px;
padding-right: 25px;
}

#s-da8c4d0c-edd0-4523-a4aa-6633e075fa06 {
  padding-top: 0px;
padding-left: 15px;
padding-bottom: 0px;
padding-right: 15px;
text-align: center;
}







  #s-da8c4d0c-edd0-4523-a4aa-6633e075fa06 img.shogun-image {
    

    
    
    
  }


#s-da8c4d0c-edd0-4523-a4aa-6633e075fa06 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-88fbe821-015f-40f9-a6ef-2ea652b1f24a {
  padding-top: 15px;
padding-left: 25px;
padding-bottom: 5px;
padding-right: 25px;
}

#s-b08469fc-539a-4685-94f3-c35004e4bafa {
  padding-left: 26px;
padding-bottom: 45px;
padding-right: 25px;
}

#s-10b785ec-5006-4fb4-9ea8-063ecf1e9877 {
  padding-top: 0px;
padding-left: 15px;
padding-bottom: 0px;
padding-right: 15px;
text-align: center;
}







  #s-10b785ec-5006-4fb4-9ea8-063ecf1e9877 img.shogun-image {
    

    
    
    
  }


#s-10b785ec-5006-4fb4-9ea8-063ecf1e9877 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-08b78214-35bc-44a1-b92f-84efe6ce5b58 {
  padding-top: 15px;
padding-left: 25px;
padding-bottom: 5px;
padding-right: 25px;
}

#s-f936acfa-7374-4a88-9ec5-0a68020cbaf5 {
  padding-left: 25px;
padding-bottom: 45px;
padding-right: 25px;
}

#s-85ad129a-e8ef-416f-824a-8dfc5bb207cb {
  padding-top: 0px;
padding-left: 15px;
padding-bottom: 0px;
padding-right: 15px;
text-align: center;
}







  #s-85ad129a-e8ef-416f-824a-8dfc5bb207cb img.shogun-image {
    

    
    
    
  }


#s-85ad129a-e8ef-416f-824a-8dfc5bb207cb .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-832b7898-c538-45d4-93cb-dd16e6e1906c {
  padding-top: 15px;
padding-left: 25px;
padding-bottom: 5px;
padding-right: 25px;
}

#s-ab07115a-1cab-4cd1-a691-b71d0565bd7b {
  padding-left: 25px;
padding-bottom: 45px;
padding-right: 25px;
}

#s-1a97c810-a2b6-400b-b57c-71ed21fd1d1d {
  padding-top: 0px;
padding-left: 15px;
padding-bottom: 0px;
padding-right: 15px;
text-align: center;
}







  #s-1a97c810-a2b6-400b-b57c-71ed21fd1d1d img.shogun-image {
    

    
    
    
  }


#s-1a97c810-a2b6-400b-b57c-71ed21fd1d1d .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-d0371c2b-2128-4572-9e20-adb117826ac8 {
  padding-top: 15px;
padding-left: 25px;
padding-bottom: 5px;
padding-right: 25px;
}

#s-87090d21-38da-4c24-b4d9-3f73a50380c4 {
  padding-left: 25px;
padding-bottom: 45px;
padding-right: 25px;
}

#s-272fa9b0-4164-4e61-865d-a1030154c990 {
  padding-top: 0px;
padding-left: 15px;
padding-bottom: 0px;
padding-right: 15px;
text-align: center;
}







  #s-272fa9b0-4164-4e61-865d-a1030154c990 img.shogun-image {
    

    
    
    
  }


#s-272fa9b0-4164-4e61-865d-a1030154c990 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-36f71afe-6910-452e-83b7-d4905dbdb3ca {
  padding-top: 15px;
padding-left: 25px;
padding-bottom: 5px;
padding-right: 25px;
}

#s-03cc84bc-3c76-4040-81ea-049699b0cd69 {
  padding-left: 25px;
padding-bottom: 45px;
padding-right: 25px;
}

#s-96e5880c-1161-4f62-a5e9-5c24bb464975 {
  padding-top: 0px;
padding-left: 15px;
padding-bottom: 0px;
padding-right: 15px;
text-align: center;
}







  #s-96e5880c-1161-4f62-a5e9-5c24bb464975 img.shogun-image {
    

    
    
    
  }


#s-96e5880c-1161-4f62-a5e9-5c24bb464975 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-dc96e073-b85b-41b0-a8a7-237a72a4dc72 {
  padding-top: 15px;
padding-left: 25px;
padding-bottom: 5px;
padding-right: 24px;
}

#s-8193fff0-b967-4d3b-a404-318836431f18 {
  padding-left: 25px;
padding-bottom: 45px;
padding-right: 25px;
}

#s-32ac92aa-c7ea-43fd-b04d-e5b1dba508d3 {
  padding-top: 0px;
padding-left: 15px;
padding-bottom: 0px;
padding-right: 15px;
text-align: center;
}







  #s-32ac92aa-c7ea-43fd-b04d-e5b1dba508d3 img.shogun-image {
    

    
    
    
  }


#s-32ac92aa-c7ea-43fd-b04d-e5b1dba508d3 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-0e6f9685-27ac-4bdf-9bed-9f644cd40b5b {
  padding-top: 15px;
padding-left: 25px;
padding-bottom: 5px;
padding-right: 24px;
}

#s-9700b6c6-c9a1-4cff-ab7b-c47f78afac9f {
  padding-left: 25px;
padding-bottom: 45px;
padding-right: 25px;
}

#s-28d7e7cb-f6b3-4164-b2ae-36ba2f2f3023 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 25px;
padding-bottom: 85px;
padding-right: 25px;
max-width: 650px;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
