.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-2c01ada6-ed79-42a8-abec-400236cef1f1 {
  min-height: 50px;
}
@media (max-width: 767px){#s-2c01ada6-ed79-42a8-abec-400236cef1f1 {
  
}
}







#s-2c01ada6-ed79-42a8-abec-400236cef1f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2c01ada6-ed79-42a8-abec-400236cef1f1.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-c2d58123-a3c0-4c58-85d1-da09d13accfc {
  margin-left: 0px;
margin-right: 0px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-c2d58123-a3c0-4c58-85d1-da09d13accfc {
  
}
}@media (max-width: 767px){#s-c2d58123-a3c0-4c58-85d1-da09d13accfc {
  margin-left: 0%;
margin-right: 0%;
}
}






  img.s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shogun-image {
    
    
  }


.s-c2d58123-a3c0-4c58-85d1-da09d13accfc .shogun-image-content {
  
    align-items: center;
  
}

.s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shg-align-container {
  text-align: center
}

.s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shogun-image {
    
    
  }


.s-c2d58123-a3c0-4c58-85d1-da09d13accfc .shogun-image-content {
  
    align-items: center;
  
}

.s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shg-align-container {
  text-align: center
}

.s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shogun-image {
    
    
  }


.s-c2d58123-a3c0-4c58-85d1-da09d13accfc .shogun-image-content {
  
    align-items: center;
  
}

.s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shg-align-container {
  text-align: center
}

.s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shogun-image {
    
    
  }


.s-c2d58123-a3c0-4c58-85d1-da09d13accfc .shogun-image-content {
  
    align-items: center;
  
}

.s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shg-align-container {
  text-align: center
}

.s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shogun-image {
    
    
  }


.s-c2d58123-a3c0-4c58-85d1-da09d13accfc .shogun-image-content {
  
    align-items: center;
  
}

.s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shg-align-container {
  text-align: center
}

.s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c2d58123-a3c0-4c58-85d1-da09d13accfc.shogun-image {
  box-sizing: border-box;
}


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

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

#s-e849a529-2e02-44af-b361-02510924880c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-e849a529-2e02-44af-b361-02510924880c {
  margin-top: -15px;
margin-bottom: -28px;
}
}
#s-e849a529-2e02-44af-b361-02510924880c .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "CENTURY";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


@media (max-width: 767px){#s-e849a529-2e02-44af-b361-02510924880c .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "CENTURY";
  font-style:  normal ;
  font-size: 22px;
  
  
  
}


}
.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-b04a4407-de8f-4273-8b27-8b73408d17fc {
  margin-top: 50px;
padding-left: 46px;
padding-right: 46px;
}
@media (max-width: 767px){#s-b04a4407-de8f-4273-8b27-8b73408d17fc {
  margin-top: 40px;
margin-left: -1%;
margin-bottom: -20px;
margin-right: -1%;
padding-left: 62px;
padding-right: 62px;
}
}
@media (min-width: 0px) {
[id="s-b04a4407-de8f-4273-8b27-8b73408d17fc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b04a4407-de8f-4273-8b27-8b73408d17fc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b04a4407-de8f-4273-8b27-8b73408d17fc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b04a4407-de8f-4273-8b27-8b73408d17fc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

.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: ;
  font-family: ;
}

.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-c8b84d4d-1ba5-48f7-896f-477065d8aa70 {
  border-style: solid;
margin-top: 4px;
margin-bottom: 4px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 13px;
padding-right: 35px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
background-color: rgba(66, 66, 66, 0.5);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 0.5em;
color: rgba(255, 255, 255, 1);
background-position: center undefined;
letter-spacing: 0px;
}
#s-c8b84d4d-1ba5-48f7-896f-477065d8aa70:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c8b84d4d-1ba5-48f7-896f-477065d8aa70:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-c8b84d4d-1ba5-48f7-896f-477065d8aa70 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
line-height: 1em;
}
}

  #s-c8b84d4d-1ba5-48f7-896f-477065d8aa70-root {
    text-align: center;
  }


#s-c8b84d4d-1ba5-48f7-896f-477065d8aa70.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
@media (min-width: 1200px){
  #s-c8b84d4d-1ba5-48f7-896f-477065d8aa70-root {
    text-align: center;
  }


#s-c8b84d4d-1ba5-48f7-896f-477065d8aa70.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c8b84d4d-1ba5-48f7-896f-477065d8aa70-root {
    text-align: center;
  }


#s-c8b84d4d-1ba5-48f7-896f-477065d8aa70.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c8b84d4d-1ba5-48f7-896f-477065d8aa70-root {
    text-align: center;
  }


#s-c8b84d4d-1ba5-48f7-896f-477065d8aa70.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
}@media (max-width: 767px){
  #s-c8b84d4d-1ba5-48f7-896f-477065d8aa70-root {
    text-align: center;
  }


#s-c8b84d4d-1ba5-48f7-896f-477065d8aa70.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  font-family: Calibre;
  display:  block ;
}
}
#s-d97490e2-230c-473b-be47-11e47ad9ab62 {
  border-style: solid;
margin-top: 4px;
margin-bottom: 4px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 13px;
padding-right: 35px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
background-color: rgba(66, 66, 66, 0.5);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 0.5em;
color: rgba(255, 255, 255, 1);
letter-spacing: 0px;
}
#s-d97490e2-230c-473b-be47-11e47ad9ab62:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d97490e2-230c-473b-be47-11e47ad9ab62:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-d97490e2-230c-473b-be47-11e47ad9ab62 {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
line-height: 1em;
}
}

  #s-d97490e2-230c-473b-be47-11e47ad9ab62-root {
    text-align: center;
  }


#s-d97490e2-230c-473b-be47-11e47ad9ab62.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
@media (min-width: 1200px){
  #s-d97490e2-230c-473b-be47-11e47ad9ab62-root {
    text-align: center;
  }


#s-d97490e2-230c-473b-be47-11e47ad9ab62.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d97490e2-230c-473b-be47-11e47ad9ab62-root {
    text-align: center;
  }


#s-d97490e2-230c-473b-be47-11e47ad9ab62.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d97490e2-230c-473b-be47-11e47ad9ab62-root {
    text-align: center;
  }


#s-d97490e2-230c-473b-be47-11e47ad9ab62.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
}@media (max-width: 767px){
  #s-d97490e2-230c-473b-be47-11e47ad9ab62-root {
    text-align: center;
  }


#s-d97490e2-230c-473b-be47-11e47ad9ab62.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  font-family: Calibre;
  display:  block ;
}
}
#s-14e190ef-7aa0-40f4-b9f6-f4d59c72fb5a {
  border-style: solid;
margin-top: 4px;
margin-left: 0%;
margin-bottom: 4px;
margin-right: 0%;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 13px;
padding-right: 35px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
background-color: rgba(66, 66, 66, 0.5);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 0.5em;
color: rgba(255, 255, 255, 1);
}
#s-14e190ef-7aa0-40f4-b9f6-f4d59c72fb5a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-14e190ef-7aa0-40f4-b9f6-f4d59c72fb5a:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-14e190ef-7aa0-40f4-b9f6-f4d59c72fb5a {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
line-height: 1em;
}
}

  #s-14e190ef-7aa0-40f4-b9f6-f4d59c72fb5a-root {
    text-align: center;
  }


#s-14e190ef-7aa0-40f4-b9f6-f4d59c72fb5a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
@media (min-width: 1200px){
  #s-14e190ef-7aa0-40f4-b9f6-f4d59c72fb5a-root {
    text-align: center;
  }


#s-14e190ef-7aa0-40f4-b9f6-f4d59c72fb5a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-14e190ef-7aa0-40f4-b9f6-f4d59c72fb5a-root {
    text-align: center;
  }


#s-14e190ef-7aa0-40f4-b9f6-f4d59c72fb5a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-14e190ef-7aa0-40f4-b9f6-f4d59c72fb5a-root {
    text-align: center;
  }


#s-14e190ef-7aa0-40f4-b9f6-f4d59c72fb5a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
}@media (max-width: 767px){
  #s-14e190ef-7aa0-40f4-b9f6-f4d59c72fb5a-root {
    text-align: center;
  }


#s-14e190ef-7aa0-40f4-b9f6-f4d59c72fb5a.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  font-family: Calibre;
  display:  block ;
}
}
#s-2802102c-cb83-42ad-8c02-88149897b31d {
  border-style: solid;
margin-top: 4px;
margin-bottom: 4px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 13px;
padding-right: 35px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(255, 255, 255, 1);
background-color: rgba(66, 66, 66, 0.5);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
line-height: 0.5em;
color: rgba(255, 255, 255, 1);
}
#s-2802102c-cb83-42ad-8c02-88149897b31d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2802102c-cb83-42ad-8c02-88149897b31d:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-2802102c-cb83-42ad-8c02-88149897b31d {
  padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
line-height: 1em;
}
}

  #s-2802102c-cb83-42ad-8c02-88149897b31d-root {
    text-align: center;
  }


#s-2802102c-cb83-42ad-8c02-88149897b31d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
@media (min-width: 1200px){
  #s-2802102c-cb83-42ad-8c02-88149897b31d-root {
    text-align: center;
  }


#s-2802102c-cb83-42ad-8c02-88149897b31d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2802102c-cb83-42ad-8c02-88149897b31d-root {
    text-align: center;
  }


#s-2802102c-cb83-42ad-8c02-88149897b31d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2802102c-cb83-42ad-8c02-88149897b31d-root {
    text-align: center;
  }


#s-2802102c-cb83-42ad-8c02-88149897b31d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Calibre;
  display:  block ;
}
}@media (max-width: 767px){
  #s-2802102c-cb83-42ad-8c02-88149897b31d-root {
    text-align: center;
  }


