.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-d1ce5bd2-ebf0-4f17-80a1-1c4960307e98 {
  background-size: cover;
padding-top: 1px;
padding-bottom: 1px;
min-height: 550px;
background-attachment: scroll;
background-position: center center;
}
@media (min-width: 1200px){#s-d1ce5bd2-ebf0-4f17-80a1-1c4960307e98 {
  min-height: 400px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d1ce5bd2-ebf0-4f17-80a1-1c4960307e98 {
  min-height: 400px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d1ce5bd2-ebf0-4f17-80a1-1c4960307e98 {
  min-height: 390px;
}
}@media (max-width: 767px){#s-d1ce5bd2-ebf0-4f17-80a1-1c4960307e98 {
  min-height: 180px;
}
}







#s-d1ce5bd2-ebf0-4f17-80a1-1c4960307e98 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d1ce5bd2-ebf0-4f17-80a1-1c4960307e98.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

.shg-image-content-wrapper {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-c7b275b1-2d41-4096-bf19-3bdaf0364dba {
  margin-left: auto;
margin-right: auto;
max-width: 3600px;
aspect-ratio: 3600/2400;
text-align: center;
background-color: rgba(238, 209, 209, 1);
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shg-image-content-wrapper {
      aspect-ratio: 3600/2400;
      min-width: 100%;
      height: auto;
    }

    #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shogun-image-link {
      aspect-ratio: 3600/2400;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba {
    width: 100%;
    height: auto;
  }

  #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image {
    
    
  }


.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shogun-image-content {
  
    align-items: center;
  
}

.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba {
      --shg-aspect-ratio: calc(3600/2400); 
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container {
      position: relative;
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shg-image-content-wrapper {
      aspect-ratio: 3600/2400;
      min-width: 100%;
      height: auto;
    }

    #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shogun-image-link {
      aspect-ratio: 3600/2400;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba {
    width: 100%;
    height: auto;
  }

  #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image {
    
    
  }


.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shogun-image-content {
  
    align-items: center;
  
}

.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba {
      --shg-aspect-ratio: calc(3600/2400); 
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container {
      position: relative;
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shg-image-content-wrapper {
      aspect-ratio: 3600/2400;
      min-width: 100%;
      height: auto;
    }

    #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shogun-image-link {
      aspect-ratio: 3600/2400;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba {
    width: 100%;
    height: auto;
  }

  #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image {
    
    
  }


.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shogun-image-content {
  
    align-items: center;
  
}

.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba {
      --shg-aspect-ratio: calc(3600/2400); 
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container {
      position: relative;
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shg-image-content-wrapper {
      aspect-ratio: 3600/2400;
      min-width: 100%;
      height: auto;
    }

    #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shogun-image-link {
      aspect-ratio: 3600/2400;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba {
    width: 100%;
    height: auto;
  }

  #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image {
    
    
  }


.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shogun-image-content {
  
    align-items: center;
  
}

.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba {
      --shg-aspect-ratio: calc(3600/2400); 
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container {
      position: relative;
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shg-image-content-wrapper {
      aspect-ratio: 3600/2400;
      min-width: 100%;
      height: auto;
    }

    #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shogun-image-link {
      aspect-ratio: 3600/2400;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba {
    width: 100%;
    height: auto;
  }

  #s-c7b275b1-2d41-4096-bf19-3bdaf0364dba img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image {
    
    
  }


.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba .shogun-image-content {
  
    align-items: center;
  
}

.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba {
      --shg-aspect-ratio: calc(3600/2400); 
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container {
      position: relative;
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7b275b1-2d41-4096-bf19-3bdaf0364dba img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-7ed7e532-4d39-46cd-bd93-76acb1f5717d {
  min-height: 50px;
}








#s-7ed7e532-4d39-46cd-bd93-76acb1f5717d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7ed7e532-4d39-46cd-bd93-76acb1f5717d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-230f1519-723f-4f59-937c-baa5ac309824 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(238, 209, 209, 1);
}








#s-230f1519-723f-4f59-937c-baa5ac309824 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-230f1519-723f-4f59-937c-baa5ac309824.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-96b3411d-4a5e-4d80-8c49-71b6142e78ef {
  background-color: rgba(238, 209, 209, 1);
}

@media (min-width: 0px) {
[id="s-96b3411d-4a5e-4d80-8c49-71b6142e78ef"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-96b3411d-4a5e-4d80-8c49-71b6142e78ef"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-96b3411d-4a5e-4d80-8c49-71b6142e78ef"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-96b3411d-4a5e-4d80-8c49-71b6142e78ef"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

.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-7732b092-5964-4663-b424-91e6a58c0ad7 {
  text-align: center;
}







  #s-7732b092-5964-4663-b424-91e6a58c0ad7 img.shogun-image {
    

    
    
    
  }


#s-7732b092-5964-4663-b424-91e6a58c0ad7 .shogun-image-content {
  
    align-items: center;
  
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

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

#s-a105dd84-b06f-4922-8306-ad5cc9b29a73 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a105dd84-b06f-4922-8306-ad5cc9b29a73 .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-b74b6e08-5a9b-4591-a60e-61260e869488 .shogun-icon-wrapper {
  text-align: center;
}


#s-b74b6e08-5a9b-4591-a60e-61260e869488 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

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

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

#s-3af82e40-bb1c-46a9-9dc5-223697b4463d hr {
  border-top: 1px solid rgba(238, 209, 209, 1);
}

#s-f55697d7-526a-4b34-a032-a8ce82d3d7a8 {
  text-align: center;
}







  #s-f55697d7-526a-4b34-a032-a8ce82d3d7a8 img.shogun-image {
    

    
    
    
  }


#s-f55697d7-526a-4b34-a032-a8ce82d3d7a8 .shogun-image-content {
  
    align-items: center;
  
}

#s-77ac7932-e452-4180-b920-b1ca28b2e3ca {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-77ac7932-e452-4180-b920-b1ca28b2e3ca .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-dc10ea0e-dc2f-44bc-8006-5bc30ddfeea7 .shogun-icon-wrapper {
  text-align: center;
}


