.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-89f5dde0-710d-429b-9aad-7f134f20bf87 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-89f5dde0-710d-429b-9aad-7f134f20bf87 {
  display: none;
}
#s-89f5dde0-710d-429b-9aad-7f134f20bf87, #wrap-s-89f5dde0-710d-429b-9aad-7f134f20bf87 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-89f5dde0-710d-429b-9aad-7f134f20bf87 {
  display: none;
}
#s-89f5dde0-710d-429b-9aad-7f134f20bf87, #wrap-s-89f5dde0-710d-429b-9aad-7f134f20bf87 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-89f5dde0-710d-429b-9aad-7f134f20bf87 {
  display: none;
}
#s-89f5dde0-710d-429b-9aad-7f134f20bf87, #wrap-s-89f5dde0-710d-429b-9aad-7f134f20bf87 { display:none !important; }}@media (max-width: 767px){#s-89f5dde0-710d-429b-9aad-7f134f20bf87 {
  display: none;
}
#s-89f5dde0-710d-429b-9aad-7f134f20bf87, #wrap-s-89f5dde0-710d-429b-9aad-7f134f20bf87 { display:none !important; }}







#s-89f5dde0-710d-429b-9aad-7f134f20bf87 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-89f5dde0-710d-429b-9aad-7f134f20bf87.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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;
}
#s-c97e5000-8a1b-4fc6-936d-4d2c5a1f1416 {
  text-align: center;
}







  #s-c97e5000-8a1b-4fc6-936d-4d2c5a1f1416 img.shogun-image {
    

    
    
    
  }


#s-c97e5000-8a1b-4fc6-936d-4d2c5a1f1416 .shogun-image-content {
  
    align-items: 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-b1d1c613-f166-40de-a0bf-b6391fc6409f {
  margin-left: 2%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-b1d1c613-f166-40de-a0bf-b6391fc6409f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-b1d1c613-f166-40de-a0bf-b6391fc6409f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b1d1c613-f166-40de-a0bf-b6391fc6409f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b1d1c613-f166-40de-a0bf-b6391fc6409f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #000000;
  font-family: Europa;
  text-transform: none;
  font-weight: 400;
  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-a032fcd3-7dab-454a-8373-7356dafa637d {
  margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a032fcd3-7dab-454a-8373-7356dafa637d .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  letter-spacing: 3px;
  
}



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

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

.shg-btn-text {
  font-weight: 400;
  font-family: Europa;
}

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

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

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

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

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

#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5 {
  margin-top: 10px;
margin-bottom: 25px;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-radius: 2px;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
  #s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5-root {
    text-align: center;
  }


#s-e554fff5-c7f0-47f5-8b67-e49b08e8cde5.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}

#s-60a863f6-87b0-48a1-a940-b1285ac589ae {
  margin-top: -60px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-60a863f6-87b0-48a1-a940-b1285ac589ae {
  margin-top: -6%;
margin-left: -15%;
margin-right: -11%;
}
}@media (max-width: 767px){#s-60a863f6-87b0-48a1-a940-b1285ac589ae {
  display: none;
}
#s-60a863f6-87b0-48a1-a940-b1285ac589ae, #wrap-s-60a863f6-87b0-48a1-a940-b1285ac589ae { display:none !important; }}







#s-60a863f6-87b0-48a1-a940-b1285ac589ae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-60a863f6-87b0-48a1-a940-b1285ac589ae.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-e817dd40-0be9-4f9c-a315-3285e68a54f6 {
  text-align: center;
}







  img.s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shogun-image {
    
    
  }


.s-e817dd40-0be9-4f9c-a315-3285e68a54f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shg-align-container {
  text-align: center
}

.s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shogun-image {
    
    
  }


.s-e817dd40-0be9-4f9c-a315-3285e68a54f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shg-align-container {
  text-align: center
}

.s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shogun-image {
    
    
  }


.s-e817dd40-0be9-4f9c-a315-3285e68a54f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shg-align-container {
  text-align: center
}

.s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shogun-image {
    
    
  }


.s-e817dd40-0be9-4f9c-a315-3285e68a54f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shg-align-container {
  text-align: center
}

.s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shogun-image {
    
    
  }


.s-e817dd40-0be9-4f9c-a315-3285e68a54f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shg-align-container {
  text-align: center
}

.s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e817dd40-0be9-4f9c-a315-3285e68a54f6.shogun-image {
  box-sizing: border-box;
}


}
#s-0cd5dcb9-009a-4025-a352-0260f3edc06e {
  margin-top: -50px;
margin-bottom: 0px;
min-height: 50px;
}
@media (min-width: 1200px){#s-0cd5dcb9-009a-4025-a352-0260f3edc06e {
  display: none;
}
#s-0cd5dcb9-009a-4025-a352-0260f3edc06e, #wrap-s-0cd5dcb9-009a-4025-a352-0260f3edc06e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0cd5dcb9-009a-4025-a352-0260f3edc06e {
  display: none;
}
#s-0cd5dcb9-009a-4025-a352-0260f3edc06e, #wrap-s-0cd5dcb9-009a-4025-a352-0260f3edc06e { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0cd5dcb9-009a-4025-a352-0260f3edc06e {
  display: none;
}
#s-0cd5dcb9-009a-4025-a352-0260f3edc06e, #wrap-s-0cd5dcb9-009a-4025-a352-0260f3edc06e { display:none !important; }}@media (max-width: 767px){#s-0cd5dcb9-009a-4025-a352-0260f3edc06e {
  
}
}







#s-0cd5dcb9-009a-4025-a352-0260f3edc06e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0cd5dcb9-009a-4025-a352-0260f3edc06e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-425d5ced-b6c2-4085-9a43-9da536c31e18 {
  text-align: center;
}







  img.s-425d5ced-b6c2-4085-9a43-9da536c31e18.shogun-image {
    
    
  }


.s-425d5ced-b6c2-4085-9a43-9da536c31e18 .shogun-image-content {
  
    align-items: center;
  
}

.s-425d5ced-b6c2-4085-9a43-9da536c31e18.shg-align-container {
  text-align: center
}

.s-425d5ced-b6c2-4085-9a43-9da536c31e18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-425d5ced-b6c2-4085-9a43-9da536c31e18.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-425d5ced-b6c2-4085-9a43-9da536c31e18.shogun-image {
    
    
  }


.s-425d5ced-b6c2-4085-9a43-9da536c31e18 .shogun-image-content {
  
    align-items: center;
  
}

.s-425d5ced-b6c2-4085-9a43-9da536c31e18.shg-align-container {
  text-align: center
}

.s-425d5ced-b6c2-4085-9a43-9da536c31e18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-425d5ced-b6c2-4085-9a43-9da536c31e18.shogun-image {
  box-sizing: border-box;
}


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





  img.s-425d5ced-b6c2-4085-9a43-9da536c31e18.shogun-image {
    
    
  }


.s-425d5ced-b6c2-4085-9a43-9da536c31e18 .shogun-image-content {
  
    align-items: center;
  
}

.s-425d5ced-b6c2-4085-9a43-9da536c31e18.shg-align-container {
  text-align: center
}

.s-425d5ced-b6c2-4085-9a43-9da536c31e18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-425d5ced-b6c2-4085-9a43-9da536c31e18.shogun-image {
  box-sizing: border-box;
}


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





  img.s-425d5ced-b6c2-4085-9a43-9da536c31e18.shogun-image {
    
    
  }


.s-425d5ced-b6c2-4085-9a43-9da536c31e18 .shogun-image-content {
  
    align-items: center;
  
}

.s-425d5ced-b6c2-4085-9a43-9da536c31e18.shg-align-container {
  text-align: center
}

.s-425d5ced-b6c2-4085-9a43-9da536c31e18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-425d5ced-b6c2-4085-9a43-9da536c31e18.shogun-image {
  box-sizing: border-box;
}


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





  img.s-425d5ced-b6c2-4085-9a43-9da536c31e18.shogun-image {
    
    
  }


.s-425d5ced-b6c2-4085-9a43-9da536c31e18 .shogun-image-content {
  
    align-items: center;
  
}

.s-425d5ced-b6c2-4085-9a43-9da536c31e18.shg-align-container {
  text-align: center
}

.s-425d5ced-b6c2-4085-9a43-9da536c31e18.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-425d5ced-b6c2-4085-9a43-9da536c31e18.shogun-image {
  box-sizing: border-box;
}


}
#s-88b2c8a1-64e1-4358-aa0e-d8c0361a22bc {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-88b2c8a1-64e1-4358-aa0e-d8c0361a22bc {
  
}
}@media (max-width: 767px){#s-88b2c8a1-64e1-4358-aa0e-d8c0361a22bc {
  display: none;
}
#s-88b2c8a1-64e1-4358-aa0e-d8c0361a22bc, #wrap-s-88b2c8a1-64e1-4358-aa0e-d8c0361a22bc { display:none !important; }}







#s-88b2c8a1-64e1-4358-aa0e-d8c0361a22bc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-88b2c8a1-64e1-4358-aa0e-d8c0361a22bc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-825a9f02-afcb-4001-a7ee-02f099013a37 {
  margin-top: 2%;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-825a9f02-afcb-4001-a7ee-02f099013a37 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  letter-spacing: 4px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-825a9f02-afcb-4001-a7ee-02f099013a37 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 4px;
  
}


}
#s-bb9070ec-d961-4152-8057-8ac4d4feeec7 {
  margin-top: 0%;
margin-bottom: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bb9070ec-d961-4152-8057-8ac4d4feeec7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 45px;
  
  letter-spacing: 4px;
  
}


@media (min-width: 768px) and (max-width: 991px){#s-bb9070ec-d961-4152-8057-8ac4d4feeec7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 42px;
  
  letter-spacing: 4px;
  
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-fcde2671-d0be-4166-802b-f7ca3cd9c2e9 {
  margin-top: 2%;
margin-left: 10%;
margin-bottom: 0%;
margin-right: 10%;
}

#s-70f60407-9447-449c-a15f-c1d75a5a74ab {
  margin-top: 0%;
margin-left: 20%;
margin-bottom: 0%;
margin-right: 20%;
}
@media (min-width: 992px) and (max-width: 1199px){#s-70f60407-9447-449c-a15f-c1d75a5a74ab {
  margin-left: 10%;
margin-right: 10%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-70f60407-9447-449c-a15f-c1d75a5a74ab {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-70f60407-9447-449c-a15f-c1d75a5a74ab {
  display: none;
}
#s-70f60407-9447-449c-a15f-c1d75a5a74ab, #wrap-s-70f60407-9447-449c-a15f-c1d75a5a74ab { display:none !important; }}
#s-9979b9ca-bad1-4aec-842e-d56c09711729 {
  margin-top: 2%;
margin-left: 25%;
margin-bottom: 2%;
margin-right: 25%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9979b9ca-bad1-4aec-842e-d56c09711729 {
  margin-left: 15%;
margin-right: 15%;
}
}@media (max-width: 767px){#s-9979b9ca-bad1-4aec-842e-d56c09711729 {
  margin-left: 10%;
margin-right: 10%;
}
}







#s-9979b9ca-bad1-4aec-842e-d56c09711729 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9979b9ca-bad1-4aec-842e-d56c09711729.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1653474b-ed8f-4aeb-9d51-52847b3bfe9f {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-1653474b-ed8f-4aeb-9d51-52847b3bfe9f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1653474b-ed8f-4aeb-9d51-52847b3bfe9f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-1653474b-ed8f-4aeb-9d51-52847b3bfe9f-root {
    text-align: center;
  }


#s-1653474b-ed8f-4aeb-9d51-52847b3bfe9f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-1653474b-ed8f-4aeb-9d51-52847b3bfe9f-root {
    text-align: center;
  }


#s-1653474b-ed8f-4aeb-9d51-52847b3bfe9f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1653474b-ed8f-4aeb-9d51-52847b3bfe9f-root {
    text-align: center;
  }


#s-1653474b-ed8f-4aeb-9d51-52847b3bfe9f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1653474b-ed8f-4aeb-9d51-52847b3bfe9f-root {
    text-align: center;
  }


#s-1653474b-ed8f-4aeb-9d51-52847b3bfe9f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-1653474b-ed8f-4aeb-9d51-52847b3bfe9f-root {
    text-align: center;
  }


#s-1653474b-ed8f-4aeb-9d51-52847b3bfe9f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-1653474b-ed8f-4aeb-9d51-52847b3bfe9f-root {
    text-align: center;
  }


#s-1653474b-ed8f-4aeb-9d51-52847b3bfe9f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-65614899-fc42-4f1a-8c0b-90aa6a811753 {
  margin-top: 7%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-65614899-fc42-4f1a-8c0b-90aa6a811753 {
  display: none;
}
#s-65614899-fc42-4f1a-8c0b-90aa6a811753, #wrap-s-65614899-fc42-4f1a-8c0b-90aa6a811753 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-65614899-fc42-4f1a-8c0b-90aa6a811753 {
  display: none;
}
#s-65614899-fc42-4f1a-8c0b-90aa6a811753, #wrap-s-65614899-fc42-4f1a-8c0b-90aa6a811753 { display:none !important; }}
#s-65614899-fc42-4f1a-8c0b-90aa6a811753 .shogun-heading-component h5 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  letter-spacing: 3px;
  
}



#s-0b33b520-250d-481f-8d44-66f1d274f959 {
  margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-0b33b520-250d-481f-8d44-66f1d274f959 {
  display: none;
}
#s-0b33b520-250d-481f-8d44-66f1d274f959, #wrap-s-0b33b520-250d-481f-8d44-66f1d274f959 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0b33b520-250d-481f-8d44-66f1d274f959 {
  display: none;
}
#s-0b33b520-250d-481f-8d44-66f1d274f959, #wrap-s-0b33b520-250d-481f-8d44-66f1d274f959 { display:none !important; }}







#s-0b33b520-250d-481f-8d44-66f1d274f959 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0b33b520-250d-481f-8d44-66f1d274f959.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-54158d56-d61f-4b5b-a155-2a3741d09510 {
  margin-top: 0%;
padding-top: 5px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-54158d56-d61f-4b5b-a155-2a3741d09510 {
  display: none;
}
#s-54158d56-d61f-4b5b-a155-2a3741d09510, #wrap-s-54158d56-d61f-4b5b-a155-2a3741d09510 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-54158d56-d61f-4b5b-a155-2a3741d09510 {
  display: none;
}
#s-54158d56-d61f-4b5b-a155-2a3741d09510, #wrap-s-54158d56-d61f-4b5b-a155-2a3741d09510 { display:none !important; }}
#s-54158d56-d61f-4b5b-a155-2a3741d09510 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  
  letter-spacing: 3px;
  
}



#s-fc2e5e30-4ef9-4de2-8c5a-b62d7673cabf {
  margin-top: 3%;
margin-left: 1%;
margin-bottom: -1%;
margin-right: 1%;
}

#s-3d0bb4cb-eada-4113-b444-4d912c9d2109 {
  margin-top: 0%;
margin-left: 5%;
margin-bottom: 0%;
margin-right: 5%;
}
@media (min-width: 1200px){#s-3d0bb4cb-eada-4113-b444-4d912c9d2109 {
  display: none;
}
#s-3d0bb4cb-eada-4113-b444-4d912c9d2109, #wrap-s-3d0bb4cb-eada-4113-b444-4d912c9d2109 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3d0bb4cb-eada-4113-b444-4d912c9d2109 {
  display: none;
}
#s-3d0bb4cb-eada-4113-b444-4d912c9d2109, #wrap-s-3d0bb4cb-eada-4113-b444-4d912c9d2109 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3d0bb4cb-eada-4113-b444-4d912c9d2109 {
  display: none;
}
#s-3d0bb4cb-eada-4113-b444-4d912c9d2109, #wrap-s-3d0bb4cb-eada-4113-b444-4d912c9d2109 { display:none !important; }}@media (max-width: 767px){#s-3d0bb4cb-eada-4113-b444-4d912c9d2109 {
  
}
}
#s-1b4d3824-cd90-4a6e-906e-b94ed1743828 {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
}








#s-1b4d3824-cd90-4a6e-906e-b94ed1743828 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1b4d3824-cd90-4a6e-906e-b94ed1743828.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
}
#s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08 {
  display: none;
}
#s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08, #wrap-s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08 {
  display: none;
}
#s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08, #wrap-s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08 { display:none !important; }}

  #s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08-root {
    text-align: center;
  }


#s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08-root {
    text-align: center;
  }


#s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08-root {
    text-align: center;
  }


#s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08-root {
    text-align: center;
  }


#s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08-root {
    text-align: center;
  }


#s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08-root {
    text-align: center;
  }


#s-fe6f3b51-ecbe-4b08-a87d-ce115478ae08.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-f1085c7e-aa92-4cf2-baf5-758f73bdfb4e {
  margin-top: 5%;
margin-bottom: 5%;
min-height: 50px;
background-color: rgba(243, 243, 243, 1);
}
@media (min-width: 1200px){#s-f1085c7e-aa92-4cf2-baf5-758f73bdfb4e {
  display: none;
}
#s-f1085c7e-aa92-4cf2-baf5-758f73bdfb4e, #wrap-s-f1085c7e-aa92-4cf2-baf5-758f73bdfb4e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f1085c7e-aa92-4cf2-baf5-758f73bdfb4e {
  display: none;
}
#s-f1085c7e-aa92-4cf2-baf5-758f73bdfb4e, #wrap-s-f1085c7e-aa92-4cf2-baf5-758f73bdfb4e { display:none !important; }}