#s-2802102c-cb83-42ad-8c02-88149897b31d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  
  
  font-family: Calibre;
  display:  block ;
}
}
#s-836310b9-727d-4777-8d18-634fc9b6ab98 {
  text-align: left;
}
@media (max-width: 767px){#s-836310b9-727d-4777-8d18-634fc9b6ab98 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 0px;
max-width: 0px;
}
}
#s-f35040d9-aa5d-4c0d-b0d9-4881b159922a {
  margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}








#s-f35040d9-aa5d-4c0d-b0d9-4881b159922a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f35040d9-aa5d-4c0d-b0d9-4881b159922a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-65626bc5-e9c4-4c4d-ad4d-a0eb7a8dba17 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: left center;
}
@media (min-width: 1200px){#s-65626bc5-e9c4-4c4d-ad4d-a0eb7a8dba17 {
  min-height: 400px;
}
}@media (max-width: 767px){#s-65626bc5-e9c4-4c4d-ad4d-a0eb7a8dba17 {
  min-height: 250px;
}
}
#s-65626bc5-e9c4-4c4d-ad4d-a0eb7a8dba17 {
  background-image: url(https://i.shgcdn.com/1485197f-29d3-4167-8a93-178fd3915228/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-65626bc5-e9c4-4c4d-ad4d-a0eb7a8dba17 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-65626bc5-e9c4-4c4d-ad4d-a0eb7a8dba17.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-954d180a-d762-4ece-bd49-95f69dc08129 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 20px;
margin-right: 0%;
min-height: 50px;
background-attachment: scroll;
}








#s-954d180a-d762-4ece-bd49-95f69dc08129 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-954d180a-d762-4ece-bd49-95f69dc08129.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2e620b64-1116-439a-afca-67afe75bf110 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: left;
}
@media (max-width: 767px){#s-2e620b64-1116-439a-afca-67afe75bf110 {
  padding-left: 6%;
padding-right: 6%;
}
}
#s-2e620b64-1116-439a-afca-67afe75bf110 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "CENTURY";
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-2e620b64-1116-439a-afca-67afe75bf110 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "CENTURY";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}


}
#s-106aa4bc-5c72-44b2-b9f4-b8f76756c09c {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-106aa4bc-5c72-44b2-b9f4-b8f76756c09c {
  margin-top: 13px;
margin-bottom: 13px;
}
}@media (max-width: 767px){#s-106aa4bc-5c72-44b2-b9f4-b8f76756c09c {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 6%;
padding-right: 6%;
}
}
#s-106aa4bc-5c72-44b2-b9f4-b8f76756c09c .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: left;
}


@media (max-width: 767px){#s-106aa4bc-5c72-44b2-b9f4-b8f76756c09c .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: left;
}


}
#s-5dda8a7f-b510-486c-b580-1595b0c3dd13 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: left;
}
@media (max-width: 767px){#s-5dda8a7f-b510-486c-b580-1595b0c3dd13 {
  margin-top: 0px;
margin-bottom: 25px;
padding-left: 6%;
padding-right: 6%;
}
}
#s-5dda8a7f-b510-486c-b580-1595b0c3dd13 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  
  text-align: left;
}


@media (max-width: 767px){#s-5dda8a7f-b510-486c-b580-1595b0c3dd13 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 11px;
  line-height: 1em;
  
  text-align: left;
}


}
#s-4984a3d2-acb7-4c74-bb25-fbf0051ef098 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: center;
}
@media (max-width: 767px){#s-4984a3d2-acb7-4c74-bb25-fbf0051ef098 {
  margin-top: 11px;
margin-bottom: -11px;
}
}
#s-4984a3d2-acb7-4c74-bb25-fbf0051ef098 .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  line-height: 2em;
  
  text-align: center;
}


@media (max-width: 767px){#s-4984a3d2-acb7-4c74-bb25-fbf0051ef098 .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 2em;
  
  text-align: center;
}


}
#s-415bbdb3-b94c-42e2-b7d3-a8879fa1a196 {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 30px;
padding-right: 30px;
}

@media (min-width: 0px) {
[id="s-415bbdb3-b94c-42e2-b7d3-a8879fa1a196"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-415bbdb3-b94c-42e2-b7d3-a8879fa1a196"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-415bbdb3-b94c-42e2-b7d3-a8879fa1a196"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-415bbdb3-b94c-42e2-b7d3-a8879fa1a196"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d9032b7a-7190-47b3-94de-21184379d39d {
  margin-top: 2px;
margin-bottom: 2px;
text-align: center;
opacity: 1;
}
@media (min-width: 768px) and (max-width: 991px){#s-d9032b7a-7190-47b3-94de-21184379d39d {
  
}
}@media (max-width: 767px){#s-d9032b7a-7190-47b3-94de-21184379d39d {
  
}
}






  img.s-d9032b7a-7190-47b3-94de-21184379d39d.shogun-image {
    
    
  }


.s-d9032b7a-7190-47b3-94de-21184379d39d .shogun-image-content {
  
    align-items: center;
  
}

.s-d9032b7a-7190-47b3-94de-21184379d39d.shg-align-container {
  text-align: center
}

.s-d9032b7a-7190-47b3-94de-21184379d39d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9032b7a-7190-47b3-94de-21184379d39d.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-d9032b7a-7190-47b3-94de-21184379d39d.shogun-image {
    
    
  }


.s-d9032b7a-7190-47b3-94de-21184379d39d .shogun-image-content {
  
    align-items: center;
  
}

.s-d9032b7a-7190-47b3-94de-21184379d39d.shg-align-container {
  text-align: center
}

.s-d9032b7a-7190-47b3-94de-21184379d39d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9032b7a-7190-47b3-94de-21184379d39d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d9032b7a-7190-47b3-94de-21184379d39d.shogun-image {
    
    
  }


.s-d9032b7a-7190-47b3-94de-21184379d39d .shogun-image-content {
  
    align-items: center;
  
}

.s-d9032b7a-7190-47b3-94de-21184379d39d.shg-align-container {
  text-align: center
}

.s-d9032b7a-7190-47b3-94de-21184379d39d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9032b7a-7190-47b3-94de-21184379d39d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d9032b7a-7190-47b3-94de-21184379d39d.shogun-image {
    
    
  }


.s-d9032b7a-7190-47b3-94de-21184379d39d .shogun-image-content {
  
    align-items: center;
  
}

.s-d9032b7a-7190-47b3-94de-21184379d39d.shg-align-container {
  text-align: center
}

.s-d9032b7a-7190-47b3-94de-21184379d39d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9032b7a-7190-47b3-94de-21184379d39d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d9032b7a-7190-47b3-94de-21184379d39d.shogun-image {
    
    
  }


.s-d9032b7a-7190-47b3-94de-21184379d39d .shogun-image-content {
  
    align-items: center;
  
}

.s-d9032b7a-7190-47b3-94de-21184379d39d.shg-align-container {
  text-align: center
}

.s-d9032b7a-7190-47b3-94de-21184379d39d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d9032b7a-7190-47b3-94de-21184379d39d.shogun-image {
  box-sizing: border-box;
}


}
#s-5e4f4c12-3591-486b-b8f7-b4a58c5c832d {
  margin-top: 125px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-5e4f4c12-3591-486b-b8f7-b4a58c5c832d {
  margin-top: 0px;
}
}@media (max-width: 767px){#s-5e4f4c12-3591-486b-b8f7-b4a58c5c832d {
  margin-top: 12px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
}
#s-5e4f4c12-3591-486b-b8f7-b4a58c5c832d .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-5e4f4c12-3591-486b-b8f7-b4a58c5c832d .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: center;
}


}@media (max-width: 767px){#s-5e4f4c12-3591-486b-b8f7-b4a58c5c832d .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 9px;
  
  
  text-align: center;
}


}
#s-b9fc364e-16e6-409c-97af-71b896464820 {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-b9fc364e-16e6-409c-97af-71b896464820 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: -20px;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
}






  img.s-b9fc364e-16e6-409c-97af-71b896464820.shogun-image {
    
    
  }


.s-b9fc364e-16e6-409c-97af-71b896464820 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9fc364e-16e6-409c-97af-71b896464820.shg-align-container {
  text-align: center
}

.s-b9fc364e-16e6-409c-97af-71b896464820.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9fc364e-16e6-409c-97af-71b896464820.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-b9fc364e-16e6-409c-97af-71b896464820.shogun-image {
    
    
  }


.s-b9fc364e-16e6-409c-97af-71b896464820 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9fc364e-16e6-409c-97af-71b896464820.shg-align-container {
  text-align: center
}

.s-b9fc364e-16e6-409c-97af-71b896464820.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9fc364e-16e6-409c-97af-71b896464820.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b9fc364e-16e6-409c-97af-71b896464820.shogun-image {
    
    
  }


.s-b9fc364e-16e6-409c-97af-71b896464820 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9fc364e-16e6-409c-97af-71b896464820.shg-align-container {
  text-align: center
}

.s-b9fc364e-16e6-409c-97af-71b896464820.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9fc364e-16e6-409c-97af-71b896464820.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b9fc364e-16e6-409c-97af-71b896464820.shogun-image {
    
    
  }


.s-b9fc364e-16e6-409c-97af-71b896464820 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9fc364e-16e6-409c-97af-71b896464820.shg-align-container {
  text-align: center
}

.s-b9fc364e-16e6-409c-97af-71b896464820.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9fc364e-16e6-409c-97af-71b896464820.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b9fc364e-16e6-409c-97af-71b896464820.shogun-image {
    
    
  }


.s-b9fc364e-16e6-409c-97af-71b896464820 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9fc364e-16e6-409c-97af-71b896464820.shg-align-container {
  text-align: center
}

.s-b9fc364e-16e6-409c-97af-71b896464820.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9fc364e-16e6-409c-97af-71b896464820.shogun-image {
  box-sizing: border-box;
}


}
#s-df2f6a79-1c1f-4fb4-8c66-20cff291eeb4 {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 30px;
padding-right: 30px;
}