#s-dc10ea0e-dc2f-44bc-8006-5bc30ddfeea7 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-a398d68a-9ec2-4ee0-a4c9-32bba6173501 {
  text-align: center;
}







  #s-a398d68a-9ec2-4ee0-a4c9-32bba6173501 img.shogun-image {
    

    
    
    
  }


#s-a398d68a-9ec2-4ee0-a4c9-32bba6173501 .shogun-image-content {
  
    align-items: center;
  
}

#s-3d08570e-ca40-4599-99e2-b3fd4542ddeb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3d08570e-ca40-4599-99e2-b3fd4542ddeb .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-657a790e-196f-46fb-9461-3bbc3203640f .shogun-icon-wrapper {
  text-align: center;
}


#s-657a790e-196f-46fb-9461-3bbc3203640f .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-47028c5d-5682-47cd-a07d-6eb22378d311 {
  text-align: center;
}







  #s-47028c5d-5682-47cd-a07d-6eb22378d311 img.shogun-image {
    

    
    
    
  }


#s-47028c5d-5682-47cd-a07d-6eb22378d311 .shogun-image-content {
  
    align-items: center;
  
}

#s-42ef4a36-01be-458e-8d86-738efa4ccbf5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-42ef4a36-01be-458e-8d86-738efa4ccbf5 .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-f7713096-3ce1-43a7-9d3e-bef9875fb383 .shogun-icon-wrapper {
  text-align: center;
}


#s-f7713096-3ce1-43a7-9d3e-bef9875fb383 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-69b950f2-93d9-4024-ab92-57eaa59a4c86 {
  background-color: rgba(238, 209, 209, 1);
}