#s-f1085c7e-aa92-4cf2-baf5-758f73bdfb4e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f1085c7e-aa92-4cf2-baf5-758f73bdfb4e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1674b1cc-7aab-41f3-84a2-2bbf8a10b820 {
  margin-top: 5%;
margin-left: 5%;
margin-right: 5%;
}

#s-f49bf796-45f0-4ac9-b1ce-2dc7a9e7c84d {
  min-height: 50px;
background-color: rgba(243, 243, 243, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-f49bf796-45f0-4ac9-b1ce-2dc7a9e7c84d {
  display: none;
}
#s-f49bf796-45f0-4ac9-b1ce-2dc7a9e7c84d, #wrap-s-f49bf796-45f0-4ac9-b1ce-2dc7a9e7c84d { display:none !important; }}@media (max-width: 767px){#s-f49bf796-45f0-4ac9-b1ce-2dc7a9e7c84d {
  display: none;
}
#s-f49bf796-45f0-4ac9-b1ce-2dc7a9e7c84d, #wrap-s-f49bf796-45f0-4ac9-b1ce-2dc7a9e7c84d { display:none !important; }}







#s-f49bf796-45f0-4ac9-b1ce-2dc7a9e7c84d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f49bf796-45f0-4ac9-b1ce-2dc7a9e7c84d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-77caefe9-50ad-4dd3-a3ec-e56f51772c0a {
  margin-top: 2%;
margin-left: 20%;
margin-right: 20%;
}

#s-c84ba2ad-865f-40d8-a155-e7e253fb2e89 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-c84ba2ad-865f-40d8-a155-e7e253fb2e89 {
  display: none;
}
#s-c84ba2ad-865f-40d8-a155-e7e253fb2e89, #wrap-s-c84ba2ad-865f-40d8-a155-e7e253fb2e89 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c84ba2ad-865f-40d8-a155-e7e253fb2e89 {
  display: none;
}
#s-c84ba2ad-865f-40d8-a155-e7e253fb2e89, #wrap-s-c84ba2ad-865f-40d8-a155-e7e253fb2e89 { display:none !important; }}







#s-c84ba2ad-865f-40d8-a155-e7e253fb2e89 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c84ba2ad-865f-40d8-a155-e7e253fb2e89.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a8583b43-e260-443a-96ae-197f4bcd4710 {
  text-align: center;
}







  img.s-a8583b43-e260-443a-96ae-197f4bcd4710.shogun-image {
    
    
  }


.s-a8583b43-e260-443a-96ae-197f4bcd4710 .shogun-image-content {
  
    align-items: center;
  
}

.s-a8583b43-e260-443a-96ae-197f4bcd4710.shg-align-container {
  text-align: center
}

.s-a8583b43-e260-443a-96ae-197f4bcd4710.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8583b43-e260-443a-96ae-197f4bcd4710.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-a8583b43-e260-443a-96ae-197f4bcd4710.shogun-image {
    
    
  }


.s-a8583b43-e260-443a-96ae-197f4bcd4710 .shogun-image-content {
  
    align-items: center;
  
}

.s-a8583b43-e260-443a-96ae-197f4bcd4710.shg-align-container {
  text-align: center
}

.s-a8583b43-e260-443a-96ae-197f4bcd4710.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8583b43-e260-443a-96ae-197f4bcd4710.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a8583b43-e260-443a-96ae-197f4bcd4710.shogun-image {
    
    
  }


.s-a8583b43-e260-443a-96ae-197f4bcd4710 .shogun-image-content {
  
    align-items: center;
  
}

.s-a8583b43-e260-443a-96ae-197f4bcd4710.shg-align-container {
  text-align: center
}

.s-a8583b43-e260-443a-96ae-197f4bcd4710.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8583b43-e260-443a-96ae-197f4bcd4710.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a8583b43-e260-443a-96ae-197f4bcd4710.shogun-image {
    
    
  }


.s-a8583b43-e260-443a-96ae-197f4bcd4710 .shogun-image-content {
  
    align-items: center;
  
}

.s-a8583b43-e260-443a-96ae-197f4bcd4710.shg-align-container {
  text-align: center
}

.s-a8583b43-e260-443a-96ae-197f4bcd4710.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8583b43-e260-443a-96ae-197f4bcd4710.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a8583b43-e260-443a-96ae-197f4bcd4710.shogun-image {
    
    
  }


.s-a8583b43-e260-443a-96ae-197f4bcd4710 .shogun-image-content {
  
    align-items: center;
  
}

.s-a8583b43-e260-443a-96ae-197f4bcd4710.shg-align-container {
  text-align: center
}

.s-a8583b43-e260-443a-96ae-197f4bcd4710.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a8583b43-e260-443a-96ae-197f4bcd4710.shogun-image {
  box-sizing: border-box;
}


}
#s-c344274d-7019-4f6c-a8b8-5d1d0426a0ad {
  margin-top: 0%;
margin-bottom: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-c344274d-7019-4f6c-a8b8-5d1d0426a0ad {
  margin-top: 3%;
margin-bottom: 2%;
}
}@media (max-width: 767px){#s-c344274d-7019-4f6c-a8b8-5d1d0426a0ad {
  margin-top: 3%;
margin-bottom: 3%;
}
}
#s-c344274d-7019-4f6c-a8b8-5d1d0426a0ad .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 23px;
  
  letter-spacing: 2px;
  
}



#s-8e647cda-acbe-43f7-aee8-df6d06f353f3 {
  margin-top: 1%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
}

#s-986f0075-badb-4e0e-93d5-a530f00a0e20 {
  margin-top: -2%;
margin-left: 5%;
margin-bottom: 0%;
margin-right: 5%;
}

#s-5cb45ca7-a07a-48de-a721-00ab2370c165 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
}

#s-8451701b-44da-4e25-bf66-abeecfa5f6b5 {
  margin-top: -2%;
margin-left: 5%;
margin-bottom: 0%;
margin-right: 5%;
}

#s-30934b79-5fff-47d7-ae7a-0a3cbd501e83 {
  margin-top: 2%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
}

#s-36ef6387-2e08-4a42-af61-6a752b98e97a {
  margin-top: -2%;
margin-left: 5%;
margin-bottom: 5%;
margin-right: 5%;
}

#s-f8738a8a-9a4f-4e4c-8915-6e021470af22 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 5%;
padding-bottom: 5%;
min-height: 50px;
background-color: rgba(243, 243, 243, 1);
}
@media (min-width: 1200px){#s-f8738a8a-9a4f-4e4c-8915-6e021470af22 {
  display: none;
}
#s-f8738a8a-9a4f-4e4c-8915-6e021470af22, #wrap-s-f8738a8a-9a4f-4e4c-8915-6e021470af22 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f8738a8a-9a4f-4e4c-8915-6e021470af22 {
  display: none;
}
#s-f8738a8a-9a4f-4e4c-8915-6e021470af22, #wrap-s-f8738a8a-9a4f-4e4c-8915-6e021470af22 { display:none !important; }}







#s-f8738a8a-9a4f-4e4c-8915-6e021470af22 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f8738a8a-9a4f-4e4c-8915-6e021470af22.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f7f9cde9-383d-42a0-a54b-9e842a69e4a9 {
  margin-bottom: 5%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f7f9cde9-383d-42a0-a54b-9e842a69e4a9 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 23px;
  
  letter-spacing: 3px;
  text-align: center;
}



#s-3fe528a2-8328-4944-8545-12d2397adb41 {
  margin-top: 0%;
margin-left: 1%;
margin-right: 1%;
}

@media (min-width: 0px) {
[id="s-3fe528a2-8328-4944-8545-12d2397adb41"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 12.5px);
}

}

@media (min-width: 768px) {
[id="s-3fe528a2-8328-4944-8545-12d2397adb41"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 992px) {
[id="s-3fe528a2-8328-4944-8545-12d2397adb41"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 1200px) {
[id="s-3fe528a2-8328-4944-8545-12d2397adb41"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 18.75px);
}

}

#s-ce0e31eb-2234-477f-a51d-14549d5e7312 {
  margin-left: 35%;
margin-right: 35%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-ce0e31eb-2234-477f-a51d-14549d5e7312 {
  margin-left: 30%;
margin-right: 30%;
}
}






  img.s-ce0e31eb-2234-477f-a51d-14549d5e7312.shogun-image {
    
    
  }


.s-ce0e31eb-2234-477f-a51d-14549d5e7312 .shogun-image-content {
  
    align-items: center;
  
}

.s-ce0e31eb-2234-477f-a51d-14549d5e7312.shg-align-container {
  text-align: center
}

.s-ce0e31eb-2234-477f-a51d-14549d5e7312.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce0e31eb-2234-477f-a51d-14549d5e7312.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-ce0e31eb-2234-477f-a51d-14549d5e7312.shogun-image {
    
    
  }


.s-ce0e31eb-2234-477f-a51d-14549d5e7312 .shogun-image-content {
  
    align-items: center;
  
}

.s-ce0e31eb-2234-477f-a51d-14549d5e7312.shg-align-container {
  text-align: center
}

.s-ce0e31eb-2234-477f-a51d-14549d5e7312.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce0e31eb-2234-477f-a51d-14549d5e7312.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ce0e31eb-2234-477f-a51d-14549d5e7312.shogun-image {
    
    
  }


.s-ce0e31eb-2234-477f-a51d-14549d5e7312 .shogun-image-content {
  
    align-items: center;
  
}

.s-ce0e31eb-2234-477f-a51d-14549d5e7312.shg-align-container {
  text-align: center
}

.s-ce0e31eb-2234-477f-a51d-14549d5e7312.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce0e31eb-2234-477f-a51d-14549d5e7312.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ce0e31eb-2234-477f-a51d-14549d5e7312.shogun-image {
    
    
  }


.s-ce0e31eb-2234-477f-a51d-14549d5e7312 .shogun-image-content {
  
    align-items: center;
  
}

.s-ce0e31eb-2234-477f-a51d-14549d5e7312.shg-align-container {
  text-align: center
}

.s-ce0e31eb-2234-477f-a51d-14549d5e7312.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce0e31eb-2234-477f-a51d-14549d5e7312.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ce0e31eb-2234-477f-a51d-14549d5e7312.shogun-image {
    
    
  }


.s-ce0e31eb-2234-477f-a51d-14549d5e7312 .shogun-image-content {
  
    align-items: center;
  
}

.s-ce0e31eb-2234-477f-a51d-14549d5e7312.shg-align-container {
  text-align: center
}

.s-ce0e31eb-2234-477f-a51d-14549d5e7312.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce0e31eb-2234-477f-a51d-14549d5e7312.shogun-image {
  box-sizing: border-box;
}


}
#s-c5a7774b-57ea-4489-85a1-f9b05ffa91b0 {
  padding-top: 10px;
padding-bottom: 5px;
text-align: center;
}

#s-c5a7774b-57ea-4489-85a1-f9b05ffa91b0 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  
}



#s-7a782882-1dd3-4358-a32c-8c8b1573c273 {
  margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
}

#s-c36f6447-6ff4-4024-88b2-55ecb8876fa3 {
  margin-left: 35%;
margin-right: 35%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-c36f6447-6ff4-4024-88b2-55ecb8876fa3 {
  margin-left: 30%;
margin-right: 30%;
}
}






  img.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shogun-image {
    
    
  }


.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3 .shogun-image-content {
  
    align-items: center;
  
}

.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shg-align-container {
  text-align: center
}

.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shogun-image {
    
    
  }


.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3 .shogun-image-content {
  
    align-items: center;
  
}

.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shg-align-container {
  text-align: center
}

.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shogun-image {
    
    
  }


.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3 .shogun-image-content {
  
    align-items: center;
  
}

.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shg-align-container {
  text-align: center
}

.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shogun-image {
    
    
  }


.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3 .shogun-image-content {
  
    align-items: center;
  
}

.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shg-align-container {
  text-align: center
}

.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shogun-image {
    
    
  }


.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3 .shogun-image-content {
  
    align-items: center;
  
}

.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shg-align-container {
  text-align: center
}

.s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c36f6447-6ff4-4024-88b2-55ecb8876fa3.shogun-image {
  box-sizing: border-box;
}


}
#s-ff0673c9-defa-4ec0-a7e0-29e46a827cd9 {
  padding-top: 10px;
padding-bottom: 5px;
text-align: center;
}

#s-ff0673c9-defa-4ec0-a7e0-29e46a827cd9 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  
}



#s-70ad425c-6ef1-4059-a2be-2a39221523b6 {
  margin-bottom: 0px;
}

#s-6a8e5055-19e4-4dcb-8642-d982694816bf {
  margin-top: 15%;
margin-left: 33%;
margin-right: 35%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-6a8e5055-19e4-4dcb-8642-d982694816bf {
  margin-top: 0%;
margin-left: 30%;
margin-right: 29%;
}
}






  img.s-6a8e5055-19e4-4dcb-8642-d982694816bf.shogun-image {
    
    
  }


.s-6a8e5055-19e4-4dcb-8642-d982694816bf .shogun-image-content {
  
    align-items: center;
  
}

.s-6a8e5055-19e4-4dcb-8642-d982694816bf.shg-align-container {
  text-align: center
}

.s-6a8e5055-19e4-4dcb-8642-d982694816bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a8e5055-19e4-4dcb-8642-d982694816bf.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-6a8e5055-19e4-4dcb-8642-d982694816bf.shogun-image {
    
    
  }


.s-6a8e5055-19e4-4dcb-8642-d982694816bf .shogun-image-content {
  
    align-items: center;
  
}

.s-6a8e5055-19e4-4dcb-8642-d982694816bf.shg-align-container {
  text-align: center
}

.s-6a8e5055-19e4-4dcb-8642-d982694816bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a8e5055-19e4-4dcb-8642-d982694816bf.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6a8e5055-19e4-4dcb-8642-d982694816bf.shogun-image {
    
    
  }


.s-6a8e5055-19e4-4dcb-8642-d982694816bf .shogun-image-content {
  
    align-items: center;
  
}

.s-6a8e5055-19e4-4dcb-8642-d982694816bf.shg-align-container {
  text-align: center
}

.s-6a8e5055-19e4-4dcb-8642-d982694816bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a8e5055-19e4-4dcb-8642-d982694816bf.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6a8e5055-19e4-4dcb-8642-d982694816bf.shogun-image {
    
    
  }


.s-6a8e5055-19e4-4dcb-8642-d982694816bf .shogun-image-content {
  
    align-items: center;
  
}

.s-6a8e5055-19e4-4dcb-8642-d982694816bf.shg-align-container {
  text-align: center
}

.s-6a8e5055-19e4-4dcb-8642-d982694816bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a8e5055-19e4-4dcb-8642-d982694816bf.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6a8e5055-19e4-4dcb-8642-d982694816bf.shogun-image {
    
    
  }


.s-6a8e5055-19e4-4dcb-8642-d982694816bf .shogun-image-content {
  
    align-items: center;
  
}

.s-6a8e5055-19e4-4dcb-8642-d982694816bf.shg-align-container {
  text-align: center
}

.s-6a8e5055-19e4-4dcb-8642-d982694816bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a8e5055-19e4-4dcb-8642-d982694816bf.shogun-image {
  box-sizing: border-box;
}


}
#s-ee1d769a-3fc4-4768-b0ee-de0870210447 {
  padding-top: 10px;
padding-bottom: 5px;
text-align: center;
}

#s-ee1d769a-3fc4-4768-b0ee-de0870210447 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  
}



#s-21d460d6-09d1-4b8b-a7a2-88c8a61b27b1 {
  margin-bottom: 0px;
}

#s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa {
  margin-top: 15%;
margin-left: 33%;
margin-right: 35%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa {
  margin-top: 0%;
margin-left: 30%;
margin-right: 29%;
}
}






  img.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shogun-image {
    
    
  }


.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa .shogun-image-content {
  
    align-items: center;
  
}

.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shg-align-container {
  text-align: center
}

.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shogun-image {
    
    
  }


.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa .shogun-image-content {
  
    align-items: center;
  
}

.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shg-align-container {
  text-align: center
}

.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shogun-image {
  box-sizing: border-box;
}


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





  img.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shogun-image {
    
    
  }


.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa .shogun-image-content {
  
    align-items: center;
  
}

.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shg-align-container {
  text-align: center
}

.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shogun-image {
  box-sizing: border-box;
}


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





  img.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shogun-image {
    
    
  }


.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa .shogun-image-content {
  
    align-items: center;
  
}

.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shg-align-container {
  text-align: center
}

.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shogun-image {
  box-sizing: border-box;
}


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





  img.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shogun-image {
    
    
  }


.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa .shogun-image-content {
  
    align-items: center;
  
}

.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shg-align-container {
  text-align: center
}