@media (min-width: 0px) {
[id="s-df2f6a79-1c1f-4fb4-8c66-20cff291eeb4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-df2f6a79-1c1f-4fb4-8c66-20cff291eeb4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-df2f6a79-1c1f-4fb4-8c66-20cff291eeb4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-df2f6a79-1c1f-4fb4-8c66-20cff291eeb4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-7d0a24c1-edec-4969-90ba-630ce72f7f0e {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-7d0a24c1-edec-4969-90ba-630ce72f7f0e .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-7d0a24c1-edec-4969-90ba-630ce72f7f0e .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-7d0a24c1-edec-4969-90ba-630ce72f7f0e .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-6b0ec1a9-4c09-4360-859f-7cae7e1eb329 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-6b0ec1a9-4c09-4360-859f-7cae7e1eb329 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-6b0ec1a9-4c09-4360-859f-7cae7e1eb329 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-6b0ec1a9-4c09-4360-859f-7cae7e1eb329 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-3b63160e-ea07-41bb-8bc6-014016c16646 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-3b63160e-ea07-41bb-8bc6-014016c16646 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-3b63160e-ea07-41bb-8bc6-014016c16646 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-3b63160e-ea07-41bb-8bc6-014016c16646 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-7c48018e-eb06-4dde-83bd-f05a24c1c9b5 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-7c48018e-eb06-4dde-83bd-f05a24c1c9b5 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-7c48018e-eb06-4dde-83bd-f05a24c1c9b5 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-7c48018e-eb06-4dde-83bd-f05a24c1c9b5 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-9d4ee235-03e1-47e6-89d5-9362fd4726c6 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-9d4ee235-03e1-47e6-89d5-9362fd4726c6 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-9d4ee235-03e1-47e6-89d5-9362fd4726c6 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-9d4ee235-03e1-47e6-89d5-9362fd4726c6 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-94487d52-4e41-41be-8751-75ddf8f80ed9 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-94487d52-4e41-41be-8751-75ddf8f80ed9 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-94487d52-4e41-41be-8751-75ddf8f80ed9 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-94487d52-4e41-41be-8751-75ddf8f80ed9 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-1fe1a40a-b8a4-4d81-89e3-1fedb63649de {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-1fe1a40a-b8a4-4d81-89e3-1fedb63649de .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-1fe1a40a-b8a4-4d81-89e3-1fedb63649de .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-1fe1a40a-b8a4-4d81-89e3-1fedb63649de .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-b5ad8742-5cce-4a10-9f0e-0555d905d225 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-b5ad8742-5cce-4a10-9f0e-0555d905d225 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-b5ad8742-5cce-4a10-9f0e-0555d905d225 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-b5ad8742-5cce-4a10-9f0e-0555d905d225 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


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

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

#s-b71f6ddb-1831-44cc-bd12-68066e0d3f23 hr {
  border-top: 2px solid rgba(66, 66, 66, 0.5);
}
@media (max-width: 767px){#s-b71f6ddb-1831-44cc-bd12-68066e0d3f23 hr {
  border-top: 1px solid rgba(66, 66, 66, 0.5);
}
}
#s-e222b23c-fe5c-497b-8b7e-d38d124331cc {
  text-align: left;
}

#s-04461583-1a8a-4602-be86-eb2a268bb715 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: left center;
}
@media (min-width: 1200px){#s-04461583-1a8a-4602-be86-eb2a268bb715 {
  min-height: 400px;
}
}@media (max-width: 767px){#s-04461583-1a8a-4602-be86-eb2a268bb715 {
  min-height: 250px;
}
}







#s-04461583-1a8a-4602-be86-eb2a268bb715 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-04461583-1a8a-4602-be86-eb2a268bb715.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-679721a8-d609-4680-b0a1-49f1d2463238 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 20px;
margin-right: 0%;
min-height: 50px;
background-attachment: scroll;
}








#s-679721a8-d609-4680-b0a1-49f1d2463238 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-679721a8-d609-4680-b0a1-49f1d2463238.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-43fdb220-f3f9-48ec-9de3-cd154cb81e3b {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: left;
}
@media (max-width: 767px){#s-43fdb220-f3f9-48ec-9de3-cd154cb81e3b {
  padding-left: 6%;
padding-right: 6%;
}
}
#s-43fdb220-f3f9-48ec-9de3-cd154cb81e3b .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "CENTURY";
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-43fdb220-f3f9-48ec-9de3-cd154cb81e3b .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "CENTURY";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}


}
#s-ba95fa2c-ad36-4e58-aad8-bbcdaf429fdd {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-ba95fa2c-ad36-4e58-aad8-bbcdaf429fdd {
  margin-top: 13px;
margin-bottom: 13px;
}
}@media (max-width: 767px){#s-ba95fa2c-ad36-4e58-aad8-bbcdaf429fdd {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 6%;
padding-right: 6%;
}
}
#s-ba95fa2c-ad36-4e58-aad8-bbcdaf429fdd .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: left;
}


@media (max-width: 767px){#s-ba95fa2c-ad36-4e58-aad8-bbcdaf429fdd .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: left;
}


}
#s-31c174f2-34ea-43b5-8819-33ccc5d36bdb {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: left;
}
@media (max-width: 767px){#s-31c174f2-34ea-43b5-8819-33ccc5d36bdb {
  margin-top: 0px;
margin-bottom: 25px;
padding-left: 6%;
padding-right: 6%;
}
}
#s-31c174f2-34ea-43b5-8819-33ccc5d36bdb .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-31c174f2-34ea-43b5-8819-33ccc5d36bdb .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-31c174f2-34ea-43b5-8819-33ccc5d36bdb .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1em;
  
  text-align: left;
}


}
#s-610658e0-89c2-4e1a-b2f1-591077b92379 {
  margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}








#s-610658e0-89c2-4e1a-b2f1-591077b92379 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-610658e0-89c2-4e1a-b2f1-591077b92379.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-42b6d7f7-6c1a-416d-b514-068b4b25221a {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-42b6d7f7-6c1a-416d-b514-068b4b25221a {
  margin-top: 20px;
margin-bottom: -15px;
}
}@media (max-width: 767px){#s-42b6d7f7-6c1a-416d-b514-068b4b25221a {
  margin-top: 15px;
margin-bottom: -31px;
}
}
#s-42b6d7f7-6c1a-416d-b514-068b4b25221a .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 2em;
  
  text-align: center;
}


@media (min-width: 1200px){#s-42b6d7f7-6c1a-416d-b514-068b4b25221a .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  line-height: 2em;
  
  text-align: center;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-42b6d7f7-6c1a-416d-b514-068b4b25221a .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 2em;
  
  text-align: center;
}


}@media (min-width: 768px) and (max-width: 991px){#s-42b6d7f7-6c1a-416d-b514-068b4b25221a .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 2em;
  
  text-align: center;
}


}
#s-d331d3f6-66ea-444b-9ea6-89c601f304c9 {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 30px;
padding-right: 30px;
}

@media (min-width: 0px) {
[id="s-d331d3f6-66ea-444b-9ea6-89c601f304c9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d331d3f6-66ea-444b-9ea6-89c601f304c9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-d331d3f6-66ea-444b-9ea6-89c601f304c9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-d331d3f6-66ea-444b-9ea6-89c601f304c9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-0ea8844f-1bd6-45be-b241-efab938d5957 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-0ea8844f-1bd6-45be-b241-efab938d5957 {
  margin-top: 10px;
margin-bottom: 0px;
}
}
#s-0ea8844f-1bd6-45be-b241-efab938d5957 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-0ea8844f-1bd6-45be-b241-efab938d5957 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-0ea8844f-1bd6-45be-b241-efab938d5957 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-bef2d2d8-8729-4f35-ae47-60aa9f277a05 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-bef2d2d8-8729-4f35-ae47-60aa9f277a05 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-bef2d2d8-8729-4f35-ae47-60aa9f277a05 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-bef2d2d8-8729-4f35-ae47-60aa9f277a05 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-5835a0cd-7d4d-4277-bcab-ffb23a7e0368 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-5835a0cd-7d4d-4277-bcab-ffb23a7e0368 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-5835a0cd-7d4d-4277-bcab-ffb23a7e0368 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-5835a0cd-7d4d-4277-bcab-ffb23a7e0368 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-71d69bba-b0af-417d-849d-547e69a26121 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-71d69bba-b0af-417d-849d-547e69a26121 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-71d69bba-b0af-417d-849d-547e69a26121 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-71d69bba-b0af-417d-849d-547e69a26121 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-e6c59f3a-0211-4fe8-a248-d94770a26387 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-e6c59f3a-0211-4fe8-a248-d94770a26387 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-e6c59f3a-0211-4fe8-a248-d94770a26387 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-e6c59f3a-0211-4fe8-a248-d94770a26387 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-62ce4ead-a9d9-4fd0-bc8f-42751cf7f4d5 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-62ce4ead-a9d9-4fd0-bc8f-42751cf7f4d5 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-62ce4ead-a9d9-4fd0-bc8f-42751cf7f4d5 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-62ce4ead-a9d9-4fd0-bc8f-42751cf7f4d5 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-d5863ddf-ab13-4399-93a3-125f194d9495 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-d5863ddf-ab13-4399-93a3-125f194d9495 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-d5863ddf-ab13-4399-93a3-125f194d9495 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-d5863ddf-ab13-4399-93a3-125f194d9495 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-6d7331ef-64f3-4809-bb77-bd485368fb45 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-6d7331ef-64f3-4809-bb77-bd485368fb45 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-6d7331ef-64f3-4809-bb77-bd485368fb45 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-6d7331ef-64f3-4809-bb77-bd485368fb45 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-b22d4146-c1c0-4dce-9088-a77ec37ba2d0 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-b22d4146-c1c0-4dce-9088-a77ec37ba2d0 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-b22d4146-c1c0-4dce-9088-a77ec37ba2d0 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-b22d4146-c1c0-4dce-9088-a77ec37ba2d0 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-f334db11-07f9-42e5-a88c-82c591324c38 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: center;
}
@media (max-width: 767px){#s-f334db11-07f9-42e5-a88c-82c591324c38 {
  margin-top: -2px;
margin-bottom: 12px;
}
}
#s-f334db11-07f9-42e5-a88c-82c591324c38 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-f334db11-07f9-42e5-a88c-82c591324c38 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 26px;
  
  
  text-align: center;
}


}@media (max-width: 767px){#s-f334db11-07f9-42e5-a88c-82c591324c38 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 21px;
  
  
  text-align: center;
}


}
#s-f7a965f6-4c00-4362-b99f-7b7598228758 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-f7a965f6-4c00-4362-b99f-7b7598228758 {
  margin-left: 6%;