@media (min-width: 0px) {
[id="s-69b950f2-93d9-4024-ab92-57eaa59a4c86"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-69b950f2-93d9-4024-ab92-57eaa59a4c86"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-69b950f2-93d9-4024-ab92-57eaa59a4c86"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-69b950f2-93d9-4024-ab92-57eaa59a4c86"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-624e5c61-32dc-4613-84de-49cbc8617a70 {
  margin-left: auto;
margin-right: auto;
max-width: 1179px;
aspect-ratio: 2/3;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-624e5c61-32dc-4613-84de-49cbc8617a70 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-624e5c61-32dc-4613-84de-49cbc8617a70 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-624e5c61-32dc-4613-84de-49cbc8617a70 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-624e5c61-32dc-4613-84de-49cbc8617a70 {
    width: 100%;
    height: auto;
  }

  #s-624e5c61-32dc-4613-84de-49cbc8617a70 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image {
    
    
  }


.s-624e5c61-32dc-4613-84de-49cbc8617a70 .shogun-image-content {
  
    align-items: center;
  
}

.s-624e5c61-32dc-4613-84de-49cbc8617a70.shg-align-container {
  display: flex;
  justify-content: center
}

.s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-624e5c61-32dc-4613-84de-49cbc8617a70 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container {
      position: relative;
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-624e5c61-32dc-4613-84de-49cbc8617a70 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-624e5c61-32dc-4613-84de-49cbc8617a70 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-624e5c61-32dc-4613-84de-49cbc8617a70 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-624e5c61-32dc-4613-84de-49cbc8617a70 {
    width: 100%;
    height: auto;
  }

  #s-624e5c61-32dc-4613-84de-49cbc8617a70 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image {
    
    
  }


.s-624e5c61-32dc-4613-84de-49cbc8617a70 .shogun-image-content {
  
    align-items: center;
  
}

.s-624e5c61-32dc-4613-84de-49cbc8617a70.shg-align-container {
  display: flex;
  justify-content: center
}

.s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-624e5c61-32dc-4613-84de-49cbc8617a70 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container {
      position: relative;
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-624e5c61-32dc-4613-84de-49cbc8617a70 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-624e5c61-32dc-4613-84de-49cbc8617a70 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-624e5c61-32dc-4613-84de-49cbc8617a70 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-624e5c61-32dc-4613-84de-49cbc8617a70 {
    width: 100%;
    height: auto;
  }

  #s-624e5c61-32dc-4613-84de-49cbc8617a70 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image {
    
    
  }


.s-624e5c61-32dc-4613-84de-49cbc8617a70 .shogun-image-content {
  
    align-items: center;
  
}

.s-624e5c61-32dc-4613-84de-49cbc8617a70.shg-align-container {
  display: flex;
  justify-content: center
}

.s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-624e5c61-32dc-4613-84de-49cbc8617a70 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container {
      position: relative;
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-624e5c61-32dc-4613-84de-49cbc8617a70 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-624e5c61-32dc-4613-84de-49cbc8617a70 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-624e5c61-32dc-4613-84de-49cbc8617a70 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-624e5c61-32dc-4613-84de-49cbc8617a70 {
    width: 100%;
    height: auto;
  }

  #s-624e5c61-32dc-4613-84de-49cbc8617a70 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image {
    
    
  }


.s-624e5c61-32dc-4613-84de-49cbc8617a70 .shogun-image-content {
  
    align-items: center;
  
}

.s-624e5c61-32dc-4613-84de-49cbc8617a70.shg-align-container {
  display: flex;
  justify-content: center
}

.s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-624e5c61-32dc-4613-84de-49cbc8617a70 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container {
      position: relative;
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-624e5c61-32dc-4613-84de-49cbc8617a70 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-624e5c61-32dc-4613-84de-49cbc8617a70 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-624e5c61-32dc-4613-84de-49cbc8617a70 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-624e5c61-32dc-4613-84de-49cbc8617a70 {
    width: 100%;
    height: auto;
  }

  #s-624e5c61-32dc-4613-84de-49cbc8617a70 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image {
    
    
  }


.s-624e5c61-32dc-4613-84de-49cbc8617a70 .shogun-image-content {
  
    align-items: center;
  
}

.s-624e5c61-32dc-4613-84de-49cbc8617a70.shg-align-container {
  display: flex;
  justify-content: center
}

.s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-624e5c61-32dc-4613-84de-49cbc8617a70 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container {
      position: relative;
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-624e5c61-32dc-4613-84de-49cbc8617a70 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4b35b89e-6dd4-458d-9dbc-fc3224669f5c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4b35b89e-6dd4-458d-9dbc-fc3224669f5c .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-7f001f30-77fa-4a02-a39c-7d5b17aa5439 .shogun-icon-wrapper {
  text-align: center;
}


#s-7f001f30-77fa-4a02-a39c-7d5b17aa5439 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-40d060b4-adb7-4eae-9b9c-c9a7c3559edd hr {
  border-top: 1px solid rgba(238, 209, 209, 1);
}

#s-7a46a62b-7160-4166-a575-a04622a11eb2 {
  text-align: center;
}







  #s-7a46a62b-7160-4166-a575-a04622a11eb2 img.shogun-image {
    

    
    
    
  }


#s-7a46a62b-7160-4166-a575-a04622a11eb2 .shogun-image-content {
  
    align-items: center;
  
}