.s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50dbdfa9-eb11-407b-b11b-cbc1d363daaa.shogun-image {
  box-sizing: border-box;
}


}
#s-b8379c10-cdc0-41cd-a9d1-8066d7a85acb {
  padding-top: 10px;
padding-bottom: 5px;
text-align: center;
}

#s-b8379c10-cdc0-41cd-a9d1-8066d7a85acb .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  
}



#s-6a35edd5-a70a-43c4-8c57-ac73c0234f8a {
  margin-bottom: 0px;
}

#s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4 {
  margin-top: 5%;
margin-left: 42%;
margin-right: 42%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4 {
  margin-left: 45%;
margin-right: 45%;
}
}






  img.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shogun-image {
    
    
  }


.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4 .shogun-image-content {
  
    align-items: center;
  
}

.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shg-align-container {
  text-align: center
}

.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shogun-image {
    
    
  }


.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4 .shogun-image-content {
  
    align-items: center;
  
}

.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shg-align-container {
  text-align: center
}

.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shogun-image {
    
    
  }


.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4 .shogun-image-content {
  
    align-items: center;
  
}

.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shg-align-container {
  text-align: center
}

.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shogun-image {
    
    
  }


.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4 .shogun-image-content {
  
    align-items: center;
  
}

.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shg-align-container {
  text-align: center
}

.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shogun-image {
    
    
  }


.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4 .shogun-image-content {
  
    align-items: center;
  
}

.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shg-align-container {
  text-align: center
}

.s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d24f9eb9-a95d-4fd2-b73d-0e37aa15fab4.shogun-image {
  box-sizing: border-box;
}


}
#s-c6d02411-8d59-438a-a4b2-33fce45222ef {
  padding-top: 10px;
padding-bottom: 5px;
text-align: center;
}

#s-c6d02411-8d59-438a-a4b2-33fce45222ef .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  
}



#s-8c2c7f9e-910c-4c6d-805f-9706fa1e0efe {
  margin-bottom: 5%;
}

#s-4cc19994-d3c2-4361-b8be-c2301597aca6 {
  margin-top: 5%;
margin-left: 2px;
margin-bottom: 0%;
margin-right: 2px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-4cc19994-d3c2-4361-b8be-c2301597aca6 {
  display: none;
}
#s-4cc19994-d3c2-4361-b8be-c2301597aca6, #wrap-s-4cc19994-d3c2-4361-b8be-c2301597aca6 { display:none !important; }}@media (max-width: 767px){#s-4cc19994-d3c2-4361-b8be-c2301597aca6 {
  display: none;
}
#s-4cc19994-d3c2-4361-b8be-c2301597aca6, #wrap-s-4cc19994-d3c2-4361-b8be-c2301597aca6 { display:none !important; }}







#s-4cc19994-d3c2-4361-b8be-c2301597aca6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4cc19994-d3c2-4361-b8be-c2301597aca6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0617cb4c-40fc-40f5-a0df-040c787dd724 {
  margin-top: 0px;
margin-left: 0%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-0617cb4c-40fc-40f5-a0df-040c787dd724"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0617cb4c-40fc-40f5-a0df-040c787dd724"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-0617cb4c-40fc-40f5-a0df-040c787dd724"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0617cb4c-40fc-40f5-a0df-040c787dd724"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-0617cb4c-40fc-40f5-a0df-040c787dd724"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0617cb4c-40fc-40f5-a0df-040c787dd724"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-0617cb4c-40fc-40f5-a0df-040c787dd724"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

#s-dc521818-e8a5-49ea-886f-3f06976861d3 {
  margin-left: 0%;
margin-right: 0%;
text-align: center;
}







  img.s-dc521818-e8a5-49ea-886f-3f06976861d3.shogun-image {
    
    
  }


.s-dc521818-e8a5-49ea-886f-3f06976861d3 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc521818-e8a5-49ea-886f-3f06976861d3.shg-align-container {
  text-align: center
}

.s-dc521818-e8a5-49ea-886f-3f06976861d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc521818-e8a5-49ea-886f-3f06976861d3.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-dc521818-e8a5-49ea-886f-3f06976861d3.shogun-image {
    
    
  }


.s-dc521818-e8a5-49ea-886f-3f06976861d3 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc521818-e8a5-49ea-886f-3f06976861d3.shg-align-container {
  text-align: center
}

.s-dc521818-e8a5-49ea-886f-3f06976861d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc521818-e8a5-49ea-886f-3f06976861d3.shogun-image {
  box-sizing: border-box;
}


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





  img.s-dc521818-e8a5-49ea-886f-3f06976861d3.shogun-image {
    
    
  }


.s-dc521818-e8a5-49ea-886f-3f06976861d3 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc521818-e8a5-49ea-886f-3f06976861d3.shg-align-container {
  text-align: center
}

.s-dc521818-e8a5-49ea-886f-3f06976861d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc521818-e8a5-49ea-886f-3f06976861d3.shogun-image {
  box-sizing: border-box;
}


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





  img.s-dc521818-e8a5-49ea-886f-3f06976861d3.shogun-image {
    
    
  }


.s-dc521818-e8a5-49ea-886f-3f06976861d3 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc521818-e8a5-49ea-886f-3f06976861d3.shg-align-container {
  text-align: center
}

.s-dc521818-e8a5-49ea-886f-3f06976861d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc521818-e8a5-49ea-886f-3f06976861d3.shogun-image {
  box-sizing: border-box;
}


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





  img.s-dc521818-e8a5-49ea-886f-3f06976861d3.shogun-image {
    
    
  }


.s-dc521818-e8a5-49ea-886f-3f06976861d3 .shogun-image-content {
  
    align-items: center;
  
}

.s-dc521818-e8a5-49ea-886f-3f06976861d3.shg-align-container {
  text-align: center
}

.s-dc521818-e8a5-49ea-886f-3f06976861d3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dc521818-e8a5-49ea-886f-3f06976861d3.shogun-image {
  box-sizing: border-box;
}


}
#s-2385fd50-f461-444e-a553-8d73f0238bd7 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-2385fd50-f461-444e-a553-8d73f0238bd7 {
  margin-top: 10%;
}
}
#s-2385fd50-f461-444e-a553-8d73f0238bd7 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  
  letter-spacing: 3px;
  text-align: left;
}



#s-2510647f-2eba-47f9-8e7e-f9842053263f {
  margin-top: 13%;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
}
@media (min-width: 992px) and (max-width: 1199px){#s-2510647f-2eba-47f9-8e7e-f9842053263f {
  margin-top: 7%;
}
}
#s-bfd6c371-0936-4388-afc9-2b9fcf532e92 {
  margin-top: 13%;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
}
@media (min-width: 992px) and (max-width: 1199px){#s-bfd6c371-0936-4388-afc9-2b9fcf532e92 {
  margin-top: 7%;
}
}
#s-9ff80441-c969-40b0-903a-f9bc8a654170 {
  margin-top: 13%;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
}
@media (min-width: 992px) and (max-width: 1199px){#s-9ff80441-c969-40b0-903a-f9bc8a654170 {
  margin-top: 7%;
margin-right: 0%;
}
}
#s-b3fafe4f-6616-4967-bf03-4203fb0a71b7 {
  margin-top: 2px;
margin-left: 2px;
margin-bottom: 2px;
margin-right: 2px;
padding-top: 4%;
padding-bottom: 5%;
min-height: 50px;
background-color: rgba(243, 243, 243, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-b3fafe4f-6616-4967-bf03-4203fb0a71b7 {
  display: none;
}
#s-b3fafe4f-6616-4967-bf03-4203fb0a71b7, #wrap-s-b3fafe4f-6616-4967-bf03-4203fb0a71b7 { display:none !important; }}@media (max-width: 767px){#s-b3fafe4f-6616-4967-bf03-4203fb0a71b7 {
  display: none;
}
#s-b3fafe4f-6616-4967-bf03-4203fb0a71b7, #wrap-s-b3fafe4f-6616-4967-bf03-4203fb0a71b7 { display:none !important; }}







#s-b3fafe4f-6616-4967-bf03-4203fb0a71b7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b3fafe4f-6616-4967-bf03-4203fb0a71b7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-37eac355-a595-4a82-ad68-8b1a424a90b8 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-37eac355-a595-4a82-ad68-8b1a424a90b8 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 3px;
  text-align: center;
}



#s-cac93df9-a8e4-42e1-bcad-3a8cd5f45834 {
  margin-top: 2%;
margin-left: 1%;
margin-right: 1%;
}

@media (min-width: 0px) {
[id="s-cac93df9-a8e4-42e1-bcad-3a8cd5f45834"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-cac93df9-a8e4-42e1-bcad-3a8cd5f45834"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-cac93df9-a8e4-42e1-bcad-3a8cd5f45834"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-cac93df9-a8e4-42e1-bcad-3a8cd5f45834"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

}

#s-d52cb47a-4062-48ea-b9bd-084b004306b1 {
  margin-left: 33%;
margin-right: 33%;
text-align: center;
}







  img.s-d52cb47a-4062-48ea-b9bd-084b004306b1.shogun-image {
    
    
  }


.s-d52cb47a-4062-48ea-b9bd-084b004306b1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d52cb47a-4062-48ea-b9bd-084b004306b1.shg-align-container {
  text-align: center
}

.s-d52cb47a-4062-48ea-b9bd-084b004306b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d52cb47a-4062-48ea-b9bd-084b004306b1.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-d52cb47a-4062-48ea-b9bd-084b004306b1.shogun-image {
    
    
  }


.s-d52cb47a-4062-48ea-b9bd-084b004306b1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d52cb47a-4062-48ea-b9bd-084b004306b1.shg-align-container {
  text-align: center
}

.s-d52cb47a-4062-48ea-b9bd-084b004306b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d52cb47a-4062-48ea-b9bd-084b004306b1.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d52cb47a-4062-48ea-b9bd-084b004306b1.shogun-image {
    
    
  }


.s-d52cb47a-4062-48ea-b9bd-084b004306b1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d52cb47a-4062-48ea-b9bd-084b004306b1.shg-align-container {
  text-align: center
}

.s-d52cb47a-4062-48ea-b9bd-084b004306b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d52cb47a-4062-48ea-b9bd-084b004306b1.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d52cb47a-4062-48ea-b9bd-084b004306b1.shogun-image {
    
    
  }


.s-d52cb47a-4062-48ea-b9bd-084b004306b1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d52cb47a-4062-48ea-b9bd-084b004306b1.shg-align-container {
  text-align: center
}

.s-d52cb47a-4062-48ea-b9bd-084b004306b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d52cb47a-4062-48ea-b9bd-084b004306b1.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d52cb47a-4062-48ea-b9bd-084b004306b1.shogun-image {
    
    
  }


.s-d52cb47a-4062-48ea-b9bd-084b004306b1 .shogun-image-content {
  
    align-items: center;
  
}

.s-d52cb47a-4062-48ea-b9bd-084b004306b1.shg-align-container {
  text-align: center
}

.s-d52cb47a-4062-48ea-b9bd-084b004306b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d52cb47a-4062-48ea-b9bd-084b004306b1.shogun-image {
  box-sizing: border-box;
}


}
#s-975b5df5-198d-471a-b09a-1a0452b20495 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-975b5df5-198d-471a-b09a-1a0452b20495 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  
}



#s-68ef6d4c-5a03-4c78-ae36-02d735cbe902 {
  margin-bottom: 0px;
}

#s-8cab9193-bc8e-45d9-8370-91f03f6bef01 {
  margin-left: 33%;
margin-right: 33%;
text-align: center;
}







  img.s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shogun-image {
    
    
  }


.s-8cab9193-bc8e-45d9-8370-91f03f6bef01 .shogun-image-content {
  
    align-items: center;
  
}

.s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shg-align-container {
  text-align: center
}

.s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shogun-image {
    
    
  }


.s-8cab9193-bc8e-45d9-8370-91f03f6bef01 .shogun-image-content {
  
    align-items: center;
  
}

.s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shg-align-container {
  text-align: center
}

.s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shogun-image {
    
    
  }


.s-8cab9193-bc8e-45d9-8370-91f03f6bef01 .shogun-image-content {
  
    align-items: center;
  
}

.s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shg-align-container {
  text-align: center
}

.s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shogun-image {
    
    
  }


.s-8cab9193-bc8e-45d9-8370-91f03f6bef01 .shogun-image-content {
  
    align-items: center;
  
}

.s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shg-align-container {
  text-align: center
}

.s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shogun-image {
    
    
  }


.s-8cab9193-bc8e-45d9-8370-91f03f6bef01 .shogun-image-content {
  
    align-items: center;
  
}

.s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shg-align-container {
  text-align: center
}

.s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8cab9193-bc8e-45d9-8370-91f03f6bef01.shogun-image {
  box-sizing: border-box;
}


}
#s-8837b4a7-bcde-458b-b57b-20e8819b900f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8837b4a7-bcde-458b-b57b-20e8819b900f .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  
}



#s-e2f08016-92ea-46c7-b56e-b510690c62dd {
  margin-bottom: 0px;
}

#s-1c775d6b-645b-40a9-b912-a9aef0aee59f {
  margin-left: 33%;
margin-right: 33%;
text-align: center;
}







  img.s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shogun-image {
    
    
  }


.s-1c775d6b-645b-40a9-b912-a9aef0aee59f .shogun-image-content {
  
    align-items: center;
  
}

.s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shg-align-container {
  text-align: center
}

.s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shogun-image {
    
    
  }


.s-1c775d6b-645b-40a9-b912-a9aef0aee59f .shogun-image-content {
  
    align-items: center;
  
}

.s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shg-align-container {
  text-align: center
}

.s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shogun-image {
    
    
  }


.s-1c775d6b-645b-40a9-b912-a9aef0aee59f .shogun-image-content {
  
    align-items: center;
  
}

.s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shg-align-container {
  text-align: center
}

.s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shogun-image {
    
    
  }


.s-1c775d6b-645b-40a9-b912-a9aef0aee59f .shogun-image-content {
  
    align-items: center;
  
}

.s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shg-align-container {
  text-align: center
}

.s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shogun-image {
    
    
  }


.s-1c775d6b-645b-40a9-b912-a9aef0aee59f .shogun-image-content {
  
    align-items: center;
  
}

.s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shg-align-container {
  text-align: center
}

.s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1c775d6b-645b-40a9-b912-a9aef0aee59f.shogun-image {
  box-sizing: border-box;
}


}
#s-62bc14eb-ed72-4d5f-9746-405a4c80cd06 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-62bc14eb-ed72-4d5f-9746-405a4c80cd06 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  
}



#s-3ba5a70f-5c6e-463e-9fe0-1ec5fc2770c3 {
  margin-bottom: 0px;
}

#s-705a8207-a233-4028-beef-5dae36ba3452 {
  margin-left: 33%;
margin-right: 33%;
text-align: center;
}







  img.s-705a8207-a233-4028-beef-5dae36ba3452.shogun-image {
    
    
  }


.s-705a8207-a233-4028-beef-5dae36ba3452 .shogun-image-content {
  
    align-items: center;
  
}

.s-705a8207-a233-4028-beef-5dae36ba3452.shg-align-container {
  text-align: center
}

.s-705a8207-a233-4028-beef-5dae36ba3452.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-705a8207-a233-4028-beef-5dae36ba3452.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-705a8207-a233-4028-beef-5dae36ba3452.shogun-image {
    
    
  }


.s-705a8207-a233-4028-beef-5dae36ba3452 .shogun-image-content {
  
    align-items: center;
  
}

.s-705a8207-a233-4028-beef-5dae36ba3452.shg-align-container {
  text-align: center
}

.s-705a8207-a233-4028-beef-5dae36ba3452.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-705a8207-a233-4028-beef-5dae36ba3452.shogun-image {
  box-sizing: border-box;
}


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





  img.s-705a8207-a233-4028-beef-5dae36ba3452.shogun-image {
    
    
  }


.s-705a8207-a233-4028-beef-5dae36ba3452 .shogun-image-content {
  
    align-items: center;
  
}

.s-705a8207-a233-4028-beef-5dae36ba3452.shg-align-container {
  text-align: center
}

.s-705a8207-a233-4028-beef-5dae36ba3452.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-705a8207-a233-4028-beef-5dae36ba3452.shogun-image {
  box-sizing: border-box;
}


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





  img.s-705a8207-a233-4028-beef-5dae36ba3452.shogun-image {
    
    
  }


.s-705a8207-a233-4028-beef-5dae36ba3452 .shogun-image-content {
  
    align-items: center;
  
}

.s-705a8207-a233-4028-beef-5dae36ba3452.shg-align-container {
  text-align: center
}

.s-705a8207-a233-4028-beef-5dae36ba3452.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-705a8207-a233-4028-beef-5dae36ba3452.shogun-image {
  box-sizing: border-box;
}


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





  img.s-705a8207-a233-4028-beef-5dae36ba3452.shogun-image {
    
    
  }


.s-705a8207-a233-4028-beef-5dae36ba3452 .shogun-image-content {
  
    align-items: center;
  
}

.s-705a8207-a233-4028-beef-5dae36ba3452.shg-align-container {
  text-align: center
}