margin-right: 6%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f7a965f6-4c00-4362-b99f-7b7598228758 {
  padding-left: 4%;
padding-right: 4%;
}
}@media (max-width: 767px){#s-f7a965f6-4c00-4362-b99f-7b7598228758 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-left: 6%;
padding-bottom: 0px;
padding-right: 6%;
text-align: left;
}
}
#s-f7a965f6-4c00-4362-b99f-7b7598228758 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-f7a965f6-4c00-4362-b99f-7b7598228758 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: center;
}


}@media (max-width: 767px){#s-f7a965f6-4c00-4362-b99f-7b7598228758 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}


}
#s-98ac2a26-aff0-481f-ace7-69f97476df41 {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 30px;
padding-right: 30px;
}

@media (min-width: 0px) {
[id="s-98ac2a26-aff0-481f-ace7-69f97476df41"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-98ac2a26-aff0-481f-ace7-69f97476df41"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-98ac2a26-aff0-481f-ace7-69f97476df41"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-98ac2a26-aff0-481f-ace7-69f97476df41"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 0px) {
[id="s-728c99d3-2f4d-4c87-9bba-15b71609315a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-728c99d3-2f4d-4c87-9bba-15b71609315a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-728c99d3-2f4d-4c87-9bba-15b71609315a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-728c99d3-2f4d-4c87-9bba-15b71609315a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

#s-179875a3-bd85-4165-92ee-d07e2e48fc32 {
  margin-bottom: 10px;
text-align: center;
}







  img.s-179875a3-bd85-4165-92ee-d07e2e48fc32.shogun-image {
    
    
  }


.s-179875a3-bd85-4165-92ee-d07e2e48fc32 .shogun-image-content {
  
    align-items: center;
  
}

.s-179875a3-bd85-4165-92ee-d07e2e48fc32.shg-align-container {
  text-align: center
}

.s-179875a3-bd85-4165-92ee-d07e2e48fc32.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-179875a3-bd85-4165-92ee-d07e2e48fc32.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-179875a3-bd85-4165-92ee-d07e2e48fc32.shogun-image {
    
    
  }


.s-179875a3-bd85-4165-92ee-d07e2e48fc32 .shogun-image-content {
  
    align-items: center;
  
}

.s-179875a3-bd85-4165-92ee-d07e2e48fc32.shg-align-container {
  text-align: center
}

.s-179875a3-bd85-4165-92ee-d07e2e48fc32.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-179875a3-bd85-4165-92ee-d07e2e48fc32.shogun-image {
  box-sizing: border-box;
}


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





  img.s-179875a3-bd85-4165-92ee-d07e2e48fc32.shogun-image {
    
    
  }


.s-179875a3-bd85-4165-92ee-d07e2e48fc32 .shogun-image-content {
  
    align-items: center;
  
}

.s-179875a3-bd85-4165-92ee-d07e2e48fc32.shg-align-container {
  text-align: center
}

.s-179875a3-bd85-4165-92ee-d07e2e48fc32.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-179875a3-bd85-4165-92ee-d07e2e48fc32.shogun-image {
  box-sizing: border-box;
}


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





  img.s-179875a3-bd85-4165-92ee-d07e2e48fc32.shogun-image {
    
    
  }


.s-179875a3-bd85-4165-92ee-d07e2e48fc32 .shogun-image-content {
  
    align-items: center;
  
}

.s-179875a3-bd85-4165-92ee-d07e2e48fc32.shg-align-container {
  text-align: center
}

.s-179875a3-bd85-4165-92ee-d07e2e48fc32.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-179875a3-bd85-4165-92ee-d07e2e48fc32.shogun-image {
  box-sizing: border-box;
}


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





  img.s-179875a3-bd85-4165-92ee-d07e2e48fc32.shogun-image {
    
    
  }


.s-179875a3-bd85-4165-92ee-d07e2e48fc32 .shogun-image-content {
  
    align-items: center;
  
}

.s-179875a3-bd85-4165-92ee-d07e2e48fc32.shg-align-container {
  text-align: center
}

.s-179875a3-bd85-4165-92ee-d07e2e48fc32.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-179875a3-bd85-4165-92ee-d07e2e48fc32.shogun-image {
  box-sizing: border-box;
}


}
#s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9 {
  text-align: center;
}







  img.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shogun-image {
    
    
  }


.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9 .shogun-image-content {
  
    align-items: center;
  
}

.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shg-align-container {
  text-align: center
}

.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shogun-image {
    
    
  }


.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9 .shogun-image-content {
  
    align-items: center;
  
}

.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shg-align-container {
  text-align: center
}

.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shogun-image {
    
    
  }


.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9 .shogun-image-content {
  
    align-items: center;
  
}

.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shg-align-container {
  text-align: center
}

.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shogun-image {
    
    
  }


.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9 .shogun-image-content {
  
    align-items: center;
  
}

.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shg-align-container {
  text-align: center
}

.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shogun-image {
    
    
  }


.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9 .shogun-image-content {
  
    align-items: center;
  
}

.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shg-align-container {
  text-align: center
}

.s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44300f7b-d9d7-4c58-9866-94dc7fbaabf9.shogun-image {
  box-sizing: border-box;
}


}
#s-3832af48-d1e5-497b-bb58-57c54995ac2f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-3832af48-d1e5-497b-bb58-57c54995ac2f {
  margin-top: 0px;
}
}
#s-3832af48-d1e5-497b-bb58-57c54995ac2f .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-3832af48-d1e5-497b-bb58-57c54995ac2f .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 17px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-f4ce43ac-562d-4282-a827-ee9c5a1d5b38 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-f4ce43ac-562d-4282-a827-ee9c5a1d5b38 {
  margin-top: 10px;
margin-bottom: 10px;
}
}
#s-f4ce43ac-562d-4282-a827-ee9c5a1d5b38 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-f4ce43ac-562d-4282-a827-ee9c5a1d5b38 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
@media (min-width: 0px) {
[id="s-e5125df1-054e-4f6a-aadb-170b56d636d6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e5125df1-054e-4f6a-aadb-170b56d636d6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-e5125df1-054e-4f6a-aadb-170b56d636d6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-e5125df1-054e-4f6a-aadb-170b56d636d6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

#s-750c36d3-12b2-431b-83c9-12761ed2c3ce {
  text-align: center;
}
@media (max-width: 767px){#s-750c36d3-12b2-431b-83c9-12761ed2c3ce {
  margin-bottom: 10px;
}
}






  img.s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shogun-image {
    
    
  }


.s-750c36d3-12b2-431b-83c9-12761ed2c3ce .shogun-image-content {
  
    align-items: center;
  
}

.s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shg-align-container {
  text-align: center
}

.s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shogun-image {
    
    
  }


.s-750c36d3-12b2-431b-83c9-12761ed2c3ce .shogun-image-content {
  
    align-items: center;
  
}

.s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shg-align-container {
  text-align: center
}

.s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shogun-image {
  box-sizing: border-box;
}


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





  img.s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shogun-image {
    
    
  }


.s-750c36d3-12b2-431b-83c9-12761ed2c3ce .shogun-image-content {
  
    align-items: center;
  
}

.s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shg-align-container {
  text-align: center
}

.s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shogun-image {
  box-sizing: border-box;
}


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





  img.s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shogun-image {
    
    
  }


.s-750c36d3-12b2-431b-83c9-12761ed2c3ce .shogun-image-content {
  
    align-items: center;
  
}

.s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shg-align-container {
  text-align: center
}

.s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shogun-image {
  box-sizing: border-box;
}


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





  img.s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shogun-image {
    
    
  }


.s-750c36d3-12b2-431b-83c9-12761ed2c3ce .shogun-image-content {
  
    align-items: center;
  
}

.s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shg-align-container {
  text-align: center
}

.s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-750c36d3-12b2-431b-83c9-12761ed2c3ce.shogun-image {
  box-sizing: border-box;
}


}
#s-61514b1f-b49c-4c2f-9e52-1566827e2a4c {
  text-align: center;
}







  img.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shogun-image {
    
    
  }


.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c .shogun-image-content {
  
    align-items: center;
  
}

.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shg-align-container {
  text-align: center
}

.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shogun-image {
    
    
  }


.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c .shogun-image-content {
  
    align-items: center;
  
}

.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shg-align-container {
  text-align: center
}

.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shogun-image {
    
    
  }


.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c .shogun-image-content {
  
    align-items: center;
  
}

.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shg-align-container {
  text-align: center
}

.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shogun-image {
    
    
  }


.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c .shogun-image-content {
  
    align-items: center;
  
}

.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shg-align-container {
  text-align: center
}

.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shogun-image {
    
    
  }


.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c .shogun-image-content {
  
    align-items: center;
  
}

.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shg-align-container {
  text-align: center
}