#s-ad7aa386-b098-4216-bae5-6f9c28439147 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ad7aa386-b098-4216-bae5-6f9c28439147 .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-419252fa-70ab-43ea-81df-f8ab0a6367ef .shogun-icon-wrapper {
  text-align: center;
}


#s-419252fa-70ab-43ea-81df-f8ab0a6367ef .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-7ffce3b3-3bd7-4136-a098-87efb9afecc9 {
  text-align: center;
}







  #s-7ffce3b3-3bd7-4136-a098-87efb9afecc9 img.shogun-image {
    

    
    
    
  }


#s-7ffce3b3-3bd7-4136-a098-87efb9afecc9 .shogun-image-content {
  
    align-items: center;
  
}

#s-7b9a2bd4-bd8d-4fad-8ad5-a4b1ea41b735 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7b9a2bd4-bd8d-4fad-8ad5-a4b1ea41b735 .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-1116765f-63d4-4d5d-9283-09b0d19e4b56 .shogun-icon-wrapper {
  text-align: center;
}


#s-1116765f-63d4-4d5d-9283-09b0d19e4b56 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-2cf535cd-7646-460e-af01-24356721ef92 {
  text-align: center;
}







  #s-2cf535cd-7646-460e-af01-24356721ef92 img.shogun-image {
    

    
    
    
  }


#s-2cf535cd-7646-460e-af01-24356721ef92 .shogun-image-content {
  
    align-items: center;
  
}

#s-e0ab5fbe-a86f-43a7-84c8-67fffa968b1a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e0ab5fbe-a86f-43a7-84c8-67fffa968b1a .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-b820c9aa-e52d-49e2-9f0f-4757b5205c67 .shogun-icon-wrapper {
  text-align: center;
}


#s-b820c9aa-e52d-49e2-9f0f-4757b5205c67 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-06fc1b34-8eec-4a4e-8c59-5d1a24df6815 {
  background-color: rgba(238, 209, 209, 1);
}

@media (min-width: 0px) {
[id="s-06fc1b34-8eec-4a4e-8c59-5d1a24df6815"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-06fc1b34-8eec-4a4e-8c59-5d1a24df6815"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-06fc1b34-8eec-4a4e-8c59-5d1a24df6815"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-06fc1b34-8eec-4a4e-8c59-5d1a24df6815"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-90cf1c8d-5682-4947-b0a1-db8b0edec99f {
  margin-left: auto;
margin-right: auto;
max-width: 426px;
aspect-ratio: 2/3;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f {
    width: 100%;
    height: auto;
  }

  #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image {
    
    
  }


.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shogun-image-content {
  
    align-items: center;
  
}

.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container {
      position: relative;
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f {
    width: 100%;
    height: auto;
  }

  #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image {
    
    
  }


.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shogun-image-content {
  
    align-items: center;
  
}

.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container {
      position: relative;
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f {
    width: 100%;
    height: auto;
  }

  #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image {
    
    
  }


.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shogun-image-content {
  
    align-items: center;
  
}

.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container {
      position: relative;
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f {
    width: 100%;
    height: auto;
  }

  #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image {
    
    
  }


.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shogun-image-content {
  
    align-items: center;
  
}

.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container {
      position: relative;
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f {
    width: 100%;
    height: auto;
  }

  #s-90cf1c8d-5682-4947-b0a1-db8b0edec99f img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image {
    
    
  }


.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f .shogun-image-content {
  
    align-items: center;
  
}

.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container {
      position: relative;
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-90cf1c8d-5682-4947-b0a1-db8b0edec99f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-569eead7-740e-4a92-bb68-885d2d84fcd6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-569eead7-740e-4a92-bb68-885d2d84fcd6 .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-fdf14ab4-dcbf-4e3b-96ce-3dd2c1cf009b .shogun-icon-wrapper {
  text-align: center;
}


#s-fdf14ab4-dcbf-4e3b-96ce-3dd2c1cf009b .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-8c9fc4ec-840a-4156-8b81-588bbacaf2b9 {
  text-align: center;
}







  #s-8c9fc4ec-840a-4156-8b81-588bbacaf2b9 img.shogun-image {
    

    
    
    
  }


#s-8c9fc4ec-840a-4156-8b81-588bbacaf2b9 .shogun-image-content {
  
    align-items: center;
  
}

#s-74d3de26-776b-4fc1-8c52-7b5d7658fcac {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-74d3de26-776b-4fc1-8c52-7b5d7658fcac .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-986938fd-be93-43d5-b74c-ac1c3408ea83 hr {
  border-top: 1px solid rgba(238, 209, 209, 1);
}