.s-705a8207-a233-4028-beef-5dae36ba3452.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-705a8207-a233-4028-beef-5dae36ba3452.shogun-image {
  box-sizing: border-box;
}


}
#s-f5e1509e-bf69-4197-b3c5-c545f5c96077 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f5e1509e-bf69-4197-b3c5-c545f5c96077 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  
}



#s-ae73b272-d17c-484a-8da9-f1c8eec4ab03 {
  margin-bottom: 0px;
}

#s-7c69303e-0f60-4393-804c-ed5748257f2f {
  margin-left: 33%;
margin-right: 33%;
text-align: center;
}







  img.s-7c69303e-0f60-4393-804c-ed5748257f2f.shogun-image {
    
    
  }


.s-7c69303e-0f60-4393-804c-ed5748257f2f .shogun-image-content {
  
    align-items: center;
  
}

.s-7c69303e-0f60-4393-804c-ed5748257f2f.shg-align-container {
  text-align: center
}

.s-7c69303e-0f60-4393-804c-ed5748257f2f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c69303e-0f60-4393-804c-ed5748257f2f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-7c69303e-0f60-4393-804c-ed5748257f2f.shogun-image {
    
    
  }


.s-7c69303e-0f60-4393-804c-ed5748257f2f .shogun-image-content {
  
    align-items: center;
  
}

.s-7c69303e-0f60-4393-804c-ed5748257f2f.shg-align-container {
  text-align: center
}

.s-7c69303e-0f60-4393-804c-ed5748257f2f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c69303e-0f60-4393-804c-ed5748257f2f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7c69303e-0f60-4393-804c-ed5748257f2f.shogun-image {
    
    
  }


.s-7c69303e-0f60-4393-804c-ed5748257f2f .shogun-image-content {
  
    align-items: center;
  
}

.s-7c69303e-0f60-4393-804c-ed5748257f2f.shg-align-container {
  text-align: center
}

.s-7c69303e-0f60-4393-804c-ed5748257f2f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c69303e-0f60-4393-804c-ed5748257f2f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7c69303e-0f60-4393-804c-ed5748257f2f.shogun-image {
    
    
  }


.s-7c69303e-0f60-4393-804c-ed5748257f2f .shogun-image-content {
  
    align-items: center;
  
}

.s-7c69303e-0f60-4393-804c-ed5748257f2f.shg-align-container {
  text-align: center
}

.s-7c69303e-0f60-4393-804c-ed5748257f2f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c69303e-0f60-4393-804c-ed5748257f2f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7c69303e-0f60-4393-804c-ed5748257f2f.shogun-image {
    
    
  }


.s-7c69303e-0f60-4393-804c-ed5748257f2f .shogun-image-content {
  
    align-items: center;
  
}

.s-7c69303e-0f60-4393-804c-ed5748257f2f.shg-align-container {
  text-align: center
}

.s-7c69303e-0f60-4393-804c-ed5748257f2f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7c69303e-0f60-4393-804c-ed5748257f2f.shogun-image {
  box-sizing: border-box;
}


}
#s-f9bae436-fea4-4fd5-8c4d-db47e431a985 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f9bae436-fea4-4fd5-8c4d-db47e431a985 .shogun-heading-component h6 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  letter-spacing: 1px;
  
}



#s-7c755c81-f3ea-4724-87ac-1cb407a02831 {
  margin-bottom: 0px;
}

#s-13370b12-2310-4729-8228-1bf989fcd81a {
  min-height: 50px;
background-color: rgba(243, 243, 243, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-13370b12-2310-4729-8228-1bf989fcd81a {
  display: none;
}
#s-13370b12-2310-4729-8228-1bf989fcd81a, #wrap-s-13370b12-2310-4729-8228-1bf989fcd81a { display:none !important; }}@media (max-width: 767px){#s-13370b12-2310-4729-8228-1bf989fcd81a {
  display: none;
}
#s-13370b12-2310-4729-8228-1bf989fcd81a, #wrap-s-13370b12-2310-4729-8228-1bf989fcd81a { display:none !important; }}







#s-13370b12-2310-4729-8228-1bf989fcd81a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-13370b12-2310-4729-8228-1bf989fcd81a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1c482d7f-4bac-4d14-90e0-30953d109edc {
  margin-top: 3%;
margin-bottom: 3%;
}

@media (min-width: 0px) {
[id="s-1c482d7f-4bac-4d14-90e0-30953d109edc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1c482d7f-4bac-4d14-90e0-30953d109edc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-1c482d7f-4bac-4d14-90e0-30953d109edc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-1c482d7f-4bac-4d14-90e0-30953d109edc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-1c482d7f-4bac-4d14-90e0-30953d109edc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-1c482d7f-4bac-4d14-90e0-30953d109edc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-1c482d7f-4bac-4d14-90e0-30953d109edc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 6.666666666666667px);
}

}

#s-51b416be-73ad-4f3b-91ab-93a600c345d1 {
  margin-top: 0%;
margin-bottom: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-51b416be-73ad-4f3b-91ab-93a600c345d1 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  
  letter-spacing: 3px;
  text-align: center;
}



#s-b626f7d8-d29d-4b0c-bf65-eff3cdf8bcc0 {
  text-align: left;
}

#s-b4d0a813-8667-4561-ac4a-fd6cb141ec43 {
  margin-left: 0%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-b4d0a813-8667-4561-ac4a-fd6cb141ec43"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-b4d0a813-8667-4561-ac4a-fd6cb141ec43"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b4d0a813-8667-4561-ac4a-fd6cb141ec43"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b4d0a813-8667-4561-ac4a-fd6cb141ec43"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-f187d243-a3de-4f9b-829b-fbd84903fac4 {
  margin-top: 10%;
margin-left: 32%;
margin-bottom: 0%;
margin-right: 34%;
text-align: center;
}







  img.s-f187d243-a3de-4f9b-829b-fbd84903fac4.shogun-image {
    
    
  }


.s-f187d243-a3de-4f9b-829b-fbd84903fac4 .shogun-image-content {
  
    align-items: center;
  
}

.s-f187d243-a3de-4f9b-829b-fbd84903fac4.shg-align-container {
  text-align: center
}

.s-f187d243-a3de-4f9b-829b-fbd84903fac4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f187d243-a3de-4f9b-829b-fbd84903fac4.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-f187d243-a3de-4f9b-829b-fbd84903fac4.shogun-image {
    
    
  }


.s-f187d243-a3de-4f9b-829b-fbd84903fac4 .shogun-image-content {
  
    align-items: center;
  
}

.s-f187d243-a3de-4f9b-829b-fbd84903fac4.shg-align-container {
  text-align: center
}

.s-f187d243-a3de-4f9b-829b-fbd84903fac4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f187d243-a3de-4f9b-829b-fbd84903fac4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f187d243-a3de-4f9b-829b-fbd84903fac4.shogun-image {
    
    
  }


.s-f187d243-a3de-4f9b-829b-fbd84903fac4 .shogun-image-content {
  
    align-items: center;
  
}

.s-f187d243-a3de-4f9b-829b-fbd84903fac4.shg-align-container {
  text-align: center
}

.s-f187d243-a3de-4f9b-829b-fbd84903fac4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f187d243-a3de-4f9b-829b-fbd84903fac4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f187d243-a3de-4f9b-829b-fbd84903fac4.shogun-image {
    
    
  }


.s-f187d243-a3de-4f9b-829b-fbd84903fac4 .shogun-image-content {
  
    align-items: center;
  
}

.s-f187d243-a3de-4f9b-829b-fbd84903fac4.shg-align-container {
  text-align: center
}

.s-f187d243-a3de-4f9b-829b-fbd84903fac4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f187d243-a3de-4f9b-829b-fbd84903fac4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f187d243-a3de-4f9b-829b-fbd84903fac4.shogun-image {
    
    
  }


.s-f187d243-a3de-4f9b-829b-fbd84903fac4 .shogun-image-content {
  
    align-items: center;
  
}

.s-f187d243-a3de-4f9b-829b-fbd84903fac4.shg-align-container {
  text-align: center
}

.s-f187d243-a3de-4f9b-829b-fbd84903fac4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f187d243-a3de-4f9b-829b-fbd84903fac4.shogun-image {
  box-sizing: border-box;
}


}
#s-bdc7227c-880c-4974-b6f6-20d291da3aa9 {
  margin-top: 5%;
margin-left: 20%;
margin-bottom: 0%;
margin-right: 20%;
text-align: center;
}







  img.s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shogun-image {
    
    
  }


.s-bdc7227c-880c-4974-b6f6-20d291da3aa9 .shogun-image-content {
  
    align-items: center;
  
}

.s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shg-align-container {
  text-align: center
}

.s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shogun-image {
    
    
  }


.s-bdc7227c-880c-4974-b6f6-20d291da3aa9 .shogun-image-content {
  
    align-items: center;
  
}

.s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shg-align-container {
  text-align: center
}

.s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shogun-image {
    
    
  }


.s-bdc7227c-880c-4974-b6f6-20d291da3aa9 .shogun-image-content {
  
    align-items: center;
  
}

.s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shg-align-container {
  text-align: center
}

.s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shogun-image {
    
    
  }


.s-bdc7227c-880c-4974-b6f6-20d291da3aa9 .shogun-image-content {
  
    align-items: center;
  
}

.s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shg-align-container {
  text-align: center
}

.s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shogun-image {
    
    
  }


.s-bdc7227c-880c-4974-b6f6-20d291da3aa9 .shogun-image-content {
  
    align-items: center;
  
}

.s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shg-align-container {
  text-align: center
}

.s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdc7227c-880c-4974-b6f6-20d291da3aa9.shogun-image {
  box-sizing: border-box;
}


}
#s-29df3df9-4897-45e9-9816-acf9aadd7a2e {
  margin-top: 5%;
margin-left: 20%;
margin-right: 20%;
text-align: center;
}







  img.s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shogun-image {
    
    
  }


.s-29df3df9-4897-45e9-9816-acf9aadd7a2e .shogun-image-content {
  
    align-items: center;
  
}

.s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shg-align-container {
  text-align: center
}

.s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shogun-image {
    
    
  }


.s-29df3df9-4897-45e9-9816-acf9aadd7a2e .shogun-image-content {
  
    align-items: center;
  
}

.s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shg-align-container {
  text-align: center
}

.s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shogun-image {
    
    
  }


.s-29df3df9-4897-45e9-9816-acf9aadd7a2e .shogun-image-content {
  
    align-items: center;
  
}

.s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shg-align-container {
  text-align: center
}

.s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shogun-image {
    
    
  }


.s-29df3df9-4897-45e9-9816-acf9aadd7a2e .shogun-image-content {
  
    align-items: center;
  
}

.s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shg-align-container {
  text-align: center
}

.s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shogun-image {
    
    
  }


.s-29df3df9-4897-45e9-9816-acf9aadd7a2e .shogun-image-content {
  
    align-items: center;
  
}

.s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shg-align-container {
  text-align: center
}

.s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29df3df9-4897-45e9-9816-acf9aadd7a2e.shogun-image {
  box-sizing: border-box;
}


}
#s-373d901a-337b-4178-ad68-afb8f40b6b26 {
  margin-top: 5%;
margin-left: 20%;
margin-right: 20%;
text-align: center;
}







  img.s-373d901a-337b-4178-ad68-afb8f40b6b26.shogun-image {
    
    
  }


.s-373d901a-337b-4178-ad68-afb8f40b6b26 .shogun-image-content {
  
    align-items: center;
  
}

.s-373d901a-337b-4178-ad68-afb8f40b6b26.shg-align-container {
  text-align: center
}

.s-373d901a-337b-4178-ad68-afb8f40b6b26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-373d901a-337b-4178-ad68-afb8f40b6b26.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-373d901a-337b-4178-ad68-afb8f40b6b26.shogun-image {
    
    
  }


.s-373d901a-337b-4178-ad68-afb8f40b6b26 .shogun-image-content {
  
    align-items: center;
  
}

.s-373d901a-337b-4178-ad68-afb8f40b6b26.shg-align-container {
  text-align: center
}

.s-373d901a-337b-4178-ad68-afb8f40b6b26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-373d901a-337b-4178-ad68-afb8f40b6b26.shogun-image {
  box-sizing: border-box;
}


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





  img.s-373d901a-337b-4178-ad68-afb8f40b6b26.shogun-image {
    
    
  }


.s-373d901a-337b-4178-ad68-afb8f40b6b26 .shogun-image-content {
  
    align-items: center;
  
}

.s-373d901a-337b-4178-ad68-afb8f40b6b26.shg-align-container {
  text-align: center
}

.s-373d901a-337b-4178-ad68-afb8f40b6b26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-373d901a-337b-4178-ad68-afb8f40b6b26.shogun-image {
  box-sizing: border-box;
}


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





  img.s-373d901a-337b-4178-ad68-afb8f40b6b26.shogun-image {
    
    
  }


.s-373d901a-337b-4178-ad68-afb8f40b6b26 .shogun-image-content {
  
    align-items: center;
  
}

.s-373d901a-337b-4178-ad68-afb8f40b6b26.shg-align-container {
  text-align: center
}

.s-373d901a-337b-4178-ad68-afb8f40b6b26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-373d901a-337b-4178-ad68-afb8f40b6b26.shogun-image {
  box-sizing: border-box;
}


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





  img.s-373d901a-337b-4178-ad68-afb8f40b6b26.shogun-image {
    
    
  }


.s-373d901a-337b-4178-ad68-afb8f40b6b26 .shogun-image-content {
  
    align-items: center;
  
}

.s-373d901a-337b-4178-ad68-afb8f40b6b26.shg-align-container {
  text-align: center
}

.s-373d901a-337b-4178-ad68-afb8f40b6b26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-373d901a-337b-4178-ad68-afb8f40b6b26.shogun-image {
  box-sizing: border-box;
}


}
#s-f50099c5-19ca-44f5-ace1-e71d8bc88dc7 {
  margin-top: 1%;
margin-left: 0%;
margin-right: 0%;
}

#s-6b5b29a1-2a4b-4813-b37b-99f92fd9f778 {
  min-height: 50px;
background-color: rgba(243, 243, 243, 0);
}
@media (min-width: 1200px){#s-6b5b29a1-2a4b-4813-b37b-99f92fd9f778 {
  display: none;
}
#s-6b5b29a1-2a4b-4813-b37b-99f92fd9f778, #wrap-s-6b5b29a1-2a4b-4813-b37b-99f92fd9f778 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6b5b29a1-2a4b-4813-b37b-99f92fd9f778 {
  display: none;
}
#s-6b5b29a1-2a4b-4813-b37b-99f92fd9f778, #wrap-s-6b5b29a1-2a4b-4813-b37b-99f92fd9f778 { display:none !important; }}







#s-6b5b29a1-2a4b-4813-b37b-99f92fd9f778 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b5b29a1-2a4b-4813-b37b-99f92fd9f778.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f807dba9-a73a-4c93-a463-c265a4744876 {
  text-align: left;
}

#s-cb6d2dca-31b6-4419-a2c1-515bbc04ff9b {
  margin-top: 3%;
margin-bottom: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cb6d2dca-31b6-4419-a2c1-515bbc04ff9b .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 23px;
  
  letter-spacing: 3px;
  text-align: center;
}



#s-f06875c5-94c5-416e-8802-d3fd443dfddc {
  margin-top: 1%;
margin-bottom: 1%;
}
@media (min-width: 768px) and (max-width: 991px){#s-f06875c5-94c5-416e-8802-d3fd443dfddc {
  margin-top: 0%;
margin-left: 10%;
margin-bottom: 0%;
margin-right: 10%;
}
}
@media (min-width: 0px) {
[id="s-f06875c5-94c5-416e-8802-d3fd443dfddc"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-f06875c5-94c5-416e-8802-d3fd443dfddc"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f06875c5-94c5-416e-8802-d3fd443dfddc"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f06875c5-94c5-416e-8802-d3fd443dfddc"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9 {
  margin-top: 11%;
margin-left: 30%;
margin-bottom: 0%;
margin-right: 30%;
text-align: center;
}







  img.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shogun-image {
    
    
  }


.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shg-align-container {
  text-align: center
}

.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shogun-image {
    
    
  }


.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shg-align-container {
  text-align: center
}

.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shogun-image {
    
    
  }


.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shg-align-container {
  text-align: center
}

.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shogun-image {
    
    
  }


.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shg-align-container {
  text-align: center
}

.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shogun-image {
    
    
  }


.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shg-align-container {
  text-align: center
}

.s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-adebcc3a-bb0f-4acb-a59f-3a40d509c9f9.shogun-image {
  box-sizing: border-box;
}


}
#s-1a60f974-211c-45f0-927b-d6ed7c7a09fb {
  margin-top: 5%;
margin-left: 14%;
margin-bottom: 0%;
margin-right: 14%;
text-align: center;
}







  img.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shogun-image {
    
    
  }


.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb .shogun-image-content {
  
    align-items: center;
  
}

.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shg-align-container {
  text-align: center
}

.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shogun-image {
    
    
  }


.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb .shogun-image-content {
  
    align-items: center;
  
}

.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shg-align-container {
  text-align: center
}

.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shogun-image {
    
    
  }


.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb .shogun-image-content {
  
    align-items: center;
  
}

.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shg-align-container {
  text-align: center
}

.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shogun-image {
    
    
  }