.s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-61514b1f-b49c-4c2f-9e52-1566827e2a4c.shogun-image {
  box-sizing: border-box;
}


}
#s-79bdf28b-af8e-4188-b8ca-b06c7fdc5607 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-79bdf28b-af8e-4188-b8ca-b06c7fdc5607 {
  margin-top: 0px;
}
}
#s-79bdf28b-af8e-4188-b8ca-b06c7fdc5607 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-79bdf28b-af8e-4188-b8ca-b06c7fdc5607 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 17px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-77f999b5-4564-4ce2-b41a-51e56f2fdfbf {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-77f999b5-4564-4ce2-b41a-51e56f2fdfbf {
  margin-top: 10px;
margin-bottom: 10px;
}
}
#s-77f999b5-4564-4ce2-b41a-51e56f2fdfbf .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 1200px){#s-77f999b5-4564-4ce2-b41a-51e56f2fdfbf .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (min-width: 768px) and (max-width: 991px){#s-77f999b5-4564-4ce2-b41a-51e56f2fdfbf .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-77f999b5-4564-4ce2-b41a-51e56f2fdfbf .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.2em;
  
  text-align: left;
}


}
@media (min-width: 0px) {
[id="s-2f5ad76d-ed20-492c-b679-e30343e7f78f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2f5ad76d-ed20-492c-b679-e30343e7f78f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-2f5ad76d-ed20-492c-b679-e30343e7f78f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-2f5ad76d-ed20-492c-b679-e30343e7f78f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

#s-4aa6be3f-80bd-4593-9fd4-a059dba4962a {
  text-align: center;
}
@media (max-width: 767px){#s-4aa6be3f-80bd-4593-9fd4-a059dba4962a {
  margin-top: 0px;
margin-bottom: 10px;
}
}






  img.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shogun-image {
    
    
  }


.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a .shogun-image-content {
  
    align-items: center;
  
}

.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shg-align-container {
  text-align: center
}

.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shogun-image {
    
    
  }


.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a .shogun-image-content {
  
    align-items: center;
  
}

.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shg-align-container {
  text-align: center
}

.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shogun-image {
    
    
  }


.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a .shogun-image-content {
  
    align-items: center;
  
}

.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shg-align-container {
  text-align: center
}

.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shogun-image {
    
    
  }


.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a .shogun-image-content {
  
    align-items: center;
  
}

.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shg-align-container {
  text-align: center
}

.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shogun-image {
    
    
  }


.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a .shogun-image-content {
  
    align-items: center;
  
}

.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shg-align-container {
  text-align: center
}

.s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4aa6be3f-80bd-4593-9fd4-a059dba4962a.shogun-image {
  box-sizing: border-box;
}


}
#s-446ed441-7549-452b-95ed-37124a9e98c9 {
  text-align: center;
}







  img.s-446ed441-7549-452b-95ed-37124a9e98c9.shogun-image {
    
    
  }


.s-446ed441-7549-452b-95ed-37124a9e98c9 .shogun-image-content {
  
    align-items: center;
  
}

.s-446ed441-7549-452b-95ed-37124a9e98c9.shg-align-container {
  text-align: center
}

.s-446ed441-7549-452b-95ed-37124a9e98c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-446ed441-7549-452b-95ed-37124a9e98c9.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-446ed441-7549-452b-95ed-37124a9e98c9.shogun-image {
    
    
  }


.s-446ed441-7549-452b-95ed-37124a9e98c9 .shogun-image-content {
  
    align-items: center;
  
}

.s-446ed441-7549-452b-95ed-37124a9e98c9.shg-align-container {
  text-align: center
}

.s-446ed441-7549-452b-95ed-37124a9e98c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-446ed441-7549-452b-95ed-37124a9e98c9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-446ed441-7549-452b-95ed-37124a9e98c9.shogun-image {
    
    
  }


.s-446ed441-7549-452b-95ed-37124a9e98c9 .shogun-image-content {
  
    align-items: center;
  
}

.s-446ed441-7549-452b-95ed-37124a9e98c9.shg-align-container {
  text-align: center
}

.s-446ed441-7549-452b-95ed-37124a9e98c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-446ed441-7549-452b-95ed-37124a9e98c9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-446ed441-7549-452b-95ed-37124a9e98c9.shogun-image {
    
    
  }


.s-446ed441-7549-452b-95ed-37124a9e98c9 .shogun-image-content {
  
    align-items: center;
  
}

.s-446ed441-7549-452b-95ed-37124a9e98c9.shg-align-container {
  text-align: center
}

.s-446ed441-7549-452b-95ed-37124a9e98c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-446ed441-7549-452b-95ed-37124a9e98c9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-446ed441-7549-452b-95ed-37124a9e98c9.shogun-image {
    
    
  }


.s-446ed441-7549-452b-95ed-37124a9e98c9 .shogun-image-content {
  
    align-items: center;
  
}

.s-446ed441-7549-452b-95ed-37124a9e98c9.shg-align-container {
  text-align: center
}

.s-446ed441-7549-452b-95ed-37124a9e98c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-446ed441-7549-452b-95ed-37124a9e98c9.shogun-image {
  box-sizing: border-box;
}


}
#s-4eeede05-193d-4aed-b5ab-f83eacae61ff {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-4eeede05-193d-4aed-b5ab-f83eacae61ff {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-4eeede05-193d-4aed-b5ab-f83eacae61ff .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-4eeede05-193d-4aed-b5ab-f83eacae61ff .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 17px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-822ed009-d895-4ad5-86de-5b87598a6215 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-822ed009-d895-4ad5-86de-5b87598a6215 {
  margin-top: 10px;
margin-bottom: 10px;
}
}
#s-822ed009-d895-4ad5-86de-5b87598a6215 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 1200px){#s-822ed009-d895-4ad5-86de-5b87598a6215 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (min-width: 768px) and (max-width: 991px){#s-822ed009-d895-4ad5-86de-5b87598a6215 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-822ed009-d895-4ad5-86de-5b87598a6215 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-dbe76bd8-f06f-49dc-a994-f4f3deb67232 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: center;
}
@media (max-width: 767px){#s-dbe76bd8-f06f-49dc-a994-f4f3deb67232 {
  padding-left: 12%;
padding-right: 12%;
}
}
#s-dbe76bd8-f06f-49dc-a994-f4f3deb67232 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-dbe76bd8-f06f-49dc-a994-f4f3deb67232 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 26px;
  
  
  text-align: center;
}


}@media (max-width: 767px){#s-dbe76bd8-f06f-49dc-a994-f4f3deb67232 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 21px;
  
  
  text-align: center;
}


}
@media (min-width: 0px) {
[id="s-7f0c9cd4-7b72-459a-add7-c8c7834b50b9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7f0c9cd4-7b72-459a-add7-c8c7834b50b9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7f0c9cd4-7b72-459a-add7-c8c7834b50b9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7f0c9cd4-7b72-459a-add7-c8c7834b50b9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e0945647-88d0-4fdc-a693-ecf39447626d {
  text-align: center;
}
@media (max-width: 767px){#s-e0945647-88d0-4fdc-a693-ecf39447626d {
  margin-bottom: 10px;
}
}






  img.s-e0945647-88d0-4fdc-a693-ecf39447626d.shogun-image {
    
    
  }


.s-e0945647-88d0-4fdc-a693-ecf39447626d .shogun-image-content {
  
    align-items: center;
  
}

.s-e0945647-88d0-4fdc-a693-ecf39447626d.shg-align-container {
  text-align: center
}

.s-e0945647-88d0-4fdc-a693-ecf39447626d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0945647-88d0-4fdc-a693-ecf39447626d.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-e0945647-88d0-4fdc-a693-ecf39447626d.shogun-image {
    
    
  }


.s-e0945647-88d0-4fdc-a693-ecf39447626d .shogun-image-content {
  
    align-items: center;
  
}

.s-e0945647-88d0-4fdc-a693-ecf39447626d.shg-align-container {
  text-align: center
}

.s-e0945647-88d0-4fdc-a693-ecf39447626d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0945647-88d0-4fdc-a693-ecf39447626d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e0945647-88d0-4fdc-a693-ecf39447626d.shogun-image {
    
    
  }


.s-e0945647-88d0-4fdc-a693-ecf39447626d .shogun-image-content {
  
    align-items: center;
  
}

.s-e0945647-88d0-4fdc-a693-ecf39447626d.shg-align-container {
  text-align: center
}

.s-e0945647-88d0-4fdc-a693-ecf39447626d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0945647-88d0-4fdc-a693-ecf39447626d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e0945647-88d0-4fdc-a693-ecf39447626d.shogun-image {
    
    
  }


.s-e0945647-88d0-4fdc-a693-ecf39447626d .shogun-image-content {
  
    align-items: center;
  
}

.s-e0945647-88d0-4fdc-a693-ecf39447626d.shg-align-container {
  text-align: center
}

.s-e0945647-88d0-4fdc-a693-ecf39447626d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0945647-88d0-4fdc-a693-ecf39447626d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-e0945647-88d0-4fdc-a693-ecf39447626d.shogun-image {
    
    
  }


.s-e0945647-88d0-4fdc-a693-ecf39447626d .shogun-image-content {
  
    align-items: center;
  
}

.s-e0945647-88d0-4fdc-a693-ecf39447626d.shg-align-container {
  text-align: center
}

.s-e0945647-88d0-4fdc-a693-ecf39447626d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e0945647-88d0-4fdc-a693-ecf39447626d.shogun-image {
  box-sizing: border-box;
}


}
#s-5155a8f8-1441-495c-a11c-3f990626dd25 {
  text-align: center;
}







  img.s-5155a8f8-1441-495c-a11c-3f990626dd25.shogun-image {
    
    
  }


.s-5155a8f8-1441-495c-a11c-3f990626dd25 .shogun-image-content {
  
    align-items: center;
  
}

.s-5155a8f8-1441-495c-a11c-3f990626dd25.shg-align-container {
  text-align: center
}