#s-9a7cd762-f05d-446b-88e6-f5b6e07725da .shogun-icon-wrapper {
  text-align: center;
}


#s-9a7cd762-f05d-446b-88e6-f5b6e07725da .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-dd0ae650-ea2f-43e0-b0f0-c3fabe33ca24 {
  text-align: center;
}







  #s-dd0ae650-ea2f-43e0-b0f0-c3fabe33ca24 img.shogun-image {
    

    
    
    
  }


#s-dd0ae650-ea2f-43e0-b0f0-c3fabe33ca24 .shogun-image-content {
  
    align-items: center;
  
}

#s-d5a9286a-699d-467d-9703-4214b60d63aa {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d5a9286a-699d-467d-9703-4214b60d63aa .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-59aaad10-0096-4823-b1b8-e6d02fbe618e .shogun-icon-wrapper {
  text-align: center;
}


#s-59aaad10-0096-4823-b1b8-e6d02fbe618e .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-e04df8c9-62e2-4b39-8f11-78495919a4e9 {
  text-align: center;
}







  #s-e04df8c9-62e2-4b39-8f11-78495919a4e9 img.shogun-image {
    

    
    
    
  }


#s-e04df8c9-62e2-4b39-8f11-78495919a4e9 .shogun-image-content {
  
    align-items: center;
  
}

#s-6727af5c-be3b-4930-93d2-77f02d9b3c27 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6727af5c-be3b-4930-93d2-77f02d9b3c27 .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-9aa15a8d-1eac-4fe8-b7d1-f2df95818518 .shogun-icon-wrapper {
  text-align: center;
}


#s-9aa15a8d-1eac-4fe8-b7d1-f2df95818518 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-94b9ef6e-6a9c-4499-91b2-b8d84683c973 {
  background-color: rgba(238, 209, 209, 1);
}

@media (min-width: 0px) {
[id="s-94b9ef6e-6a9c-4499-91b2-b8d84683c973"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-94b9ef6e-6a9c-4499-91b2-b8d84683c973"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-94b9ef6e-6a9c-4499-91b2-b8d84683c973"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-94b9ef6e-6a9c-4499-91b2-b8d84683c973"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-e093fdb3-2edf-4d3d-89fe-aef26ee07ebd {
  max-width: 3604px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-e093fdb3-2edf-4d3d-89fe-aef26ee07ebd img.shogun-image,
  #s-e093fdb3-2edf-4d3d-89fe-aef26ee07ebd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e093fdb3-2edf-4d3d-89fe-aef26ee07ebd {
    width: 100%;
    height: auto;
  }



  #s-e093fdb3-2edf-4d3d-89fe-aef26ee07ebd img.shogun-image {
    

    
    
    
  }


#s-e093fdb3-2edf-4d3d-89fe-aef26ee07ebd .shogun-image-content {
  
    align-items: center;
  
}

#s-84dd0545-47eb-440f-a26a-e02fe9a034e9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-84dd0545-47eb-440f-a26a-e02fe9a034e9 .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-48b80099-912b-4da8-aaf7-991b2aeff7d2 .shogun-icon-wrapper {
  text-align: center;
}


#s-48b80099-912b-4da8-aaf7-991b2aeff7d2 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-79686498-2928-45a3-b4bb-534cd92b390c {
  text-align: center;
}







  #s-79686498-2928-45a3-b4bb-534cd92b390c img.shogun-image {
    

    
    
    
  }


#s-79686498-2928-45a3-b4bb-534cd92b390c .shogun-image-content {
  
    align-items: center;
  
}

#s-4a58f917-92c8-4407-8bfd-400ea6dfddbd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4a58f917-92c8-4407-8bfd-400ea6dfddbd .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-008a45f0-9e45-47e4-8c62-b08812c3bed1 .shogun-icon-wrapper {
  text-align: center;
}


#s-008a45f0-9e45-47e4-8c62-b08812c3bed1 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-b3651776-cf8d-4c74-a1f1-6a53cd90b8b6 hr {
  border-top: 1px solid rgba(238, 209, 209, 1);
}

#s-5d6ef1eb-aa21-4a08-95b3-2a401cb3537e {
  text-align: center;
}







  #s-5d6ef1eb-aa21-4a08-95b3-2a401cb3537e img.shogun-image {
    

    
    
    
  }