.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb .shogun-image-content {
  
    align-items: center;
  
}

.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shg-align-container {
  text-align: center
}

.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shogun-image {
    
    
  }


.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb .shogun-image-content {
  
    align-items: center;
  
}

.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shg-align-container {
  text-align: center
}

.s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1a60f974-211c-45f0-927b-d6ed7c7a09fb.shogun-image {
  box-sizing: border-box;
}


}
#s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c {
  margin-top: 5%;
margin-left: 13%;
margin-right: 13%;
text-align: center;
}







  img.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shogun-image {
    
    
  }


.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c .shogun-image-content {
  
    align-items: center;
  
}

.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shg-align-container {
  text-align: center
}

.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shogun-image {
    
    
  }


.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c .shogun-image-content {
  
    align-items: center;
  
}

.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shg-align-container {
  text-align: center
}

.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shogun-image {
    
    
  }


.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c .shogun-image-content {
  
    align-items: center;
  
}

.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shg-align-container {
  text-align: center
}

.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shogun-image {
    
    
  }


.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c .shogun-image-content {
  
    align-items: center;
  
}

.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shg-align-container {
  text-align: center
}

.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shogun-image {
    
    
  }


.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c .shogun-image-content {
  
    align-items: center;
  
}

.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shg-align-container {
  text-align: center
}

.s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-319c9a8e-d50a-42d6-a561-3f2b17f8aa7c.shogun-image {
  box-sizing: border-box;
}


}
#s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e {
  margin-top: 5%;
margin-left: 13%;
margin-right: 13%;
text-align: center;
}







  img.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shogun-image {
    
    
  }


.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e .shogun-image-content {
  
    align-items: center;
  
}

.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shg-align-container {
  text-align: center
}

.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shogun-image {
    
    
  }


.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e .shogun-image-content {
  
    align-items: center;
  
}

.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shg-align-container {
  text-align: center
}

.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shogun-image {
    
    
  }


.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e .shogun-image-content {
  
    align-items: center;
  
}

.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shg-align-container {
  text-align: center
}

.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shogun-image {
    
    
  }


.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e .shogun-image-content {
  
    align-items: center;
  
}

.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shg-align-container {
  text-align: center
}

.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shogun-image {
    
    
  }


.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e .shogun-image-content {
  
    align-items: center;
  
}

.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shg-align-container {
  text-align: center
}

.s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7085ba7c-1cd2-4cfc-b2cd-500bd67e062e.shogun-image {
  box-sizing: border-box;
}


}
#s-56e23c74-8450-4ae3-8b19-0cb17d09a973 {
  margin-left: 5%;
margin-right: 5%;
}

#s-52cf8427-6642-4363-bc8c-930c6277faf5 {
  margin-top: 1%;
margin-left: 5%;
margin-right: 5%;
}

#s-0f39af9c-5485-45cc-9f45-ffcbde1eb3d9 {
  margin-top: 4%;
margin-left: 2%;
margin-bottom: 6%;
margin-right: 2%;
min-height: 50px;
}
@media (min-width: 1200px){#s-0f39af9c-5485-45cc-9f45-ffcbde1eb3d9 {
  display: none;
}
#s-0f39af9c-5485-45cc-9f45-ffcbde1eb3d9, #wrap-s-0f39af9c-5485-45cc-9f45-ffcbde1eb3d9 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0f39af9c-5485-45cc-9f45-ffcbde1eb3d9 {
  display: none;
}
#s-0f39af9c-5485-45cc-9f45-ffcbde1eb3d9, #wrap-s-0f39af9c-5485-45cc-9f45-ffcbde1eb3d9 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0f39af9c-5485-45cc-9f45-ffcbde1eb3d9 {
  
}
}@media (max-width: 767px){#s-0f39af9c-5485-45cc-9f45-ffcbde1eb3d9 {
  
}
}







#s-0f39af9c-5485-45cc-9f45-ffcbde1eb3d9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0f39af9c-5485-45cc-9f45-ffcbde1eb3d9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-800d8655-9004-4a4b-8161-43d2b3ce23be {
  margin-top: 0%;
margin-bottom: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-800d8655-9004-4a4b-8161-43d2b3ce23be .shogun-heading-component h6 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  letter-spacing: 3px;
  
}



#s-b74f7868-ad59-4ded-93a1-c9fff1aa839e {
  margin-top: 0%;
margin-bottom: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b74f7868-ad59-4ded-93a1-c9fff1aa839e .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 23px;
  
  letter-spacing: 3px;
  
}



@media (min-width: 0px) {
[id="s-01c1e343-4919-4f1e-9f4f-d22a9e1ae973"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-01c1e343-4919-4f1e-9f4f-d22a9e1ae973"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-01c1e343-4919-4f1e-9f4f-d22a9e1ae973"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-01c1e343-4919-4f1e-9f4f-d22a9e1ae973"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074 {
  text-align: center;
}







  img.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shogun-image {
    
    
  }


.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074 .shogun-image-content {
  
    align-items: center;
  
}

.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shg-align-container {
  text-align: center
}

.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shogun-image {
    
    
  }


.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074 .shogun-image-content {
  
    align-items: center;
  
}

.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shg-align-container {
  text-align: center
}

.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shogun-image {
  box-sizing: border-box;
}


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





  img.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shogun-image {
    
    
  }


.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074 .shogun-image-content {
  
    align-items: center;
  
}

.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shg-align-container {
  text-align: center
}

.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shogun-image {
  box-sizing: border-box;
}


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





  img.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shogun-image {
    
    
  }


.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074 .shogun-image-content {
  
    align-items: center;
  
}

.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shg-align-container {
  text-align: center
}

.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shogun-image {
  box-sizing: border-box;
}


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





  img.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shogun-image {
    
    
  }


.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074 .shogun-image-content {
  
    align-items: center;
  
}

.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shg-align-container {
  text-align: center
}

.s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70eb8f2b-bbf8-49d2-a8aa-ac2ac1e18074.shogun-image {
  box-sizing: border-box;
}


}
#s-ddf91b99-41fb-4498-84a5-84ca7e98187d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ddf91b99-41fb-4498-84a5-84ca7e98187d .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 2px;
  
}



#s-e19516b4-38fa-44bd-a7a5-5e352b470f38 {
  margin-top: 5%;
margin-left: 4%;
margin-right: 4%;
}

#s-c60c869d-45ff-4d74-9722-2f6ebcfe1578 {
  text-align: center;
}







  img.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shogun-image {
    
    
  }


.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578 .shogun-image-content {
  
    align-items: center;
  
}

.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shg-align-container {
  text-align: center
}

.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shogun-image {
    
    
  }


.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578 .shogun-image-content {
  
    align-items: center;
  
}

.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shg-align-container {
  text-align: center
}

.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shogun-image {
    
    
  }


.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578 .shogun-image-content {
  
    align-items: center;
  
}

.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shg-align-container {
  text-align: center
}

.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shogun-image {
    
    
  }


.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578 .shogun-image-content {
  
    align-items: center;
  
}

.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shg-align-container {
  text-align: center
}

.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shogun-image {
    
    
  }


.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578 .shogun-image-content {
  
    align-items: center;
  
}

.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shg-align-container {
  text-align: center
}

.s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c60c869d-45ff-4d74-9722-2f6ebcfe1578.shogun-image {
  box-sizing: border-box;
}


}
#s-5f9bbdae-e97c-48f9-ae46-a8ced3622ac5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5f9bbdae-e97c-48f9-ae46-a8ced3622ac5 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 1px;
  
}



#s-9efd7cd2-8f91-42fe-a2f3-7e4b5d8e3368 {
  margin-top: 5%;
margin-left: 4%;
margin-right: 4%;
}

@media (min-width: 0px) {
[id="s-15647768-f787-4071-8848-2747df520a4a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-15647768-f787-4071-8848-2747df520a4a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-15647768-f787-4071-8848-2747df520a4a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-15647768-f787-4071-8848-2747df520a4a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-13fca12e-3ad1-440e-a477-3b3f10c0018d {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
}
#s-13fca12e-3ad1-440e-a477-3b3f10c0018d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-13fca12e-3ad1-440e-a477-3b3f10c0018d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-13fca12e-3ad1-440e-a477-3b3f10c0018d-root {
    text-align: center;
  }


#s-13fca12e-3ad1-440e-a477-3b3f10c0018d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-13fca12e-3ad1-440e-a477-3b3f10c0018d-root {
    text-align: center;
  }


#s-13fca12e-3ad1-440e-a477-3b3f10c0018d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-13fca12e-3ad1-440e-a477-3b3f10c0018d-root {
    text-align: center;
  }


#s-13fca12e-3ad1-440e-a477-3b3f10c0018d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-13fca12e-3ad1-440e-a477-3b3f10c0018d-root {
    text-align: center;
  }


#s-13fca12e-3ad1-440e-a477-3b3f10c0018d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-13fca12e-3ad1-440e-a477-3b3f10c0018d-root {
    text-align: center;
  }


#s-13fca12e-3ad1-440e-a477-3b3f10c0018d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-13fca12e-3ad1-440e-a477-3b3f10c0018d-root {
    text-align: center;
  }


#s-13fca12e-3ad1-440e-a477-3b3f10c0018d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-e3ddfd4c-6180-426d-9f20-1e3006ff5159 {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
}
#s-e3ddfd4c-6180-426d-9f20-1e3006ff5159:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e3ddfd4c-6180-426d-9f20-1e3006ff5159:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e3ddfd4c-6180-426d-9f20-1e3006ff5159-root {
    text-align: center;
  }


#s-e3ddfd4c-6180-426d-9f20-1e3006ff5159.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-e3ddfd4c-6180-426d-9f20-1e3006ff5159-root {
    text-align: center;
  }


#s-e3ddfd4c-6180-426d-9f20-1e3006ff5159.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e3ddfd4c-6180-426d-9f20-1e3006ff5159-root {
    text-align: center;
  }


#s-e3ddfd4c-6180-426d-9f20-1e3006ff5159.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e3ddfd4c-6180-426d-9f20-1e3006ff5159-root {
    text-align: center;
  }


#s-e3ddfd4c-6180-426d-9f20-1e3006ff5159.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-e3ddfd4c-6180-426d-9f20-1e3006ff5159-root {
    text-align: center;
  }


#s-e3ddfd4c-6180-426d-9f20-1e3006ff5159.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-e3ddfd4c-6180-426d-9f20-1e3006ff5159-root {
    text-align: center;
  }


#s-e3ddfd4c-6180-426d-9f20-1e3006ff5159.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

@media (min-width: 0px) {
[id="s-28e47aeb-8c34-4311-91a7-b2ea336800dc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-28e47aeb-8c34-4311-91a7-b2ea336800dc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-28e47aeb-8c34-4311-91a7-b2ea336800dc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-28e47aeb-8c34-4311-91a7-b2ea336800dc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-3879e44e-b0cf-432f-9615-f9d51589593d {
  text-align: center;
}







  img.s-3879e44e-b0cf-432f-9615-f9d51589593d.shogun-image {
    
    
  }


.s-3879e44e-b0cf-432f-9615-f9d51589593d .shogun-image-content {
  
    align-items: center;
  
}

.s-3879e44e-b0cf-432f-9615-f9d51589593d.shg-align-container {
  text-align: center
}

.s-3879e44e-b0cf-432f-9615-f9d51589593d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3879e44e-b0cf-432f-9615-f9d51589593d.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-3879e44e-b0cf-432f-9615-f9d51589593d.shogun-image {
    
    
  }


.s-3879e44e-b0cf-432f-9615-f9d51589593d .shogun-image-content {
  
    align-items: center;
  
}

.s-3879e44e-b0cf-432f-9615-f9d51589593d.shg-align-container {
  text-align: center
}

.s-3879e44e-b0cf-432f-9615-f9d51589593d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3879e44e-b0cf-432f-9615-f9d51589593d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3879e44e-b0cf-432f-9615-f9d51589593d.shogun-image {
    
    
  }


.s-3879e44e-b0cf-432f-9615-f9d51589593d .shogun-image-content {
  
    align-items: center;
  
}

.s-3879e44e-b0cf-432f-9615-f9d51589593d.shg-align-container {
  text-align: center
}

.s-3879e44e-b0cf-432f-9615-f9d51589593d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3879e44e-b0cf-432f-9615-f9d51589593d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3879e44e-b0cf-432f-9615-f9d51589593d.shogun-image {
    
    
  }


.s-3879e44e-b0cf-432f-9615-f9d51589593d .shogun-image-content {
  
    align-items: center;
  
}

.s-3879e44e-b0cf-432f-9615-f9d51589593d.shg-align-container {
  text-align: center
}

.s-3879e44e-b0cf-432f-9615-f9d51589593d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3879e44e-b0cf-432f-9615-f9d51589593d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3879e44e-b0cf-432f-9615-f9d51589593d.shogun-image {
    
    
  }


.s-3879e44e-b0cf-432f-9615-f9d51589593d .shogun-image-content {
  
    align-items: center;
  
}

.s-3879e44e-b0cf-432f-9615-f9d51589593d.shg-align-container {
  text-align: center
}

.s-3879e44e-b0cf-432f-9615-f9d51589593d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3879e44e-b0cf-432f-9615-f9d51589593d.shogun-image {
  box-sizing: border-box;
}


}
#s-c3702352-b79f-4a57-b61d-1a67da934a85 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c3702352-b79f-4a57-b61d-1a67da934a85 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 1px;
  
}



#s-ec1e7ad4-9624-461f-9c93-8550046ef9f1 {
  margin-top: 5%;
margin-left: 4%;
margin-right: 4%;
}

#s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b {
  text-align: center;
}







  img.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shogun-image {
    
    
  }


.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b .shogun-image-content {
  
    align-items: center;
  
}

.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shg-align-container {
  text-align: center
}

.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shogun-image {
    
    
  }


.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b .shogun-image-content {
  
    align-items: center;
  
}

.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shg-align-container {
  text-align: center
}

.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shogun-image {
    
    
  }


.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b .shogun-image-content {
  
    align-items: center;
  
}

.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shg-align-container {
  text-align: center
}

.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shogun-image {
    
    
  }


.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b .shogun-image-content {
  
    align-items: center;
  
}

.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shg-align-container {
  text-align: center
}

.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shogun-image {
    
    
  }


.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b .shogun-image-content {
  
    align-items: center;
  
}

.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shg-align-container {
  text-align: center
}

.s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5c944c5-09ae-4bc9-82dd-b5d2867d2f7b.shogun-image {
  box-sizing: border-box;
}


}
#s-2d795929-3291-415c-af1c-e432e4141156 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2d795929-3291-415c-af1c-e432e4141156 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 1px;
  
}



#s-e6df0c07-ef2a-437f-aba5-46065797f2ef {
  margin-top: 5%;
margin-left: 4%;
margin-right: 4%;
}

@media (min-width: 0px) {
[id="s-8e6ac932-1449-46df-a629-1ff24bdafdfb"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-8e6ac932-1449-46df-a629-1ff24bdafdfb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-8e6ac932-1449-46df-a629-1ff24bdafdfb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-8e6ac932-1449-46df-a629-1ff24bdafdfb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

}

#s-c84126de-475d-43ae-b38b-6f8e2cc46166 {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
}
#s-c84126de-475d-43ae-b38b-6f8e2cc46166:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c84126de-475d-43ae-b38b-6f8e2cc46166:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c84126de-475d-43ae-b38b-6f8e2cc46166-root {
    text-align: center;
  }


#s-c84126de-475d-43ae-b38b-6f8e2cc46166.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-c84126de-475d-43ae-b38b-6f8e2cc46166-root {
    text-align: center;
  }


#s-c84126de-475d-43ae-b38b-6f8e2cc46166.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c84126de-475d-43ae-b38b-6f8e2cc46166-root {
    text-align: center;
  }


#s-c84126de-475d-43ae-b38b-6f8e2cc46166.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c84126de-475d-43ae-b38b-6f8e2cc46166-root {
    text-align: center;
  }


#s-c84126de-475d-43ae-b38b-6f8e2cc46166.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-c84126de-475d-43ae-b38b-6f8e2cc46166-root {
    text-align: center;
  }


#s-c84126de-475d-43ae-b38b-6f8e2cc46166.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-c84126de-475d-43ae-b38b-6f8e2cc46166-root {
    text-align: center;
  }


#s-c84126de-475d-43ae-b38b-6f8e2cc46166.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-d402ad13-6136-4119-876d-5567741afe35 {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 2px;
background-image: none;
hover-type: color;
}
#s-d402ad13-6136-4119-876d-5567741afe35:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d402ad13-6136-4119-876d-5567741afe35:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d402ad13-6136-4119-876d-5567741afe35-root {
    text-align: center;
  }


#s-d402ad13-6136-4119-876d-5567741afe35.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-d402ad13-6136-4119-876d-5567741afe35-root {
    text-align: center;
  }


#s-d402ad13-6136-4119-876d-5567741afe35.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d402ad13-6136-4119-876d-5567741afe35-root {
    text-align: center;
  }


#s-d402ad13-6136-4119-876d-5567741afe35.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d402ad13-6136-4119-876d-5567741afe35-root {
    text-align: center;
  }