.s-5155a8f8-1441-495c-a11c-3f990626dd25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5155a8f8-1441-495c-a11c-3f990626dd25.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-5155a8f8-1441-495c-a11c-3f990626dd25.shogun-image {
    
    
  }


.s-5155a8f8-1441-495c-a11c-3f990626dd25 .shogun-image-content {
  
    align-items: center;
  
}

.s-5155a8f8-1441-495c-a11c-3f990626dd25.shg-align-container {
  text-align: center
}

.s-5155a8f8-1441-495c-a11c-3f990626dd25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5155a8f8-1441-495c-a11c-3f990626dd25.shogun-image {
  box-sizing: border-box;
}


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





  img.s-5155a8f8-1441-495c-a11c-3f990626dd25.shogun-image {
    
    
  }


.s-5155a8f8-1441-495c-a11c-3f990626dd25 .shogun-image-content {
  
    align-items: center;
  
}

.s-5155a8f8-1441-495c-a11c-3f990626dd25.shg-align-container {
  text-align: center
}

.s-5155a8f8-1441-495c-a11c-3f990626dd25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5155a8f8-1441-495c-a11c-3f990626dd25.shogun-image {
  box-sizing: border-box;
}


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





  img.s-5155a8f8-1441-495c-a11c-3f990626dd25.shogun-image {
    
    
  }


.s-5155a8f8-1441-495c-a11c-3f990626dd25 .shogun-image-content {
  
    align-items: center;
  
}

.s-5155a8f8-1441-495c-a11c-3f990626dd25.shg-align-container {
  text-align: center
}

.s-5155a8f8-1441-495c-a11c-3f990626dd25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5155a8f8-1441-495c-a11c-3f990626dd25.shogun-image {
  box-sizing: border-box;
}


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





  img.s-5155a8f8-1441-495c-a11c-3f990626dd25.shogun-image {
    
    
  }


.s-5155a8f8-1441-495c-a11c-3f990626dd25 .shogun-image-content {
  
    align-items: center;
  
}

.s-5155a8f8-1441-495c-a11c-3f990626dd25.shg-align-container {
  text-align: center
}

.s-5155a8f8-1441-495c-a11c-3f990626dd25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5155a8f8-1441-495c-a11c-3f990626dd25.shogun-image {
  box-sizing: border-box;
}


}
#s-230eee0f-918f-4ca4-9018-64a7af4bcbc7 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-230eee0f-918f-4ca4-9018-64a7af4bcbc7 {
  margin-left: 2%;
margin-right: 2%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-230eee0f-918f-4ca4-9018-64a7af4bcbc7 {
  padding-left: 4%;
padding-right: 4%;
}
}@media (max-width: 767px){#s-230eee0f-918f-4ca4-9018-64a7af4bcbc7 {
  margin-top: 20px;
margin-bottom: 0px;
padding-left: 3%;
padding-right: 3%;
}
}
#s-230eee0f-918f-4ca4-9018-64a7af4bcbc7 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-230eee0f-918f-4ca4-9018-64a7af4bcbc7 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: center;
}


}@media (max-width: 767px){#s-230eee0f-918f-4ca4-9018-64a7af4bcbc7 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: center;
}


}
#s-e2d5b83f-29ab-4669-a76c-415be4f48de0 hr {
  border-top: 2px solid rgba(66, 66, 66, 0.5);
}
@media (max-width: 767px){#s-e2d5b83f-29ab-4669-a76c-415be4f48de0 hr {
  border-top: 1px solid rgba(66, 66, 66, 0.5);
}
}
#s-3af94e39-1987-48e1-a601-d3167c186105 {
  text-align: left;
}

#s-63f3e0b8-c222-4a47-8c58-6b17d9f280ee {
  margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}








#s-63f3e0b8-c222-4a47-8c58-6b17d9f280ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-63f3e0b8-c222-4a47-8c58-6b17d9f280ee.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c6bfb4b6-8b75-47ed-83ff-af879fbc200d {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: right center;
}
@media (min-width: 1200px){#s-c6bfb4b6-8b75-47ed-83ff-af879fbc200d {
  min-height: 400px;
}
}@media (max-width: 767px){#s-c6bfb4b6-8b75-47ed-83ff-af879fbc200d {
  min-height: 250px;
}
}







#s-c6bfb4b6-8b75-47ed-83ff-af879fbc200d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c6bfb4b6-8b75-47ed-83ff-af879fbc200d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-84ced2b3-19f7-4dc3-9a21-8b81652048f7 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 20px;
margin-right: 0%;
min-height: 50px;
background-attachment: scroll;
}
@media (max-width: 767px){#s-84ced2b3-19f7-4dc3-9a21-8b81652048f7 {
  background-attachment: scroll;
opacity: 1;
}
}







#s-84ced2b3-19f7-4dc3-9a21-8b81652048f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-84ced2b3-19f7-4dc3-9a21-8b81652048f7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-52bd9348-5c53-4912-bc7f-3eb63e0de255 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: left;
}
@media (max-width: 767px){#s-52bd9348-5c53-4912-bc7f-3eb63e0de255 {
  padding-left: 6%;
padding-right: 6%;
}
}
#s-52bd9348-5c53-4912-bc7f-3eb63e0de255 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "CENTURY";
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-52bd9348-5c53-4912-bc7f-3eb63e0de255 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "CENTURY";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}


}
#s-08d50eb4-5b06-4de8-b3c4-42fb2bc00a94 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-08d50eb4-5b06-4de8-b3c4-42fb2bc00a94 {
  margin-top: 13px;
margin-bottom: 13px;
}
}@media (max-width: 767px){#s-08d50eb4-5b06-4de8-b3c4-42fb2bc00a94 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 6%;
padding-right: 6%;
}
}
#s-08d50eb4-5b06-4de8-b3c4-42fb2bc00a94 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: left;
}


@media (max-width: 767px){#s-08d50eb4-5b06-4de8-b3c4-42fb2bc00a94 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: left;
}


}
#s-a91b7260-1fc1-41ad-9e5b-64930bec9249 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: left;
}
@media (max-width: 767px){#s-a91b7260-1fc1-41ad-9e5b-64930bec9249 {
  margin-top: 0px;
margin-bottom: 25px;
padding-left: 6%;
padding-right: 6%;
}
}
#s-a91b7260-1fc1-41ad-9e5b-64930bec9249 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-a91b7260-1fc1-41ad-9e5b-64930bec9249 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-a91b7260-1fc1-41ad-9e5b-64930bec9249 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1em;
  
  text-align: left;
}


}
#s-aec99ce5-fbf1-40d7-8f29-aa1ce2f62c0d {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-aec99ce5-fbf1-40d7-8f29-aa1ce2f62c0d {
  margin-bottom: 10px;
}
}@media (max-width: 767px){#s-aec99ce5-fbf1-40d7-8f29-aa1ce2f62c0d {
  margin-top: 15px;
margin-bottom: -31px;
}
}
#s-aec99ce5-fbf1-40d7-8f29-aa1ce2f62c0d .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 2em;
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-aec99ce5-fbf1-40d7-8f29-aa1ce2f62c0d .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 26px;
  line-height: 2em;
  
  text-align: center;
}


}@media (max-width: 767px){#s-aec99ce5-fbf1-40d7-8f29-aa1ce2f62c0d .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 2em;
  
  text-align: center;
}


}
#s-f5b7d5b7-1a58-47fa-8669-cd53e4ae59c4 {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 30px;
padding-right: 30px;
}

@media (min-width: 0px) {
[id="s-f5b7d5b7-1a58-47fa-8669-cd53e4ae59c4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f5b7d5b7-1a58-47fa-8669-cd53e4ae59c4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-f5b7d5b7-1a58-47fa-8669-cd53e4ae59c4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-f5b7d5b7-1a58-47fa-8669-cd53e4ae59c4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-f179bb86-444e-4ff5-aa9e-7a90719ef8c0 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-f179bb86-444e-4ff5-aa9e-7a90719ef8c0 {
  margin-top: 1px;
}
}
#s-f179bb86-444e-4ff5-aa9e-7a90719ef8c0 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-f179bb86-444e-4ff5-aa9e-7a90719ef8c0 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 17px;
  line-height: 1em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-f179bb86-444e-4ff5-aa9e-7a90719ef8c0 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-33508a07-4ec2-44ee-987a-521cc423d14e {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-33508a07-4ec2-44ee-987a-521cc423d14e {
  margin-top: 15px;
margin-bottom: 15px;
}
}
#s-33508a07-4ec2-44ee-987a-521cc423d14e .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-33508a07-4ec2-44ee-987a-521cc423d14e .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-33508a07-4ec2-44ee-987a-521cc423d14e .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-a805152a-14e8-4d21-ba5f-0767a0060a3b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-a805152a-14e8-4d21-ba5f-0767a0060a3b .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-a805152a-14e8-4d21-ba5f-0767a0060a3b .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-a805152a-14e8-4d21-ba5f-0767a0060a3b .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-ab34691a-9acc-4b81-85e6-c4f3cff39c7c {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-ab34691a-9acc-4b81-85e6-c4f3cff39c7c .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-ab34691a-9acc-4b81-85e6-c4f3cff39c7c .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 17px;
  line-height: 1em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-ab34691a-9acc-4b81-85e6-c4f3cff39c7c .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-033b5bad-42f9-47dd-9499-40ed91ab6bb6 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-033b5bad-42f9-47dd-9499-40ed91ab6bb6 {
  margin-top: 12px;
margin-bottom: 12px;
}
}
#s-033b5bad-42f9-47dd-9499-40ed91ab6bb6 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-033b5bad-42f9-47dd-9499-40ed91ab6bb6 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-033b5bad-42f9-47dd-9499-40ed91ab6bb6 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-c967c71f-b216-4538-940a-33cbab362160 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-c967c71f-b216-4538-940a-33cbab362160 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-c967c71f-b216-4538-940a-33cbab362160 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-c967c71f-b216-4538-940a-33cbab362160 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-1eaab25a-3182-484b-94be-53dea5ddc10a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-1eaab25a-3182-484b-94be-53dea5ddc10a .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-1eaab25a-3182-484b-94be-53dea5ddc10a .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 17px;
  line-height: 1em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-1eaab25a-3182-484b-94be-53dea5ddc10a .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-e4a1223a-d92e-464a-a924-64dff44ff808 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-e4a1223a-d92e-464a-a924-64dff44ff808 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-e4a1223a-d92e-464a-a924-64dff44ff808 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-e4a1223a-d92e-464a-a924-64dff44ff808 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-c5f7d225-b317-4c76-8a53-ec558d9abace {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-c5f7d225-b317-4c76-8a53-ec558d9abace .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-c5f7d225-b317-4c76-8a53-ec558d9abace .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-c5f7d225-b317-4c76-8a53-ec558d9abace .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-95ef4b84-e594-44fe-9f99-a63d13147367 hr {
  border-top: 2px solid rgba(66, 66, 66, 0.5);
}

#s-1a575d7f-3f86-4eb4-8fe8-dcc5e5fd8909 {
  text-align: left;
}