#s-5d6ef1eb-aa21-4a08-95b3-2a401cb3537e .shogun-image-content {
  
    align-items: center;
  
}

#s-012baa6a-8cf7-412e-af7a-80f1d1450ec7 .shogun-icon-wrapper {
  text-align: center;
}


#s-012baa6a-8cf7-412e-af7a-80f1d1450ec7 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-607248fe-d6b6-421f-8d01-f57926ddb18c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-607248fe-d6b6-421f-8d01-f57926ddb18c .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-d4af7205-9922-49c0-b84c-16fb7e949e6c .shogun-icon-wrapper {
  text-align: center;
}


#s-d4af7205-9922-49c0-b84c-16fb7e949e6c .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-9363cb37-40e0-459f-9291-d9342838c8d2 {
  text-align: center;
}







  #s-9363cb37-40e0-459f-9291-d9342838c8d2 img.shogun-image {
    

    
    
    
  }


#s-9363cb37-40e0-459f-9291-d9342838c8d2 .shogun-image-content {
  
    align-items: center;
  
}

#s-1ea2944d-49b2-4ccc-83a5-61a5c58285fa {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1ea2944d-49b2-4ccc-83a5-61a5c58285fa .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-47cc65b3-b6f8-4c2f-b0d1-41eda6cc2082 .shogun-icon-wrapper {
  text-align: center;
}


#s-47cc65b3-b6f8-4c2f-b0d1-41eda6cc2082 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-35b46fc9-e675-444f-860c-6059c1345b12 {
  background-color: rgba(238, 209, 209, 1);
}

@media (min-width: 0px) {
[id="s-35b46fc9-e675-444f-860c-6059c1345b12"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-35b46fc9-e675-444f-860c-6059c1345b12"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-35b46fc9-e675-444f-860c-6059c1345b12"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-35b46fc9-e675-444f-860c-6059c1345b12"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-ba7fef54-431e-45c2-be66-d5f55597c4ff {
  text-align: center;
}







  #s-ba7fef54-431e-45c2-be66-d5f55597c4ff img.shogun-image {
    

    
    
    
  }


#s-ba7fef54-431e-45c2-be66-d5f55597c4ff .shogun-image-content {
  
    align-items: center;
  
}

#s-9d270742-eeba-4813-b8ac-46f165807ab7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9d270742-eeba-4813-b8ac-46f165807ab7 .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-0f099987-fc0e-4eb6-a79f-65d52d05c740 .shogun-icon-wrapper {
  text-align: center;
}


#s-0f099987-fc0e-4eb6-a79f-65d52d05c740 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-b686aec1-1eba-4fa4-b432-9c04f1501fb2 {
  text-align: center;
}







  #s-b686aec1-1eba-4fa4-b432-9c04f1501fb2 img.shogun-image {
    

    
    
    
  }


#s-b686aec1-1eba-4fa4-b432-9c04f1501fb2 .shogun-image-content {
  
    align-items: center;
  
}

#s-21fdca68-c77b-4854-8267-4fe7f459e8ed {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-21fdca68-c77b-4854-8267-4fe7f459e8ed .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-17a2b9a6-40da-4560-87df-5234ae15392b .shogun-icon-wrapper {
  text-align: center;
}


#s-17a2b9a6-40da-4560-87df-5234ae15392b .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-df566cd1-e4f9-4a95-a562-ef3f28e070c8 hr {
  border-top: 1px solid rgba(238, 209, 209, 1);
}

#s-3fa7a0d7-d89c-4e16-ad1e-0f0178222479 {
  max-width: 4416px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-3fa7a0d7-d89c-4e16-ad1e-0f0178222479 img.shogun-image,
  #s-3fa7a0d7-d89c-4e16-ad1e-0f0178222479 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3fa7a0d7-d89c-4e16-ad1e-0f0178222479 {
    width: 100%;
    height: auto;
  }



  #s-3fa7a0d7-d89c-4e16-ad1e-0f0178222479 img.shogun-image {
    

    
    
    
  }


#s-3fa7a0d7-d89c-4e16-ad1e-0f0178222479 .shogun-image-content {
  
    align-items: center;
  
}

#s-503452cb-d04a-43b8-a28a-85346b1519a4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-503452cb-d04a-43b8-a28a-85346b1519a4 .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-eff52307-29cd-4f2e-b3e5-54fdb51a1829 .shogun-icon-wrapper {
  text-align: center;
}