#s-d402ad13-6136-4119-876d-5567741afe35.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-d402ad13-6136-4119-876d-5567741afe35-root {
    text-align: center;
  }


#s-d402ad13-6136-4119-876d-5567741afe35.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-d402ad13-6136-4119-876d-5567741afe35-root {
    text-align: center;
  }


#s-d402ad13-6136-4119-876d-5567741afe35.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-6663cafc-5ba8-4b34-accd-0410e23a8596 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 6%;
margin-right: 2%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-6663cafc-5ba8-4b34-accd-0410e23a8596 {
  display: none;
}
#s-6663cafc-5ba8-4b34-accd-0410e23a8596, #wrap-s-6663cafc-5ba8-4b34-accd-0410e23a8596 { display:none !important; }}@media (max-width: 767px){#s-6663cafc-5ba8-4b34-accd-0410e23a8596 {
  display: none;
}
#s-6663cafc-5ba8-4b34-accd-0410e23a8596, #wrap-s-6663cafc-5ba8-4b34-accd-0410e23a8596 { display:none !important; }}







#s-6663cafc-5ba8-4b34-accd-0410e23a8596 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6663cafc-5ba8-4b34-accd-0410e23a8596.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-944808ea-652a-4208-b4ea-d453306ce681 {
  margin-top: 0%;
margin-bottom: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-944808ea-652a-4208-b4ea-d453306ce681 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 21px;
  
  letter-spacing: 5px;
  
}



#s-d330db58-45e2-4271-b341-d180d92a3324 {
  margin-top: 0%;
margin-bottom: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d330db58-45e2-4271-b341-d180d92a3324 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 3px;
  
}



@media (min-width: 0px) {
[id="s-c97d239f-f043-46ed-82f5-db79b8511bb7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-c97d239f-f043-46ed-82f5-db79b8511bb7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c97d239f-f043-46ed-82f5-db79b8511bb7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c97d239f-f043-46ed-82f5-db79b8511bb7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-d628206b-b0f2-4121-a140-a301f838a29d {
  text-align: center;
}







  img.s-d628206b-b0f2-4121-a140-a301f838a29d.shogun-image {
    
    
  }


.s-d628206b-b0f2-4121-a140-a301f838a29d .shogun-image-content {
  
    align-items: center;
  
}

.s-d628206b-b0f2-4121-a140-a301f838a29d.shg-align-container {
  text-align: center
}

.s-d628206b-b0f2-4121-a140-a301f838a29d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d628206b-b0f2-4121-a140-a301f838a29d.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-d628206b-b0f2-4121-a140-a301f838a29d.shogun-image {
    
    
  }


.s-d628206b-b0f2-4121-a140-a301f838a29d .shogun-image-content {
  
    align-items: center;
  
}

.s-d628206b-b0f2-4121-a140-a301f838a29d.shg-align-container {
  text-align: center
}

.s-d628206b-b0f2-4121-a140-a301f838a29d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d628206b-b0f2-4121-a140-a301f838a29d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d628206b-b0f2-4121-a140-a301f838a29d.shogun-image {
    
    
  }


.s-d628206b-b0f2-4121-a140-a301f838a29d .shogun-image-content {
  
    align-items: center;
  
}

.s-d628206b-b0f2-4121-a140-a301f838a29d.shg-align-container {
  text-align: center
}

.s-d628206b-b0f2-4121-a140-a301f838a29d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d628206b-b0f2-4121-a140-a301f838a29d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d628206b-b0f2-4121-a140-a301f838a29d.shogun-image {
    
    
  }


.s-d628206b-b0f2-4121-a140-a301f838a29d .shogun-image-content {
  
    align-items: center;
  
}

.s-d628206b-b0f2-4121-a140-a301f838a29d.shg-align-container {
  text-align: center
}

.s-d628206b-b0f2-4121-a140-a301f838a29d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d628206b-b0f2-4121-a140-a301f838a29d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d628206b-b0f2-4121-a140-a301f838a29d.shogun-image {
    
    
  }


.s-d628206b-b0f2-4121-a140-a301f838a29d .shogun-image-content {
  
    align-items: center;
  
}

.s-d628206b-b0f2-4121-a140-a301f838a29d.shg-align-container {
  text-align: center
}

.s-d628206b-b0f2-4121-a140-a301f838a29d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d628206b-b0f2-4121-a140-a301f838a29d.shogun-image {
  box-sizing: border-box;
}


}
#s-05e27a0c-4ed0-4958-979e-db97f4faebfe {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-05e27a0c-4ed0-4958-979e-db97f4faebfe .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 2px;
  
}



#s-c99fa947-ba45-4427-b299-9cd852ac52ee {
  margin-top: 5%;
margin-left: 4%;
margin-right: 4%;
}

#s-4f296c36-34fb-48e6-b713-d81aeeebb357 {
  text-align: center;
}







  img.s-4f296c36-34fb-48e6-b713-d81aeeebb357.shogun-image {
    
    
  }


.s-4f296c36-34fb-48e6-b713-d81aeeebb357 .shogun-image-content {
  
    align-items: center;
  
}

.s-4f296c36-34fb-48e6-b713-d81aeeebb357.shg-align-container {
  text-align: center
}

.s-4f296c36-34fb-48e6-b713-d81aeeebb357.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f296c36-34fb-48e6-b713-d81aeeebb357.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-4f296c36-34fb-48e6-b713-d81aeeebb357.shogun-image {
    
    
  }


.s-4f296c36-34fb-48e6-b713-d81aeeebb357 .shogun-image-content {
  
    align-items: center;
  
}

.s-4f296c36-34fb-48e6-b713-d81aeeebb357.shg-align-container {
  text-align: center
}

.s-4f296c36-34fb-48e6-b713-d81aeeebb357.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f296c36-34fb-48e6-b713-d81aeeebb357.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4f296c36-34fb-48e6-b713-d81aeeebb357.shogun-image {
    
    
  }


.s-4f296c36-34fb-48e6-b713-d81aeeebb357 .shogun-image-content {
  
    align-items: center;
  
}

.s-4f296c36-34fb-48e6-b713-d81aeeebb357.shg-align-container {
  text-align: center
}

.s-4f296c36-34fb-48e6-b713-d81aeeebb357.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f296c36-34fb-48e6-b713-d81aeeebb357.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4f296c36-34fb-48e6-b713-d81aeeebb357.shogun-image {
    
    
  }


.s-4f296c36-34fb-48e6-b713-d81aeeebb357 .shogun-image-content {
  
    align-items: center;
  
}

.s-4f296c36-34fb-48e6-b713-d81aeeebb357.shg-align-container {
  text-align: center
}

.s-4f296c36-34fb-48e6-b713-d81aeeebb357.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f296c36-34fb-48e6-b713-d81aeeebb357.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4f296c36-34fb-48e6-b713-d81aeeebb357.shogun-image {
    
    
  }


.s-4f296c36-34fb-48e6-b713-d81aeeebb357 .shogun-image-content {
  
    align-items: center;
  
}

.s-4f296c36-34fb-48e6-b713-d81aeeebb357.shg-align-container {
  text-align: center
}

.s-4f296c36-34fb-48e6-b713-d81aeeebb357.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f296c36-34fb-48e6-b713-d81aeeebb357.shogun-image {
  box-sizing: border-box;
}


}
#s-94187533-7133-40dd-a684-ae1d739b2aed {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-94187533-7133-40dd-a684-ae1d739b2aed .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 1px;
  
}



#s-2f6cbe59-34f4-4695-a47e-a92cc88d36af {
  margin-top: 5%;
margin-left: 4%;
margin-right: 4%;
}

#s-84aed435-fa2e-41fa-904c-fc910bb47789 {
  text-align: center;
}







  img.s-84aed435-fa2e-41fa-904c-fc910bb47789.shogun-image {
    
    
  }


.s-84aed435-fa2e-41fa-904c-fc910bb47789 .shogun-image-content {
  
    align-items: center;
  
}

.s-84aed435-fa2e-41fa-904c-fc910bb47789.shg-align-container {
  text-align: center
}

.s-84aed435-fa2e-41fa-904c-fc910bb47789.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84aed435-fa2e-41fa-904c-fc910bb47789.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-84aed435-fa2e-41fa-904c-fc910bb47789.shogun-image {
    
    
  }


.s-84aed435-fa2e-41fa-904c-fc910bb47789 .shogun-image-content {
  
    align-items: center;
  
}

.s-84aed435-fa2e-41fa-904c-fc910bb47789.shg-align-container {
  text-align: center
}

.s-84aed435-fa2e-41fa-904c-fc910bb47789.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84aed435-fa2e-41fa-904c-fc910bb47789.shogun-image {
  box-sizing: border-box;
}


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





  img.s-84aed435-fa2e-41fa-904c-fc910bb47789.shogun-image {
    
    
  }


.s-84aed435-fa2e-41fa-904c-fc910bb47789 .shogun-image-content {
  
    align-items: center;
  
}

.s-84aed435-fa2e-41fa-904c-fc910bb47789.shg-align-container {
  text-align: center
}

.s-84aed435-fa2e-41fa-904c-fc910bb47789.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84aed435-fa2e-41fa-904c-fc910bb47789.shogun-image {
  box-sizing: border-box;
}


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





  img.s-84aed435-fa2e-41fa-904c-fc910bb47789.shogun-image {
    
    
  }


.s-84aed435-fa2e-41fa-904c-fc910bb47789 .shogun-image-content {
  
    align-items: center;
  
}

.s-84aed435-fa2e-41fa-904c-fc910bb47789.shg-align-container {
  text-align: center
}

.s-84aed435-fa2e-41fa-904c-fc910bb47789.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84aed435-fa2e-41fa-904c-fc910bb47789.shogun-image {
  box-sizing: border-box;
}


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





  img.s-84aed435-fa2e-41fa-904c-fc910bb47789.shogun-image {
    
    
  }


.s-84aed435-fa2e-41fa-904c-fc910bb47789 .shogun-image-content {
  
    align-items: center;
  
}

.s-84aed435-fa2e-41fa-904c-fc910bb47789.shg-align-container {
  text-align: center
}

.s-84aed435-fa2e-41fa-904c-fc910bb47789.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-84aed435-fa2e-41fa-904c-fc910bb47789.shogun-image {
  box-sizing: border-box;
}


}
#s-13176d37-8244-4d0e-8909-70b00889ab28 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-13176d37-8244-4d0e-8909-70b00889ab28 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 1px;
  
}



#s-00891a73-4019-4727-b315-e07eaf7d1e3f {
  margin-top: 5%;
margin-left: 4%;
margin-right: 4%;
}

#s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5 {
  text-align: center;
}







  img.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shogun-image {
    
    
  }


.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5 .shogun-image-content {
  
    align-items: center;
  
}

.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shg-align-container {
  text-align: center
}

.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shogun-image {
    
    
  }


.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5 .shogun-image-content {
  
    align-items: center;
  
}

.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shg-align-container {
  text-align: center
}

.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shogun-image {
    
    
  }


.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5 .shogun-image-content {
  
    align-items: center;
  
}

.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shg-align-container {
  text-align: center
}

.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shogun-image {
    
    
  }


.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5 .shogun-image-content {
  
    align-items: center;
  
}

.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shg-align-container {
  text-align: center
}

.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shogun-image {
  box-sizing: border-box;
}


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





  img.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shogun-image {
    
    
  }


.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5 .shogun-image-content {
  
    align-items: center;
  
}

.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shg-align-container {
  text-align: center
}

.s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67b9f6cc-94ea-4157-a125-9136b6ccdcf5.shogun-image {
  box-sizing: border-box;
}


}
#s-efe8b830-4255-4c0a-a7c7-7119dbf9d919 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-efe8b830-4255-4c0a-a7c7-7119dbf9d919 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 1px;
  
}



#s-1e787b2a-9d6f-4952-b4a0-a2cd07ac89e5 {
  margin-top: 5%;
margin-left: 4%;
margin-right: 4%;
}

@media (min-width: 0px) {
[id="s-b6a149cf-6cbf-4246-8c32-7948d34a6638"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-b6a149cf-6cbf-4246-8c32-7948d34a6638"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b6a149cf-6cbf-4246-8c32-7948d34a6638"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b6a149cf-6cbf-4246-8c32-7948d34a6638"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-6386f804-fbe6-4ee6-bd12-5aaa1acabe5d {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
}
#s-6386f804-fbe6-4ee6-bd12-5aaa1acabe5d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6386f804-fbe6-4ee6-bd12-5aaa1acabe5d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6386f804-fbe6-4ee6-bd12-5aaa1acabe5d-root {
    text-align: center;
  }


#s-6386f804-fbe6-4ee6-bd12-5aaa1acabe5d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-6386f804-fbe6-4ee6-bd12-5aaa1acabe5d-root {
    text-align: center;
  }


#s-6386f804-fbe6-4ee6-bd12-5aaa1acabe5d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6386f804-fbe6-4ee6-bd12-5aaa1acabe5d-root {
    text-align: center;
  }


#s-6386f804-fbe6-4ee6-bd12-5aaa1acabe5d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6386f804-fbe6-4ee6-bd12-5aaa1acabe5d-root {
    text-align: center;
  }


#s-6386f804-fbe6-4ee6-bd12-5aaa1acabe5d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-6386f804-fbe6-4ee6-bd12-5aaa1acabe5d-root {
    text-align: center;
  }


#s-6386f804-fbe6-4ee6-bd12-5aaa1acabe5d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-6386f804-fbe6-4ee6-bd12-5aaa1acabe5d-root {
    text-align: center;
  }


#s-6386f804-fbe6-4ee6-bd12-5aaa1acabe5d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-1419476b-94d8-4d48-8e97-242e9ecd921c {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
}
#s-1419476b-94d8-4d48-8e97-242e9ecd921c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1419476b-94d8-4d48-8e97-242e9ecd921c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-1419476b-94d8-4d48-8e97-242e9ecd921c-root {
    text-align: center;
  }


#s-1419476b-94d8-4d48-8e97-242e9ecd921c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-1419476b-94d8-4d48-8e97-242e9ecd921c-root {
    text-align: center;
  }


#s-1419476b-94d8-4d48-8e97-242e9ecd921c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1419476b-94d8-4d48-8e97-242e9ecd921c-root {
    text-align: center;
  }


#s-1419476b-94d8-4d48-8e97-242e9ecd921c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1419476b-94d8-4d48-8e97-242e9ecd921c-root {
    text-align: center;
  }


#s-1419476b-94d8-4d48-8e97-242e9ecd921c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-1419476b-94d8-4d48-8e97-242e9ecd921c-root {
    text-align: center;
  }


#s-1419476b-94d8-4d48-8e97-242e9ecd921c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-1419476b-94d8-4d48-8e97-242e9ecd921c-root {
    text-align: center;
  }


#s-1419476b-94d8-4d48-8e97-242e9ecd921c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-baf577e0-c202-4df1-aa59-6198318525d8 {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
}
#s-baf577e0-c202-4df1-aa59-6198318525d8:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-baf577e0-c202-4df1-aa59-6198318525d8:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-baf577e0-c202-4df1-aa59-6198318525d8-root {
    text-align: center;
  }


#s-baf577e0-c202-4df1-aa59-6198318525d8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-baf577e0-c202-4df1-aa59-6198318525d8-root {
    text-align: center;
  }


#s-baf577e0-c202-4df1-aa59-6198318525d8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-baf577e0-c202-4df1-aa59-6198318525d8-root {
    text-align: center;
  }


#s-baf577e0-c202-4df1-aa59-6198318525d8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-baf577e0-c202-4df1-aa59-6198318525d8-root {
    text-align: center;
  }


#s-baf577e0-c202-4df1-aa59-6198318525d8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-baf577e0-c202-4df1-aa59-6198318525d8-root {
    text-align: center;
  }


#s-baf577e0-c202-4df1-aa59-6198318525d8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-baf577e0-c202-4df1-aa59-6198318525d8-root {
    text-align: center;
  }


#s-baf577e0-c202-4df1-aa59-6198318525d8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-ead58c30-c5ed-4953-921d-7a743084227d {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 25%;
padding-bottom: 15px;
padding-right: 25%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
}
#s-ead58c30-c5ed-4953-921d-7a743084227d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ead58c30-c5ed-4953-921d-7a743084227d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ead58c30-c5ed-4953-921d-7a743084227d-root {
    text-align: center;
  }


#s-ead58c30-c5ed-4953-921d-7a743084227d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-ead58c30-c5ed-4953-921d-7a743084227d-root {
    text-align: center;
  }


#s-ead58c30-c5ed-4953-921d-7a743084227d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ead58c30-c5ed-4953-921d-7a743084227d-root {
    text-align: center;
  }


#s-ead58c30-c5ed-4953-921d-7a743084227d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ead58c30-c5ed-4953-921d-7a743084227d-root {
    text-align: center;
  }


#s-ead58c30-c5ed-4953-921d-7a743084227d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-ead58c30-c5ed-4953-921d-7a743084227d-root {
    text-align: center;
  }


#s-ead58c30-c5ed-4953-921d-7a743084227d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-ead58c30-c5ed-4953-921d-7a743084227d-root {
    text-align: center;
  }