#s-6973f0d2-29d3-4a74-84a1-fbaecaed767d {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}
@media (min-width: 1200px){#s-6973f0d2-29d3-4a74-84a1-fbaecaed767d {
  min-height: 400px;
}
}@media (max-width: 767px){#s-6973f0d2-29d3-4a74-84a1-fbaecaed767d {
  min-height: 250px;
}
}







#s-6973f0d2-29d3-4a74-84a1-fbaecaed767d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6973f0d2-29d3-4a74-84a1-fbaecaed767d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-025f2cd1-6611-49a0-878d-5d7a9d5b8e8c {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 20px;
margin-right: 0%;
min-height: 50px;
background-attachment: scroll;
}








#s-025f2cd1-6611-49a0-878d-5d7a9d5b8e8c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-025f2cd1-6611-49a0-878d-5d7a9d5b8e8c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8714692c-e737-4558-9cbd-6788237d3231 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: left;
}
@media (max-width: 767px){#s-8714692c-e737-4558-9cbd-6788237d3231 {
  padding-left: 6%;
padding-right: 6%;
}
}
#s-8714692c-e737-4558-9cbd-6788237d3231 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "CENTURY";
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-8714692c-e737-4558-9cbd-6788237d3231 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "CENTURY";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}


}
#s-ba015b70-5119-4518-93db-a7789a619394 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-ba015b70-5119-4518-93db-a7789a619394 {
  margin-top: 13px;
margin-bottom: 13px;
}
}@media (max-width: 767px){#s-ba015b70-5119-4518-93db-a7789a619394 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 6%;
padding-right: 6%;
}
}
#s-ba015b70-5119-4518-93db-a7789a619394 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: left;
}


@media (max-width: 767px){#s-ba015b70-5119-4518-93db-a7789a619394 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: left;
}


}
#s-be45918b-5772-453f-8ef7-724681f2bd1a {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: left;
}
@media (max-width: 767px){#s-be45918b-5772-453f-8ef7-724681f2bd1a {
  margin-top: 0px;
margin-bottom: 25px;
padding-left: 6%;
padding-right: 6%;
}
}
#s-be45918b-5772-453f-8ef7-724681f2bd1a .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-be45918b-5772-453f-8ef7-724681f2bd1a .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-be45918b-5772-453f-8ef7-724681f2bd1a .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Calibre";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1em;
  
  text-align: left;
}


}
#s-c8b970e6-4221-4927-9bf2-e31eae6b3460 {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 30px;
padding-right: 30px;
}

@media (min-width: 0px) {
[id="s-c8b970e6-4221-4927-9bf2-e31eae6b3460"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c8b970e6-4221-4927-9bf2-e31eae6b3460"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c8b970e6-4221-4927-9bf2-e31eae6b3460"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c8b970e6-4221-4927-9bf2-e31eae6b3460"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-62ceea2c-ee32-4da1-978b-3ba9decd3e0c {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-62ceea2c-ee32-4da1-978b-3ba9decd3e0c .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-62ceea2c-ee32-4da1-978b-3ba9decd3e0c .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-62ceea2c-ee32-4da1-978b-3ba9decd3e0c .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-39ab31b3-178d-4df7-b044-1830bbccc4bb {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-39ab31b3-178d-4df7-b044-1830bbccc4bb .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-39ab31b3-178d-4df7-b044-1830bbccc4bb .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-39ab31b3-178d-4df7-b044-1830bbccc4bb .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-6233066f-8c46-4605-ac26-9448ff039868 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-6233066f-8c46-4605-ac26-9448ff039868 .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-6233066f-8c46-4605-ac26-9448ff039868 .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-6233066f-8c46-4605-ac26-9448ff039868 .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-afe65b2b-3fb3-4d5b-83b7-172b3904b03f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-afe65b2b-3fb3-4d5b-83b7-172b3904b03f .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-f38146a8-c4de-4e89-a60b-2bdcdd3bfd5d {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 0px;
padding-left: 17%;
padding-bottom: 0px;
padding-right: 17%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-f38146a8-c4de-4e89-a60b-2bdcdd3bfd5d {
  margin-top: -14px;
margin-bottom: -14px;
}
}@media (max-width: 767px){#s-f38146a8-c4de-4e89-a60b-2bdcdd3bfd5d {
  margin-top: 15px;
margin-bottom: -15px;
}
}
#s-f38146a8-c4de-4e89-a60b-2bdcdd3bfd5d .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 0.5em;
  
  text-align: center;
}


@media (max-width: 767px){#s-f38146a8-c4de-4e89-a60b-2bdcdd3bfd5d .shogun-heading-component h5 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 0.5em;
  
  text-align: center;
}


}
#s-499b7216-0deb-4370-a8a5-63ff02ba8fad {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 30px;
padding-right: 30px;
}

@media (min-width: 0px) {
[id="s-499b7216-0deb-4370-a8a5-63ff02ba8fad"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-499b7216-0deb-4370-a8a5-63ff02ba8fad"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-499b7216-0deb-4370-a8a5-63ff02ba8fad"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-499b7216-0deb-4370-a8a5-63ff02ba8fad"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-85d9a8bd-2039-4e83-af73-98f960b029f3 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-85d9a8bd-2039-4e83-af73-98f960b029f3 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-85d9a8bd-2039-4e83-af73-98f960b029f3 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-85d9a8bd-2039-4e83-af73-98f960b029f3 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-ec2cc12f-ccba-4a82-b819-d53ac11bd31f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-ec2cc12f-ccba-4a82-b819-d53ac11bd31f .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-ec2cc12f-ccba-4a82-b819-d53ac11bd31f .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 10px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-ec2cc12f-ccba-4a82-b819-d53ac11bd31f .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-33f10efe-b299-4594-a07a-7ff36b896c6c {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-33f10efe-b299-4594-a07a-7ff36b896c6c .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-33f10efe-b299-4594-a07a-7ff36b896c6c .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-33f10efe-b299-4594-a07a-7ff36b896c6c .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-7ae6a52e-13b6-4b70-bbd8-e531c94317d2 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-7ae6a52e-13b6-4b70-bbd8-e531c94317d2 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-7ae6a52e-13b6-4b70-bbd8-e531c94317d2 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 10px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-7ae6a52e-13b6-4b70-bbd8-e531c94317d2 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-0156d3d4-82a1-4b99-ad53-540f549dadc9 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-0156d3d4-82a1-4b99-ad53-540f549dadc9 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-0156d3d4-82a1-4b99-ad53-540f549dadc9 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-0156d3d4-82a1-4b99-ad53-540f549dadc9 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: left;
}


}
#s-43232e05-d699-49f9-960c-10511b69f658 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-43232e05-d699-49f9-960c-10511b69f658 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-3d25b701-c591-4303-9dd0-3156768ba427 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-3d25b701-c591-4303-9dd0-3156768ba427 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-3d25b701-c591-4303-9dd0-3156768ba427 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 2em;
  
  text-align: center;
}


}@media (max-width: 767px){#s-3d25b701-c591-4303-9dd0-3156768ba427 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: center;
}


}
#s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25 {
  text-align: center;
}
@media (max-width: 767px){#s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25 {
  margin-top: 5px;
margin-bottom: 0px;
}
}






  img.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shogun-image {
    
    
  }


.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shg-align-container {
  text-align: center
}

.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shogun-image {
    
    
  }


.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shg-align-container {
  text-align: center
}

.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shogun-image {
  box-sizing: border-box;
}


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





  img.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shogun-image {
    
    
  }


.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shg-align-container {
  text-align: center
}

.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shogun-image {
  box-sizing: border-box;
}


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





  img.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shogun-image {
    
    
  }


.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shg-align-container {
  text-align: center
}

.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shogun-image {
  box-sizing: border-box;
}


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





  img.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shogun-image {
    
    
  }


.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shg-align-container {
  text-align: center
}

.s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-74b6ec7c-36ef-4d8c-ac1c-e78486f83e25.shogun-image {
  box-sizing: border-box;
}


}
#s-61eb1e23-538d-4186-ab7d-643fd5b554b4 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-61eb1e23-538d-4186-ab7d-643fd5b554b4 .shogun-heading-component h1 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 2em;
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-61eb1e23-538d-4186-ab7d-643fd5b554b4 .shogun-heading-component h1 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 2em;
  
  text-align: center;
}


}@media (max-width: 767px){#s-61eb1e23-538d-4186-ab7d-643fd5b554b4 .shogun-heading-component h1 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 2em;
  
  text-align: center;
}


}
#s-4f17ad34-e694-46d6-9c42-cb0435ec401d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (max-width: 767px){#s-4f17ad34-e694-46d6-9c42-cb0435ec401d {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-4f17ad34-e694-46d6-9c42-cb0435ec401d .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 2em;
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-4f17ad34-e694-46d6-9c42-cb0435ec401d .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 2em;
  
  text-align: center;
}


}@media (max-width: 767px){#s-4f17ad34-e694-46d6-9c42-cb0435ec401d .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  text-align: center;
}


}
#s-d2774305-bb99-4fdb-9ebb-da67b46f2292 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d2774305-bb99-4fdb-9ebb-da67b46f2292 {
  margin-top: 6px;