#s-eff52307-29cd-4f2e-b3e5-54fdb51a1829 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-a8dd4eee-457a-4607-9278-097928b30ee4 {
  text-align: center;
}







  #s-a8dd4eee-457a-4607-9278-097928b30ee4 img.shogun-image {
    

    
    
    
  }


#s-a8dd4eee-457a-4607-9278-097928b30ee4 .shogun-image-content {
  
    align-items: center;
  
}

#s-6cef2e04-a2e8-4e73-bb9f-28415493e04a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6cef2e04-a2e8-4e73-bb9f-28415493e04a .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-a5344eba-8909-4144-953f-5ae4d5656538 .shogun-icon-wrapper {
  text-align: center;
}


#s-a5344eba-8909-4144-953f-5ae4d5656538 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-2cfb2b37-aa79-4fbf-9cdb-13744d4da06e {
  background-color: rgba(238, 209, 209, 1);
}

@media (min-width: 0px) {
[id="s-2cfb2b37-aa79-4fbf-9cdb-13744d4da06e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2cfb2b37-aa79-4fbf-9cdb-13744d4da06e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-2cfb2b37-aa79-4fbf-9cdb-13744d4da06e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-2cfb2b37-aa79-4fbf-9cdb-13744d4da06e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-18edfc24-6c6c-484f-b113-3b864621840e {
  text-align: center;
}







  #s-18edfc24-6c6c-484f-b113-3b864621840e img.shogun-image {
    

    
    
    
  }


#s-18edfc24-6c6c-484f-b113-3b864621840e .shogun-image-content {
  
    align-items: center;
  
}

#s-1f7969ec-b782-4321-9725-5982f1850ab5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1f7969ec-b782-4321-9725-5982f1850ab5 .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-c1d2b978-686d-4534-b671-c74b9279f268 .shogun-icon-wrapper {
  text-align: center;
}


#s-c1d2b978-686d-4534-b671-c74b9279f268 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-64b22d4e-0bd7-4916-812d-791fc84fd38a hr {
  border-top: 1px solid rgba(238, 209, 209, 1);
}

#s-25f607c9-628f-4c6a-9dec-662266690e02 {
  max-width: 2000px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-25f607c9-628f-4c6a-9dec-662266690e02 img.shogun-image,
  #s-25f607c9-628f-4c6a-9dec-662266690e02 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-25f607c9-628f-4c6a-9dec-662266690e02 {
    width: 100%;
    height: auto;
  }



  #s-25f607c9-628f-4c6a-9dec-662266690e02 img.shogun-image {
    

    
    
    
  }


#s-25f607c9-628f-4c6a-9dec-662266690e02 .shogun-image-content {
  
    align-items: center;
  
}

#s-575fc7d2-ad4c-46a0-a248-ac4ecb0e976b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-575fc7d2-ad4c-46a0-a248-ac4ecb0e976b .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-7fa835b9-e363-47eb-ba84-f7a578a183cd .shogun-icon-wrapper {
  text-align: center;
}


#s-7fa835b9-e363-47eb-ba84-f7a578a183cd .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-16b82e98-09e2-4cb9-9224-c6a33a4f54a2 {
  max-width: 1192px;
aspect-ratio: 1192/1600;
text-align: center;
}





  #s-16b82e98-09e2-4cb9-9224-c6a33a4f54a2 img.shogun-image,
  #s-16b82e98-09e2-4cb9-9224-c6a33a4f54a2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-16b82e98-09e2-4cb9-9224-c6a33a4f54a2 {
    width: 100%;
    height: auto;
  }



  #s-16b82e98-09e2-4cb9-9224-c6a33a4f54a2 img.shogun-image {
    

    
    
    
  }


#s-16b82e98-09e2-4cb9-9224-c6a33a4f54a2 .shogun-image-content {
  
    align-items: center;
  
}

#s-aaeab699-202f-4c28-a7b2-d940a3c6fe22 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-aaeab699-202f-4c28-a7b2-d940a3c6fe22 .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-87e2aea7-22b6-4e87-b87a-164c8d84fa14 .shogun-icon-wrapper {
  text-align: center;
}


#s-87e2aea7-22b6-4e87-b87a-164c8d84fa14 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-b7c5c83a-a9f3-423c-9a06-4935aac22309 {
  max-width: 480px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-b7c5c83a-a9f3-423c-9a06-4935aac22309 img.shogun-image,
  #s-b7c5c83a-a9f3-423c-9a06-4935aac22309 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b7c5c83a-a9f3-423c-9a06-4935aac22309 {
    width: 100%;
    height: auto;
  }



  #s-b7c5c83a-a9f3-423c-9a06-4935aac22309 img.shogun-image {
    

    
    
    
  }