#s-ead58c30-c5ed-4953-921d-7a743084227d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-fa475fe7-3d4e-4432-a214-7402a9461aaf {
  min-height: 50px;
}
@media (min-width: 1200px){#s-fa475fe7-3d4e-4432-a214-7402a9461aaf {
  display: none;
}
#s-fa475fe7-3d4e-4432-a214-7402a9461aaf, #wrap-s-fa475fe7-3d4e-4432-a214-7402a9461aaf { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fa475fe7-3d4e-4432-a214-7402a9461aaf {
  display: none;
}
#s-fa475fe7-3d4e-4432-a214-7402a9461aaf, #wrap-s-fa475fe7-3d4e-4432-a214-7402a9461aaf { display:none !important; }}







#s-fa475fe7-3d4e-4432-a214-7402a9461aaf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fa475fe7-3d4e-4432-a214-7402a9461aaf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-18190161-ce0d-494a-b949-1abbd7fdd661 {
  text-align: center;
}







  img.s-18190161-ce0d-494a-b949-1abbd7fdd661.shogun-image {
    
    
  }


.s-18190161-ce0d-494a-b949-1abbd7fdd661 .shogun-image-content {
  
    align-items: center;
  
}

.s-18190161-ce0d-494a-b949-1abbd7fdd661.shg-align-container {
  text-align: center
}

.s-18190161-ce0d-494a-b949-1abbd7fdd661.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18190161-ce0d-494a-b949-1abbd7fdd661.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-18190161-ce0d-494a-b949-1abbd7fdd661.shogun-image {
    
    
  }


.s-18190161-ce0d-494a-b949-1abbd7fdd661 .shogun-image-content {
  
    align-items: center;
  
}

.s-18190161-ce0d-494a-b949-1abbd7fdd661.shg-align-container {
  text-align: center
}

.s-18190161-ce0d-494a-b949-1abbd7fdd661.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18190161-ce0d-494a-b949-1abbd7fdd661.shogun-image {
  box-sizing: border-box;
}


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





  img.s-18190161-ce0d-494a-b949-1abbd7fdd661.shogun-image {
    
    
  }


.s-18190161-ce0d-494a-b949-1abbd7fdd661 .shogun-image-content {
  
    align-items: center;
  
}

.s-18190161-ce0d-494a-b949-1abbd7fdd661.shg-align-container {
  text-align: center
}

.s-18190161-ce0d-494a-b949-1abbd7fdd661.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18190161-ce0d-494a-b949-1abbd7fdd661.shogun-image {
  box-sizing: border-box;
}


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





  img.s-18190161-ce0d-494a-b949-1abbd7fdd661.shogun-image {
    
    
  }


.s-18190161-ce0d-494a-b949-1abbd7fdd661 .shogun-image-content {
  
    align-items: center;
  
}

.s-18190161-ce0d-494a-b949-1abbd7fdd661.shg-align-container {
  text-align: center
}

.s-18190161-ce0d-494a-b949-1abbd7fdd661.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18190161-ce0d-494a-b949-1abbd7fdd661.shogun-image {
  box-sizing: border-box;
}


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





  img.s-18190161-ce0d-494a-b949-1abbd7fdd661.shogun-image {
    
    
  }


.s-18190161-ce0d-494a-b949-1abbd7fdd661 .shogun-image-content {
  
    align-items: center;
  
}

.s-18190161-ce0d-494a-b949-1abbd7fdd661.shg-align-container {
  text-align: center
}

.s-18190161-ce0d-494a-b949-1abbd7fdd661.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18190161-ce0d-494a-b949-1abbd7fdd661.shogun-image {
  box-sizing: border-box;
}


}
#s-4ae93507-d00c-430c-ad99-17434cc6b667 {
  margin-top: 2%;
margin-left: 10%;
margin-bottom: 2%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4ae93507-d00c-430c-ad99-17434cc6b667 .shogun-heading-component h4 {
  color: rgba(19, 19, 19, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 23px;
  line-height: 1.2em;
  letter-spacing: 3px;
  
}



#s-a5d54b14-f5d7-4423-a865-ca2d5304205d {
  margin-left: 5%;
margin-right: 5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-a5d54b14-f5d7-4423-a865-ca2d5304205d {
  margin-left: 10%;
margin-right: 10%;
}
}
#s-c10b3b9c-0973-4955-b1f1-7aae8e26f26d {
  margin-top: 0%;
margin-left: 5%;
margin-right: 5%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}

#s-d73bbe13-63b6-47c6-89e9-be4e88d03395 {
  margin-top: 2%;
margin-left: 10%;
margin-bottom: 2%;
margin-right: 10%;
min-height: 50px;
}








#s-d73bbe13-63b6-47c6-89e9-be4e88d03395 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d73bbe13-63b6-47c6-89e9-be4e88d03395.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0445f7e6-9b2c-4da1-9352-1e434dcd61b6 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
}
#s-0445f7e6-9b2c-4da1-9352-1e434dcd61b6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0445f7e6-9b2c-4da1-9352-1e434dcd61b6:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0445f7e6-9b2c-4da1-9352-1e434dcd61b6-root {
    text-align: center;
  }


#s-0445f7e6-9b2c-4da1-9352-1e434dcd61b6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-0445f7e6-9b2c-4da1-9352-1e434dcd61b6-root {
    text-align: center;
  }


#s-0445f7e6-9b2c-4da1-9352-1e434dcd61b6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0445f7e6-9b2c-4da1-9352-1e434dcd61b6-root {
    text-align: center;
  }


#s-0445f7e6-9b2c-4da1-9352-1e434dcd61b6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0445f7e6-9b2c-4da1-9352-1e434dcd61b6-root {
    text-align: center;
  }


#s-0445f7e6-9b2c-4da1-9352-1e434dcd61b6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-0445f7e6-9b2c-4da1-9352-1e434dcd61b6-root {
    text-align: center;
  }


#s-0445f7e6-9b2c-4da1-9352-1e434dcd61b6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-0445f7e6-9b2c-4da1-9352-1e434dcd61b6-root {
    text-align: center;
  }


#s-0445f7e6-9b2c-4da1-9352-1e434dcd61b6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-e4e52eb9-4e22-4849-a0dd-43946fdb8cca {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-e4e52eb9-4e22-4849-a0dd-43946fdb8cca {
  display: none;
}
#s-e4e52eb9-4e22-4849-a0dd-43946fdb8cca, #wrap-s-e4e52eb9-4e22-4849-a0dd-43946fdb8cca { display:none !important; }}@media (max-width: 767px){#s-e4e52eb9-4e22-4849-a0dd-43946fdb8cca {
  display: none;
}
#s-e4e52eb9-4e22-4849-a0dd-43946fdb8cca, #wrap-s-e4e52eb9-4e22-4849-a0dd-43946fdb8cca { display:none !important; }}







#s-e4e52eb9-4e22-4849-a0dd-43946fdb8cca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e4e52eb9-4e22-4849-a0dd-43946fdb8cca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1d28dd98-48aa-4a71-8ddb-e776f8847781 {
  margin-left: 2px;
margin-right: 2px;
text-align: center;
}







  img.s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shogun-image {
    
    
  }


.s-1d28dd98-48aa-4a71-8ddb-e776f8847781 .shogun-image-content {
  
    align-items: center;
  
}

.s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shg-align-container {
  text-align: center
}

.s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shogun-image {
    
    
  }


.s-1d28dd98-48aa-4a71-8ddb-e776f8847781 .shogun-image-content {
  
    align-items: center;
  
}

.s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shg-align-container {
  text-align: center
}

.s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shogun-image {
    
    
  }


.s-1d28dd98-48aa-4a71-8ddb-e776f8847781 .shogun-image-content {
  
    align-items: center;
  
}

.s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shg-align-container {
  text-align: center
}

.s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shogun-image {
    
    
  }


.s-1d28dd98-48aa-4a71-8ddb-e776f8847781 .shogun-image-content {
  
    align-items: center;
  
}

.s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shg-align-container {
  text-align: center
}

.s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shogun-image {
    
    
  }


.s-1d28dd98-48aa-4a71-8ddb-e776f8847781 .shogun-image-content {
  
    align-items: center;
  
}

.s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shg-align-container {
  text-align: center
}

.s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1d28dd98-48aa-4a71-8ddb-e776f8847781.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 0px) {
[id="s-8d351be4-735f-4c79-97ca-9b2e65b9e135"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8d351be4-735f-4c79-97ca-9b2e65b9e135"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8d351be4-735f-4c79-97ca-9b2e65b9e135"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8d351be4-735f-4c79-97ca-9b2e65b9e135"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a0aa4367-bbd4-48fe-9d75-75f81a4c7e1e {
  margin-top: 2%;
margin-left: 10%;
margin-bottom: 2%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a0aa4367-bbd4-48fe-9d75-75f81a4c7e1e .shogun-heading-component h4 {
  color: rgba(19, 19, 19, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.2em;
  letter-spacing: 3px;
  
}



#s-e68714bf-d6b3-4e38-b96d-c04692f0d756 {
  margin-left: 10%;
margin-right: 10%;
}

#s-44822921-2fa2-4396-8499-6b5705ae0bfa {
  margin-top: 4%;
margin-left: 10%;
margin-bottom: 4%;
margin-right: 10%;
min-height: 50px;
}








#s-44822921-2fa2-4396-8499-6b5705ae0bfa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-44822921-2fa2-4396-8499-6b5705ae0bfa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1125a752-1740-4467-bab4-9c1ede41390f {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-left: 20%;
padding-bottom: 15px;
padding-right: 20%;
border-radius: 2px;
max-width: 100%;
background-color: rgba(37, 37, 37, 1);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
}
#s-1125a752-1740-4467-bab4-9c1ede41390f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1125a752-1740-4467-bab4-9c1ede41390f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-1125a752-1740-4467-bab4-9c1ede41390f-root {
    text-align: center;
  }


#s-1125a752-1740-4467-bab4-9c1ede41390f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-1125a752-1740-4467-bab4-9c1ede41390f-root {
    text-align: center;
  }


#s-1125a752-1740-4467-bab4-9c1ede41390f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1125a752-1740-4467-bab4-9c1ede41390f-root {
    text-align: center;
  }


#s-1125a752-1740-4467-bab4-9c1ede41390f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1125a752-1740-4467-bab4-9c1ede41390f-root {
    text-align: center;
  }


#s-1125a752-1740-4467-bab4-9c1ede41390f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-1125a752-1740-4467-bab4-9c1ede41390f-root {
    text-align: center;
  }


#s-1125a752-1740-4467-bab4-9c1ede41390f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-1125a752-1740-4467-bab4-9c1ede41390f-root {
    text-align: center;
  }


#s-1125a752-1740-4467-bab4-9c1ede41390f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-70ff9806-c5a8-4931-be91-23ede41f8b07 {
  margin-top: 5%;
margin-left: 5%;
margin-bottom: 5%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-70ff9806-c5a8-4931-be91-23ede41f8b07 {
  display: none;
}
#s-70ff9806-c5a8-4931-be91-23ede41f8b07, #wrap-s-70ff9806-c5a8-4931-be91-23ede41f8b07 { display:none !important; }}@media (max-width: 767px){#s-70ff9806-c5a8-4931-be91-23ede41f8b07 {
  display: none;
}
#s-70ff9806-c5a8-4931-be91-23ede41f8b07, #wrap-s-70ff9806-c5a8-4931-be91-23ede41f8b07 { display:none !important; }}







#s-70ff9806-c5a8-4931-be91-23ede41f8b07 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-70ff9806-c5a8-4931-be91-23ede41f8b07.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dd227780-5a61-4fb2-b559-9b157d443756 {
  margin-top: 0px;
}

#s-157d4449-78a1-4f3d-8543-65e0391f40f5 {
  margin-top: 2%;
}

@media (min-width: 0px) {
[id="s-157d4449-78a1-4f3d-8543-65e0391f40f5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-157d4449-78a1-4f3d-8543-65e0391f40f5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-157d4449-78a1-4f3d-8543-65e0391f40f5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-157d4449-78a1-4f3d-8543-65e0391f40f5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

#s-cf85f32b-a8f1-4aa6-8f23-fda47cb7e409 {
  text-align: center;
}







  #s-cf85f32b-a8f1-4aa6-8f23-fda47cb7e409 img.shogun-image {
    

    
    
    
  }


#s-cf85f32b-a8f1-4aa6-8f23-fda47cb7e409 .shogun-image-content {
  
    align-items: center;
  
}

#s-c7bbe5ce-9e3c-42f7-a284-66a6da54e533 {
  margin-top: 100%;
margin-left: 45%;
margin-right: 45%;
text-align: center;
}
@media (min-width: 1200px){#s-c7bbe5ce-9e3c-42f7-a284-66a6da54e533 {
  margin-top: 95%;
}
}






  #s-c7bbe5ce-9e3c-42f7-a284-66a6da54e533 img.shogun-image {
    

    
    
    
  }


#s-c7bbe5ce-9e3c-42f7-a284-66a6da54e533 .shogun-image-content {
  
    align-items: center;
  
}

#s-bcc82486-028b-4f33-a988-18a9f6aa5396 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-faea9326-ebe1-4381-bf5d-80dcf5f0b8fd {
  margin-top: -7%;
margin-left: 2%;
margin-right: 2%;
}

#s-b27a80bc-48f9-49c0-b37e-25a391d67e82 {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-b27a80bc-48f9-49c0-b37e-25a391d67e82:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-b27a80bc-48f9-49c0-b37e-25a391d67e82:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-b27a80bc-48f9-49c0-b37e-25a391d67e82-root {
    text-align: center;
  }


#s-b27a80bc-48f9-49c0-b37e-25a391d67e82.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-b27a80bc-48f9-49c0-b37e-25a391d67e82-root {
    text-align: center;
  }


#s-b27a80bc-48f9-49c0-b37e-25a391d67e82.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b27a80bc-48f9-49c0-b37e-25a391d67e82-root {
    text-align: center;
  }


#s-b27a80bc-48f9-49c0-b37e-25a391d67e82.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b27a80bc-48f9-49c0-b37e-25a391d67e82-root {
    text-align: center;
  }


#s-b27a80bc-48f9-49c0-b37e-25a391d67e82.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-b27a80bc-48f9-49c0-b37e-25a391d67e82-root {
    text-align: center;
  }


#s-b27a80bc-48f9-49c0-b37e-25a391d67e82.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-b27a80bc-48f9-49c0-b37e-25a391d67e82-root {
    text-align: center;
  }


#s-b27a80bc-48f9-49c0-b37e-25a391d67e82.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-1c1705bf-47a1-4935-9699-a4ff0bf9e984 {
  text-align: center;
}







  #s-1c1705bf-47a1-4935-9699-a4ff0bf9e984 img.shogun-image {
    

    
    
    
  }


#s-1c1705bf-47a1-4935-9699-a4ff0bf9e984 .shogun-image-content {
  
    align-items: center;
  
}

#s-f221b674-78f3-4d0b-a829-f3268594bb6f {
  margin-top: 100%;
margin-left: 45%;
margin-right: 45%;
text-align: center;
}







  #s-f221b674-78f3-4d0b-a829-f3268594bb6f img.shogun-image {
    

    
    
    
  }


#s-f221b674-78f3-4d0b-a829-f3268594bb6f .shogun-image-content {
  
    align-items: center;
  
}

#s-c08bb6f4-5d0e-4133-9a20-c3286edc2dd0 {
  margin-top: -7%;
margin-left: 2%;
margin-right: 2%;
}

#s-0e6f5542-bf61-4875-bdaf-bb94ca98f6b5 {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-0e6f5542-bf61-4875-bdaf-bb94ca98f6b5:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-0e6f5542-bf61-4875-bdaf-bb94ca98f6b5:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-0e6f5542-bf61-4875-bdaf-bb94ca98f6b5-root {
    text-align: center;
  }


#s-0e6f5542-bf61-4875-bdaf-bb94ca98f6b5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-0e6f5542-bf61-4875-bdaf-bb94ca98f6b5-root {
    text-align: center;
  }


#s-0e6f5542-bf61-4875-bdaf-bb94ca98f6b5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0e6f5542-bf61-4875-bdaf-bb94ca98f6b5-root {
    text-align: center;
  }


#s-0e6f5542-bf61-4875-bdaf-bb94ca98f6b5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0e6f5542-bf61-4875-bdaf-bb94ca98f6b5-root {
    text-align: center;
  }


#s-0e6f5542-bf61-4875-bdaf-bb94ca98f6b5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-0e6f5542-bf61-4875-bdaf-bb94ca98f6b5-root {
    text-align: center;
  }


#s-0e6f5542-bf61-4875-bdaf-bb94ca98f6b5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-0e6f5542-bf61-4875-bdaf-bb94ca98f6b5-root {
    text-align: center;
  }


#s-0e6f5542-bf61-4875-bdaf-bb94ca98f6b5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-58f61a88-2f52-436f-b8ef-12386d65c9b7 {
  text-align: center;
}







  #s-58f61a88-2f52-436f-b8ef-12386d65c9b7 img.shogun-image {
    

    
    
    
  }


#s-58f61a88-2f52-436f-b8ef-12386d65c9b7 .shogun-image-content {
  
    align-items: center;
  
}