margin-left: 5%;
margin-bottom: 6px;
margin-right: 5%;
}
}@media (max-width: 767px){#s-d2774305-bb99-4fdb-9ebb-da67b46f2292 {
  margin-left: 6%;
margin-right: 6%;
}
}
#s-d2774305-bb99-4fdb-9ebb-da67b46f2292 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.2em;
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-d2774305-bb99-4fdb-9ebb-da67b46f2292 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: center;
}


}@media (max-width: 767px){#s-d2774305-bb99-4fdb-9ebb-da67b46f2292 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: center;
}


}
#s-c237849d-5777-4e2d-9b0e-77ecf1f12901 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-c237849d-5777-4e2d-9b0e-77ecf1f12901"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-c237849d-5777-4e2d-9b0e-77ecf1f12901"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c237849d-5777-4e2d-9b0e-77ecf1f12901"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c237849d-5777-4e2d-9b0e-77ecf1f12901"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b {
  text-align: center;
}







  img.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shogun-image {
    
    
  }


.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b .shogun-image-content {
  
    align-items: center;
  
}

.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shg-align-container {
  text-align: center
}

.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shogun-image {
    
    
  }


.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b .shogun-image-content {
  
    align-items: center;
  
}

.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shg-align-container {
  text-align: center
}

.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shogun-image {
    
    
  }


.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b .shogun-image-content {
  
    align-items: center;
  
}

.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shg-align-container {
  text-align: center
}

.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shogun-image {
    
    
  }


.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b .shogun-image-content {
  
    align-items: center;
  
}

.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shg-align-container {
  text-align: center
}

.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shogun-image {
    
    
  }


.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b .shogun-image-content {
  
    align-items: center;
  
}

.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shg-align-container {
  text-align: center
}

.s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ad7e6e36-f06f-4d63-86c1-997ec9414c1b.shogun-image {
  box-sizing: border-box;
}


}
#s-2d86ebef-a319-4907-aa4d-a1f8203dad48 {
  text-align: center;
}







  img.s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shogun-image {
    
    
  }


.s-2d86ebef-a319-4907-aa4d-a1f8203dad48 .shogun-image-content {
  
    align-items: center;
  
}

.s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shg-align-container {
  text-align: center
}

.s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shogun-image {
    
    
  }


.s-2d86ebef-a319-4907-aa4d-a1f8203dad48 .shogun-image-content {
  
    align-items: center;
  
}

.s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shg-align-container {
  text-align: center
}

.s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shogun-image {
    
    
  }


.s-2d86ebef-a319-4907-aa4d-a1f8203dad48 .shogun-image-content {
  
    align-items: center;
  
}

.s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shg-align-container {
  text-align: center
}

.s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shogun-image {
    
    
  }


.s-2d86ebef-a319-4907-aa4d-a1f8203dad48 .shogun-image-content {
  
    align-items: center;
  
}

.s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shg-align-container {
  text-align: center
}

.s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shogun-image {
    
    
  }


.s-2d86ebef-a319-4907-aa4d-a1f8203dad48 .shogun-image-content {
  
    align-items: center;
  
}

.s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shg-align-container {
  text-align: center
}

.s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d86ebef-a319-4907-aa4d-a1f8203dad48.shogun-image {
  box-sizing: border-box;
}


}
#s-4dab5b85-976d-4d83-b621-0b61d74b6dcf {
  text-align: center;
}







  img.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shogun-image {
    
    
  }


.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf .shogun-image-content {
  
    align-items: center;
  
}

.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shg-align-container {
  text-align: center
}

.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shogun-image {
    
    
  }


.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf .shogun-image-content {
  
    align-items: center;
  
}

.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shg-align-container {
  text-align: center
}

.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shogun-image {
    
    
  }


.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf .shogun-image-content {
  
    align-items: center;
  
}

.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shg-align-container {
  text-align: center
}

.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shogun-image {
    
    
  }


.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf .shogun-image-content {
  
    align-items: center;
  
}

.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shg-align-container {
  text-align: center
}

.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shogun-image {
    
    
  }


.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf .shogun-image-content {
  
    align-items: center;
  
}

.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shg-align-container {
  text-align: center
}

.s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4dab5b85-976d-4d83-b621-0b61d74b6dcf.shogun-image {
  box-sizing: border-box;
}


}
#s-a0e29288-e6fd-4392-a390-3789fd960e02 {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 30px;
padding-right: 30px;
}

@media (min-width: 0px) {
[id="s-a0e29288-e6fd-4392-a390-3789fd960e02"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a0e29288-e6fd-4392-a390-3789fd960e02"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-a0e29288-e6fd-4392-a390-3789fd960e02"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-a0e29288-e6fd-4392-a390-3789fd960e02"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-2d1de7f1-e8c8-4e61-ae2c-24116f4ec7c2 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-2d1de7f1-e8c8-4e61-ae2c-24116f4ec7c2 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-2d1de7f1-e8c8-4e61-ae2c-24116f4ec7c2 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}


}@media (max-width: 767px){#s-2d1de7f1-e8c8-4e61-ae2c-24116f4ec7c2 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}


}
#s-3556cd79-29a7-42cc-837c-b6cc8a3524cb {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-3556cd79-29a7-42cc-837c-b6cc8a3524cb .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-3556cd79-29a7-42cc-837c-b6cc8a3524cb .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-3556cd79-29a7-42cc-837c-b6cc8a3524cb .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-a66eb0ba-764f-4ea5-ae72-9291dd224541 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-a66eb0ba-764f-4ea5-ae72-9291dd224541 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-a66eb0ba-764f-4ea5-ae72-9291dd224541 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}


}@media (max-width: 767px){#s-a66eb0ba-764f-4ea5-ae72-9291dd224541 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}


}
#s-03ca8245-ed2a-4091-8c59-6e203dbecaac {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-03ca8245-ed2a-4091-8c59-6e203dbecaac .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-03ca8245-ed2a-4091-8c59-6e203dbecaac .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-03ca8245-ed2a-4091-8c59-6e203dbecaac .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-2b4ebc95-8bd5-4390-b057-dfa5631dda0f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-2b4ebc95-8bd5-4390-b057-dfa5631dda0f .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-2b4ebc95-8bd5-4390-b057-dfa5631dda0f .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}


}@media (max-width: 767px){#s-2b4ebc95-8bd5-4390-b057-dfa5631dda0f .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}


}
#s-9d1f26fe-6cd7-4e6a-b13e-9e6a1b6269c0 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-9d1f26fe-6cd7-4e6a-b13e-9e6a1b6269c0 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.2em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-9d1f26fe-6cd7-4e6a-b13e-9e6a1b6269c0 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-9d1f26fe-6cd7-4e6a-b13e-9e6a1b6269c0 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.2em;
  
  text-align: left;
}


}
#s-50c79732-0b79-4940-aba3-f2edc5621d89 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-50c79732-0b79-4940-aba3-f2edc5621d89 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-50c79732-0b79-4940-aba3-f2edc5621d89 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: center;
}


}@media (max-width: 767px){#s-50c79732-0b79-4940-aba3-f2edc5621d89 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: center;
}


}
#s-eab44e99-976c-4816-9619-db46f0725c64 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-eab44e99-976c-4816-9619-db46f0725c64 {
  padding-left: 7%;
padding-right: 7%;
}
}@media (max-width: 767px){#s-eab44e99-976c-4816-9619-db46f0725c64 {
  margin-left: 6%;
margin-right: 6%;
}
}
#s-eab44e99-976c-4816-9619-db46f0725c64 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.2em;
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-eab44e99-976c-4816-9619-db46f0725c64 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.2em;
  
  text-align: center;
}


}@media (max-width: 767px){#s-eab44e99-976c-4816-9619-db46f0725c64 .shogun-heading-component h6 {
  color: rgba(2, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.2em;
  
  text-align: center;
}


}
#s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8 {
  padding-left: 6%;
padding-right: 6%;
}
}@media (max-width: 767px){#s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8 {
  margin-top: 0px;
margin-left: 6%;
margin-bottom: 0px;
margin-right: 6%;
}
}






  img.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shogun-image {
    
    
  }


.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8 .shogun-image-content {
  
    align-items: center;
  
}

.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shg-align-container {
  text-align: center
}

.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shogun-image {
    
    
  }


.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8 .shogun-image-content {
  
    align-items: center;
  
}

.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shg-align-container {
  text-align: center
}

.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shogun-image {
  box-sizing: border-box;
}


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





  img.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shogun-image {
    
    
  }


.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8 .shogun-image-content {
  
    align-items: center;
  
}

.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shg-align-container {
  text-align: center
}

.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shogun-image {
  box-sizing: border-box;
}


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





  img.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shogun-image {
    
    
  }


.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8 .shogun-image-content {
  
    align-items: center;
  
}

.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shg-align-container {
  text-align: center
}

.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shogun-image {
  box-sizing: border-box;
}


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





  img.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shogun-image {
    
    
  }


.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8 .shogun-image-content {
  
    align-items: center;
  
}

.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shg-align-container {
  text-align: center
}

.s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51c034f6-f195-43a2-b9f4-fcec8fb9bbb8.shogun-image {
  box-sizing: border-box;
}


}
@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}