#s-b7c5c83a-a9f3-423c-9a06-4935aac22309 .shogun-image-content {
  
    align-items: center;
  
}

#s-ce345db3-044a-4324-96bc-be68850a8263 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ce345db3-044a-4324-96bc-be68850a8263 .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-e8fefe99-f34f-4237-beb5-a7df6716f825 .shogun-icon-wrapper {
  text-align: center;
}


#s-e8fefe99-f34f-4237-beb5-a7df6716f825 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-55073981-d4d0-4fd0-9015-5b98e5aa05f0 {
  background-color: rgba(238, 209, 209, 1);
}

@media (min-width: 0px) {
[id="s-55073981-d4d0-4fd0-9015-5b98e5aa05f0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-55073981-d4d0-4fd0-9015-5b98e5aa05f0"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-55073981-d4d0-4fd0-9015-5b98e5aa05f0"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-55073981-d4d0-4fd0-9015-5b98e5aa05f0"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-d86cd0b4-68d4-477f-987b-79c4ea7d8b3a {
  max-width: 913px;
text-align: center;
}







  #s-d86cd0b4-68d4-477f-987b-79c4ea7d8b3a img.shogun-image {
    

    
    
    
  }


#s-d86cd0b4-68d4-477f-987b-79c4ea7d8b3a .shogun-image-content {
  
    align-items: center;
  
}

#s-8aba92ed-341b-43e4-8cde-c8b3f06c524b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8aba92ed-341b-43e4-8cde-c8b3f06c524b .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-baf6da81-b74a-45cd-bb49-5ecf7fd3c33c .shogun-icon-wrapper {
  text-align: center;
}


#s-baf6da81-b74a-45cd-bb49-5ecf7fd3c33c .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 20px !important;
  color: rgba(194, 133, 105, 1);
}

#s-aff645fa-b378-4710-a278-b1b7b0cda52a hr {
  border-top: 1px solid rgba(238, 209, 209, 1);
}

#s-f551a429-e63a-4d8f-9f91-67c78b07a1ab {
  max-width: 936px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-f551a429-e63a-4d8f-9f91-67c78b07a1ab img.shogun-image,
  #s-f551a429-e63a-4d8f-9f91-67c78b07a1ab .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f551a429-e63a-4d8f-9f91-67c78b07a1ab {
    width: 100%;
    height: auto;
  }



  #s-f551a429-e63a-4d8f-9f91-67c78b07a1ab img.shogun-image {
    

    
    
    
  }


#s-f551a429-e63a-4d8f-9f91-67c78b07a1ab .shogun-image-content {
  
    align-items: center;
  
}

#s-d68d31ab-1a76-44fc-b5b5-cbcdb655a874 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d68d31ab-1a76-44fc-b5b5-cbcdb655a874 .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-de95a694-6f98-43ef-a69e-e45e051d562a {
  max-width: 1800px;
aspect-ratio: 1800/2400;
text-align: center;
}





  #s-de95a694-6f98-43ef-a69e-e45e051d562a img.shogun-image,
  #s-de95a694-6f98-43ef-a69e-e45e051d562a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-de95a694-6f98-43ef-a69e-e45e051d562a {
    width: 100%;
    height: auto;
  }



  #s-de95a694-6f98-43ef-a69e-e45e051d562a img.shogun-image {
    

    
    
    
  }


#s-de95a694-6f98-43ef-a69e-e45e051d562a .shogun-image-content {
  
    align-items: center;
  
}

#s-290ef922-b7da-4375-aa16-526b9f8b1987 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-290ef922-b7da-4375-aa16-526b9f8b1987 .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-5caa98ae-ac71-478a-ba96-53667108224a {
  text-align: center;
}







  #s-5caa98ae-ac71-478a-ba96-53667108224a img.shogun-image {
    

    
    
    
  }


#s-5caa98ae-ac71-478a-ba96-53667108224a .shogun-image-content {
  
    align-items: center;
  
}

#s-447b0226-fcbe-4b70-9e2d-c2b51b038e12 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-447b0226-fcbe-4b70-9e2d-c2b51b038e12 .shogun-heading-component h1 {
  color: rgba(194, 133, 105, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



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