#s-ab2e6fe7-298f-445f-aabc-ba329eeda43d {
  margin-top: 100%;
margin-left: 45%;
margin-right: 45%;
text-align: center;
}







  #s-ab2e6fe7-298f-445f-aabc-ba329eeda43d img.shogun-image {
    

    
    
    
  }


#s-ab2e6fe7-298f-445f-aabc-ba329eeda43d .shogun-image-content {
  
    align-items: center;
  
}

#s-c90d0e36-f751-4e0e-8e2c-b134138700f7 {
  margin-top: -20px;
margin-left: 2%;
margin-right: 5%;
}

#s-0c01d879-790b-476d-a510-5709a16bfb11 {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-0c01d879-790b-476d-a510-5709a16bfb11:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-0c01d879-790b-476d-a510-5709a16bfb11:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-0c01d879-790b-476d-a510-5709a16bfb11-root {
    text-align: center;
  }


#s-0c01d879-790b-476d-a510-5709a16bfb11.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-0c01d879-790b-476d-a510-5709a16bfb11-root {
    text-align: center;
  }


#s-0c01d879-790b-476d-a510-5709a16bfb11.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0c01d879-790b-476d-a510-5709a16bfb11-root {
    text-align: center;
  }


#s-0c01d879-790b-476d-a510-5709a16bfb11.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0c01d879-790b-476d-a510-5709a16bfb11-root {
    text-align: center;
  }


#s-0c01d879-790b-476d-a510-5709a16bfb11.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-0c01d879-790b-476d-a510-5709a16bfb11-root {
    text-align: center;
  }


#s-0c01d879-790b-476d-a510-5709a16bfb11.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-0c01d879-790b-476d-a510-5709a16bfb11-root {
    text-align: center;
  }


#s-0c01d879-790b-476d-a510-5709a16bfb11.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-938ace21-a4d5-4019-8636-2ff88801146b {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-938ace21-a4d5-4019-8636-2ff88801146b {
  display: none;
}
#s-938ace21-a4d5-4019-8636-2ff88801146b, #wrap-s-938ace21-a4d5-4019-8636-2ff88801146b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-938ace21-a4d5-4019-8636-2ff88801146b {
  display: none;
}
#s-938ace21-a4d5-4019-8636-2ff88801146b, #wrap-s-938ace21-a4d5-4019-8636-2ff88801146b { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-938ace21-a4d5-4019-8636-2ff88801146b {
  margin-left: 10%;
margin-right: 10%;
}
}







#s-938ace21-a4d5-4019-8636-2ff88801146b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-938ace21-a4d5-4019-8636-2ff88801146b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ba183c5a-4872-430e-a7a3-d3165d3a258a {
  margin-top: 0px;
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-5ef6dd82-e97f-4157-9335-01cb7acb3ef6 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 10px;
padding-bottom: 10px;
}

#s-5ef6dd82-e97f-4157-9335-01cb7acb3ef6 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-5ef6dd82-e97f-4157-9335-01cb7acb3ef6 .shg-sld-nav-button.shg-sld-left,
#s-5ef6dd82-e97f-4157-9335-01cb7acb3ef6 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-b37cf0c2-c874-4c4d-9c87-5bbc86f527a8 {
  text-align: center;
}







  #s-b37cf0c2-c874-4c4d-9c87-5bbc86f527a8 img.shogun-image {
    

    
    
    
  }


#s-b37cf0c2-c874-4c4d-9c87-5bbc86f527a8 .shogun-image-content {
  
    align-items: center;
  
}

#s-2baf2501-7f11-4be2-bf4d-baed412c6f84 {
  margin-top: 110%;
margin-left: 45%;
margin-right: 45%;
text-align: center;
}







  #s-2baf2501-7f11-4be2-bf4d-baed412c6f84 img.shogun-image {
    

    
    
    
  }


#s-2baf2501-7f11-4be2-bf4d-baed412c6f84 .shogun-image-content {
  
    align-items: center;
  
}

#s-944f558c-063f-4c84-a96d-97db8a7c7e7a {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-d47799ae-3c61-41f0-a200-253bdc1caabc {
  margin-top: -20px;
margin-left: 0%;
margin-right: 0%;
}

#s-d86b65fe-4ac2-433b-b0d6-4282796ab8ce {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-d86b65fe-4ac2-433b-b0d6-4282796ab8ce:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-d86b65fe-4ac2-433b-b0d6-4282796ab8ce:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-d86b65fe-4ac2-433b-b0d6-4282796ab8ce-root {
    text-align: center;
  }


#s-d86b65fe-4ac2-433b-b0d6-4282796ab8ce.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-d86b65fe-4ac2-433b-b0d6-4282796ab8ce-root {
    text-align: center;
  }


#s-d86b65fe-4ac2-433b-b0d6-4282796ab8ce.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d86b65fe-4ac2-433b-b0d6-4282796ab8ce-root {
    text-align: center;
  }


#s-d86b65fe-4ac2-433b-b0d6-4282796ab8ce.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d86b65fe-4ac2-433b-b0d6-4282796ab8ce-root {
    text-align: center;
  }


#s-d86b65fe-4ac2-433b-b0d6-4282796ab8ce.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-d86b65fe-4ac2-433b-b0d6-4282796ab8ce-root {
    text-align: center;
  }


#s-d86b65fe-4ac2-433b-b0d6-4282796ab8ce.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-d86b65fe-4ac2-433b-b0d6-4282796ab8ce-root {
    text-align: center;
  }


#s-d86b65fe-4ac2-433b-b0d6-4282796ab8ce.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-88b6b85b-ca35-48b4-95cb-f550a71efd85 {
  margin-left: 0%;
margin-right: 0%;
text-align: center;
}







  #s-88b6b85b-ca35-48b4-95cb-f550a71efd85 img.shogun-image {
    

    
    
    
  }


#s-88b6b85b-ca35-48b4-95cb-f550a71efd85 .shogun-image-content {
  
    align-items: center;
  
}

#s-2ab66bce-ec6a-4b26-98b9-dedefff3bc5d {
  margin-top: 400px;
margin-left: 46%;
margin-right: 46%;
text-align: center;
}







  #s-2ab66bce-ec6a-4b26-98b9-dedefff3bc5d img.shogun-image {
    

    
    
    
  }


#s-2ab66bce-ec6a-4b26-98b9-dedefff3bc5d .shogun-image-content {
  
    align-items: center;
  
}

#s-c9954fd8-b3f7-4d21-9ee0-4ce23b2a21e5 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-c1710a9c-8bbf-4fbc-a010-dabe6370b2ec {
  margin-top: -20px;
}

#s-862648a6-2f50-4e86-a00e-33ccd71593ba {
  margin-left: 5%;
margin-right: 5%;
}

#s-c7a1dbed-df3a-4bdd-aa58-c98e11eca371 {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-c7a1dbed-df3a-4bdd-aa58-c98e11eca371:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-c7a1dbed-df3a-4bdd-aa58-c98e11eca371:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-c7a1dbed-df3a-4bdd-aa58-c98e11eca371-root {
    text-align: center;
  }


#s-c7a1dbed-df3a-4bdd-aa58-c98e11eca371.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-c7a1dbed-df3a-4bdd-aa58-c98e11eca371-root {
    text-align: center;
  }


#s-c7a1dbed-df3a-4bdd-aa58-c98e11eca371.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c7a1dbed-df3a-4bdd-aa58-c98e11eca371-root {
    text-align: center;
  }


#s-c7a1dbed-df3a-4bdd-aa58-c98e11eca371.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c7a1dbed-df3a-4bdd-aa58-c98e11eca371-root {
    text-align: center;
  }


#s-c7a1dbed-df3a-4bdd-aa58-c98e11eca371.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-c7a1dbed-df3a-4bdd-aa58-c98e11eca371-root {
    text-align: center;
  }


#s-c7a1dbed-df3a-4bdd-aa58-c98e11eca371.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}
}
  #s-c7a1dbed-df3a-4bdd-aa58-c98e11eca371-root {
    text-align: center;
  }


#s-c7a1dbed-df3a-4bdd-aa58-c98e11eca371.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  block ;
}

#s-c5df2180-ba33-465b-b09c-a87809b33232 {
  margin-left: 0%;
margin-right: 0%;
text-align: center;
}







  #s-c5df2180-ba33-465b-b09c-a87809b33232 img.shogun-image {
    

    
    
    
  }


#s-c5df2180-ba33-465b-b09c-a87809b33232 .shogun-image-content {
  
    align-items: center;
  
}

#s-8903c1e4-b014-4e2a-8c0a-6e519227c1b6 {
  margin-top: 110%;
margin-left: 45%;
margin-right: 45%;
text-align: center;
}







  #s-8903c1e4-b014-4e2a-8c0a-6e519227c1b6 img.shogun-image {
    

    
    
    
  }


#s-8903c1e4-b014-4e2a-8c0a-6e519227c1b6 .shogun-image-content {
  
    align-items: center;
  
}

#s-da5b9332-ccb3-4a49-89f3-267d462c8b86 {
  margin-top: -20px;
margin-left: 1%;
margin-right: 1%;
}

#s-72e3a0d1-fe22-499e-b733-3ca243551851 {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-72e3a0d1-fe22-499e-b733-3ca243551851:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-72e3a0d1-fe22-499e-b733-3ca243551851:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-72e3a0d1-fe22-499e-b733-3ca243551851-root {
    text-align: center;
  }


#s-72e3a0d1-fe22-499e-b733-3ca243551851.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-72e3a0d1-fe22-499e-b733-3ca243551851-root {
    text-align: center;
  }


#s-72e3a0d1-fe22-499e-b733-3ca243551851.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-72e3a0d1-fe22-499e-b733-3ca243551851-root {
    text-align: center;
  }


#s-72e3a0d1-fe22-499e-b733-3ca243551851.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-72e3a0d1-fe22-499e-b733-3ca243551851-root {
    text-align: center;
  }


#s-72e3a0d1-fe22-499e-b733-3ca243551851.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-72e3a0d1-fe22-499e-b733-3ca243551851-root {
    text-align: center;
  }


#s-72e3a0d1-fe22-499e-b733-3ca243551851.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-72e3a0d1-fe22-499e-b733-3ca243551851-root {
    text-align: center;
  }


#s-72e3a0d1-fe22-499e-b733-3ca243551851.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

#s-5e019f16-10fb-446d-b174-0cc8d0254715 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
text-align: center;
}







  #s-5e019f16-10fb-446d-b174-0cc8d0254715 img.shogun-image {
    

    
    
    
  }


#s-5e019f16-10fb-446d-b174-0cc8d0254715 .shogun-image-content {
  
    align-items: center;
  
}

#s-1a7e2725-451a-442f-b0d3-4e540f23ae3d {
  margin-top: 110%;
margin-left: 45%;
margin-right: 45%;
text-align: center;
}







  #s-1a7e2725-451a-442f-b0d3-4e540f23ae3d img.shogun-image {
    

    
    
    
  }


#s-1a7e2725-451a-442f-b0d3-4e540f23ae3d .shogun-image-content {
  
    align-items: center;
  
}

#s-96ad2b64-c3d8-4ec0-a957-f7d4330da2ec {
  margin-left: 0%;
margin-right: 0%;
}

#s-270fd605-ab8d-4006-8405-4a8158e7b52a {
  margin-top: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-270fd605-ab8d-4006-8405-4a8158e7b52a {
  margin-left: 10%;
margin-right: 10%;
}
}@media (max-width: 767px){#s-270fd605-ab8d-4006-8405-4a8158e7b52a {
  margin-left: 10%;
margin-right: 10%;
}
}
#s-0f4bf962-f9aa-4c39-90df-f370ba9d25f0 {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
border-color: rgba(34, 25, 77, 0);
border-radius: 2px;
max-width: 200px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 4px;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-0f4bf962-f9aa-4c39-90df-f370ba9d25f0:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
color: rgba(117, 117, 117, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-0f4bf962-f9aa-4c39-90df-f370ba9d25f0:active {border-style: solid !important;
border-color: rgba(34, 25, 77, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-0f4bf962-f9aa-4c39-90df-f370ba9d25f0-root {
    text-align: center;
  }


#s-0f4bf962-f9aa-4c39-90df-f370ba9d25f0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-0f4bf962-f9aa-4c39-90df-f370ba9d25f0-root {
    text-align: center;
  }


#s-0f4bf962-f9aa-4c39-90df-f370ba9d25f0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0f4bf962-f9aa-4c39-90df-f370ba9d25f0-root {
    text-align: center;
  }


#s-0f4bf962-f9aa-4c39-90df-f370ba9d25f0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0f4bf962-f9aa-4c39-90df-f370ba9d25f0-root {
    text-align: center;
  }


#s-0f4bf962-f9aa-4c39-90df-f370ba9d25f0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-0f4bf962-f9aa-4c39-90df-f370ba9d25f0-root {
    text-align: center;
  }


#s-0f4bf962-f9aa-4c39-90df-f370ba9d25f0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}
}
  #s-0f4bf962-f9aa-4c39-90df-f370ba9d25f0-root {
    text-align: center;
  }


#s-0f4bf962-f9aa-4c39-90df-f370ba9d25f0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  block ;
}

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}.animate__animated.animate__infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animate__animated.animate__repeat-1{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-iteration-count:var(--animate-repeat);animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{-webkit-animation-iteration-count:2;animation-iteration-count:2;-webkit-animation-iteration-count:calc(var(--animate-repeat)*2);animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{-webkit-animation-iteration-count:3;animation-iteration-count:3;-webkit-animation-iteration-count:calc(var(--animate-repeat)*3);animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-delay:var(--animate-delay);animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{-webkit-animation-delay:2s;animation-delay:2s;-webkit-animation-delay:calc(var(--animate-delay)*2);animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{-webkit-animation-delay:3s;animation-delay:3s;-webkit-animation-delay:calc(var(--animate-delay)*3);animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{-webkit-animation-delay:4s;animation-delay:4s;-webkit-animation-delay:calc(var(--animate-delay)*4);animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{-webkit-animation-delay:5s;animation-delay:5s;-webkit-animation-delay:calc(var(--animate-delay)*5);animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-duration:calc(var(--animate-duration)/2);animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-duration:calc(var(--animate-duration)*0.8);animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-duration:calc(var(--animate-duration)*3);animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@-webkit-keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}@keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.animate__shakeX{-webkit-animation-name:shakeX;animation-name:shakeX}@-webkit-keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}.animate__shakeY{-webkit-animation-name:shakeY;animation-name:shakeY}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.animate__headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.animate__swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.animate__heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-duration:calc(var(--animate-duration)*1.3);animation-duration:calc(var(--animate-duration)*1.3);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInDown{-webkit-animation-name:backInDown;animation-name:backInDown}@-webkit-keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInLeft{-webkit-animation-name:backInLeft;animation-name:backInLeft}@-webkit-keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInRight{-webkit-animation-name:backInRight;animation-name:backInRight}@-webkit-keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInUp{-webkit-animation-name:backInUp;animation-name:backInUp}@-webkit-keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}@keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{-webkit-animation-name:backOutDown;animation-name:backOutDown}@-webkit-keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}@keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{-webkit-animation-name:backOutLeft;animation-name:backOutLeft}@-webkit-keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}@keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{-webkit-animation-name:backOutRight;animation-name:backOutRight}@-webkit-keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}@keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{-webkit-animation-name:backOutUp;animation-name:backOutUp}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.animate__bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopLeft{-webkit-animation-name:fadeInTopLeft;animation-name:fadeInTopLeft}@-webkit-keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopRight{-webkit-animation-name:fadeInTopRight;animation-name:fadeInTopRight}@-webkit-keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomLeft{-webkit-animation-name:fadeInBottomLeft;animation-name:fadeInBottomLeft}@-webkit-keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomRight{-webkit-animation-name:fadeInBottomRight;animation-name:fadeInBottomRight}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}@keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{-webkit-animation-name:fadeOutTopLeft;animation-name:fadeOutTopLeft}@-webkit-keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}@keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{-webkit-animation-name:fadeOutTopRight;animation-name:fadeOutTopRight}@-webkit-keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}@keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{-webkit-animation-name:fadeOutBottomRight;animation-name:fadeOutBottomRight}@-webkit-keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}@keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{-webkit-animation-name:fadeOutBottomLeft;animation-name:fadeOutBottomLeft}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animate__animated.animate__flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInRight{-webkit-animation-name:lightSpeedInRight;animation-name:lightSpeedInRight;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInLeft{-webkit-animation-name:lightSpeedInLeft;animation-name:lightSpeedInLeft;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{-webkit-animation-name:lightSpeedOutRight;animation-name:lightSpeedOutRight;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}@keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{-webkit-animation-name:lightSpeedOutLeft;animation-name:lightSpeedOutLeft;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.animate__rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2);-webkit-animation-name:hinge;animation-name:hinge;-webkit-transform-origin:top left;transform-origin:top left}@-webkit-keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.animate__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft;-webkit-transform-origin:left center;transform-origin:left center}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight;-webkit-transform-origin:right center;transform-origin:right center}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}
/*
  $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}
