.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-0664c843-6231-4bdd-b9b6-c4c12be55524 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-0664c843-6231-4bdd-b9b6-c4c12be55524 {
  display: none;
}
#s-0664c843-6231-4bdd-b9b6-c4c12be55524, #wrap-s-0664c843-6231-4bdd-b9b6-c4c12be55524 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0664c843-6231-4bdd-b9b6-c4c12be55524 {
  display: none;
}
#s-0664c843-6231-4bdd-b9b6-c4c12be55524, #wrap-s-0664c843-6231-4bdd-b9b6-c4c12be55524 { display:none !important; }}@media (max-width: 767px){#s-0664c843-6231-4bdd-b9b6-c4c12be55524 {
  display: none;
}
#s-0664c843-6231-4bdd-b9b6-c4c12be55524, #wrap-s-0664c843-6231-4bdd-b9b6-c4c12be55524 { display:none !important; }}







#s-0664c843-6231-4bdd-b9b6-c4c12be55524 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0664c843-6231-4bdd-b9b6-c4c12be55524.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-2bb2b4ec-4fdc-495d-b721-4a6c3a32670e {
  margin-left: 0%;
margin-right: 70%;
text-align: left;
}
@media (max-width: 767px){#s-2bb2b4ec-4fdc-495d-b721-4a6c3a32670e {
  margin-bottom: 15px;
margin-right: 60%;
}
}






  #s-2bb2b4ec-4fdc-495d-b721-4a6c3a32670e img.shogun-image {
    

    
    
    
  }


#s-2bb2b4ec-4fdc-495d-b721-4a6c3a32670e .shogun-image-content {
  
    align-items: center;
  
}

#s-40a1dd97-a076-4420-89cf-49d4f866748d {
  min-height: 50px;
}
@media (min-width: 1200px){#s-40a1dd97-a076-4420-89cf-49d4f866748d {
  display: none;
}
#s-40a1dd97-a076-4420-89cf-49d4f866748d, #wrap-s-40a1dd97-a076-4420-89cf-49d4f866748d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-40a1dd97-a076-4420-89cf-49d4f866748d {
  display: none;
}
#s-40a1dd97-a076-4420-89cf-49d4f866748d, #wrap-s-40a1dd97-a076-4420-89cf-49d4f866748d { display:none !important; }}@media (max-width: 767px){#s-40a1dd97-a076-4420-89cf-49d4f866748d {
  display: none;
}
#s-40a1dd97-a076-4420-89cf-49d4f866748d, #wrap-s-40a1dd97-a076-4420-89cf-49d4f866748d { display:none !important; }}







#s-40a1dd97-a076-4420-89cf-49d4f866748d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-40a1dd97-a076-4420-89cf-49d4f866748d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d06d5c95-e8f2-477f-a0ac-96fe177639c7 {
  background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-d06d5c95-e8f2-477f-a0ac-96fe177639c7 {
  display: none;
}
#s-d06d5c95-e8f2-477f-a0ac-96fe177639c7, #wrap-s-d06d5c95-e8f2-477f-a0ac-96fe177639c7 { display:none !important; }}@media (max-width: 767px){#s-d06d5c95-e8f2-477f-a0ac-96fe177639c7 {
  display: none;
}
#s-d06d5c95-e8f2-477f-a0ac-96fe177639c7, #wrap-s-d06d5c95-e8f2-477f-a0ac-96fe177639c7 { display:none !important; }}







#s-d06d5c95-e8f2-477f-a0ac-96fe177639c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d06d5c95-e8f2-477f-a0ac-96fe177639c7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-511fc7ee-466b-4446-b155-62a4b7d58b94 {
  box-shadow:0px 0px 0px 0px rgba(237, 237, 237, 1);
margin-top: 50px;
margin-left: 2%;
margin-bottom: 50px;
margin-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-511fc7ee-466b-4446-b155-62a4b7d58b94 {
  margin-top: 50px;
margin-left: 2%;
margin-bottom: 50px;
margin-right: 2%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-511fc7ee-466b-4446-b155-62a4b7d58b94 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-511fc7ee-466b-4446-b155-62a4b7d58b94 {
  margin-top: 15px;
margin-bottom: 40px;
display: none;
}
#s-511fc7ee-466b-4446-b155-62a4b7d58b94, #wrap-s-511fc7ee-466b-4446-b155-62a4b7d58b94 { display:none !important; }}







#s-511fc7ee-466b-4446-b155-62a4b7d58b94 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-511fc7ee-466b-4446-b155-62a4b7d58b94.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-e23e8969-e7a3-47b1-84f2-80eb46e13e7f {
  margin-top: 10px;
margin-left: 2%;
margin-bottom: 10px;
margin-right: 2%;
padding-left: 2%;
padding-right: 2%;
}
@media (min-width: 1200px){#s-e23e8969-e7a3-47b1-84f2-80eb46e13e7f {
  margin-left: 1%;
margin-right: 1%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e23e8969-e7a3-47b1-84f2-80eb46e13e7f {
  margin-left: 1%;
margin-right: 1%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e23e8969-e7a3-47b1-84f2-80eb46e13e7f {
  display: none;
}
#s-e23e8969-e7a3-47b1-84f2-80eb46e13e7f, #wrap-s-e23e8969-e7a3-47b1-84f2-80eb46e13e7f { display:none !important; }}@media (max-width: 767px){#s-e23e8969-e7a3-47b1-84f2-80eb46e13e7f {
  display: none;
}
#s-e23e8969-e7a3-47b1-84f2-80eb46e13e7f, #wrap-s-e23e8969-e7a3-47b1-84f2-80eb46e13e7f { display:none !important; }}
@media (min-width: 0px) {
[id="s-e23e8969-e7a3-47b1-84f2-80eb46e13e7f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-e23e8969-e7a3-47b1-84f2-80eb46e13e7f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e23e8969-e7a3-47b1-84f2-80eb46e13e7f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e23e8969-e7a3-47b1-84f2-80eb46e13e7f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  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-f9697b54-4bc1-41a0-9881-4a92a9855005 {
  margin-top: 35px;
padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-f9697b54-4bc1-41a0-9881-4a92a9855005 {
  margin-top: 10px;
padding-top: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f9697b54-4bc1-41a0-9881-4a92a9855005 {
  margin-top: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f9697b54-4bc1-41a0-9881-4a92a9855005 {
  margin-top: 10px;
}
}@media (max-width: 767px){#s-f9697b54-4bc1-41a0-9881-4a92a9855005 {
  margin-top: 0px;
}
}
#s-f9697b54-4bc1-41a0-9881-4a92a9855005 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.25em;
  
  text-align: left;
}


@media (min-width: 1200px){#s-f9697b54-4bc1-41a0-9881-4a92a9855005 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 37px;
  line-height: 1.25em;
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-f9697b54-4bc1-41a0-9881-4a92a9855005 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 38px;
  line-height: 1.25em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-f9697b54-4bc1-41a0-9881-4a92a9855005 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.25em;
  
  text-align: left;
}


}
#s-07e48487-6451-43ed-847e-5317eca50b2b {
  padding-top: 5px;
padding-bottom: 5px;
text-align: left;
}
@media (min-width: 1200px){#s-07e48487-6451-43ed-847e-5317eca50b2b {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-07e48487-6451-43ed-847e-5317eca50b2b .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.25em;
  
  text-align: left;
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-cfba37ac-a9bd-4eec-b392-240d47ab55af {
  margin-top: 10px;
margin-bottom: 20px;
margin-right: 10%;
}

#s-d1b9dfbb-4dd2-46eb-81cd-98244b80562a {
  text-align: center;
}







  #s-d1b9dfbb-4dd2-46eb-81cd-98244b80562a img.shogun-image {
    

    
    
    
  }


#s-d1b9dfbb-4dd2-46eb-81cd-98244b80562a .shogun-image-content {
  
    align-items: center;
  
}

#s-817a9a6c-bb6e-4581-8ceb-67c15fbeeda5 {
  margin-top: 0px;
margin-bottom: 20px;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-817a9a6c-bb6e-4581-8ceb-67c15fbeeda5 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



.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-62ac9792-265f-4a19-8dde-ab81f6d05705 {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(75, 143, 231, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-62ac9792-265f-4a19-8dde-ab81f6d05705:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-62ac9792-265f-4a19-8dde-ab81f6d05705:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-62ac9792-265f-4a19-8dde-ab81f6d05705 {
  margin-bottom: 40px;
}
}@media (max-width: 767px){#s-62ac9792-265f-4a19-8dde-ab81f6d05705 {
  padding-left: 15%;
padding-right: 15%;
}
}

  #s-62ac9792-265f-4a19-8dde-ab81f6d05705-root {
    text-align: center;
  }


#s-62ac9792-265f-4a19-8dde-ab81f6d05705.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-62ac9792-265f-4a19-8dde-ab81f6d05705-root {
    text-align: center;
  }


#s-62ac9792-265f-4a19-8dde-ab81f6d05705.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-62ac9792-265f-4a19-8dde-ab81f6d05705-root {
    text-align: center;
  }


#s-62ac9792-265f-4a19-8dde-ab81f6d05705.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-62ac9792-265f-4a19-8dde-ab81f6d05705-root {
    text-align: center;
  }


#s-62ac9792-265f-4a19-8dde-ab81f6d05705.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-62ac9792-265f-4a19-8dde-ab81f6d05705-root {
    text-align: center;
  }


#s-62ac9792-265f-4a19-8dde-ab81f6d05705.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-4406e137-2fd4-4dd0-873a-00a6a29bed15 {
  text-align: center;
}







  #s-4406e137-2fd4-4dd0-873a-00a6a29bed15 img.shogun-image {
    

    
    
    
  }


#s-4406e137-2fd4-4dd0-873a-00a6a29bed15 .shogun-image-content {
  
    align-items: center;
  
}

#s-1167d781-6a7d-44eb-8a6e-3002f9f07191 {
  margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1167d781-6a7d-44eb-8a6e-3002f9f07191 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-8da34f3f-75d8-4027-bbd5-fbd615b94244 {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(75, 143, 231, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-8da34f3f-75d8-4027-bbd5-fbd615b94244:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8da34f3f-75d8-4027-bbd5-fbd615b94244:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-8da34f3f-75d8-4027-bbd5-fbd615b94244 {
  padding-left: 28px;
padding-right: 28px;
}
}

  #s-8da34f3f-75d8-4027-bbd5-fbd615b94244-root {
    text-align: center;
  }


#s-8da34f3f-75d8-4027-bbd5-fbd615b94244.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8da34f3f-75d8-4027-bbd5-fbd615b94244-root {
    text-align: center;
  }


#s-8da34f3f-75d8-4027-bbd5-fbd615b94244.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8da34f3f-75d8-4027-bbd5-fbd615b94244-root {
    text-align: center;
  }


#s-8da34f3f-75d8-4027-bbd5-fbd615b94244.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8da34f3f-75d8-4027-bbd5-fbd615b94244-root {
    text-align: center;
  }


#s-8da34f3f-75d8-4027-bbd5-fbd615b94244.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8da34f3f-75d8-4027-bbd5-fbd615b94244-root {
    text-align: center;
  }


#s-8da34f3f-75d8-4027-bbd5-fbd615b94244.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-40cd5418-2d0d-40c4-885f-37a3ae5e1f65 {
  text-align: center;
}







  #s-40cd5418-2d0d-40c4-885f-37a3ae5e1f65 img.shogun-image {
    

    
    
    
  }


#s-40cd5418-2d0d-40c4-885f-37a3ae5e1f65 .shogun-image-content {
  
    align-items: center;
  
}

#s-8e3db737-5622-4fde-9dbe-614b14ecb94d {
  margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8e3db737-5622-4fde-9dbe-614b14ecb94d .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-ef70ee30-900d-4855-8fc8-b4b2399def93 {
  margin-bottom: 0px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(75, 143, 231, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-ef70ee30-900d-4855-8fc8-b4b2399def93:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ef70ee30-900d-4855-8fc8-b4b2399def93:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-ef70ee30-900d-4855-8fc8-b4b2399def93 {
  padding-left: 35px;
padding-right: 35px;
}
}

  #s-ef70ee30-900d-4855-8fc8-b4b2399def93-root {
    text-align: center;
  }


#s-ef70ee30-900d-4855-8fc8-b4b2399def93.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ef70ee30-900d-4855-8fc8-b4b2399def93-root {
    text-align: center;
  }


#s-ef70ee30-900d-4855-8fc8-b4b2399def93.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ef70ee30-900d-4855-8fc8-b4b2399def93-root {
    text-align: center;
  }


#s-ef70ee30-900d-4855-8fc8-b4b2399def93.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ef70ee30-900d-4855-8fc8-b4b2399def93-root {
    text-align: center;
  }


#s-ef70ee30-900d-4855-8fc8-b4b2399def93.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ef70ee30-900d-4855-8fc8-b4b2399def93-root {
    text-align: center;
  }


#s-ef70ee30-900d-4855-8fc8-b4b2399def93.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-88037bbb-783e-4af6-a031-7c2d14c5a72d {
  min-height: 50px;
}
@media (min-width: 1200px){#s-88037bbb-783e-4af6-a031-7c2d14c5a72d {
  display: none;
}
#s-88037bbb-783e-4af6-a031-7c2d14c5a72d, #wrap-s-88037bbb-783e-4af6-a031-7c2d14c5a72d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-88037bbb-783e-4af6-a031-7c2d14c5a72d {
  display: none;
}
#s-88037bbb-783e-4af6-a031-7c2d14c5a72d, #wrap-s-88037bbb-783e-4af6-a031-7c2d14c5a72d { display:none !important; }}@media (max-width: 767px){#s-88037bbb-783e-4af6-a031-7c2d14c5a72d {
  display: none;
}
#s-88037bbb-783e-4af6-a031-7c2d14c5a72d, #wrap-s-88037bbb-783e-4af6-a031-7c2d14c5a72d { display:none !important; }}







#s-88037bbb-783e-4af6-a031-7c2d14c5a72d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-88037bbb-783e-4af6-a031-7c2d14c5a72d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-9d3139d4-64be-40c6-bd22-ac737e71a0d1 {
  margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
}
}
@media (min-width: 0px) {
[id="s-9d3139d4-64be-40c6-bd22-ac737e71a0d1"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-9d3139d4-64be-40c6-bd22-ac737e71a0d1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-9d3139d4-64be-40c6-bd22-ac737e71a0d1"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9d3139d4-64be-40c6-bd22-ac737e71a0d1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-9d3139d4-64be-40c6-bd22-ac737e71a0d1"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9d3139d4-64be-40c6-bd22-ac737e71a0d1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-9d3139d4-64be-40c6-bd22-ac737e71a0d1"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-e09bc0fc-19ea-4e89-b022-60e47901af83 {
  margin-top: 35px;
padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-e09bc0fc-19ea-4e89-b022-60e47901af83 {
  margin-top: 10px;
margin-left: 1%;
padding-top: 0px;
}
}@media (max-width: 767px){#s-e09bc0fc-19ea-4e89-b022-60e47901af83 {
  margin-top: 0px;
margin-left: 5%;
margin-right: 2%;
}
}
#s-e09bc0fc-19ea-4e89-b022-60e47901af83 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.25em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-e09bc0fc-19ea-4e89-b022-60e47901af83 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 48px;
  line-height: 1em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-e09bc0fc-19ea-4e89-b022-60e47901af83 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.15em;
  
  text-align: left;
}


}
#s-8a8488fa-e9b1-4f84-bae8-610c6d37307d {
  margin-top: 30px;
margin-left: 5%;
margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px){#s-8a8488fa-e9b1-4f84-bae8-610c6d37307d {
  margin-top: 10px;
margin-left: 1%;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-8a8488fa-e9b1-4f84-bae8-610c6d37307d {
  margin-top: 25px;
margin-bottom: 0px;
margin-right: 1%;
}
}
#s-e9f05199-6a29-4ec9-ad18-a346678587dc {
  min-height: 50px;
}
@media (min-width: 1200px){#s-e9f05199-6a29-4ec9-ad18-a346678587dc {
  display: none;
}
#s-e9f05199-6a29-4ec9-ad18-a346678587dc, #wrap-s-e9f05199-6a29-4ec9-ad18-a346678587dc { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e9f05199-6a29-4ec9-ad18-a346678587dc {
  display: none;
}
#s-e9f05199-6a29-4ec9-ad18-a346678587dc, #wrap-s-e9f05199-6a29-4ec9-ad18-a346678587dc { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e9f05199-6a29-4ec9-ad18-a346678587dc {
  min-height: 0px;
}
}







#s-e9f05199-6a29-4ec9-ad18-a346678587dc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e9f05199-6a29-4ec9-ad18-a346678587dc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-212a4705-2220-4e4a-ac0e-8be513ff47e1 {
  margin-left: 2%;
margin-bottom: 10px;
margin-right: 2%;
display: none;
}
#s-212a4705-2220-4e4a-ac0e-8be513ff47e1, #wrap-s-212a4705-2220-4e4a-ac0e-8be513ff47e1 { display:none !important; }}
@media (min-width: 0px) {
[id="s-212a4705-2220-4e4a-ac0e-8be513ff47e1"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-212a4705-2220-4e4a-ac0e-8be513ff47e1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-212a4705-2220-4e4a-ac0e-8be513ff47e1"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-212a4705-2220-4e4a-ac0e-8be513ff47e1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-212a4705-2220-4e4a-ac0e-8be513ff47e1"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-212a4705-2220-4e4a-ac0e-8be513ff47e1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-212a4705-2220-4e4a-ac0e-8be513ff47e1"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-efe55b69-acb0-4d74-8ce2-ab33bdb162c2 {
  min-height: 50px;
}








#s-efe55b69-acb0-4d74-8ce2-ab33bdb162c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-efe55b69-acb0-4d74-8ce2-ab33bdb162c2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f7b76aed-fb44-4223-bf0f-6af24f26a3f7 {
  margin-top: 35px;
padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-f7b76aed-fb44-4223-bf0f-6af24f26a3f7 {
  margin-top: 5px;
margin-left: 1%;
}
}@media (max-width: 767px){#s-f7b76aed-fb44-4223-bf0f-6af24f26a3f7 {
  margin-top: 12px;
margin-left: 5%;
margin-right: 2%;
}
}
#s-f7b76aed-fb44-4223-bf0f-6af24f26a3f7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.25em;
  
  text-align: left;
}


@media (max-width: 767px){#s-f7b76aed-fb44-4223-bf0f-6af24f26a3f7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.15em;
  
  text-align: left;
}


}
#s-b4cf053c-7214-4680-bf6a-046de0d67881 {
  margin-top: 30px;
margin-left: 5%;
margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991px){#s-b4cf053c-7214-4680-bf6a-046de0d67881 {
  margin-top: 10px;
margin-left: 1%;
}
}@media (max-width: 767px){#s-b4cf053c-7214-4680-bf6a-046de0d67881 {
  margin-top: 10px;
margin-right: 1%;
}
}
#s-275c0dd0-14cb-45d4-bea9-36cb0c2ead94 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 15px;
margin-right: 5%;
padding-left: 2%;
padding-right: 2%;
}
@media (min-width: 1200px){#s-275c0dd0-14cb-45d4-bea9-36cb0c2ead94 {
  margin-left: 0%;
margin-right: 0%;
display: none;
}
#s-275c0dd0-14cb-45d4-bea9-36cb0c2ead94, #wrap-s-275c0dd0-14cb-45d4-bea9-36cb0c2ead94 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-275c0dd0-14cb-45d4-bea9-36cb0c2ead94 {
  display: none;
}
#s-275c0dd0-14cb-45d4-bea9-36cb0c2ead94, #wrap-s-275c0dd0-14cb-45d4-bea9-36cb0c2ead94 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-275c0dd0-14cb-45d4-bea9-36cb0c2ead94 {
  margin-left: 2%;
margin-right: 2%;
display: none;
}
#s-275c0dd0-14cb-45d4-bea9-36cb0c2ead94, #wrap-s-275c0dd0-14cb-45d4-bea9-36cb0c2ead94 { display:none !important; }}@media (max-width: 767px){#s-275c0dd0-14cb-45d4-bea9-36cb0c2ead94 {
  
}
}
@media (min-width: 0px) {
[id="s-275c0dd0-14cb-45d4-bea9-36cb0c2ead94"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-275c0dd0-14cb-45d4-bea9-36cb0c2ead94"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-275c0dd0-14cb-45d4-bea9-36cb0c2ead94"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-275c0dd0-14cb-45d4-bea9-36cb0c2ead94"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-51361af8-1707-4742-87f8-9f8711b3623a {
  margin-top: 35px;
padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-51361af8-1707-4742-87f8-9f8711b3623a {
  margin-top: 10px;
}
}@media (max-width: 767px){#s-51361af8-1707-4742-87f8-9f8711b3623a {
  margin-top: 0px;
}
}
#s-51361af8-1707-4742-87f8-9f8711b3623a .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.25em;
  
  text-align: left;
}


@media (max-width: 767px){#s-51361af8-1707-4742-87f8-9f8711b3623a .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.25em;
  
  text-align: left;
}


}
#s-7a5a5dca-b1ad-4731-a3b4-b680df474f2d {
  margin-top: 30px;
margin-bottom: 20px;
}
@media (max-width: 767px){#s-7a5a5dca-b1ad-4731-a3b4-b680df474f2d {
  margin-top: 10px;
}
}
#s-cafb1d4e-f6f8-4e40-88ca-b95334fd64d7 {
  text-align: center;
}







  #s-cafb1d4e-f6f8-4e40-88ca-b95334fd64d7 img.shogun-image {
    

    
    
    
  }


#s-cafb1d4e-f6f8-4e40-88ca-b95334fd64d7 .shogun-image-content {
  
    align-items: center;
  
}

#s-787f4064-7a5e-4ea8-9f5b-152677fc5e70 {
  margin-top: 0px;
margin-bottom: 20px;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-787f4064-7a5e-4ea8-9f5b-152677fc5e70 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-c39722ea-2239-40a9-bc19-e9a0dd03f695 {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-c39722ea-2239-40a9-bc19-e9a0dd03f695:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c39722ea-2239-40a9-bc19-e9a0dd03f695:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-c39722ea-2239-40a9-bc19-e9a0dd03f695 {
  margin-bottom: 40px;
}
}@media (max-width: 767px){#s-c39722ea-2239-40a9-bc19-e9a0dd03f695 {
  padding-left: 15%;
padding-right: 15%;
}
}

  #s-c39722ea-2239-40a9-bc19-e9a0dd03f695-root {
    text-align: center;
  }


#s-c39722ea-2239-40a9-bc19-e9a0dd03f695.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c39722ea-2239-40a9-bc19-e9a0dd03f695-root {
    text-align: center;
  }


#s-c39722ea-2239-40a9-bc19-e9a0dd03f695.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c39722ea-2239-40a9-bc19-e9a0dd03f695-root {
    text-align: center;
  }


#s-c39722ea-2239-40a9-bc19-e9a0dd03f695.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c39722ea-2239-40a9-bc19-e9a0dd03f695-root {
    text-align: center;
  }


#s-c39722ea-2239-40a9-bc19-e9a0dd03f695.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c39722ea-2239-40a9-bc19-e9a0dd03f695-root {
    text-align: center;
  }


#s-c39722ea-2239-40a9-bc19-e9a0dd03f695.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-4c87b412-3e40-4c07-b979-eefc525a349f {
  text-align: center;
}







  #s-4c87b412-3e40-4c07-b979-eefc525a349f img.shogun-image {
    

    
    
    
  }


#s-4c87b412-3e40-4c07-b979-eefc525a349f .shogun-image-content {
  
    align-items: center;
  
}

#s-53e3dfa0-b074-4df7-976d-ec8614a014b2 {
  margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-53e3dfa0-b074-4df7-976d-ec8614a014b2 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-e777cf75-1d7c-4de4-8b8a-0188e81e2261 {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-e777cf75-1d7c-4de4-8b8a-0188e81e2261:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e777cf75-1d7c-4de4-8b8a-0188e81e2261:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-e777cf75-1d7c-4de4-8b8a-0188e81e2261 {
  padding-left: 28px;
padding-right: 28px;
}
}

  #s-e777cf75-1d7c-4de4-8b8a-0188e81e2261-root {
    text-align: center;
  }


#s-e777cf75-1d7c-4de4-8b8a-0188e81e2261.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e777cf75-1d7c-4de4-8b8a-0188e81e2261-root {
    text-align: center;
  }


#s-e777cf75-1d7c-4de4-8b8a-0188e81e2261.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e777cf75-1d7c-4de4-8b8a-0188e81e2261-root {
    text-align: center;
  }


#s-e777cf75-1d7c-4de4-8b8a-0188e81e2261.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e777cf75-1d7c-4de4-8b8a-0188e81e2261-root {
    text-align: center;
  }


#s-e777cf75-1d7c-4de4-8b8a-0188e81e2261.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e777cf75-1d7c-4de4-8b8a-0188e81e2261-root {
    text-align: center;
  }


#s-e777cf75-1d7c-4de4-8b8a-0188e81e2261.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-03973ec4-4485-47ef-997b-375579e79f6f {
  text-align: center;
}







  #s-03973ec4-4485-47ef-997b-375579e79f6f img.shogun-image {
    

    
    
    
  }


#s-03973ec4-4485-47ef-997b-375579e79f6f .shogun-image-content {
  
    align-items: center;
  
}

#s-c2b80b30-5f90-4f2f-ba2c-09e1ab4b113a {
  margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c2b80b30-5f90-4f2f-ba2c-09e1ab4b113a .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-ec0a65e1-ff88-4a98-876f-0af33aabd46b {
  margin-bottom: 0px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-ec0a65e1-ff88-4a98-876f-0af33aabd46b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ec0a65e1-ff88-4a98-876f-0af33aabd46b:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-ec0a65e1-ff88-4a98-876f-0af33aabd46b {
  padding-left: 35px;
padding-right: 35px;
}
}

  #s-ec0a65e1-ff88-4a98-876f-0af33aabd46b-root {
    text-align: center;
  }


#s-ec0a65e1-ff88-4a98-876f-0af33aabd46b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ec0a65e1-ff88-4a98-876f-0af33aabd46b-root {
    text-align: center;
  }


#s-ec0a65e1-ff88-4a98-876f-0af33aabd46b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ec0a65e1-ff88-4a98-876f-0af33aabd46b-root {
    text-align: center;
  }


#s-ec0a65e1-ff88-4a98-876f-0af33aabd46b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ec0a65e1-ff88-4a98-876f-0af33aabd46b-root {
    text-align: center;
  }


#s-ec0a65e1-ff88-4a98-876f-0af33aabd46b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ec0a65e1-ff88-4a98-876f-0af33aabd46b-root {
    text-align: center;
  }


#s-ec0a65e1-ff88-4a98-876f-0af33aabd46b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-57cdec02-48e9-4520-b8f4-7c2c820dcc02 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
padding-left: 2%;
padding-right: 2%;
}
@media (min-width: 1200px){#s-57cdec02-48e9-4520-b8f4-7c2c820dcc02 {
  display: none;
}
#s-57cdec02-48e9-4520-b8f4-7c2c820dcc02, #wrap-s-57cdec02-48e9-4520-b8f4-7c2c820dcc02 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-57cdec02-48e9-4520-b8f4-7c2c820dcc02 {
  display: none;
}
#s-57cdec02-48e9-4520-b8f4-7c2c820dcc02, #wrap-s-57cdec02-48e9-4520-b8f4-7c2c820dcc02 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-57cdec02-48e9-4520-b8f4-7c2c820dcc02 {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-57cdec02-48e9-4520-b8f4-7c2c820dcc02 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
display: none;
}
#s-57cdec02-48e9-4520-b8f4-7c2c820dcc02, #wrap-s-57cdec02-48e9-4520-b8f4-7c2c820dcc02 { display:none !important; }}
@media (min-width: 0px) {
[id="s-57cdec02-48e9-4520-b8f4-7c2c820dcc02"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-57cdec02-48e9-4520-b8f4-7c2c820dcc02"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-57cdec02-48e9-4520-b8f4-7c2c820dcc02"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-57cdec02-48e9-4520-b8f4-7c2c820dcc02"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-b59d975d-6303-48a0-91c5-f99f9bdfec94 {
  text-align: center;
}







  #s-b59d975d-6303-48a0-91c5-f99f9bdfec94 img.shogun-image {
    

    
    
    
  }


#s-b59d975d-6303-48a0-91c5-f99f9bdfec94 .shogun-image-content {
  
    align-items: center;
  
}

#s-69a24bd3-02c2-4242-a3e8-05fdd45e786a {
  margin-top: 0px;
margin-bottom: 20px;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-69a24bd3-02c2-4242-a3e8-05fdd45e786a .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (max-width: 767px){#s-69a24bd3-02c2-4242-a3e8-05fdd45e786a .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-056e3be9-f142-44aa-8673-347cd7de2e6e {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(75, 143, 231, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-056e3be9-f142-44aa-8673-347cd7de2e6e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-056e3be9-f142-44aa-8673-347cd7de2e6e:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-056e3be9-f142-44aa-8673-347cd7de2e6e {
  margin-bottom: 40px;
}
}@media (max-width: 767px){#s-056e3be9-f142-44aa-8673-347cd7de2e6e {
  padding-left: 15%;
padding-right: 15%;
}
}

  #s-056e3be9-f142-44aa-8673-347cd7de2e6e-root {
    text-align: center;
  }


#s-056e3be9-f142-44aa-8673-347cd7de2e6e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-056e3be9-f142-44aa-8673-347cd7de2e6e-root {
    text-align: center;
  }


#s-056e3be9-f142-44aa-8673-347cd7de2e6e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-056e3be9-f142-44aa-8673-347cd7de2e6e-root {
    text-align: center;
  }


#s-056e3be9-f142-44aa-8673-347cd7de2e6e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-056e3be9-f142-44aa-8673-347cd7de2e6e-root {
    text-align: center;
  }


#s-056e3be9-f142-44aa-8673-347cd7de2e6e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-056e3be9-f142-44aa-8673-347cd7de2e6e-root {
    text-align: center;
  }


#s-056e3be9-f142-44aa-8673-347cd7de2e6e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-ad414b91-da3c-42d9-8f83-52c3417fa714 {
  text-align: center;
}







  #s-ad414b91-da3c-42d9-8f83-52c3417fa714 img.shogun-image {
    

    
    
    
  }


#s-ad414b91-da3c-42d9-8f83-52c3417fa714 .shogun-image-content {
  
    align-items: center;
  
}

#s-9086e302-4c3d-405a-8a12-1f6fbdb72a3c {
  margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9086e302-4c3d-405a-8a12-1f6fbdb72a3c .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-6a1dfe73-a548-4a0d-bb5b-4816ac7c051e {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(75, 143, 231, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-6a1dfe73-a548-4a0d-bb5b-4816ac7c051e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6a1dfe73-a548-4a0d-bb5b-4816ac7c051e:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-6a1dfe73-a548-4a0d-bb5b-4816ac7c051e {
  padding-left: 28px;
padding-right: 28px;
}
}

  #s-6a1dfe73-a548-4a0d-bb5b-4816ac7c051e-root {
    text-align: center;
  }


#s-6a1dfe73-a548-4a0d-bb5b-4816ac7c051e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6a1dfe73-a548-4a0d-bb5b-4816ac7c051e-root {
    text-align: center;
  }


#s-6a1dfe73-a548-4a0d-bb5b-4816ac7c051e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6a1dfe73-a548-4a0d-bb5b-4816ac7c051e-root {
    text-align: center;
  }


#s-6a1dfe73-a548-4a0d-bb5b-4816ac7c051e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6a1dfe73-a548-4a0d-bb5b-4816ac7c051e-root {
    text-align: center;
  }


#s-6a1dfe73-a548-4a0d-bb5b-4816ac7c051e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6a1dfe73-a548-4a0d-bb5b-4816ac7c051e-root {
    text-align: center;
  }


#s-6a1dfe73-a548-4a0d-bb5b-4816ac7c051e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-073023d4-52b4-49c6-bb69-92e5393d5112 {
  text-align: center;
}







  #s-073023d4-52b4-49c6-bb69-92e5393d5112 img.shogun-image {
    

    
    
    
  }


#s-073023d4-52b4-49c6-bb69-92e5393d5112 .shogun-image-content {
  
    align-items: center;
  
}

#s-0e0d2a2c-c561-4209-91ca-f3f1b23bead0 {
  margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0e0d2a2c-c561-4209-91ca-f3f1b23bead0 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-ee9a9231-e788-485e-9f59-ca98e38d0dff {
  margin-bottom: 0px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(75, 143, 231, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-ee9a9231-e788-485e-9f59-ca98e38d0dff:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ee9a9231-e788-485e-9f59-ca98e38d0dff:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-ee9a9231-e788-485e-9f59-ca98e38d0dff {
  padding-left: 70px;
padding-right: 70px;
}
}@media (max-width: 767px){#s-ee9a9231-e788-485e-9f59-ca98e38d0dff {
  padding-left: 28px;
padding-right: 28px;
}
}

  #s-ee9a9231-e788-485e-9f59-ca98e38d0dff-root {
    text-align: center;
  }


#s-ee9a9231-e788-485e-9f59-ca98e38d0dff.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ee9a9231-e788-485e-9f59-ca98e38d0dff-root {
    text-align: center;
  }


#s-ee9a9231-e788-485e-9f59-ca98e38d0dff.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ee9a9231-e788-485e-9f59-ca98e38d0dff-root {
    text-align: center;
  }


#s-ee9a9231-e788-485e-9f59-ca98e38d0dff.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ee9a9231-e788-485e-9f59-ca98e38d0dff-root {
    text-align: center;
  }


#s-ee9a9231-e788-485e-9f59-ca98e38d0dff.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ee9a9231-e788-485e-9f59-ca98e38d0dff-root {
    text-align: center;
  }


#s-ee9a9231-e788-485e-9f59-ca98e38d0dff.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-2d3e2ed0-e631-4cce-ba05-ed92f7dbac03 {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
background-color: rgba(246, 246, 246, 1);
}
@media (min-width: 1200px){#s-2d3e2ed0-e631-4cce-ba05-ed92f7dbac03 {
  padding-top: 12px;
padding-bottom: 15px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-2d3e2ed0-e631-4cce-ba05-ed92f7dbac03 {
  padding-top: 25px;
padding-bottom: 25px;
}
}







#s-2d3e2ed0-e631-4cce-ba05-ed92f7dbac03 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2d3e2ed0-e631-4cce-ba05-ed92f7dbac03.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-71298c9e-3e05-438b-ac77-3070d47df1fd {
  margin-left: 7%;
margin-right: 7%;
}
}
#s-30f3eb4d-843a-44d6-93e2-b0f1129e2326 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-30f3eb4d-843a-44d6-93e2-b0f1129e2326 {
  display: none;
}
#s-30f3eb4d-843a-44d6-93e2-b0f1129e2326, #wrap-s-30f3eb4d-843a-44d6-93e2-b0f1129e2326 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-30f3eb4d-843a-44d6-93e2-b0f1129e2326 {
  display: none;
}
#s-30f3eb4d-843a-44d6-93e2-b0f1129e2326, #wrap-s-30f3eb4d-843a-44d6-93e2-b0f1129e2326 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-30f3eb4d-843a-44d6-93e2-b0f1129e2326 {
  display: none;
}
#s-30f3eb4d-843a-44d6-93e2-b0f1129e2326, #wrap-s-30f3eb4d-843a-44d6-93e2-b0f1129e2326 { display:none !important; }}@media (max-width: 767px){#s-30f3eb4d-843a-44d6-93e2-b0f1129e2326 {
  display: none;
}
#s-30f3eb4d-843a-44d6-93e2-b0f1129e2326, #wrap-s-30f3eb4d-843a-44d6-93e2-b0f1129e2326 { display:none !important; }}







#s-30f3eb4d-843a-44d6-93e2-b0f1129e2326 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-30f3eb4d-843a-44d6-93e2-b0f1129e2326.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-46ee39d3-3f25-4771-b5f4-b65d1580d49a {
  background-attachment: fixed;
min-height: 50px;
background-color: rgba(10, 46, 99, 1);
}
@media (min-width: 1200px){#s-46ee39d3-3f25-4771-b5f4-b65d1580d49a {
  display: none;
}
#s-46ee39d3-3f25-4771-b5f4-b65d1580d49a, #wrap-s-46ee39d3-3f25-4771-b5f4-b65d1580d49a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-46ee39d3-3f25-4771-b5f4-b65d1580d49a {
  display: none;
}
#s-46ee39d3-3f25-4771-b5f4-b65d1580d49a, #wrap-s-46ee39d3-3f25-4771-b5f4-b65d1580d49a { display:none !important; }}







#s-46ee39d3-3f25-4771-b5f4-b65d1580d49a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-46ee39d3-3f25-4771-b5f4-b65d1580d49a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4382c401-90ca-4a32-9ee4-5c5224154153 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-4382c401-90ca-4a32-9ee4-5c5224154153 {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 5px;
padding-bottom: 5px;
}
}@media (max-width: 767px){#s-4382c401-90ca-4a32-9ee4-5c5224154153 {
  margin-top: 5px;
padding-top: 7px;
padding-bottom: 0px;
}
}
#s-4382c401-90ca-4a32-9ee4-5c5224154153 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-4382c401-90ca-4a32-9ee4-5c5224154153 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.25em;
  
  
}


}@media (max-width: 767px){#s-4382c401-90ca-4a32-9ee4-5c5224154153 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.25em;
  
  
}


}
@media (min-width: 0px) {
[id="s-d7288c61-3b17-4a87-9dd1-752eace76999"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d7288c61-3b17-4a87-9dd1-752eace76999"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d7288c61-3b17-4a87-9dd1-752eace76999"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d7288c61-3b17-4a87-9dd1-752eace76999"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d42b0bd2-719a-4a25-9c8b-667149c18a3d {
  max-width: 120px;
text-align: right;
}
@media (min-width: 768px) and (max-width: 991px){#s-d42b0bd2-719a-4a25-9c8b-667149c18a3d {
  margin-top: 0px;
margin-left: 47%;
margin-bottom: 0px;
margin-right: 47%;
text-align: center;
}
}@media (max-width: 767px){#s-d42b0bd2-719a-4a25-9c8b-667149c18a3d {
  margin-top: 3px;
margin-left: 47%;
margin-bottom: 3px;
margin-right: 47%;
max-width: 60px;
text-align: center;
}
}






  #s-d42b0bd2-719a-4a25-9c8b-667149c18a3d img.shogun-image {
    

    
    
    
  }


#s-d42b0bd2-719a-4a25-9c8b-667149c18a3d .shogun-image-content {
  
    align-items: center;
  
}

#s-405e2d7f-4a6e-4f40-9383-960556750435 {
  margin-bottom: 20px;
}
@media (min-width: 1200px){#s-405e2d7f-4a6e-4f40-9383-960556750435 {
  margin-bottom: 15px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-405e2d7f-4a6e-4f40-9383-960556750435 {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-405e2d7f-4a6e-4f40-9383-960556750435 {
  margin-left: 5%;
margin-right: 5%;
}
}
@media (min-width: 768px) and (max-width: 991px){#s-49d53c64-7a15-4dd7-849d-a9df23a360d0 {
  display: none;
}
#s-49d53c64-7a15-4dd7-849d-a9df23a360d0, #wrap-s-49d53c64-7a15-4dd7-849d-a9df23a360d0 { display:none !important; }}@media (max-width: 767px){#s-49d53c64-7a15-4dd7-849d-a9df23a360d0 {
  display: none;
}
#s-49d53c64-7a15-4dd7-849d-a9df23a360d0, #wrap-s-49d53c64-7a15-4dd7-849d-a9df23a360d0 { display:none !important; }}
@media (min-width: 0px) {
[id="s-49d53c64-7a15-4dd7-849d-a9df23a360d0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-49d53c64-7a15-4dd7-849d-a9df23a360d0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-49d53c64-7a15-4dd7-849d-a9df23a360d0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-49d53c64-7a15-4dd7-849d-a9df23a360d0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-44cac23f-c728-4000-b0e3-b861a4ed04ce {
  margin-top: 25px;
}

@media (min-width: 0px) {
[id="s-44cac23f-c728-4000-b0e3-b861a4ed04ce"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-44cac23f-c728-4000-b0e3-b861a4ed04ce"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-44cac23f-c728-4000-b0e3-b861a4ed04ce"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-44cac23f-c728-4000-b0e3-b861a4ed04ce"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d30b6399-c15a-4641-b4ca-e780ad8be591 {
  max-width: 120px;
text-align: right;
}
@media (min-width: 768px) and (max-width: 991px){#s-d30b6399-c15a-4641-b4ca-e780ad8be591 {
  max-width: 80px;
}
}






  #s-d30b6399-c15a-4641-b4ca-e780ad8be591 img.shogun-image {
    

    
    
    
  }


#s-d30b6399-c15a-4641-b4ca-e780ad8be591 .shogun-image-content {
  
    align-items: center;
  
}

#s-559ff717-f1b3-4695-be07-72e8cfc8fefd {
  margin-top: 15px;
padding-top: 2px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-559ff717-f1b3-4695-be07-72e8cfc8fefd {
  margin-top: 20px;
}
}
#s-559ff717-f1b3-4695-be07-72e8cfc8fefd .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  line-height: 1.25em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-559ff717-f1b3-4695-be07-72e8cfc8fefd .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.25em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-559ff717-f1b3-4695-be07-72e8cfc8fefd .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.25em;
  
  text-align: left;
}


}
#s-a6676ce9-b582-4093-8045-c501276703a4 {
  margin-bottom: 20px;
}
@media (min-width: 1200px){#s-a6676ce9-b582-4093-8045-c501276703a4 {
  margin-bottom: 15px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a6676ce9-b582-4093-8045-c501276703a4 {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-a6676ce9-b582-4093-8045-c501276703a4 {
  margin-left: 5%;
margin-right: 5%;
}
}
.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-61755e3a-6fe6-4067-a240-e2a6fe4156e9 {
  padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 1200px){#s-61755e3a-6fe6-4067-a240-e2a6fe4156e9 {
  display: none;
}
#s-61755e3a-6fe6-4067-a240-e2a6fe4156e9, #wrap-s-61755e3a-6fe6-4067-a240-e2a6fe4156e9 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-61755e3a-6fe6-4067-a240-e2a6fe4156e9 {
  display: none;
}
#s-61755e3a-6fe6-4067-a240-e2a6fe4156e9, #wrap-s-61755e3a-6fe6-4067-a240-e2a6fe4156e9 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-61755e3a-6fe6-4067-a240-e2a6fe4156e9 {
  display: none;
}
#s-61755e3a-6fe6-4067-a240-e2a6fe4156e9, #wrap-s-61755e3a-6fe6-4067-a240-e2a6fe4156e9 { display:none !important; }}
#s-61755e3a-6fe6-4067-a240-e2a6fe4156e9 .shg-sld-dot {
  background-color: rgba(253, 252, 252, 1);
}

#s-61755e3a-6fe6-4067-a240-e2a6fe4156e9 .shg-sld-nav-button.shg-sld-left,
#s-61755e3a-6fe6-4067-a240-e2a6fe4156e9 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(253, 252, 252, 1);
}

#s-ee520da9-7d13-4218-9864-bc4d5428741d {
  max-width: 1400px;
aspect-ratio: 1400/917;
text-align: center;
}





  #s-ee520da9-7d13-4218-9864-bc4d5428741d img.shogun-image,
  #s-ee520da9-7d13-4218-9864-bc4d5428741d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ee520da9-7d13-4218-9864-bc4d5428741d {
    width: 100%;
    height: auto;
  }



  #s-ee520da9-7d13-4218-9864-bc4d5428741d img.shogun-image {
    

    
    
    
  }


#s-ee520da9-7d13-4218-9864-bc4d5428741d .shogun-image-content {
  
    align-items: center;
  
}

#s-5cbd9a0c-894a-43a1-b8c0-0c2b3b71e664 {
  max-width: 1400px;
aspect-ratio: 1400/917;
text-align: center;
}





  #s-5cbd9a0c-894a-43a1-b8c0-0c2b3b71e664 img.shogun-image,
  #s-5cbd9a0c-894a-43a1-b8c0-0c2b3b71e664 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5cbd9a0c-894a-43a1-b8c0-0c2b3b71e664 {
    width: 100%;
    height: auto;
  }



  #s-5cbd9a0c-894a-43a1-b8c0-0c2b3b71e664 img.shogun-image {
    

    
    
    
  }


#s-5cbd9a0c-894a-43a1-b8c0-0c2b3b71e664 .shogun-image-content {
  
    align-items: center;
  
}

#s-7345cc35-4bca-41bf-8dd5-91d2a76609f0 {
  text-align: center;
}







  #s-7345cc35-4bca-41bf-8dd5-91d2a76609f0 img.shogun-image {
    

    
    
    
  }


#s-7345cc35-4bca-41bf-8dd5-91d2a76609f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-d0c8c708-ab3b-47cc-a112-3f006dd5d4a2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(10, 0, 0, 1);
}
@media (max-width: 767px){#s-d0c8c708-ab3b-47cc-a112-3f006dd5d4a2 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-d0c8c708-ab3b-47cc-a112-3f006dd5d4a2 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-d0c8c708-ab3b-47cc-a112-3f006dd5d4a2 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-98909086-e9eb-45e8-9d81-551f1c27c8c7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-98909086-e9eb-45e8-9d81-551f1c27c8c7 {
  margin-bottom: 0px;
margin-right: 0%;
}
}
#s-98909086-e9eb-45e8-9d81-551f1c27c8c7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-98909086-e9eb-45e8-9d81-551f1c27c8c7 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-bbba523d-814f-4bfe-8391-c89762717e2a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 2, 4, 1);
}
@media (max-width: 767px){#s-bbba523d-814f-4bfe-8391-c89762717e2a {
  margin-bottom: 0px;
}
}
#s-bbba523d-814f-4bfe-8391-c89762717e2a .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-bbba523d-814f-4bfe-8391-c89762717e2a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-032920ad-12b9-435c-bb96-75f312f08524 {
  background-attachment: fixed;
min-height: 50px;
background-color: rgba(10, 46, 99, 1);
}
@media (min-width: 1200px){#s-032920ad-12b9-435c-bb96-75f312f08524 {
  display: none;
}
#s-032920ad-12b9-435c-bb96-75f312f08524, #wrap-s-032920ad-12b9-435c-bb96-75f312f08524 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-032920ad-12b9-435c-bb96-75f312f08524 {
  display: none;
}
#s-032920ad-12b9-435c-bb96-75f312f08524, #wrap-s-032920ad-12b9-435c-bb96-75f312f08524 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-032920ad-12b9-435c-bb96-75f312f08524 {
  display: none;
}
#s-032920ad-12b9-435c-bb96-75f312f08524, #wrap-s-032920ad-12b9-435c-bb96-75f312f08524 { display:none !important; }}@media (max-width: 767px){#s-032920ad-12b9-435c-bb96-75f312f08524 {
  display: none;
}
#s-032920ad-12b9-435c-bb96-75f312f08524, #wrap-s-032920ad-12b9-435c-bb96-75f312f08524 { display:none !important; }}







#s-032920ad-12b9-435c-bb96-75f312f08524 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-032920ad-12b9-435c-bb96-75f312f08524.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3dfb989d-e1d1-4463-90a2-719734ab904c {
  max-width: 120px;
text-align: right;
}
@media (min-width: 768px) and (max-width: 991px){#s-3dfb989d-e1d1-4463-90a2-719734ab904c {
  margin-top: 20px;
margin-left: 46%;
margin-bottom: 0px;
margin-right: 47%;
text-align: center;
}
}@media (max-width: 767px){#s-3dfb989d-e1d1-4463-90a2-719734ab904c {
  margin-top: 20px;
margin-left: 45%;
margin-right: 45%;
max-width: 60px;
text-align: center;
}
}






  #s-3dfb989d-e1d1-4463-90a2-719734ab904c img.shogun-image {
    

    
    
    
  }


#s-3dfb989d-e1d1-4463-90a2-719734ab904c .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-7260b020-19c0-4fe9-82ac-57e4e360f765"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7260b020-19c0-4fe9-82ac-57e4e360f765"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7260b020-19c0-4fe9-82ac-57e4e360f765"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7260b020-19c0-4fe9-82ac-57e4e360f765"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9cfdbb8c-bda2-49a0-a942-dad2e6e16dca {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9cfdbb8c-bda2-49a0-a942-dad2e6e16dca .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


@media (max-width: 767px){#s-9cfdbb8c-bda2-49a0-a942-dad2e6e16dca .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.25em;
  
  
}


}
#s-23a66a4d-3e46-4f9f-a0a9-6d0aff5b71c1 {
  margin-bottom: 20px;
}
@media (min-width: 1200px){#s-23a66a4d-3e46-4f9f-a0a9-6d0aff5b71c1 {
  margin-bottom: 15px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-23a66a4d-3e46-4f9f-a0a9-6d0aff5b71c1 {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-23a66a4d-3e46-4f9f-a0a9-6d0aff5b71c1 {
  margin-left: 5%;
margin-right: 5%;
}
}
@media (min-width: 768px) and (max-width: 991px){#s-605688d5-3630-4feb-b3cc-4112f66f2a80 {
  display: none;
}
#s-605688d5-3630-4feb-b3cc-4112f66f2a80, #wrap-s-605688d5-3630-4feb-b3cc-4112f66f2a80 { display:none !important; }}@media (max-width: 767px){#s-605688d5-3630-4feb-b3cc-4112f66f2a80 {
  display: none;
}
#s-605688d5-3630-4feb-b3cc-4112f66f2a80, #wrap-s-605688d5-3630-4feb-b3cc-4112f66f2a80 { display:none !important; }}
@media (min-width: 0px) {
[id="s-605688d5-3630-4feb-b3cc-4112f66f2a80"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-605688d5-3630-4feb-b3cc-4112f66f2a80"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-605688d5-3630-4feb-b3cc-4112f66f2a80"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-605688d5-3630-4feb-b3cc-4112f66f2a80"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-012e8f44-2a4e-49f1-b0da-06a27cd6bee7 {
  margin-top: 25px;
}

@media (min-width: 0px) {
[id="s-012e8f44-2a4e-49f1-b0da-06a27cd6bee7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-012e8f44-2a4e-49f1-b0da-06a27cd6bee7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-012e8f44-2a4e-49f1-b0da-06a27cd6bee7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-012e8f44-2a4e-49f1-b0da-06a27cd6bee7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9e126b5d-95f2-4dcb-b037-363e7858456d {
  max-width: 120px;
text-align: right;
}
@media (min-width: 768px) and (max-width: 991px){#s-9e126b5d-95f2-4dcb-b037-363e7858456d {
  max-width: 80px;
}
}






  #s-9e126b5d-95f2-4dcb-b037-363e7858456d img.shogun-image {
    

    
    
    
  }


#s-9e126b5d-95f2-4dcb-b037-363e7858456d .shogun-image-content {
  
    align-items: center;
  
}

#s-e87a1dd3-965a-462c-aa7b-3a5708f6c34b {
  margin-top: 15px;
padding-top: 2px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-e87a1dd3-965a-462c-aa7b-3a5708f6c34b {
  margin-top: 20px;
}
}
#s-e87a1dd3-965a-462c-aa7b-3a5708f6c34b .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  line-height: 1.25em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-e87a1dd3-965a-462c-aa7b-3a5708f6c34b .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.25em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-e87a1dd3-965a-462c-aa7b-3a5708f6c34b .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.25em;
  
  text-align: left;
}


}
#s-11add3ab-4c38-4939-8f07-8d474cced8b8 {
  margin-bottom: 20px;
}
@media (min-width: 1200px){#s-11add3ab-4c38-4939-8f07-8d474cced8b8 {
  margin-bottom: 15px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-11add3ab-4c38-4939-8f07-8d474cced8b8 {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-11add3ab-4c38-4939-8f07-8d474cced8b8 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-112f8a27-1687-488a-99b3-737ddd37f14a {
  min-height: 80px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-112f8a27-1687-488a-99b3-737ddd37f14a {
  display: none;
}
#s-112f8a27-1687-488a-99b3-737ddd37f14a, #wrap-s-112f8a27-1687-488a-99b3-737ddd37f14a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-112f8a27-1687-488a-99b3-737ddd37f14a {
  display: none;
}
#s-112f8a27-1687-488a-99b3-737ddd37f14a, #wrap-s-112f8a27-1687-488a-99b3-737ddd37f14a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-112f8a27-1687-488a-99b3-737ddd37f14a {
  
}
}@media (max-width: 767px){#s-112f8a27-1687-488a-99b3-737ddd37f14a {
  display: none;
}
#s-112f8a27-1687-488a-99b3-737ddd37f14a, #wrap-s-112f8a27-1687-488a-99b3-737ddd37f14a { display:none !important; }}







#s-112f8a27-1687-488a-99b3-737ddd37f14a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-112f8a27-1687-488a-99b3-737ddd37f14a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2243ecde-88c2-4bea-bcd5-5a2e759f22cd {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-2243ecde-88c2-4bea-bcd5-5a2e759f22cd {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-2243ecde-88c2-4bea-bcd5-5a2e759f22cd .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-2243ecde-88c2-4bea-bcd5-5a2e759f22cd .shg-sld-nav-button.shg-sld-left,
#s-2243ecde-88c2-4bea-bcd5-5a2e759f22cd .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-856ae05e-24d1-424d-8529-6df937ab3128 {
  margin-top: 0px;
}
@media (min-width: 1200px){#s-856ae05e-24d1-424d-8529-6df937ab3128 {
  padding-top: 0px;
padding-bottom: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-856ae05e-24d1-424d-8529-6df937ab3128 {
  margin-top: 0px;
}
}
@media (min-width: 0px) {
[id="s-856ae05e-24d1-424d-8529-6df937ab3128"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-856ae05e-24d1-424d-8529-6df937ab3128"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-856ae05e-24d1-424d-8529-6df937ab3128"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-856ae05e-24d1-424d-8529-6df937ab3128"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

#s-0440eacf-93c6-4d36-a52a-acb1b53b6f18 {
  margin-top: 12px;
margin-left: 10%;
margin-right: 40%;
padding-top: 0px;
padding-left: 0%;
padding-right: 0%;
text-align: center;
}
@media (min-width: 1200px){#s-0440eacf-93c6-4d36-a52a-acb1b53b6f18 {
  margin-top: 15px;
margin-left: 5%;
margin-right: 0%;
padding-bottom: 0px;
max-width: 70px;
text-align: center;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0440eacf-93c6-4d36-a52a-acb1b53b6f18 {
  margin-top: 10px;
margin-left: 5%;
margin-right: 0%;
max-width: 80px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0440eacf-93c6-4d36-a52a-acb1b53b6f18 {
  margin-left: 0%;
margin-right: 0%;
max-width: 60px;
}
}






  #s-0440eacf-93c6-4d36-a52a-acb1b53b6f18 img.shogun-image {
    

    
    
    
  }


#s-0440eacf-93c6-4d36-a52a-acb1b53b6f18 .shogun-image-content {
  
    align-items: center;
  
}

#s-f09d40c6-487a-47e2-96e2-eadb8b6ccc43 {
  margin-top: 12px;
margin-left: 5%;
margin-right: 5%;
padding-top: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-f09d40c6-487a-47e2-96e2-eadb8b6ccc43 {
  margin-top: 10px;
margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
max-width: 110px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f09d40c6-487a-47e2-96e2-eadb8b6ccc43 {
  margin-top: 15px;
margin-left: 0%;
margin-right: 0%;
max-width: 100px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f09d40c6-487a-47e2-96e2-eadb8b6ccc43 {
  margin-top: 15px;
margin-left: 0%;
margin-right: 0%;
max-width: 75px;
}
}






  #s-f09d40c6-487a-47e2-96e2-eadb8b6ccc43 img.shogun-image {
    

    
    
    
  }


#s-f09d40c6-487a-47e2-96e2-eadb8b6ccc43 .shogun-image-content {
  
    align-items: center;
  
}

#s-cdc5c19d-6695-4fc3-a709-758f0a8662fb {
  margin-top: 15px;
margin-left: 15%;
margin-right: 15%;
text-align: center;
}
@media (min-width: 1200px){#s-cdc5c19d-6695-4fc3-a709-758f0a8662fb {
  margin-top: 10px;
margin-left: 0%;
margin-right: 0%;
max-width: 100px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cdc5c19d-6695-4fc3-a709-758f0a8662fb {
  margin-top: 15px;
margin-left: 0%;
margin-right: 0%;
max-width: 100px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-cdc5c19d-6695-4fc3-a709-758f0a8662fb {
  margin-left: 0%;
margin-right: 0%;
max-width: 75px;
}
}






  #s-cdc5c19d-6695-4fc3-a709-758f0a8662fb img.shogun-image {
    

    
    
    
  }


#s-cdc5c19d-6695-4fc3-a709-758f0a8662fb .shogun-image-content {
  
    align-items: center;
  
}

#s-a832b2f9-dc90-4814-aace-e7a116cf9cae {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-a832b2f9-dc90-4814-aace-e7a116cf9cae {
  margin-top: 10px;
margin-bottom: 0px;
padding-left: 0%;
padding-right: 0%;
max-width: 90px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a832b2f9-dc90-4814-aace-e7a116cf9cae {
  margin-top: 10px;
margin-bottom: 0px;
max-width: 90px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a832b2f9-dc90-4814-aace-e7a116cf9cae {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 75px;
}
}






  #s-a832b2f9-dc90-4814-aace-e7a116cf9cae img.shogun-image {
    

    
    
    
  }


#s-a832b2f9-dc90-4814-aace-e7a116cf9cae .shogun-image-content {
  
    align-items: center;
  
}

#s-04bc9dc3-8af7-4e7a-89c6-07c12e62aaae {
  margin-top: 15px;
margin-left: 0%;
margin-right: 0%;
max-width: 100px;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-04bc9dc3-8af7-4e7a-89c6-07c12e62aaae {
  margin-top: 15px;
max-width: 90px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-04bc9dc3-8af7-4e7a-89c6-07c12e62aaae {
  max-width: 80px;
}
}






  #s-04bc9dc3-8af7-4e7a-89c6-07c12e62aaae img.shogun-image {
    

    
    
    
  }


#s-04bc9dc3-8af7-4e7a-89c6-07c12e62aaae .shogun-image-content {
  
    align-items: center;
  
}

#s-420e8a4c-f7e7-4f27-bcd8-21488057e9ab {
  margin-top: 15px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 0px;
max-width: 85px;
text-align: center;
}







  #s-420e8a4c-f7e7-4f27-bcd8-21488057e9ab img.shogun-image {
    

    
    
    
  }


#s-420e8a4c-f7e7-4f27-bcd8-21488057e9ab .shogun-image-content {
  
    align-items: center;
  
}

#s-e822f682-b844-4bf2-9e41-171bfd590e36 {
  margin-top: 0px;
margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
}
@media (min-width: 1200px){#s-e822f682-b844-4bf2-9e41-171bfd590e36 {
  padding-bottom: 5px;
padding-right: 0%;
}
}
@media (min-width: 0px) {
[id="s-e822f682-b844-4bf2-9e41-171bfd590e36"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 29.166666666666668px);
}

}

@media (min-width: 768px) {
[id="s-e822f682-b844-4bf2-9e41-171bfd590e36"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 29.166666666666668px);
}

}

@media (min-width: 992px) {
[id="s-e822f682-b844-4bf2-9e41-171bfd590e36"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 29.166666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-e822f682-b844-4bf2-9e41-171bfd590e36"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 29.166666666666668px);
}

}

#s-fecc3f8e-7f5e-46a1-9c70-808a6f7816eb {
  margin-top: 0px;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 10px;
max-width: 150px;
text-align: center;
}
@media (min-width: 1200px){#s-fecc3f8e-7f5e-46a1-9c70-808a6f7816eb {
  margin-top: 0px;
padding-top: 12px;
padding-left: 35%;
padding-right: 0%;
max-width: 115px;
text-align: center;
}
}@media (min-width: 768px) and (max-width: 991px){#s-fecc3f8e-7f5e-46a1-9c70-808a6f7816eb {
  margin-top: 10px;
padding-top: 0px;
max-width: 60px;
text-align: right;
}
}






  #s-fecc3f8e-7f5e-46a1-9c70-808a6f7816eb img.shogun-image {
    

    
    
    
  }


#s-fecc3f8e-7f5e-46a1-9c70-808a6f7816eb .shogun-image-content {
  
    align-items: center;
  
}

#s-d4d76d26-4b00-479b-953e-01718e97e600 {
  margin-top: 20px;
margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
max-width: 75px;
text-align: center;
}
@media (min-width: 1200px){#s-d4d76d26-4b00-479b-953e-01718e97e600 {
  margin-bottom: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d4d76d26-4b00-479b-953e-01718e97e600 {
  margin-top: 15px;
}
}






  #s-d4d76d26-4b00-479b-953e-01718e97e600 img.shogun-image {
    

    
    
    
  }


#s-d4d76d26-4b00-479b-953e-01718e97e600 .shogun-image-content {
  
    align-items: center;
  
}

#s-5fa4bb12-004d-4b89-a0a6-259ebdf9bb38 {
  margin-top: 10px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
padding-top: 0px;
max-width: 110px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-5fa4bb12-004d-4b89-a0a6-259ebdf9bb38 {
  margin-top: 15px;
margin-left: 0%;
margin-right: 0%;
max-width: 75px;
}
}






  #s-5fa4bb12-004d-4b89-a0a6-259ebdf9bb38 img.shogun-image {
    

    
    
    
  }


#s-5fa4bb12-004d-4b89-a0a6-259ebdf9bb38 .shogun-image-content {
  
    align-items: center;
  
}

#s-5ffee6a2-096b-4631-a692-2a94141808d5 {
  margin-top: 15px;
max-width: 120px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-5ffee6a2-096b-4631-a692-2a94141808d5 {
  max-width: 75px;
}
}






  #s-5ffee6a2-096b-4631-a692-2a94141808d5 img.shogun-image {
    

    
    
    
  }


#s-5ffee6a2-096b-4631-a692-2a94141808d5 .shogun-image-content {
  
    align-items: center;
  
}

#s-540748bd-05c9-416f-b9df-b09ccc1cc12a {
  margin-top: 15px;
max-width: 150px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-540748bd-05c9-416f-b9df-b09ccc1cc12a {
  margin-top: 10px;
max-width: 50px;
}
}






  #s-540748bd-05c9-416f-b9df-b09ccc1cc12a img.shogun-image {
    

    
    
    
  }


#s-540748bd-05c9-416f-b9df-b09ccc1cc12a .shogun-image-content {
  
    align-items: center;
  
}

#s-3847017a-fbd4-47ec-8413-1c4e02e0e489 {
  margin-top: 15px;
margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
max-width: 110px;
text-align: center;
}
@media (min-width: 1200px){#s-3847017a-fbd4-47ec-8413-1c4e02e0e489 {
  padding-right: 20%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-3847017a-fbd4-47ec-8413-1c4e02e0e489 {
  margin-top: 15px;
margin-right: 10%;
max-width: 90px;
}
}






  #s-3847017a-fbd4-47ec-8413-1c4e02e0e489 img.shogun-image {
    

    
    
    
  }


#s-3847017a-fbd4-47ec-8413-1c4e02e0e489 .shogun-image-content {
  
    align-items: center;
  
}

#s-efa5773c-498e-4324-8965-17a6df906519 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}
@media (min-width: 1200px){#s-efa5773c-498e-4324-8965-17a6df906519 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-efa5773c-498e-4324-8965-17a6df906519"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 29.166666666666668px);
}

}

@media (min-width: 768px) {
[id="s-efa5773c-498e-4324-8965-17a6df906519"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 29.166666666666668px);
}

}

@media (min-width: 992px) {
[id="s-efa5773c-498e-4324-8965-17a6df906519"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 29.166666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-efa5773c-498e-4324-8965-17a6df906519"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 29.166666666666668px);
}

}

#s-cd682b88-a339-47c0-8d08-8e041e82ee50 {
  margin-top: 10px;
padding-top: 10px;
max-width: 150px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-cd682b88-a339-47c0-8d08-8e041e82ee50 {
  margin-top: 10px;
max-width: 85px;
}
}






  #s-cd682b88-a339-47c0-8d08-8e041e82ee50 img.shogun-image {
    

    
    
    
  }


#s-cd682b88-a339-47c0-8d08-8e041e82ee50 .shogun-image-content {
  
    align-items: center;
  
}

#s-06345674-33a6-485d-a2ae-1ff1d3c28a42 {
  margin-top: 20px;
padding-top: 0px;
padding-right: 0%;
max-width: 150px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-06345674-33a6-485d-a2ae-1ff1d3c28a42 {
  margin-top: 15px;
max-width: 85px;
}
}






  #s-06345674-33a6-485d-a2ae-1ff1d3c28a42 img.shogun-image {
    

    
    
    
  }


#s-06345674-33a6-485d-a2ae-1ff1d3c28a42 .shogun-image-content {
  
    align-items: center;
  
}

#s-94dd61d0-38c2-4f86-be5e-39f8e0f4c304 {
  margin-top: 10px;
margin-left: 5%;
margin-right: 5%;
padding-top: 0px;
padding-left: 7%;
padding-right: 0%;
max-width: 120px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-94dd61d0-38c2-4f86-be5e-39f8e0f4c304 {
  margin-top: 10px;
margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
max-width: 70px;
}
}






  #s-94dd61d0-38c2-4f86-be5e-39f8e0f4c304 img.shogun-image {
    

    
    
    
  }


#s-94dd61d0-38c2-4f86-be5e-39f8e0f4c304 .shogun-image-content {
  
    align-items: center;
  
}

#s-895cfc6d-bf28-4770-a69f-f61b42a1f619 {
  margin-top: 15px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 0px;
max-width: 120px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-895cfc6d-bf28-4770-a69f-f61b42a1f619 {
  margin-top: 10px;
margin-left: 0%;
margin-right: 0%;
max-width: 75px;
}
}






  #s-895cfc6d-bf28-4770-a69f-f61b42a1f619 img.shogun-image {
    

    
    
    
  }


#s-895cfc6d-bf28-4770-a69f-f61b42a1f619 .shogun-image-content {
  
    align-items: center;
  
}

#s-d626ea41-95a9-4196-9b38-7e2ca431f6ce {
  margin-top: 15px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
padding-top: 0px;
max-width: 120px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d626ea41-95a9-4196-9b38-7e2ca431f6ce {
  margin-left: 0%;
margin-right: 0%;
max-width: 85px;
}
}






  #s-d626ea41-95a9-4196-9b38-7e2ca431f6ce img.shogun-image {
    

    
    
    
  }


#s-d626ea41-95a9-4196-9b38-7e2ca431f6ce .shogun-image-content {
  
    align-items: center;
  
}

#s-dd8d9580-d682-4214-af33-6c1abc133059 {
  margin-top: 5px;
margin-left: 15%;
margin-right: 20%;
padding-top: 0px;
padding-left: 0%;
padding-right: 0%;
max-width: 110px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-dd8d9580-d682-4214-af33-6c1abc133059 {
  margin-top: 10px;
margin-left: 0%;
margin-right: 0%;
max-width: 70px;
}
}






  #s-dd8d9580-d682-4214-af33-6c1abc133059 img.shogun-image {
    

    
    
    
  }


#s-dd8d9580-d682-4214-af33-6c1abc133059 .shogun-image-content {
  
    align-items: center;
  
}

#s-7db88b3d-faa5-4150-a18c-5bfd681ca957 {
  background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-7db88b3d-faa5-4150-a18c-5bfd681ca957 {
  display: none;
}
#s-7db88b3d-faa5-4150-a18c-5bfd681ca957, #wrap-s-7db88b3d-faa5-4150-a18c-5bfd681ca957 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7db88b3d-faa5-4150-a18c-5bfd681ca957 {
  display: none;
}
#s-7db88b3d-faa5-4150-a18c-5bfd681ca957, #wrap-s-7db88b3d-faa5-4150-a18c-5bfd681ca957 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7db88b3d-faa5-4150-a18c-5bfd681ca957 {
  display: none;
}
#s-7db88b3d-faa5-4150-a18c-5bfd681ca957, #wrap-s-7db88b3d-faa5-4150-a18c-5bfd681ca957 { display:none !important; }}@media (max-width: 767px){#s-7db88b3d-faa5-4150-a18c-5bfd681ca957 {
  
}
}







#s-7db88b3d-faa5-4150-a18c-5bfd681ca957 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7db88b3d-faa5-4150-a18c-5bfd681ca957.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-4cd1639c-4efa-4f39-8a97-b9320bb4b867 {
  box-shadow:0px 0px 0px 0px rgba(237, 237, 237, 1);
margin-top: 50px;
margin-left: 2%;
margin-bottom: 50px;
margin-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4cd1639c-4efa-4f39-8a97-b9320bb4b867 {
  margin-top: 50px;
margin-left: 2%;
margin-bottom: 50px;
margin-right: 2%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4cd1639c-4efa-4f39-8a97-b9320bb4b867 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-4cd1639c-4efa-4f39-8a97-b9320bb4b867 {
  margin-top: 15px;
margin-bottom: 40px;
display: none;
}
#s-4cd1639c-4efa-4f39-8a97-b9320bb4b867, #wrap-s-4cd1639c-4efa-4f39-8a97-b9320bb4b867 { display:none !important; }}







#s-4cd1639c-4efa-4f39-8a97-b9320bb4b867 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4cd1639c-4efa-4f39-8a97-b9320bb4b867.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2b6c45b0-447c-4ded-b92a-e557c30fca7f {
  margin-top: 20px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
padding-left: 2%;
padding-right: 2%;
}
@media (min-width: 1200px){#s-2b6c45b0-447c-4ded-b92a-e557c30fca7f {
  margin-left: 1%;
margin-bottom: 50px;
margin-right: 1%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2b6c45b0-447c-4ded-b92a-e557c30fca7f {
  margin-left: 1%;
margin-bottom: 50px;
margin-right: 1%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-2b6c45b0-447c-4ded-b92a-e557c30fca7f {
  display: none;
}
#s-2b6c45b0-447c-4ded-b92a-e557c30fca7f, #wrap-s-2b6c45b0-447c-4ded-b92a-e557c30fca7f { display:none !important; }}@media (max-width: 767px){#s-2b6c45b0-447c-4ded-b92a-e557c30fca7f {
  display: none;
}
#s-2b6c45b0-447c-4ded-b92a-e557c30fca7f, #wrap-s-2b6c45b0-447c-4ded-b92a-e557c30fca7f { display:none !important; }}
@media (min-width: 0px) {
[id="s-2b6c45b0-447c-4ded-b92a-e557c30fca7f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-2b6c45b0-447c-4ded-b92a-e557c30fca7f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2b6c45b0-447c-4ded-b92a-e557c30fca7f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2b6c45b0-447c-4ded-b92a-e557c30fca7f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-6aaf7282-bd8c-4946-b9f1-265ce5331aec {
  margin-top: 35px;
padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-6aaf7282-bd8c-4946-b9f1-265ce5331aec {
  margin-top: 10px;
padding-top: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6aaf7282-bd8c-4946-b9f1-265ce5331aec {
  margin-top: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6aaf7282-bd8c-4946-b9f1-265ce5331aec {
  margin-top: 10px;
}
}@media (max-width: 767px){#s-6aaf7282-bd8c-4946-b9f1-265ce5331aec {
  margin-top: 0px;
}
}
#s-6aaf7282-bd8c-4946-b9f1-265ce5331aec .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.25em;
  
  text-align: left;
}


@media (min-width: 1200px){#s-6aaf7282-bd8c-4946-b9f1-265ce5331aec .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 37px;
  line-height: 1.25em;
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-6aaf7282-bd8c-4946-b9f1-265ce5331aec .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 38px;
  line-height: 1.25em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-6aaf7282-bd8c-4946-b9f1-265ce5331aec .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.25em;
  
  text-align: left;
}


}
#s-93a1aa27-9c9a-4969-b439-c6b72c248043 {
  padding-top: 5px;
padding-bottom: 5px;
text-align: left;
}
@media (min-width: 1200px){#s-93a1aa27-9c9a-4969-b439-c6b72c248043 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-93a1aa27-9c9a-4969-b439-c6b72c248043 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.25em;
  
  text-align: left;
}



#s-9750cb48-535e-49e8-9965-4a7d00251d23 {
  margin-top: 10px;
margin-bottom: 20px;
margin-right: 10%;
}

#s-df381992-9469-4ad4-9a30-9b80583606b6 {
  text-align: center;
}







  #s-df381992-9469-4ad4-9a30-9b80583606b6 img.shogun-image {
    

    
    
    
  }


#s-df381992-9469-4ad4-9a30-9b80583606b6 .shogun-image-content {
  
    align-items: center;
  
}

#s-b21b0d9a-c519-4be8-ad7a-7fa99d4fb66b {
  margin-top: 0px;
margin-bottom: 20px;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b21b0d9a-c519-4be8-ad7a-7fa99d4fb66b .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-e23d955e-c54a-402a-a2e5-25af60534c2b {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-e23d955e-c54a-402a-a2e5-25af60534c2b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e23d955e-c54a-402a-a2e5-25af60534c2b:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-e23d955e-c54a-402a-a2e5-25af60534c2b {
  margin-bottom: 40px;
}
}@media (max-width: 767px){#s-e23d955e-c54a-402a-a2e5-25af60534c2b {
  padding-left: 15%;
padding-right: 15%;
}
}

  #s-e23d955e-c54a-402a-a2e5-25af60534c2b-root {
    text-align: center;
  }


#s-e23d955e-c54a-402a-a2e5-25af60534c2b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e23d955e-c54a-402a-a2e5-25af60534c2b-root {
    text-align: center;
  }


#s-e23d955e-c54a-402a-a2e5-25af60534c2b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e23d955e-c54a-402a-a2e5-25af60534c2b-root {
    text-align: center;
  }


#s-e23d955e-c54a-402a-a2e5-25af60534c2b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e23d955e-c54a-402a-a2e5-25af60534c2b-root {
    text-align: center;
  }


#s-e23d955e-c54a-402a-a2e5-25af60534c2b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e23d955e-c54a-402a-a2e5-25af60534c2b-root {
    text-align: center;
  }


#s-e23d955e-c54a-402a-a2e5-25af60534c2b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-1d5601a1-7ae3-4db5-abb9-1e158ec3a93d {
  text-align: center;
}







  #s-1d5601a1-7ae3-4db5-abb9-1e158ec3a93d img.shogun-image {
    

    
    
    
  }


#s-1d5601a1-7ae3-4db5-abb9-1e158ec3a93d .shogun-image-content {
  
    align-items: center;
  
}

#s-1c979370-7b0b-4c5e-ba34-deaaaac5c52f {
  margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1c979370-7b0b-4c5e-ba34-deaaaac5c52f .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-df09878a-df80-4b86-82bb-7fd3ba345709 {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-df09878a-df80-4b86-82bb-7fd3ba345709:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-df09878a-df80-4b86-82bb-7fd3ba345709:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-df09878a-df80-4b86-82bb-7fd3ba345709 {
  padding-left: 28px;
padding-right: 28px;
}
}

  #s-df09878a-df80-4b86-82bb-7fd3ba345709-root {
    text-align: center;
  }


#s-df09878a-df80-4b86-82bb-7fd3ba345709.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-df09878a-df80-4b86-82bb-7fd3ba345709-root {
    text-align: center;
  }


#s-df09878a-df80-4b86-82bb-7fd3ba345709.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-df09878a-df80-4b86-82bb-7fd3ba345709-root {
    text-align: center;
  }


#s-df09878a-df80-4b86-82bb-7fd3ba345709.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-df09878a-df80-4b86-82bb-7fd3ba345709-root {
    text-align: center;
  }


#s-df09878a-df80-4b86-82bb-7fd3ba345709.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-df09878a-df80-4b86-82bb-7fd3ba345709-root {
    text-align: center;
  }


#s-df09878a-df80-4b86-82bb-7fd3ba345709.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-e22ca2a7-c1bc-46f4-88d1-0a4806139187 {
  text-align: center;
}







  #s-e22ca2a7-c1bc-46f4-88d1-0a4806139187 img.shogun-image {
    

    
    
    
  }


#s-e22ca2a7-c1bc-46f4-88d1-0a4806139187 .shogun-image-content {
  
    align-items: center;
  
}

#s-7542e678-b791-42a9-a841-71e5b1d1d952 {
  margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7542e678-b791-42a9-a841-71e5b1d1d952 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-839d5484-f322-4c66-b8a3-1a63ed2405ab {
  margin-bottom: 0px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-839d5484-f322-4c66-b8a3-1a63ed2405ab:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-839d5484-f322-4c66-b8a3-1a63ed2405ab:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-839d5484-f322-4c66-b8a3-1a63ed2405ab {
  padding-left: 35px;
padding-right: 35px;
}
}

  #s-839d5484-f322-4c66-b8a3-1a63ed2405ab-root {
    text-align: center;
  }


#s-839d5484-f322-4c66-b8a3-1a63ed2405ab.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-839d5484-f322-4c66-b8a3-1a63ed2405ab-root {
    text-align: center;
  }


#s-839d5484-f322-4c66-b8a3-1a63ed2405ab.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-839d5484-f322-4c66-b8a3-1a63ed2405ab-root {
    text-align: center;
  }


#s-839d5484-f322-4c66-b8a3-1a63ed2405ab.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-839d5484-f322-4c66-b8a3-1a63ed2405ab-root {
    text-align: center;
  }


#s-839d5484-f322-4c66-b8a3-1a63ed2405ab.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-839d5484-f322-4c66-b8a3-1a63ed2405ab-root {
    text-align: center;
  }


#s-839d5484-f322-4c66-b8a3-1a63ed2405ab.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-6b17ceb3-ca94-467f-b2c4-ff07eb7fe884 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-6b17ceb3-ca94-467f-b2c4-ff07eb7fe884 {
  display: none;
}
#s-6b17ceb3-ca94-467f-b2c4-ff07eb7fe884, #wrap-s-6b17ceb3-ca94-467f-b2c4-ff07eb7fe884 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6b17ceb3-ca94-467f-b2c4-ff07eb7fe884 {
  display: none;
}
#s-6b17ceb3-ca94-467f-b2c4-ff07eb7fe884, #wrap-s-6b17ceb3-ca94-467f-b2c4-ff07eb7fe884 { display:none !important; }}@media (max-width: 767px){#s-6b17ceb3-ca94-467f-b2c4-ff07eb7fe884 {
  display: none;
}
#s-6b17ceb3-ca94-467f-b2c4-ff07eb7fe884, #wrap-s-6b17ceb3-ca94-467f-b2c4-ff07eb7fe884 { display:none !important; }}







#s-6b17ceb3-ca94-467f-b2c4-ff07eb7fe884 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b17ceb3-ca94-467f-b2c4-ff07eb7fe884.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-57757636-c8bb-46dd-a93f-cfa9576fc91e {
  margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
}
}
@media (min-width: 0px) {
[id="s-57757636-c8bb-46dd-a93f-cfa9576fc91e"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-57757636-c8bb-46dd-a93f-cfa9576fc91e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-57757636-c8bb-46dd-a93f-cfa9576fc91e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-57757636-c8bb-46dd-a93f-cfa9576fc91e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-57757636-c8bb-46dd-a93f-cfa9576fc91e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-57757636-c8bb-46dd-a93f-cfa9576fc91e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-57757636-c8bb-46dd-a93f-cfa9576fc91e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-1a3fac60-d599-4c45-aca3-b9ee84f19563 {
  margin-top: 35px;
padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-1a3fac60-d599-4c45-aca3-b9ee84f19563 {
  margin-top: 0px;
margin-left: 1%;
padding-top: 0px;
}
}@media (max-width: 767px){#s-1a3fac60-d599-4c45-aca3-b9ee84f19563 {
  margin-top: 0px;
margin-left: 5%;
margin-right: 2%;
}
}
#s-1a3fac60-d599-4c45-aca3-b9ee84f19563 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.25em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-1a3fac60-d599-4c45-aca3-b9ee84f19563 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.25em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-1a3fac60-d599-4c45-aca3-b9ee84f19563 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.15em;
  
  text-align: left;
}


}
#s-14b57456-9c23-4939-ad34-19bb43908f0c {
  margin-top: 30px;
margin-left: 5%;
margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px){#s-14b57456-9c23-4939-ad34-19bb43908f0c {
  margin-top: 10px;
margin-left: 1%;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-14b57456-9c23-4939-ad34-19bb43908f0c {
  margin-top: 25px;
margin-bottom: 0px;
margin-right: 1%;
}
}
#s-5be728b0-66d2-4a96-bcdb-3e5baf632201 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-5be728b0-66d2-4a96-bcdb-3e5baf632201 {
  display: none;
}
#s-5be728b0-66d2-4a96-bcdb-3e5baf632201, #wrap-s-5be728b0-66d2-4a96-bcdb-3e5baf632201 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5be728b0-66d2-4a96-bcdb-3e5baf632201 {
  display: none;
}
#s-5be728b0-66d2-4a96-bcdb-3e5baf632201, #wrap-s-5be728b0-66d2-4a96-bcdb-3e5baf632201 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5be728b0-66d2-4a96-bcdb-3e5baf632201 {
  min-height: 0px;
}
}







#s-5be728b0-66d2-4a96-bcdb-3e5baf632201 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5be728b0-66d2-4a96-bcdb-3e5baf632201.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-212cde7d-d307-49eb-bf2b-deee71c778e2 {
  margin-left: 2%;
margin-bottom: 10px;
margin-right: 2%;
display: none;
}
#s-212cde7d-d307-49eb-bf2b-deee71c778e2, #wrap-s-212cde7d-d307-49eb-bf2b-deee71c778e2 { display:none !important; }}
@media (min-width: 0px) {
[id="s-212cde7d-d307-49eb-bf2b-deee71c778e2"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-212cde7d-d307-49eb-bf2b-deee71c778e2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-212cde7d-d307-49eb-bf2b-deee71c778e2"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-212cde7d-d307-49eb-bf2b-deee71c778e2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-212cde7d-d307-49eb-bf2b-deee71c778e2"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-212cde7d-d307-49eb-bf2b-deee71c778e2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-212cde7d-d307-49eb-bf2b-deee71c778e2"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-0e7f2dbb-833e-4fc3-a6ab-7794af9e9510 {
  min-height: 50px;
}








#s-0e7f2dbb-833e-4fc3-a6ab-7794af9e9510 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0e7f2dbb-833e-4fc3-a6ab-7794af9e9510.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-165d339f-3248-4430-abc5-d4b896eb7e38 {
  margin-top: 35px;
padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-165d339f-3248-4430-abc5-d4b896eb7e38 {
  margin-top: 5px;
margin-left: 1%;
}
}@media (max-width: 767px){#s-165d339f-3248-4430-abc5-d4b896eb7e38 {
  margin-top: 12px;
margin-left: 5%;
margin-right: 2%;
}
}
#s-165d339f-3248-4430-abc5-d4b896eb7e38 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.25em;
  
  text-align: left;
}


@media (max-width: 767px){#s-165d339f-3248-4430-abc5-d4b896eb7e38 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.15em;
  
  text-align: left;
}


}
#s-77da9e2f-5f8e-47d5-be37-918fd0d6ee3a {
  margin-top: 30px;
margin-left: 5%;
margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991px){#s-77da9e2f-5f8e-47d5-be37-918fd0d6ee3a {
  margin-top: 10px;
margin-left: 1%;
}
}@media (max-width: 767px){#s-77da9e2f-5f8e-47d5-be37-918fd0d6ee3a {
  margin-top: 10px;
margin-right: 1%;
}
}
#s-d1dd25a2-8560-4a24-8e8d-dae326865430 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 15px;
margin-right: 5%;
padding-left: 2%;
padding-right: 2%;
}
@media (min-width: 1200px){#s-d1dd25a2-8560-4a24-8e8d-dae326865430 {
  margin-left: 0%;
margin-right: 0%;
display: none;
}
#s-d1dd25a2-8560-4a24-8e8d-dae326865430, #wrap-s-d1dd25a2-8560-4a24-8e8d-dae326865430 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d1dd25a2-8560-4a24-8e8d-dae326865430 {
  display: none;
}
#s-d1dd25a2-8560-4a24-8e8d-dae326865430, #wrap-s-d1dd25a2-8560-4a24-8e8d-dae326865430 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d1dd25a2-8560-4a24-8e8d-dae326865430 {
  margin-left: 2%;
margin-right: 2%;
display: none;
}
#s-d1dd25a2-8560-4a24-8e8d-dae326865430, #wrap-s-d1dd25a2-8560-4a24-8e8d-dae326865430 { display:none !important; }}@media (max-width: 767px){#s-d1dd25a2-8560-4a24-8e8d-dae326865430 {
  
}
}
@media (min-width: 0px) {
[id="s-d1dd25a2-8560-4a24-8e8d-dae326865430"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-d1dd25a2-8560-4a24-8e8d-dae326865430"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d1dd25a2-8560-4a24-8e8d-dae326865430"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d1dd25a2-8560-4a24-8e8d-dae326865430"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-ffd1e457-7b47-45f8-847f-3b8e18ec1a64 {
  margin-top: 35px;
padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-ffd1e457-7b47-45f8-847f-3b8e18ec1a64 {
  margin-top: 10px;
}
}@media (max-width: 767px){#s-ffd1e457-7b47-45f8-847f-3b8e18ec1a64 {
  margin-top: 0px;
}
}
#s-ffd1e457-7b47-45f8-847f-3b8e18ec1a64 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.25em;
  
  text-align: left;
}


@media (max-width: 767px){#s-ffd1e457-7b47-45f8-847f-3b8e18ec1a64 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.25em;
  
  text-align: left;
}


}
#s-e1575607-620e-49a7-99b0-17513e7691cc {
  margin-top: 30px;
margin-bottom: 20px;
}
@media (max-width: 767px){#s-e1575607-620e-49a7-99b0-17513e7691cc {
  margin-top: 10px;
}
}
#s-4de8cf95-d35e-4600-bd93-55ebda8dceff {
  text-align: center;
}







  #s-4de8cf95-d35e-4600-bd93-55ebda8dceff img.shogun-image {
    

    
    
    
  }


#s-4de8cf95-d35e-4600-bd93-55ebda8dceff .shogun-image-content {
  
    align-items: center;
  
}

#s-ab81a9fc-7d05-46ae-92f8-5044b3574576 {
  margin-top: 0px;
margin-bottom: 20px;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ab81a9fc-7d05-46ae-92f8-5044b3574576 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-232ab9c2-b089-49bb-b42e-98a8c59f4996 {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-232ab9c2-b089-49bb-b42e-98a8c59f4996:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-232ab9c2-b089-49bb-b42e-98a8c59f4996:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-232ab9c2-b089-49bb-b42e-98a8c59f4996 {
  margin-bottom: 40px;
}
}@media (max-width: 767px){#s-232ab9c2-b089-49bb-b42e-98a8c59f4996 {
  padding-left: 15%;
padding-right: 15%;
}
}

  #s-232ab9c2-b089-49bb-b42e-98a8c59f4996-root {
    text-align: center;
  }


#s-232ab9c2-b089-49bb-b42e-98a8c59f4996.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-232ab9c2-b089-49bb-b42e-98a8c59f4996-root {
    text-align: center;
  }


#s-232ab9c2-b089-49bb-b42e-98a8c59f4996.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-232ab9c2-b089-49bb-b42e-98a8c59f4996-root {
    text-align: center;
  }


#s-232ab9c2-b089-49bb-b42e-98a8c59f4996.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-232ab9c2-b089-49bb-b42e-98a8c59f4996-root {
    text-align: center;
  }


#s-232ab9c2-b089-49bb-b42e-98a8c59f4996.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-232ab9c2-b089-49bb-b42e-98a8c59f4996-root {
    text-align: center;
  }


#s-232ab9c2-b089-49bb-b42e-98a8c59f4996.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-3693570c-adbd-4ff0-af9d-337672bece25 {
  text-align: center;
}







  #s-3693570c-adbd-4ff0-af9d-337672bece25 img.shogun-image {
    

    
    
    
  }


#s-3693570c-adbd-4ff0-af9d-337672bece25 .shogun-image-content {
  
    align-items: center;
  
}

#s-f8b9aa8e-1a31-479d-9ac3-b14e349b3ba1 {
  margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f8b9aa8e-1a31-479d-9ac3-b14e349b3ba1 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-383b7191-55bc-49eb-95d9-1ab558c017c0 {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-383b7191-55bc-49eb-95d9-1ab558c017c0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-383b7191-55bc-49eb-95d9-1ab558c017c0:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-383b7191-55bc-49eb-95d9-1ab558c017c0 {
  padding-left: 28px;
padding-right: 28px;
}
}

  #s-383b7191-55bc-49eb-95d9-1ab558c017c0-root {
    text-align: center;
  }


#s-383b7191-55bc-49eb-95d9-1ab558c017c0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-383b7191-55bc-49eb-95d9-1ab558c017c0-root {
    text-align: center;
  }


#s-383b7191-55bc-49eb-95d9-1ab558c017c0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-383b7191-55bc-49eb-95d9-1ab558c017c0-root {
    text-align: center;
  }


#s-383b7191-55bc-49eb-95d9-1ab558c017c0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-383b7191-55bc-49eb-95d9-1ab558c017c0-root {
    text-align: center;
  }


#s-383b7191-55bc-49eb-95d9-1ab558c017c0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-383b7191-55bc-49eb-95d9-1ab558c017c0-root {
    text-align: center;
  }


#s-383b7191-55bc-49eb-95d9-1ab558c017c0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-80fc55b6-4152-4e21-ac10-0b8f66766785 {
  text-align: center;
}







  #s-80fc55b6-4152-4e21-ac10-0b8f66766785 img.shogun-image {
    

    
    
    
  }


#s-80fc55b6-4152-4e21-ac10-0b8f66766785 .shogun-image-content {
  
    align-items: center;
  
}

#s-b3290374-1869-4972-81f4-13289828b192 {
  margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b3290374-1869-4972-81f4-13289828b192 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-c2747129-e561-4e91-a1e6-ff67fde086e7 {
  margin-bottom: 0px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-c2747129-e561-4e91-a1e6-ff67fde086e7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c2747129-e561-4e91-a1e6-ff67fde086e7:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-c2747129-e561-4e91-a1e6-ff67fde086e7 {
  padding-left: 35px;
padding-right: 35px;
}
}

  #s-c2747129-e561-4e91-a1e6-ff67fde086e7-root {
    text-align: center;
  }


#s-c2747129-e561-4e91-a1e6-ff67fde086e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c2747129-e561-4e91-a1e6-ff67fde086e7-root {
    text-align: center;
  }


#s-c2747129-e561-4e91-a1e6-ff67fde086e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c2747129-e561-4e91-a1e6-ff67fde086e7-root {
    text-align: center;
  }


#s-c2747129-e561-4e91-a1e6-ff67fde086e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c2747129-e561-4e91-a1e6-ff67fde086e7-root {
    text-align: center;
  }


#s-c2747129-e561-4e91-a1e6-ff67fde086e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c2747129-e561-4e91-a1e6-ff67fde086e7-root {
    text-align: center;
  }


#s-c2747129-e561-4e91-a1e6-ff67fde086e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-3cd5a18d-4a99-45d2-a699-dc75893f678d {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
padding-left: 2%;
padding-right: 2%;
}
@media (min-width: 1200px){#s-3cd5a18d-4a99-45d2-a699-dc75893f678d {
  display: none;
}
#s-3cd5a18d-4a99-45d2-a699-dc75893f678d, #wrap-s-3cd5a18d-4a99-45d2-a699-dc75893f678d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3cd5a18d-4a99-45d2-a699-dc75893f678d {
  display: none;
}
#s-3cd5a18d-4a99-45d2-a699-dc75893f678d, #wrap-s-3cd5a18d-4a99-45d2-a699-dc75893f678d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3cd5a18d-4a99-45d2-a699-dc75893f678d {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-3cd5a18d-4a99-45d2-a699-dc75893f678d {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
display: none;
}
#s-3cd5a18d-4a99-45d2-a699-dc75893f678d, #wrap-s-3cd5a18d-4a99-45d2-a699-dc75893f678d { display:none !important; }}
@media (min-width: 0px) {
[id="s-3cd5a18d-4a99-45d2-a699-dc75893f678d"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-3cd5a18d-4a99-45d2-a699-dc75893f678d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-3cd5a18d-4a99-45d2-a699-dc75893f678d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-3cd5a18d-4a99-45d2-a699-dc75893f678d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-f62f8077-70fb-4bf6-93f9-25a60bee167c {
  text-align: center;
}







  #s-f62f8077-70fb-4bf6-93f9-25a60bee167c img.shogun-image {
    

    
    
    
  }


#s-f62f8077-70fb-4bf6-93f9-25a60bee167c .shogun-image-content {
  
    align-items: center;
  
}

#s-2b84136c-d9c5-4c76-9431-1c6ac4adb643 {
  margin-top: 0px;
margin-bottom: 20px;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2b84136c-d9c5-4c76-9431-1c6ac4adb643 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (max-width: 767px){#s-2b84136c-d9c5-4c76-9431-1c6ac4adb643 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-19c960ab-b694-4d8f-b5f0-508fa90ee042 {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-19c960ab-b694-4d8f-b5f0-508fa90ee042:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-19c960ab-b694-4d8f-b5f0-508fa90ee042:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-19c960ab-b694-4d8f-b5f0-508fa90ee042 {
  margin-bottom: 40px;
}
}@media (max-width: 767px){#s-19c960ab-b694-4d8f-b5f0-508fa90ee042 {
  padding-left: 15%;
padding-right: 15%;
}
}

  #s-19c960ab-b694-4d8f-b5f0-508fa90ee042-root {
    text-align: center;
  }


#s-19c960ab-b694-4d8f-b5f0-508fa90ee042.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-19c960ab-b694-4d8f-b5f0-508fa90ee042-root {
    text-align: center;
  }


#s-19c960ab-b694-4d8f-b5f0-508fa90ee042.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-19c960ab-b694-4d8f-b5f0-508fa90ee042-root {
    text-align: center;
  }


#s-19c960ab-b694-4d8f-b5f0-508fa90ee042.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-19c960ab-b694-4d8f-b5f0-508fa90ee042-root {
    text-align: center;
  }


#s-19c960ab-b694-4d8f-b5f0-508fa90ee042.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-19c960ab-b694-4d8f-b5f0-508fa90ee042-root {
    text-align: center;
  }


#s-19c960ab-b694-4d8f-b5f0-508fa90ee042.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-6bd98ed2-0449-4697-8e3f-fe5202928724 {
  text-align: center;
}







  #s-6bd98ed2-0449-4697-8e3f-fe5202928724 img.shogun-image {
    

    
    
    
  }


#s-6bd98ed2-0449-4697-8e3f-fe5202928724 .shogun-image-content {
  
    align-items: center;
  
}

#s-4a7fac92-330e-4aad-b9e9-20bb9fcaf5fd {
  margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4a7fac92-330e-4aad-b9e9-20bb9fcaf5fd .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-2fc1a7a0-a2e5-4972-a151-590bd2dde554 {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-2fc1a7a0-a2e5-4972-a151-590bd2dde554:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2fc1a7a0-a2e5-4972-a151-590bd2dde554:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-2fc1a7a0-a2e5-4972-a151-590bd2dde554 {
  padding-left: 28px;
padding-right: 28px;
}
}

  #s-2fc1a7a0-a2e5-4972-a151-590bd2dde554-root {
    text-align: center;
  }


#s-2fc1a7a0-a2e5-4972-a151-590bd2dde554.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2fc1a7a0-a2e5-4972-a151-590bd2dde554-root {
    text-align: center;
  }


#s-2fc1a7a0-a2e5-4972-a151-590bd2dde554.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2fc1a7a0-a2e5-4972-a151-590bd2dde554-root {
    text-align: center;
  }


#s-2fc1a7a0-a2e5-4972-a151-590bd2dde554.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2fc1a7a0-a2e5-4972-a151-590bd2dde554-root {
    text-align: center;
  }


#s-2fc1a7a0-a2e5-4972-a151-590bd2dde554.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2fc1a7a0-a2e5-4972-a151-590bd2dde554-root {
    text-align: center;
  }


#s-2fc1a7a0-a2e5-4972-a151-590bd2dde554.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-c2e866a7-2fdc-4c9f-b15d-39e0a34ebd7c {
  text-align: center;
}







  #s-c2e866a7-2fdc-4c9f-b15d-39e0a34ebd7c img.shogun-image {
    

    
    
    
  }


#s-c2e866a7-2fdc-4c9f-b15d-39e0a34ebd7c .shogun-image-content {
  
    align-items: center;
  
}

#s-7f18f0f4-3528-42e8-b1c8-d8ef3a6db9cb {
  margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7f18f0f4-3528-42e8-b1c8-d8ef3a6db9cb .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-02e4cf56-cddc-4fe0-9f4f-eaac6f46a3fa {
  margin-bottom: 0px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-02e4cf56-cddc-4fe0-9f4f-eaac6f46a3fa:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-02e4cf56-cddc-4fe0-9f4f-eaac6f46a3fa:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-02e4cf56-cddc-4fe0-9f4f-eaac6f46a3fa {
  padding-left: 70px;
padding-right: 70px;
}
}@media (max-width: 767px){#s-02e4cf56-cddc-4fe0-9f4f-eaac6f46a3fa {
  padding-left: 28px;
padding-right: 28px;
}
}

  #s-02e4cf56-cddc-4fe0-9f4f-eaac6f46a3fa-root {
    text-align: center;
  }


#s-02e4cf56-cddc-4fe0-9f4f-eaac6f46a3fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-02e4cf56-cddc-4fe0-9f4f-eaac6f46a3fa-root {
    text-align: center;
  }


#s-02e4cf56-cddc-4fe0-9f4f-eaac6f46a3fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-02e4cf56-cddc-4fe0-9f4f-eaac6f46a3fa-root {
    text-align: center;
  }


#s-02e4cf56-cddc-4fe0-9f4f-eaac6f46a3fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-02e4cf56-cddc-4fe0-9f4f-eaac6f46a3fa-root {
    text-align: center;
  }


#s-02e4cf56-cddc-4fe0-9f4f-eaac6f46a3fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-02e4cf56-cddc-4fe0-9f4f-eaac6f46a3fa-root {
    text-align: center;
  }


#s-02e4cf56-cddc-4fe0-9f4f-eaac6f46a3fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-d11a5473-29d9-4b78-aeff-2621d5fbf431 {
  min-height: 50px;
background-color: rgba(246, 246, 246, 1);
}








#s-d11a5473-29d9-4b78-aeff-2621d5fbf431 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d11a5473-29d9-4b78-aeff-2621d5fbf431.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-e6f2e809-e8eb-46e0-ba5d-40d1f585f333 {
  margin-left: 7%;
margin-right: 7%;
}
}@media (max-width: 767px){#s-e6f2e809-e8eb-46e0-ba5d-40d1f585f333 {
  margin-top: 10px;
margin-left: 1%;
margin-bottom: 10px;
margin-right: 1%;
padding-top: 10px;
padding-bottom: 10px;
}
}
#s-08393f68-78f8-4d98-ae2c-e7868f71c2d1 {
  min-height: 80px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-08393f68-78f8-4d98-ae2c-e7868f71c2d1 {
  display: none;
}
#s-08393f68-78f8-4d98-ae2c-e7868f71c2d1, #wrap-s-08393f68-78f8-4d98-ae2c-e7868f71c2d1 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-08393f68-78f8-4d98-ae2c-e7868f71c2d1 {
  display: none;
}
#s-08393f68-78f8-4d98-ae2c-e7868f71c2d1, #wrap-s-08393f68-78f8-4d98-ae2c-e7868f71c2d1 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-08393f68-78f8-4d98-ae2c-e7868f71c2d1 {
  display: none;
}
#s-08393f68-78f8-4d98-ae2c-e7868f71c2d1, #wrap-s-08393f68-78f8-4d98-ae2c-e7868f71c2d1 { display:none !important; }}@media (max-width: 767px){#s-08393f68-78f8-4d98-ae2c-e7868f71c2d1 {
  
}
}







#s-08393f68-78f8-4d98-ae2c-e7868f71c2d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-08393f68-78f8-4d98-ae2c-e7868f71c2d1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-30619bf3-f351-4c72-b69e-27a43fc43dd5 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-30619bf3-f351-4c72-b69e-27a43fc43dd5 {
  padding-left: 5%;
padding-right: 5%;
}
}
#s-30619bf3-f351-4c72-b69e-27a43fc43dd5 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-30619bf3-f351-4c72-b69e-27a43fc43dd5 .shg-sld-nav-button.shg-sld-left,
#s-30619bf3-f351-4c72-b69e-27a43fc43dd5 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-9506d696-1fae-4428-94cc-d9d15c828bc1 {
  margin-top: 0px;
}
@media (min-width: 1200px){#s-9506d696-1fae-4428-94cc-d9d15c828bc1 {
  padding-top: 0px;
padding-bottom: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-9506d696-1fae-4428-94cc-d9d15c828bc1 {
  margin-top: 0px;
}
}
@media (min-width: 0px) {
[id="s-9506d696-1fae-4428-94cc-d9d15c828bc1"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 26.25px);
}

}

@media (min-width: 768px) {
[id="s-9506d696-1fae-4428-94cc-d9d15c828bc1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 26.25px);
}

}

@media (min-width: 992px) {
[id="s-9506d696-1fae-4428-94cc-d9d15c828bc1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 26.25px);
}

}

@media (min-width: 1200px) {
[id="s-9506d696-1fae-4428-94cc-d9d15c828bc1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 26.25px);
}

}

#s-212bf5c5-0f0f-4d9d-815c-c70cf22fd9fd {
  margin-top: 12px;
margin-left: 10%;
margin-right: 40%;
padding-top: 0px;
padding-left: 0%;
padding-right: 0%;
text-align: center;
}
@media (min-width: 1200px){#s-212bf5c5-0f0f-4d9d-815c-c70cf22fd9fd {
  margin-top: 15px;
margin-left: 5%;
margin-right: 0%;
padding-bottom: 0px;
max-width: 70px;
text-align: center;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-212bf5c5-0f0f-4d9d-815c-c70cf22fd9fd {
  margin-top: 10px;
margin-left: 5%;
margin-right: 0%;
max-width: 80px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-212bf5c5-0f0f-4d9d-815c-c70cf22fd9fd {
  margin-left: 0%;
margin-right: 0%;
max-width: 60px;
}
}@media (max-width: 767px){#s-212bf5c5-0f0f-4d9d-815c-c70cf22fd9fd {
  margin-top: 10px;
margin-left: 0%;
margin-right: 0%;
max-width: 60px;
}
}






  #s-212bf5c5-0f0f-4d9d-815c-c70cf22fd9fd img.shogun-image {
    

    
    
    
  }


#s-212bf5c5-0f0f-4d9d-815c-c70cf22fd9fd .shogun-image-content {
  
    align-items: center;
  
}

#s-5fd757df-1787-4a5b-a3ff-cd4780b2ffe4 {
  margin-top: 12px;
margin-left: 5%;
margin-right: 5%;
padding-top: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-5fd757df-1787-4a5b-a3ff-cd4780b2ffe4 {
  margin-top: 10px;
margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
max-width: 110px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5fd757df-1787-4a5b-a3ff-cd4780b2ffe4 {
  margin-top: 15px;
margin-left: 0%;
margin-right: 0%;
max-width: 100px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5fd757df-1787-4a5b-a3ff-cd4780b2ffe4 {
  margin-top: 15px;
margin-left: 0%;
margin-right: 0%;
max-width: 75px;
}
}@media (max-width: 767px){#s-5fd757df-1787-4a5b-a3ff-cd4780b2ffe4 {
  margin-left: 0%;
margin-right: 0%;
max-width: 75px;
}
}






  #s-5fd757df-1787-4a5b-a3ff-cd4780b2ffe4 img.shogun-image {
    

    
    
    
  }


#s-5fd757df-1787-4a5b-a3ff-cd4780b2ffe4 .shogun-image-content {
  
    align-items: center;
  
}

#s-4b8db4e5-2f3e-45e0-8648-7c68a63893a3 {
  margin-top: 15px;
margin-left: 15%;
margin-right: 15%;
text-align: center;
}
@media (min-width: 1200px){#s-4b8db4e5-2f3e-45e0-8648-7c68a63893a3 {
  margin-top: 10px;
margin-left: 0%;
margin-right: 0%;
max-width: 100px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4b8db4e5-2f3e-45e0-8648-7c68a63893a3 {
  margin-top: 15px;
margin-left: 0%;
margin-right: 0%;
max-width: 100px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4b8db4e5-2f3e-45e0-8648-7c68a63893a3 {
  margin-left: 0%;
margin-right: 0%;
max-width: 75px;
}
}@media (max-width: 767px){#s-4b8db4e5-2f3e-45e0-8648-7c68a63893a3 {
  margin-top: 10px;
margin-left: 0%;
margin-right: 0%;
max-width: 75px;
}
}






  #s-4b8db4e5-2f3e-45e0-8648-7c68a63893a3 img.shogun-image {
    

    
    
    
  }


#s-4b8db4e5-2f3e-45e0-8648-7c68a63893a3 .shogun-image-content {
  
    align-items: center;
  
}

#s-e0ac1a58-9bf7-447c-978f-d0a71fdd5f3b {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-e0ac1a58-9bf7-447c-978f-d0a71fdd5f3b {
  margin-top: 10px;
margin-bottom: 0px;
padding-left: 0%;
padding-right: 0%;
max-width: 90px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e0ac1a58-9bf7-447c-978f-d0a71fdd5f3b {
  margin-top: 10px;
margin-bottom: 0px;
max-width: 90px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e0ac1a58-9bf7-447c-978f-d0a71fdd5f3b {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 75px;
}
}@media (max-width: 767px){#s-e0ac1a58-9bf7-447c-978f-d0a71fdd5f3b {
  margin-top: 5px;
margin-bottom: 0px;
max-width: 75px;
}
}






  #s-e0ac1a58-9bf7-447c-978f-d0a71fdd5f3b img.shogun-image {
    

    
    
    
  }


#s-e0ac1a58-9bf7-447c-978f-d0a71fdd5f3b .shogun-image-content {
  
    align-items: center;
  
}

#s-2f9a8eed-5cfe-4214-b747-f289d5994239 {
  margin-top: 0px;
margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
}
@media (min-width: 1200px){#s-2f9a8eed-5cfe-4214-b747-f289d5994239 {
  padding-bottom: 5px;
padding-right: 0%;
}
}
@media (min-width: 0px) {
[id="s-2f9a8eed-5cfe-4214-b747-f289d5994239"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 768px) {
[id="s-2f9a8eed-5cfe-4214-b747-f289d5994239"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-2f9a8eed-5cfe-4214-b747-f289d5994239"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-2f9a8eed-5cfe-4214-b747-f289d5994239"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

#s-498dda72-62c3-486f-b231-44c0da332623 {
  margin-top: 0px;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 10px;
max-width: 50px;
text-align: center;
}
@media (min-width: 1200px){#s-498dda72-62c3-486f-b231-44c0da332623 {
  margin-top: 0px;
padding-top: 12px;
padding-left: 35%;
padding-right: 0%;
text-align: center;
}
}@media (min-width: 768px) and (max-width: 991px){#s-498dda72-62c3-486f-b231-44c0da332623 {
  margin-top: 10px;
padding-top: 0px;
text-align: right;
}
}@media (max-width: 767px){#s-498dda72-62c3-486f-b231-44c0da332623 {
  margin-top: 10px;
margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
max-width: 50px;
}
}






  #s-498dda72-62c3-486f-b231-44c0da332623 img.shogun-image {
    

    
    
    
  }


#s-498dda72-62c3-486f-b231-44c0da332623 .shogun-image-content {
  
    align-items: center;
  
}

#s-7b8950cd-ccbf-4885-9773-d827af8e6f5e {
  margin-top: 15px;
margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
max-width: 75px;
text-align: center;
}
@media (min-width: 1200px){#s-7b8950cd-ccbf-4885-9773-d827af8e6f5e {
  margin-bottom: 5px;
}
}@media (max-width: 767px){#s-7b8950cd-ccbf-4885-9773-d827af8e6f5e {
  margin-top: 10px;
max-width: 75px;
}
}






  #s-7b8950cd-ccbf-4885-9773-d827af8e6f5e img.shogun-image {
    

    
    
    
  }


#s-7b8950cd-ccbf-4885-9773-d827af8e6f5e .shogun-image-content {
  
    align-items: center;
  
}

#s-2ee73dc3-6b4e-4b5d-9efd-b64ecfc66450 {
  margin-top: 10px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
padding-top: 0px;
max-width: 110px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-2ee73dc3-6b4e-4b5d-9efd-b64ecfc66450 {
  margin-top: 15px;
margin-left: 0%;
margin-right: 0%;
max-width: 75px;
}
}@media (max-width: 767px){#s-2ee73dc3-6b4e-4b5d-9efd-b64ecfc66450 {
  margin-left: 0%;
margin-right: 0%;
max-width: 75px;
}
}






  #s-2ee73dc3-6b4e-4b5d-9efd-b64ecfc66450 img.shogun-image {
    

    
    
    
  }


#s-2ee73dc3-6b4e-4b5d-9efd-b64ecfc66450 .shogun-image-content {
  
    align-items: center;
  
}

#s-5c663707-5b97-4dea-a5c2-b5285256fe68 {
  margin-top: 15px;
max-width: 120px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-5c663707-5b97-4dea-a5c2-b5285256fe68 {
  max-width: 75px;
}
}@media (max-width: 767px){#s-5c663707-5b97-4dea-a5c2-b5285256fe68 {
  margin-top: 10px;
max-width: 75px;
}
}






  #s-5c663707-5b97-4dea-a5c2-b5285256fe68 img.shogun-image {
    

    
    
    
  }


#s-5c663707-5b97-4dea-a5c2-b5285256fe68 .shogun-image-content {
  
    align-items: center;
  
}

#s-258a5646-c851-4fef-93bc-a39f09020027 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}
@media (min-width: 1200px){#s-258a5646-c851-4fef-93bc-a39f09020027 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-258a5646-c851-4fef-93bc-a39f09020027"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 26.25px);
}

}

@media (min-width: 768px) {
[id="s-258a5646-c851-4fef-93bc-a39f09020027"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 26.25px);
}

}

@media (min-width: 992px) {
[id="s-258a5646-c851-4fef-93bc-a39f09020027"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 26.25px);
}

}

@media (min-width: 1200px) {
[id="s-258a5646-c851-4fef-93bc-a39f09020027"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 26.25px);
}

}

#s-89205118-8838-4247-8a58-832f8f1a73d5 {
  margin-top: 10px;
padding-top: 10px;
max-width: 150px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-89205118-8838-4247-8a58-832f8f1a73d5 {
  margin-top: 10px;
max-width: 85px;
}
}@media (max-width: 767px){#s-89205118-8838-4247-8a58-832f8f1a73d5 {
  margin-top: 3px;
max-width: 75px;
}
}






  #s-89205118-8838-4247-8a58-832f8f1a73d5 img.shogun-image {
    

    
    
    
  }


#s-89205118-8838-4247-8a58-832f8f1a73d5 .shogun-image-content {
  
    align-items: center;
  
}

#s-aa2e167b-4b0f-47e6-ab91-b0d5243621a9 {
  margin-top: 20px;
padding-top: 0px;
padding-right: 0%;
max-width: 150px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-aa2e167b-4b0f-47e6-ab91-b0d5243621a9 {
  margin-top: 15px;
max-width: 85px;
}
}@media (max-width: 767px){#s-aa2e167b-4b0f-47e6-ab91-b0d5243621a9 {
  margin-top: 10px;
max-width: 75px;
}
}






  #s-aa2e167b-4b0f-47e6-ab91-b0d5243621a9 img.shogun-image {
    

    
    
    
  }


#s-aa2e167b-4b0f-47e6-ab91-b0d5243621a9 .shogun-image-content {
  
    align-items: center;
  
}

#s-7b6d1936-9a66-4a92-9bf4-5b4fa690cefe {
  margin-top: 10px;
margin-left: 5%;
margin-right: 5%;
padding-top: 0px;
padding-left: 7%;
padding-right: 0%;
max-width: 120px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-7b6d1936-9a66-4a92-9bf4-5b4fa690cefe {
  margin-top: 10px;
margin-left: 0%;
margin-right: 0%;
padding-left: 0%;
max-width: 70px;
}
}@media (max-width: 767px){#s-7b6d1936-9a66-4a92-9bf4-5b4fa690cefe {
  margin-top: 5px;
margin-left: 0%;
margin-right: 0%;
max-width: 70px;
}
}






  #s-7b6d1936-9a66-4a92-9bf4-5b4fa690cefe img.shogun-image {
    

    
    
    
  }


#s-7b6d1936-9a66-4a92-9bf4-5b4fa690cefe .shogun-image-content {
  
    align-items: center;
  
}

#s-a4d7e836-32fe-4e11-9f6b-d42c48a3d972 {
  margin-top: 15px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 0px;
max-width: 120px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-a4d7e836-32fe-4e11-9f6b-d42c48a3d972 {
  margin-top: 10px;
margin-left: 0%;
margin-right: 0%;
max-width: 75px;
}
}@media (max-width: 767px){#s-a4d7e836-32fe-4e11-9f6b-d42c48a3d972 {
  margin-top: 10px;
margin-left: 0%;
margin-right: 0%;
max-width: 75px;
}
}






  #s-a4d7e836-32fe-4e11-9f6b-d42c48a3d972 img.shogun-image {
    

    
    
    
  }


#s-a4d7e836-32fe-4e11-9f6b-d42c48a3d972 .shogun-image-content {
  
    align-items: center;
  
}

#s-828c2d70-ca08-425b-a1ff-a61dd386006b {
  margin-top: 7px;
margin-left: 5%;
margin-right: 1%;
}
@media (min-width: 1200px){#s-828c2d70-ca08-425b-a1ff-a61dd386006b {
  display: none;
}
#s-828c2d70-ca08-425b-a1ff-a61dd386006b, #wrap-s-828c2d70-ca08-425b-a1ff-a61dd386006b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-828c2d70-ca08-425b-a1ff-a61dd386006b {
  display: none;
}
#s-828c2d70-ca08-425b-a1ff-a61dd386006b, #wrap-s-828c2d70-ca08-425b-a1ff-a61dd386006b { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-828c2d70-ca08-425b-a1ff-a61dd386006b {
  margin-left: 0%;
margin-right: 0%;
display: none;
}
#s-828c2d70-ca08-425b-a1ff-a61dd386006b, #wrap-s-828c2d70-ca08-425b-a1ff-a61dd386006b { display:none !important; }}@media (max-width: 767px){#s-828c2d70-ca08-425b-a1ff-a61dd386006b {
  display: none;
}
#s-828c2d70-ca08-425b-a1ff-a61dd386006b, #wrap-s-828c2d70-ca08-425b-a1ff-a61dd386006b { display:none !important; }}
#s-09b60560-a252-4aea-aa3d-3657ec142dc4 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-09b60560-a252-4aea-aa3d-3657ec142dc4 {
  display: none;
}
#s-09b60560-a252-4aea-aa3d-3657ec142dc4, #wrap-s-09b60560-a252-4aea-aa3d-3657ec142dc4 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-09b60560-a252-4aea-aa3d-3657ec142dc4 {
  display: none;
}
#s-09b60560-a252-4aea-aa3d-3657ec142dc4, #wrap-s-09b60560-a252-4aea-aa3d-3657ec142dc4 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-09b60560-a252-4aea-aa3d-3657ec142dc4 {
  display: none;
}
#s-09b60560-a252-4aea-aa3d-3657ec142dc4, #wrap-s-09b60560-a252-4aea-aa3d-3657ec142dc4 { display:none !important; }}@media (max-width: 767px){#s-09b60560-a252-4aea-aa3d-3657ec142dc4 {
  display: none;
}
#s-09b60560-a252-4aea-aa3d-3657ec142dc4, #wrap-s-09b60560-a252-4aea-aa3d-3657ec142dc4 { display:none !important; }}







#s-09b60560-a252-4aea-aa3d-3657ec142dc4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-09b60560-a252-4aea-aa3d-3657ec142dc4 {
  cursor: pointer;
}#s-09b60560-a252-4aea-aa3d-3657ec142dc4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-278e1b20-ecad-48f5-a2ff-a74ce417a3a0 {
  min-height: 50px;
}








#s-278e1b20-ecad-48f5-a2ff-a74ce417a3a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-278e1b20-ecad-48f5-a2ff-a74ce417a3a0 {
  cursor: pointer;
}#s-278e1b20-ecad-48f5-a2ff-a74ce417a3a0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4132e1a5-5daf-4b83-ba19-69c68a3f83e8 {
  background-repeat: repeat;
background-size: cover;
margin-right: 0%;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
min-height: 50px;
background-position: center center;
}
@media (min-width: 1200px){#s-4132e1a5-5daf-4b83-ba19-69c68a3f83e8 {
  min-height: 550px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4132e1a5-5daf-4b83-ba19-69c68a3f83e8 {
  min-height: 550px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4132e1a5-5daf-4b83-ba19-69c68a3f83e8 {
  padding-top: 5px;
padding-bottom: 5px;
min-height: 400px;
}
}@media (max-width: 767px){#s-4132e1a5-5daf-4b83-ba19-69c68a3f83e8 {
  padding-bottom: 0px;
}
}







#s-4132e1a5-5daf-4b83-ba19-69c68a3f83e8 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0.6;
}#s-4132e1a5-5daf-4b83-ba19-69c68a3f83e8 {
  cursor: pointer;
}#s-4132e1a5-5daf-4b83-ba19-69c68a3f83e8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 991px){






#s-4132e1a5-5daf-4b83-ba19-69c68a3f83e8 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0.6;
}#s-4132e1a5-5daf-4b83-ba19-69c68a3f83e8 {
  cursor: pointer;
}#s-4132e1a5-5daf-4b83-ba19-69c68a3f83e8.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
}
#s-e9e3baa3-cba2-4b52-940c-5f1e5ff35992 {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-e9e3baa3-cba2-4b52-940c-5f1e5ff35992 {
  margin-top: 0px;
margin-left: 4%;
margin-bottom: 20px;
margin-right: 4%;
}
}@media (max-width: 767px){#s-e9e3baa3-cba2-4b52-940c-5f1e5ff35992 {
  margin-top: 15px;
margin-left: 5%;
margin-bottom: 35px;
margin-right: 3%;
}
}







#s-e9e3baa3-cba2-4b52-940c-5f1e5ff35992 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e9e3baa3-cba2-4b52-940c-5f1e5ff35992.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4b07abde-b585-40e7-8c09-a65612cf98c3 {
  margin-bottom: 0px;
padding-top: 2px;
padding-bottom: 2px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-4b07abde-b585-40e7-8c09-a65612cf98c3 {
  margin-right: 0%;
padding-top: 0px;
}
}
#s-4b07abde-b585-40e7-8c09-a65612cf98c3 .shogun-heading-component h1 {
  color: rgba(1, 1, 12, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 55px;
  line-height: 1em;
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-4b07abde-b585-40e7-8c09-a65612cf98c3 .shogun-heading-component h1 {
  color: rgba(1, 1, 12, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 48px;
  line-height: 1em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-4b07abde-b585-40e7-8c09-a65612cf98c3 .shogun-heading-component h1 {
  color: rgba(1, 1, 12, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 48px;
  line-height: 1em;
  
  text-align: left;
}


}
#s-edbe0734-e015-44ad-a947-675cfce5d437 {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-edbe0734-e015-44ad-a947-675cfce5d437 {
  margin-top: 0px;
}
}@media (max-width: 767px){#s-edbe0734-e015-44ad-a947-675cfce5d437 {
  margin-top: 20px;
margin-bottom: 20px;
}
}
#s-edbe0734-e015-44ad-a947-675cfce5d437 .shogun-heading-component h1 {
  color: rgba(7, 2, 2, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.4em;
  letter-spacing: -0.5px;
  text-align: left;
}


@media (max-width: 767px){#s-edbe0734-e015-44ad-a947-675cfce5d437 .shogun-heading-component h1 {
  color: rgba(7, 2, 2, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.2em;
  letter-spacing: -0.5px;
  text-align: left;
}


}
#s-fa8cd68a-3143-4dd4-9172-004666bd2788 {
  padding-top: 35px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-fa8cd68a-3143-4dd4-9172-004666bd2788 {
  padding-top: 20px;
}
}
#s-fa8cd68a-3143-4dd4-9172-004666bd2788 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}



#s-27cf29bf-ff89-438d-b15a-ba5bcf9c5f0d {
  margin-top: 20px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 25px;
padding-bottom: 10px;
padding-right: 25px;
border-radius: 2px;
background-color: rgba(75, 143, 231, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: left undefined;
}
#s-27cf29bf-ff89-438d-b15a-ba5bcf9c5f0d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-27cf29bf-ff89-438d-b15a-ba5bcf9c5f0d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-27cf29bf-ff89-438d-b15a-ba5bcf9c5f0d-root {
    text-align: left;
  }


#s-27cf29bf-ff89-438d-b15a-ba5bcf9c5f0d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: NeutralStd-Bold;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-27cf29bf-ff89-438d-b15a-ba5bcf9c5f0d-root {
    text-align: left;
  }


#s-27cf29bf-ff89-438d-b15a-ba5bcf9c5f0d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: NeutralStd-Bold;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-27cf29bf-ff89-438d-b15a-ba5bcf9c5f0d-root {
    text-align: left;
  }


#s-27cf29bf-ff89-438d-b15a-ba5bcf9c5f0d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: NeutralStd-Bold;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-27cf29bf-ff89-438d-b15a-ba5bcf9c5f0d-root {
    text-align: left;
  }


#s-27cf29bf-ff89-438d-b15a-ba5bcf9c5f0d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: NeutralStd-Bold;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-27cf29bf-ff89-438d-b15a-ba5bcf9c5f0d-root {
    text-align: left;
  }


#s-27cf29bf-ff89-438d-b15a-ba5bcf9c5f0d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: NeutralStd-Bold;
  display:  inline-block ;
}
}
#s-c306ed9a-9109-4629-a804-5eefb675de56 {
  min-height: 50px;
}








#s-c306ed9a-9109-4629-a804-5eefb675de56 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c306ed9a-9109-4629-a804-5eefb675de56.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8031e2b8-22f0-47d9-9160-ae9802512203 {
  padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
background-color: rgba(131, 188, 118, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-8031e2b8-22f0-47d9-9160-ae9802512203 {
  padding-top: 20px;
padding-bottom: 20px;
}
}







#s-8031e2b8-22f0-47d9-9160-ae9802512203 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8031e2b8-22f0-47d9-9160-ae9802512203.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-41fbd0c1-de65-4bbb-af5a-f009c3649ddd {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-41fbd0c1-de65-4bbb-af5a-f009c3649ddd {
  padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-41fbd0c1-de65-4bbb-af5a-f009c3649ddd {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-41fbd0c1-de65-4bbb-af5a-f009c3649ddd .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.3em;
  
  
}



#s-c3ebd817-0f3b-4a01-b73a-64e691f3cc5a {
  margin-top: 10px;
margin-left: 10%;
margin-bottom: 10px;
margin-right: 10%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-c3ebd817-0f3b-4a01-b73a-64e691f3cc5a {
  margin-top: 5px;
padding-top: 0px;
padding-bottom: 5px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c3ebd817-0f3b-4a01-b73a-64e691f3cc5a {
  margin-top: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c3ebd817-0f3b-4a01-b73a-64e691f3cc5a {
  margin-top: 10px;
margin-left: 5%;
margin-right: 5%;
}
}
#s-c3ebd817-0f3b-4a01-b73a-64e691f3cc5a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Regular";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: center;
}



#s-a65732e1-eec6-4266-b5cb-ba4356067c1d {
  min-height: 75px;
background-color: rgba(2, 1, 1, 1);
}
@media (min-width: 1200px){#s-a65732e1-eec6-4266-b5cb-ba4356067c1d {
  padding-top: 10px;
padding-bottom: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a65732e1-eec6-4266-b5cb-ba4356067c1d {
  padding-top: 10px;
padding-bottom: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a65732e1-eec6-4266-b5cb-ba4356067c1d {
  display: none;
}
#s-a65732e1-eec6-4266-b5cb-ba4356067c1d, #wrap-s-a65732e1-eec6-4266-b5cb-ba4356067c1d { display:none !important; }}@media (max-width: 767px){#s-a65732e1-eec6-4266-b5cb-ba4356067c1d {
  display: none;
}
#s-a65732e1-eec6-4266-b5cb-ba4356067c1d, #wrap-s-a65732e1-eec6-4266-b5cb-ba4356067c1d { display:none !important; }}







#s-a65732e1-eec6-4266-b5cb-ba4356067c1d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a65732e1-eec6-4266-b5cb-ba4356067c1d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f7359f74-9b22-4562-b4e6-4af4cfb85c32 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-left: 10%;
padding-bottom: 0px;
padding-right: 10%;
min-height: 70px;
background-color: rgba(12, 4, 4, 1);
}
@media (min-width: 1200px){#s-f7359f74-9b22-4562-b4e6-4af4cfb85c32 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 5px;
padding-bottom: 5px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f7359f74-9b22-4562-b4e6-4af4cfb85c32 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 5px;
padding-bottom: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f7359f74-9b22-4562-b4e6-4af4cfb85c32 {
  display: none;
}
#s-f7359f74-9b22-4562-b4e6-4af4cfb85c32, #wrap-s-f7359f74-9b22-4562-b4e6-4af4cfb85c32 { display:none !important; }}@media (max-width: 767px){#s-f7359f74-9b22-4562-b4e6-4af4cfb85c32 {
  display: none;
}
#s-f7359f74-9b22-4562-b4e6-4af4cfb85c32, #wrap-s-f7359f74-9b22-4562-b4e6-4af4cfb85c32 { display:none !important; }}







#s-f7359f74-9b22-4562-b4e6-4af4cfb85c32 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f7359f74-9b22-4562-b4e6-4af4cfb85c32.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-06274db0-6867-4de0-8c98-dc109ec4759a {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-06274db0-6867-4de0-8c98-dc109ec4759a .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-06274db0-6867-4de0-8c98-dc109ec4759a .shg-sld-nav-button.shg-sld-left,
#s-06274db0-6867-4de0-8c98-dc109ec4759a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-c3596271-53ad-41b5-8193-182b554bb95f {
  padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
background-color: rgba(2, 1, 1, 1);
}

@media (min-width: 0px) {
[id="s-c3596271-53ad-41b5-8193-182b554bb95f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 45.0px);
}

}

@media (min-width: 768px) {
[id="s-c3596271-53ad-41b5-8193-182b554bb95f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 75.0px);
}

}

@media (min-width: 992px) {
[id="s-c3596271-53ad-41b5-8193-182b554bb95f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 75.0px);
}

}

@media (min-width: 1200px) {
[id="s-c3596271-53ad-41b5-8193-182b554bb95f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 75.0px);
}

}

#s-1412a51c-22ea-4737-8d12-dda4ca89c974 {
  min-height: 50px;
}








#s-1412a51c-22ea-4737-8d12-dda4ca89c974 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1412a51c-22ea-4737-8d12-dda4ca89c974.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0ad13f51-f292-4cde-975e-7b9f5bf1542f {
  min-height: 50px;
}








#s-0ad13f51-f292-4cde-975e-7b9f5bf1542f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0ad13f51-f292-4cde-975e-7b9f5bf1542f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9725d8fa-0836-4cc7-b3eb-dab0fe8fdfc6 {
  text-align: center;
}







  #s-9725d8fa-0836-4cc7-b3eb-dab0fe8fdfc6 img.shogun-image {
    

    
    
    
  }


#s-9725d8fa-0836-4cc7-b3eb-dab0fe8fdfc6 .shogun-image-content {
  
    align-items: center;
  
}

#s-3c0b2b15-567b-47c8-a611-9645e9844fbe {
  min-height: 50px;
}








#s-3c0b2b15-567b-47c8-a611-9645e9844fbe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c0b2b15-567b-47c8-a611-9645e9844fbe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3db4b4a7-d638-4b35-aaea-aaf41e9d8797 {
  min-height: 50px;
}








#s-3db4b4a7-d638-4b35-aaea-aaf41e9d8797 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3db4b4a7-d638-4b35-aaea-aaf41e9d8797.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5b6337ab-903a-44e4-80ba-92eb51773780 {
  text-align: center;
}







  #s-5b6337ab-903a-44e4-80ba-92eb51773780 img.shogun-image {
    

    
    
    
  }


#s-5b6337ab-903a-44e4-80ba-92eb51773780 .shogun-image-content {
  
    align-items: center;
  
}

#s-c0aae6aa-1fa9-49e5-afb4-b1ef492cfa43 {
  min-height: 50px;
}








#s-c0aae6aa-1fa9-49e5-afb4-b1ef492cfa43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c0aae6aa-1fa9-49e5-afb4-b1ef492cfa43.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0bf013bc-1a6f-4985-9962-4dafd5fc552c {
  min-height: 50px;
}








#s-0bf013bc-1a6f-4985-9962-4dafd5fc552c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0bf013bc-1a6f-4985-9962-4dafd5fc552c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5f280de6-1d49-46d7-b8bf-24df062e481f {
  text-align: center;
}







  #s-5f280de6-1d49-46d7-b8bf-24df062e481f img.shogun-image {
    

    
    
    
  }


#s-5f280de6-1d49-46d7-b8bf-24df062e481f .shogun-image-content {
  
    align-items: center;
  
}

#s-8c667f69-8dea-417c-b0ca-93266f21ae24 {
  min-height: 50px;
}








#s-8c667f69-8dea-417c-b0ca-93266f21ae24 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c667f69-8dea-417c-b0ca-93266f21ae24.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e22453c0-2377-4add-a2c0-af22697330d0 {
  min-height: 50px;
}








#s-e22453c0-2377-4add-a2c0-af22697330d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e22453c0-2377-4add-a2c0-af22697330d0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-31e35d04-baef-4d0e-8c85-036c0f180321 {
  text-align: center;
}







  #s-31e35d04-baef-4d0e-8c85-036c0f180321 img.shogun-image {
    

    
    
    
  }


#s-31e35d04-baef-4d0e-8c85-036c0f180321 .shogun-image-content {
  
    align-items: center;
  
}

#s-ae3da3c0-3d23-4dcb-bc55-b652649962c7 {
  min-height: 50px;
}








#s-ae3da3c0-3d23-4dcb-bc55-b652649962c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ae3da3c0-3d23-4dcb-bc55-b652649962c7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-167b5250-2498-4858-8092-3fb7672c9af1 {
  text-align: center;
}







  #s-167b5250-2498-4858-8092-3fb7672c9af1 img.shogun-image {
    

    
    
    
  }


#s-167b5250-2498-4858-8092-3fb7672c9af1 .shogun-image-content {
  
    align-items: center;
  
}

#s-0f7c20a5-fde0-4e3b-9f0d-ccdb18a1f7ca {
  min-height: 50px;
}








#s-0f7c20a5-fde0-4e3b-9f0d-ccdb18a1f7ca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0f7c20a5-fde0-4e3b-9f0d-ccdb18a1f7ca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-63ad6467-c3f2-4d3b-9561-de6e224b94c2 {
  text-align: center;
}







  #s-63ad6467-c3f2-4d3b-9561-de6e224b94c2 img.shogun-image {
    

    
    
    
  }


#s-63ad6467-c3f2-4d3b-9561-de6e224b94c2 .shogun-image-content {
  
    align-items: center;
  
}

#s-38f1f2fc-4912-44e9-9b16-91d0a24cae83 {
  padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
background-color: rgba(2, 1, 1, 1);
}

@media (min-width: 0px) {
[id="s-38f1f2fc-4912-44e9-9b16-91d0a24cae83"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 45.0px);
}

}

@media (min-width: 768px) {
[id="s-38f1f2fc-4912-44e9-9b16-91d0a24cae83"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 75.0px);
}

}

@media (min-width: 992px) {
[id="s-38f1f2fc-4912-44e9-9b16-91d0a24cae83"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 75.0px);
}

}

@media (min-width: 1200px) {
[id="s-38f1f2fc-4912-44e9-9b16-91d0a24cae83"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 75.0px);
}

}

#s-705096b6-8495-4759-9f22-3505c2c54f28 {
  min-height: 50px;
}








#s-705096b6-8495-4759-9f22-3505c2c54f28 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-705096b6-8495-4759-9f22-3505c2c54f28.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e3634c55-b7eb-40f9-ab27-47cd69b4ebc0 {
  min-height: 50px;
}








#s-e3634c55-b7eb-40f9-ab27-47cd69b4ebc0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e3634c55-b7eb-40f9-ab27-47cd69b4ebc0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2257908d-bd31-4686-919a-c048ea220a55 {
  text-align: center;
}







  #s-2257908d-bd31-4686-919a-c048ea220a55 img.shogun-image {
    

    
    
    
  }


#s-2257908d-bd31-4686-919a-c048ea220a55 .shogun-image-content {
  
    align-items: center;
  
}

#s-28d9c74c-a54d-42d8-aa1f-733d1c020675 {
  min-height: 50px;
}








#s-28d9c74c-a54d-42d8-aa1f-733d1c020675 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-28d9c74c-a54d-42d8-aa1f-733d1c020675.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eb6e72b5-cc4d-48f7-b915-b51b88ecb5db {
  min-height: 50px;
}








#s-eb6e72b5-cc4d-48f7-b915-b51b88ecb5db > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eb6e72b5-cc4d-48f7-b915-b51b88ecb5db.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6467423a-66e0-4552-8e72-a11ccdcdb7b4 {
  text-align: center;
}







  #s-6467423a-66e0-4552-8e72-a11ccdcdb7b4 img.shogun-image {
    

    
    
    
  }


#s-6467423a-66e0-4552-8e72-a11ccdcdb7b4 .shogun-image-content {
  
    align-items: center;
  
}

#s-510cd26b-2e3b-46e3-ae3d-eeda5828addb {
  min-height: 50px;
}








#s-510cd26b-2e3b-46e3-ae3d-eeda5828addb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-510cd26b-2e3b-46e3-ae3d-eeda5828addb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-571ed4bb-60b2-4293-9881-b0cdec2663ca {
  min-height: 50px;
}








#s-571ed4bb-60b2-4293-9881-b0cdec2663ca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-571ed4bb-60b2-4293-9881-b0cdec2663ca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-379fa1f4-a328-4df4-8d83-9d72f3afc57a {
  text-align: center;
}







  #s-379fa1f4-a328-4df4-8d83-9d72f3afc57a img.shogun-image {
    

    
    
    
  }


#s-379fa1f4-a328-4df4-8d83-9d72f3afc57a .shogun-image-content {
  
    align-items: center;
  
}

#s-8ee26ed9-277a-4fdb-a617-be4783525478 {
  min-height: 50px;
}








#s-8ee26ed9-277a-4fdb-a617-be4783525478 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8ee26ed9-277a-4fdb-a617-be4783525478.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-977cfdff-3fbd-45d6-9c58-f640dccb1978 {
  min-height: 50px;
}








#s-977cfdff-3fbd-45d6-9c58-f640dccb1978 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-977cfdff-3fbd-45d6-9c58-f640dccb1978.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-75e46a36-a388-47ce-aea8-f67ceb1fb73f {
  text-align: center;
}







  #s-75e46a36-a388-47ce-aea8-f67ceb1fb73f img.shogun-image {
    

    
    
    
  }


#s-75e46a36-a388-47ce-aea8-f67ceb1fb73f .shogun-image-content {
  
    align-items: center;
  
}

#s-bbaf8b5a-d020-4337-8067-39c36eff9e36 {
  min-height: 50px;
}








#s-bbaf8b5a-d020-4337-8067-39c36eff9e36 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bbaf8b5a-d020-4337-8067-39c36eff9e36.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0231163f-32f2-441c-be63-73420656b816 {
  text-align: center;
}







  #s-0231163f-32f2-441c-be63-73420656b816 img.shogun-image {
    

    
    
    
  }


#s-0231163f-32f2-441c-be63-73420656b816 .shogun-image-content {
  
    align-items: center;
  
}

#s-3a06c8dc-ea61-488d-b9d4-59ca5d696aff {
  min-height: 50px;
}








#s-3a06c8dc-ea61-488d-b9d4-59ca5d696aff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3a06c8dc-ea61-488d-b9d4-59ca5d696aff.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-810d3630-cf6e-4541-8c8e-c24a5c1cae3e {
  text-align: center;
}







  #s-810d3630-cf6e-4541-8c8e-c24a5c1cae3e img.shogun-image {
    

    
    
    
  }


#s-810d3630-cf6e-4541-8c8e-c24a5c1cae3e .shogun-image-content {
  
    align-items: center;
  
}

#s-c81654c0-6fb1-457e-b961-83cfe8358ded {
  padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-c81654c0-6fb1-457e-b961-83cfe8358ded"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 45.0px);
}

}

@media (min-width: 768px) {
[id="s-c81654c0-6fb1-457e-b961-83cfe8358ded"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 75.0px);
}

}

@media (min-width: 992px) {
[id="s-c81654c0-6fb1-457e-b961-83cfe8358ded"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 75.0px);
}

}

@media (min-width: 1200px) {
[id="s-c81654c0-6fb1-457e-b961-83cfe8358ded"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 75.0px);
}

}

#s-5cd39ee0-d069-48ab-831e-423dded269ec {
  min-height: 50px;
}








#s-5cd39ee0-d069-48ab-831e-423dded269ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5cd39ee0-d069-48ab-831e-423dded269ec.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7ff72043-156a-4f69-b5da-1e89840a704d {
  min-height: 50px;
}








#s-7ff72043-156a-4f69-b5da-1e89840a704d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7ff72043-156a-4f69-b5da-1e89840a704d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6ebbdc13-4e2d-45c6-9741-9baa2584959c {
  text-align: center;
}







  #s-6ebbdc13-4e2d-45c6-9741-9baa2584959c img.shogun-image {
    

    
    
    
  }


#s-6ebbdc13-4e2d-45c6-9741-9baa2584959c .shogun-image-content {
  
    align-items: center;
  
}

#s-b28396d0-c6d6-42b4-a69f-269500d8d203 {
  min-height: 50px;
}








#s-b28396d0-c6d6-42b4-a69f-269500d8d203 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b28396d0-c6d6-42b4-a69f-269500d8d203.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b476f2bf-4fb4-4d2c-b9de-33fc448261be {
  min-height: 50px;
}








#s-b476f2bf-4fb4-4d2c-b9de-33fc448261be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b476f2bf-4fb4-4d2c-b9de-33fc448261be.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4e5ce35b-a27a-4516-bb8d-2531f7811988 {
  text-align: center;
}







  #s-4e5ce35b-a27a-4516-bb8d-2531f7811988 img.shogun-image {
    

    
    
    
  }


#s-4e5ce35b-a27a-4516-bb8d-2531f7811988 .shogun-image-content {
  
    align-items: center;
  
}

#s-49906b92-915e-4ed2-b034-534684cdcab3 {
  min-height: 50px;
}








#s-49906b92-915e-4ed2-b034-534684cdcab3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-49906b92-915e-4ed2-b034-534684cdcab3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-16a6d3a5-3b5a-4132-b22c-0bbded15552f {
  min-height: 50px;
}








#s-16a6d3a5-3b5a-4132-b22c-0bbded15552f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-16a6d3a5-3b5a-4132-b22c-0bbded15552f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-024f8ad3-6d77-4cc9-92fb-dd8be7c099fb {
  text-align: center;
}







  #s-024f8ad3-6d77-4cc9-92fb-dd8be7c099fb img.shogun-image {
    

    
    
    
  }


#s-024f8ad3-6d77-4cc9-92fb-dd8be7c099fb .shogun-image-content {
  
    align-items: center;
  
}

#s-da2e314c-2a49-473f-8018-22d5f104ba6a {
  min-height: 50px;
}








#s-da2e314c-2a49-473f-8018-22d5f104ba6a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-da2e314c-2a49-473f-8018-22d5f104ba6a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-40c7926f-b569-4d30-a451-ef5568baf2c6 {
  min-height: 50px;
}








#s-40c7926f-b569-4d30-a451-ef5568baf2c6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-40c7926f-b569-4d30-a451-ef5568baf2c6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-516dadad-1825-442b-9363-d2acae1ce734 {
  text-align: center;
}







  #s-516dadad-1825-442b-9363-d2acae1ce734 img.shogun-image {
    

    
    
    
  }


#s-516dadad-1825-442b-9363-d2acae1ce734 .shogun-image-content {
  
    align-items: center;
  
}

#s-21cbc529-f181-44e5-b30d-4be2e829ed93 {
  min-height: 50px;
}








#s-21cbc529-f181-44e5-b30d-4be2e829ed93 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-21cbc529-f181-44e5-b30d-4be2e829ed93.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7b2f4c37-f9df-4359-88b5-70ff2de82926 {
  text-align: center;
}







  #s-7b2f4c37-f9df-4359-88b5-70ff2de82926 img.shogun-image {
    

    
    
    
  }


#s-7b2f4c37-f9df-4359-88b5-70ff2de82926 .shogun-image-content {
  
    align-items: center;
  
}

#s-38be8624-2437-4e8f-8f50-3dd5d6cca9ae {
  min-height: 50px;
}








#s-38be8624-2437-4e8f-8f50-3dd5d6cca9ae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-38be8624-2437-4e8f-8f50-3dd5d6cca9ae.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-935a456a-3c70-4cc8-a929-63b305f10590 {
  text-align: center;
}







  #s-935a456a-3c70-4cc8-a929-63b305f10590 img.shogun-image {
    

    
    
    
  }


#s-935a456a-3c70-4cc8-a929-63b305f10590 .shogun-image-content {
  
    align-items: center;
  
}

#s-a93f0c83-2326-4864-a5d0-0dba4fe8c50b {
  background-repeat: no-repeat;
background-size: contain;
min-height: 498px;
background-position: right center;
}
@media (min-width: 768px) and (max-width: 991px){#s-a93f0c83-2326-4864-a5d0-0dba4fe8c50b {
  display: none;
}
#s-a93f0c83-2326-4864-a5d0-0dba4fe8c50b, #wrap-s-a93f0c83-2326-4864-a5d0-0dba4fe8c50b { display:none !important; }}@media (max-width: 767px){#s-a93f0c83-2326-4864-a5d0-0dba4fe8c50b {
  display: none;
}
#s-a93f0c83-2326-4864-a5d0-0dba4fe8c50b, #wrap-s-a93f0c83-2326-4864-a5d0-0dba4fe8c50b { display:none !important; }}







#s-a93f0c83-2326-4864-a5d0-0dba4fe8c50b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a93f0c83-2326-4864-a5d0-0dba4fe8c50b {
  cursor: pointer;
}#s-a93f0c83-2326-4864-a5d0-0dba4fe8c50b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-503eacbf-fc25-49bc-8fb9-0a99e7f53eba {
  padding-left: 10%;
padding-right: 10%;
}
}
@media (min-width: 0px) {
[id="s-503eacbf-fc25-49bc-8fb9-0a99e7f53eba"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-503eacbf-fc25-49bc-8fb9-0a99e7f53eba"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-503eacbf-fc25-49bc-8fb9-0a99e7f53eba"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-503eacbf-fc25-49bc-8fb9-0a99e7f53eba"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e513bd5e-ad24-4e13-938c-3480e5ecd6a4 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-e513bd5e-ad24-4e13-938c-3480e5ecd6a4 {
  margin-top: 0px;
margin-bottom: 0px;
padding-left: 0%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e513bd5e-ad24-4e13-938c-3480e5ecd6a4 {
  margin-left: 4%;
padding-left: 15%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e513bd5e-ad24-4e13-938c-3480e5ecd6a4 {
  padding-left: 1%;
}
}







#s-e513bd5e-ad24-4e13-938c-3480e5ecd6a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e513bd5e-ad24-4e13-938c-3480e5ecd6a4 {
  cursor: pointer;
}#s-e513bd5e-ad24-4e13-938c-3480e5ecd6a4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-01eed304-2b72-43f0-945d-da916b3ee315 {
  text-align: center;
}
@media (min-width: 1200px){#s-01eed304-2b72-43f0-945d-da916b3ee315 {
  margin-left: 0%;
margin-right: 18%;
text-align: left;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-01eed304-2b72-43f0-945d-da916b3ee315 {
  margin-left: 0%;
margin-right: 28%;
text-align: left;
}
}@media (min-width: 768px) and (max-width: 991px){#s-01eed304-2b72-43f0-945d-da916b3ee315 {
  margin-top: 0px;
margin-left: 20%;
margin-bottom: 40px;
margin-right: 20%;
}
}






  #s-01eed304-2b72-43f0-945d-da916b3ee315 img.shogun-image {
    

    
    
    
  }


#s-01eed304-2b72-43f0-945d-da916b3ee315 .shogun-image-content {
  
    align-items: center;
  
}

#s-046b3e49-7edd-46af-9fd7-78c2bf6e756c {
  padding-top: 5px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-046b3e49-7edd-46af-9fd7-78c2bf6e756c {
  margin-top: 5px;
margin-bottom: 20px;
}
}
#s-046b3e49-7edd-46af-9fd7-78c2bf6e756c .shogun-heading-component h1 {
  color: rgba(1, 1, 2, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.1em;
  letter-spacing: 1px;
  text-align: left;
}



@media (min-width: 1200px){#s-98cb6dd7-8fe7-49d9-bf4a-a04a0a616b6d {
  margin-bottom: 5px;
padding-left: 0%;
}
}
#s-308cc8d0-bdad-425f-b97e-57f49f0fb7dd {
  margin-top: 15px;
margin-bottom: 15px;
padding-top: 10px;
padding-left: 35px;
padding-bottom: 10px;
padding-right: 35px;
border-radius: 2px;
background-color: rgba(75, 143, 231, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-308cc8d0-bdad-425f-b97e-57f49f0fb7dd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-308cc8d0-bdad-425f-b97e-57f49f0fb7dd:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-308cc8d0-bdad-425f-b97e-57f49f0fb7dd-root {
    text-align: left;
  }


#s-308cc8d0-bdad-425f-b97e-57f49f0fb7dd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-308cc8d0-bdad-425f-b97e-57f49f0fb7dd-root {
    text-align: left;
  }


#s-308cc8d0-bdad-425f-b97e-57f49f0fb7dd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-308cc8d0-bdad-425f-b97e-57f49f0fb7dd-root {
    text-align: left;
  }


#s-308cc8d0-bdad-425f-b97e-57f49f0fb7dd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-308cc8d0-bdad-425f-b97e-57f49f0fb7dd-root {
    text-align: left;
  }


#s-308cc8d0-bdad-425f-b97e-57f49f0fb7dd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-308cc8d0-bdad-425f-b97e-57f49f0fb7dd-root {
    text-align: left;
  }


#s-308cc8d0-bdad-425f-b97e-57f49f0fb7dd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-df51996d-d3da-404d-b43e-c9949cab11d6 {
  min-height: 450px;
}
@media (min-width: 1200px){#s-df51996d-d3da-404d-b43e-c9949cab11d6 {
  display: none;
}
#s-df51996d-d3da-404d-b43e-c9949cab11d6, #wrap-s-df51996d-d3da-404d-b43e-c9949cab11d6 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-df51996d-d3da-404d-b43e-c9949cab11d6 {
  display: none;
}
#s-df51996d-d3da-404d-b43e-c9949cab11d6, #wrap-s-df51996d-d3da-404d-b43e-c9949cab11d6 { display:none !important; }}







#s-df51996d-d3da-404d-b43e-c9949cab11d6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-df51996d-d3da-404d-b43e-c9949cab11d6 {
  cursor: pointer;
}#s-df51996d-d3da-404d-b43e-c9949cab11d6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2aae9120-b634-476b-a1ca-b81a171e44d6 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-2aae9120-b634-476b-a1ca-b81a171e44d6 {
  padding-left: 0%;
padding-bottom: 30px;
padding-right: 0%;
}
}
#s-2aae9120-b634-476b-a1ca-b81a171e44d6 {
  background-image: url();
}








#s-2aae9120-b634-476b-a1ca-b81a171e44d6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2aae9120-b634-476b-a1ca-b81a171e44d6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e24cc991-7fc2-4452-a6e8-2ecdf82bb1bd {
  text-align: center;
}
@media (min-width: 1200px){#s-e24cc991-7fc2-4452-a6e8-2ecdf82bb1bd {
  margin-left: 18%;
margin-right: 18%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e24cc991-7fc2-4452-a6e8-2ecdf82bb1bd {
  margin-left: 0%;
margin-right: 28%;
text-align: left;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e24cc991-7fc2-4452-a6e8-2ecdf82bb1bd {
  margin-top: 25px;
margin-left: 20%;
margin-bottom: 10px;
margin-right: 20%;
}
}@media (max-width: 767px){#s-e24cc991-7fc2-4452-a6e8-2ecdf82bb1bd {
  margin-top: 20px;
margin-left: 15%;
margin-bottom: 10px;
margin-right: 15%;
}
}






  #s-e24cc991-7fc2-4452-a6e8-2ecdf82bb1bd img.shogun-image {
    

    
    
    
  }


#s-e24cc991-7fc2-4452-a6e8-2ecdf82bb1bd .shogun-image-content {
  
    align-items: center;
  
}

#s-7fe3808d-b553-4949-9283-971eb00467b2 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 350px;
background-position: center center;
}








#s-7fe3808d-b553-4949-9283-971eb00467b2 > .shg-box-overlay {
  background-color: rgba(161, 206, 94, 0.43);
  opacity: 0;
}#s-7fe3808d-b553-4949-9283-971eb00467b2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-14b5df0c-b62a-467c-bef6-f1b0f8020654 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-14b5df0c-b62a-467c-bef6-f1b0f8020654 {
  margin-left: 10%;
margin-right: 10%;
}
}
#s-14b5df0c-b62a-467c-bef6-f1b0f8020654 .shogun-heading-component h1 {
  color: rgba(1, 1, 2, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.1em;
  letter-spacing: 1px;
  
}



@media (min-width: 1200px){#s-c428d409-7d38-4487-b064-2a78a08bf7f6 {
  margin-bottom: 5px;
padding-left: 15%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c428d409-7d38-4487-b064-2a78a08bf7f6 {
  margin-top: 5px;
margin-left: 15%;
margin-right: 15%;
}
}@media (max-width: 767px){#s-c428d409-7d38-4487-b064-2a78a08bf7f6 {
  margin-top: 10px;
margin-left: 2%;
margin-bottom: 5px;
margin-right: 2%;
}
}
#s-7f942c9c-f4e8-400b-8daa-e16d5a09fab9 {
  margin-top: 15px;
margin-bottom: 15px;
padding-top: 10px;
padding-left: 35px;
padding-bottom: 10px;
padding-right: 35px;
border-radius: 2px;
background-color: rgba(75, 143, 231, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-7f942c9c-f4e8-400b-8daa-e16d5a09fab9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7f942c9c-f4e8-400b-8daa-e16d5a09fab9:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-7f942c9c-f4e8-400b-8daa-e16d5a09fab9 {
  text-align: center;
}
}@media (max-width: 767px){#s-7f942c9c-f4e8-400b-8daa-e16d5a09fab9 {
  margin-bottom: 30px;
}
}

  #s-7f942c9c-f4e8-400b-8daa-e16d5a09fab9-root {
    text-align: center;
  }


#s-7f942c9c-f4e8-400b-8daa-e16d5a09fab9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7f942c9c-f4e8-400b-8daa-e16d5a09fab9-root {
    text-align: center;
  }


#s-7f942c9c-f4e8-400b-8daa-e16d5a09fab9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7f942c9c-f4e8-400b-8daa-e16d5a09fab9-root {
    text-align: center;
  }


#s-7f942c9c-f4e8-400b-8daa-e16d5a09fab9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7f942c9c-f4e8-400b-8daa-e16d5a09fab9-root {
    text-align: center;
  }


#s-7f942c9c-f4e8-400b-8daa-e16d5a09fab9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7f942c9c-f4e8-400b-8daa-e16d5a09fab9-root {
    text-align: center;
  }


#s-7f942c9c-f4e8-400b-8daa-e16d5a09fab9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-3d2b47ee-a064-4e59-a733-821b6457b7c1 {
  min-height: 50px;
background-color: rgba(131, 188, 118, 1);
}








#s-3d2b47ee-a064-4e59-a733-821b6457b7c1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3d2b47ee-a064-4e59-a733-821b6457b7c1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f902bf67-da9f-4403-a889-de2144a4b3d0 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: center;
background-color: rgba(0, 0, 0, 0);
}

#s-f902bf67-da9f-4403-a889-de2144a4b3d0 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  letter-spacing: 3px;
  
}


@media (max-width: 767px){#s-f902bf67-da9f-4403-a889-de2144a4b3d0 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  letter-spacing: 3px;
  
}


}
#s-3ec2192a-5050-481f-b730-e89b94c3636f {
  min-height: 50px;
}








#s-3ec2192a-5050-481f-b730-e89b94c3636f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3ec2192a-5050-481f-b730-e89b94c3636f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0cb006cd-24ae-4833-904f-14c11db0f2ec {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-0cb006cd-24ae-4833-904f-14c11db0f2ec"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0cb006cd-24ae-4833-904f-14c11db0f2ec"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 7.5px);
}

[id="s-0cb006cd-24ae-4833-904f-14c11db0f2ec"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-0cb006cd-24ae-4833-904f-14c11db0f2ec"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 7.5px);
}

[id="s-0cb006cd-24ae-4833-904f-14c11db0f2ec"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-0cb006cd-24ae-4833-904f-14c11db0f2ec"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 7.5px);
}

[id="s-0cb006cd-24ae-4833-904f-14c11db0f2ec"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 7.5px);
}

}

#s-866a3c4c-d835-4682-a173-271dd2df9701 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-866a3c4c-d835-4682-a173-271dd2df9701 {
  margin-top: 30px;
margin-left: 20%;
margin-right: 20%;
}
}@media (max-width: 767px){#s-866a3c4c-d835-4682-a173-271dd2df9701 {
  
}
}







#s-866a3c4c-d835-4682-a173-271dd2df9701 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-866a3c4c-d835-4682-a173-271dd2df9701.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 991px){






#s-866a3c4c-d835-4682-a173-271dd2df9701 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-866a3c4c-d835-4682-a173-271dd2df9701.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
}@media (max-width: 767px){






#s-866a3c4c-d835-4682-a173-271dd2df9701 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-866a3c4c-d835-4682-a173-271dd2df9701.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
}
#s-9046d339-df79-40a1-9e01-10e83a8bc04d {
  min-height: 50px;
}
@media (max-width: 767px){#s-9046d339-df79-40a1-9e01-10e83a8bc04d {
  padding-top: 40px;
}
}







#s-9046d339-df79-40a1-9e01-10e83a8bc04d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9046d339-df79-40a1-9e01-10e83a8bc04d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4ab5fb04-912a-469d-b6e5-3d8517ffd30f {
  text-align: center;
}
@media (min-width: 1200px){#s-4ab5fb04-912a-469d-b6e5-3d8517ffd30f {
  padding-left: 10%;
padding-right: 10%;
text-align: right;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4ab5fb04-912a-469d-b6e5-3d8517ffd30f {
  padding-left: 30%;
}
}@media (max-width: 767px){#s-4ab5fb04-912a-469d-b6e5-3d8517ffd30f {
  margin-left: 15%;
margin-right: 15%;
}
}






  #s-4ab5fb04-912a-469d-b6e5-3d8517ffd30f img.shogun-image {
    

    
    
    
  }


#s-4ab5fb04-912a-469d-b6e5-3d8517ffd30f .shogun-image-content {
  
    align-items: center;
  
}

#s-76b7fb6b-b851-492f-9c87-d08558ff13ac {
  min-height: 50px;
}








#s-76b7fb6b-b851-492f-9c87-d08558ff13ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-76b7fb6b-b851-492f-9c87-d08558ff13ac.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 991px){






#s-76b7fb6b-b851-492f-9c87-d08558ff13ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-76b7fb6b-b851-492f-9c87-d08558ff13ac.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
}@media (max-width: 767px){






#s-76b7fb6b-b851-492f-9c87-d08558ff13ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-76b7fb6b-b851-492f-9c87-d08558ff13ac.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
}
#s-36f2cb6c-fc7e-48a8-a6d4-bad00acc3e5c {
  padding-left: 2%;
min-height: 50px;
}








#s-36f2cb6c-fc7e-48a8-a6d4-bad00acc3e5c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-36f2cb6c-fc7e-48a8-a6d4-bad00acc3e5c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b6fc5137-d9ee-472d-8c02-1fee93e777fa {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 20px;
margin-right: 5%;
padding-top: 20px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-b6fc5137-d9ee-472d-8c02-1fee93e777fa {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 5px;
padding-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b6fc5137-d9ee-472d-8c02-1fee93e777fa {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 5px;
margin-right: 5%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b6fc5137-d9ee-472d-8c02-1fee93e777fa {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 5px;
margin-right: 0%;
padding-top: 15px;
padding-left: 10%;
padding-bottom: 10px;
padding-right: 10%;
}
}@media (max-width: 767px){#s-b6fc5137-d9ee-472d-8c02-1fee93e777fa {
  margin-top: 10px;
margin-bottom: 0px;
}
}
#s-b6fc5137-d9ee-472d-8c02-1fee93e777fa .shogun-heading-component h1 {
  color: rgba(0, 4, 7, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1.1em;
  
  text-align: left;
}



#s-3c443d80-8b34-4446-8e71-35e84644229a {
  margin-top: 15px;
}
@media (min-width: 1200px){#s-3c443d80-8b34-4446-8e71-35e84644229a {
  margin-right: 20%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3c443d80-8b34-4446-8e71-35e84644229a {
  margin-top: 10px;
margin-right: 20%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-3c443d80-8b34-4446-8e71-35e84644229a {
  margin-left: 10%;
margin-right: 10%;
}
}@media (max-width: 767px){#s-3c443d80-8b34-4446-8e71-35e84644229a {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-8e260b1b-208e-40cc-bbf8-6db151c2e087 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0%;
border-color: rgba(180, 180, 180, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(202, 202, 202, 0.23);
}








#s-8e260b1b-208e-40cc-bbf8-6db151c2e087 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8e260b1b-208e-40cc-bbf8-6db151c2e087.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 991px){






#s-8e260b1b-208e-40cc-bbf8-6db151c2e087 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8e260b1b-208e-40cc-bbf8-6db151c2e087.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
}
#s-ddf5f6af-548e-4cb8-9fa3-0380de857498 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 3px;
border-right-width: 0px;
border-color: rgba(202, 202, 202, 1);
border-style: solid;
min-height: 75px;
background-color: rgba(255, 255, 255, 0);
}








#s-ddf5f6af-548e-4cb8-9fa3-0380de857498 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ddf5f6af-548e-4cb8-9fa3-0380de857498.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (max-width: 767px){#s-ed7fdce4-4e7d-41fc-af2c-ac524fb3ccbd {
  margin-left: 10%;
margin-right: 10%;
}
}
#s-5d91c999-b07a-4958-b78c-121c9d9a7f9a {
  background-repeat: no-repeat;
background-size: cover;
min-height: 500px;
background-position: center center;
}
@media (min-width: 1200px){#s-5d91c999-b07a-4958-b78c-121c9d9a7f9a {
  min-height: 550px;
display: none;
}
#s-5d91c999-b07a-4958-b78c-121c9d9a7f9a, #wrap-s-5d91c999-b07a-4958-b78c-121c9d9a7f9a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5d91c999-b07a-4958-b78c-121c9d9a7f9a {
  min-height: 550px;
display: none;
}
#s-5d91c999-b07a-4958-b78c-121c9d9a7f9a, #wrap-s-5d91c999-b07a-4958-b78c-121c9d9a7f9a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5d91c999-b07a-4958-b78c-121c9d9a7f9a {
  display: none;
}
#s-5d91c999-b07a-4958-b78c-121c9d9a7f9a, #wrap-s-5d91c999-b07a-4958-b78c-121c9d9a7f9a { display:none !important; }}@media (max-width: 767px){#s-5d91c999-b07a-4958-b78c-121c9d9a7f9a {
  min-height: 450px;
display: none;
}
#s-5d91c999-b07a-4958-b78c-121c9d9a7f9a, #wrap-s-5d91c999-b07a-4958-b78c-121c9d9a7f9a { display:none !important; }}







#s-5d91c999-b07a-4958-b78c-121c9d9a7f9a > .shg-box-overlay {
  background-color: rgba(205, 140, 146, 1);
  opacity: 0.6;
}#s-5d91c999-b07a-4958-b78c-121c9d9a7f9a {
  cursor: pointer;
}#s-5d91c999-b07a-4958-b78c-121c9d9a7f9a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media (max-width: 767px){






#s-5d91c999-b07a-4958-b78c-121c9d9a7f9a > .shg-box-overlay {
  background-color: rgba(205, 140, 146, 1);
  opacity: 0.6;
}#s-5d91c999-b07a-4958-b78c-121c9d9a7f9a {
  cursor: pointer;
}#s-5d91c999-b07a-4958-b78c-121c9d9a7f9a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
}
#s-cd78218c-d719-407b-b408-56ae196115b6 {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 15px;
margin-right: 10%;
text-align: center;
}
@media (min-width: 1200px){#s-cd78218c-d719-407b-b408-56ae196115b6 {
  margin-top: 50px;
margin-left: 55%;
margin-bottom: 10px;
margin-right: 3%;
text-align: right;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cd78218c-d719-407b-b408-56ae196115b6 {
  margin-top: 70px;
margin-left: 55%;
margin-right: 3%;
text-align: right;
}
}@media (min-width: 768px) and (max-width: 991px){#s-cd78218c-d719-407b-b408-56ae196115b6 {
  margin-top: 20px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-cd78218c-d719-407b-b408-56ae196115b6 {
  margin-top: 30px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
}
}






  #s-cd78218c-d719-407b-b408-56ae196115b6 img.shogun-image {
    

    
    
    
  }


#s-cd78218c-d719-407b-b408-56ae196115b6 .shogun-image-content {
  
    align-items: center;
  
}
@media (max-width: 767px){





  #s-cd78218c-d719-407b-b408-56ae196115b6 img.shogun-image {
    

    
    
    
  }


#s-cd78218c-d719-407b-b408-56ae196115b6 .shogun-image-content {
  
    align-items:  flex-start;
  
}
}
#s-b446aa84-c913-4313-88bf-56c906350265 {
  margin-top: 10px;
margin-left: 5%;
margin-right: 5%;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}
@media (min-width: 1200px){#s-b446aa84-c913-4313-88bf-56c906350265 {
  margin-right: 3.5%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b446aa84-c913-4313-88bf-56c906350265 {
  margin-right: 3.5%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b446aa84-c913-4313-88bf-56c906350265 {
  margin-top: 270px;
margin-left: 5%;
margin-right: 5%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
}@media (max-width: 767px){#s-b446aa84-c913-4313-88bf-56c906350265 {
  margin-top: 225px;
margin-left: 5%;
margin-right: 5%;
}
}
#s-b446aa84-c913-4313-88bf-56c906350265 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  line-height: 1.1em;
  
  text-align: right;
}


@media (min-width: 768px) and (max-width: 991px){#s-b446aa84-c913-4313-88bf-56c906350265 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  line-height: 1.1em;
  
  text-align: center;
}


}
#s-955d6f38-e0fa-4af6-ae8b-ab1f779ddf26 {
  margin-top: 0px;
margin-left: 5%;
margin-right: 5%;
padding-top: 5px;
padding-bottom: 5px;
text-align: right;
}
@media (min-width: 1200px){#s-955d6f38-e0fa-4af6-ae8b-ab1f779ddf26 {
  margin-right: 3.5%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-955d6f38-e0fa-4af6-ae8b-ab1f779ddf26 {
  margin-right: 3.5%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-955d6f38-e0fa-4af6-ae8b-ab1f779ddf26 {
  margin-top: 0px;
margin-left: 5%;
margin-right: 5%;
padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}
}@media (max-width: 767px){#s-955d6f38-e0fa-4af6-ae8b-ab1f779ddf26 {
  margin-left: 0%;
margin-bottom: 10px;
margin-right: 5%;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-955d6f38-e0fa-4af6-ae8b-ab1f779ddf26 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Medium";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: right;
}


@media (min-width: 768px) and (max-width: 991px){#s-955d6f38-e0fa-4af6-ae8b-ab1f779ddf26 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Medium";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}


}
#s-630b29b6-c62f-454b-b191-13756a091bc6 {
  margin-top: 10px;
margin-right: 5%;
padding-top: 12px;
padding-left: 60px;
padding-bottom: 12px;
padding-right: 60px;
border-radius: 2px;
background-color: rgba(95, 46, 101, 1);
text-align: right;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-630b29b6-c62f-454b-b191-13756a091bc6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-630b29b6-c62f-454b-b191-13756a091bc6:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-630b29b6-c62f-454b-b191-13756a091bc6 {
  margin-top: 20px;
margin-right: 3.5%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-630b29b6-c62f-454b-b191-13756a091bc6 {
  margin-top: 25px;
margin-right: 3.5%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-630b29b6-c62f-454b-b191-13756a091bc6 {
  margin-top: 0px;
margin-bottom: 35px;
}
}@media (max-width: 767px){#s-630b29b6-c62f-454b-b191-13756a091bc6 {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 30px;
margin-right: 10%;
text-align: center;
}
}

  #s-630b29b6-c62f-454b-b191-13756a091bc6-root {
    text-align: right;
  }


#s-630b29b6-c62f-454b-b191-13756a091bc6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-630b29b6-c62f-454b-b191-13756a091bc6-root {
    text-align: right;
  }


#s-630b29b6-c62f-454b-b191-13756a091bc6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-630b29b6-c62f-454b-b191-13756a091bc6-root {
    text-align: right;
  }


#s-630b29b6-c62f-454b-b191-13756a091bc6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-630b29b6-c62f-454b-b191-13756a091bc6-root {
    text-align: right;
  }


#s-630b29b6-c62f-454b-b191-13756a091bc6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-630b29b6-c62f-454b-b191-13756a091bc6-root {
    text-align: center;
  }


#s-630b29b6-c62f-454b-b191-13756a091bc6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-e65960e0-14a8-4983-a607-4c64931fce2b {
  margin-top: 0px;
padding-top: 100px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 25%;
text-align: left;
}
@media (min-width: 1200px){#s-e65960e0-14a8-4983-a607-4c64931fce2b {
  padding-left: 5%;
padding-right: 0%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e65960e0-14a8-4983-a607-4c64931fce2b {
  padding-top: 80px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e65960e0-14a8-4983-a607-4c64931fce2b {
  padding-top: 70px;
}
}@media (max-width: 767px){#s-e65960e0-14a8-4983-a607-4c64931fce2b {
  padding-top: 45px;
}
}
#s-e65960e0-14a8-4983-a607-4c64931fce2b .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-e65960e0-14a8-4983-a607-4c64931fce2b .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.1em;
  
  text-align: left;
}


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

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

#s-7a83c95e-16cf-4170-b553-5de9ca6fab02 {
  margin-left: 5%;
margin-right: 5%;
}
@media (min-width: 1200px){#s-7a83c95e-16cf-4170-b553-5de9ca6fab02 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 5%;
padding-right: 5%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-7a83c95e-16cf-4170-b553-5de9ca6fab02 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 5%;
padding-right: 5%;
}
}
#s-7a83c95e-16cf-4170-b553-5de9ca6fab02 hr {
  border-top: 2px solid rgba(0, 46, 93, 1);
}

#s-d7153cd4-2b18-43ef-922c-a9db0880bb06 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-d7153cd4-2b18-43ef-922c-a9db0880bb06 {
  display: none;
}
#s-d7153cd4-2b18-43ef-922c-a9db0880bb06, #wrap-s-d7153cd4-2b18-43ef-922c-a9db0880bb06 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d7153cd4-2b18-43ef-922c-a9db0880bb06 {
  display: none;
}
#s-d7153cd4-2b18-43ef-922c-a9db0880bb06, #wrap-s-d7153cd4-2b18-43ef-922c-a9db0880bb06 { display:none !important; }}







#s-d7153cd4-2b18-43ef-922c-a9db0880bb06 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d7153cd4-2b18-43ef-922c-a9db0880bb06.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b44ab6fd-dd07-4fb7-8677-75e124214282 {
  margin-left: 15%;
margin-right: 15%;
text-align: center;
}
@media (max-width: 767px){#s-b44ab6fd-dd07-4fb7-8677-75e124214282 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 30px;
margin-right: 5%;
}
}






  #s-b44ab6fd-dd07-4fb7-8677-75e124214282 img.shogun-image {
    

    
    
    
  }


#s-b44ab6fd-dd07-4fb7-8677-75e124214282 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1200px){#s-17895a77-b41d-4225-afb2-300fa25f04f2 {
  display: none;
}
#s-17895a77-b41d-4225-afb2-300fa25f04f2, #wrap-s-17895a77-b41d-4225-afb2-300fa25f04f2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-17895a77-b41d-4225-afb2-300fa25f04f2 {
  display: none;
}
#s-17895a77-b41d-4225-afb2-300fa25f04f2, #wrap-s-17895a77-b41d-4225-afb2-300fa25f04f2 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-17895a77-b41d-4225-afb2-300fa25f04f2 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 20px;
margin-right: 0%;
}
}
#s-17895a77-b41d-4225-afb2-300fa25f04f2 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-17895a77-b41d-4225-afb2-300fa25f04f2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(75, 143, 231, 1);
  padding: 10px;
}

#s-17895a77-b41d-4225-afb2-300fa25f04f2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-17895a77-b41d-4225-afb2-300fa25f04f2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-17895a77-b41d-4225-afb2-300fa25f04f2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-family: NeutralStd-Bold;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-17895a77-b41d-4225-afb2-300fa25f04f2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-3c023ed0-11ad-446d-8644-7166e260f72f {
  min-height: 50px;
}








#s-3c023ed0-11ad-446d-8644-7166e260f72f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c023ed0-11ad-446d-8644-7166e260f72f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-743dfa2a-a213-42a4-ba0e-056e5e7fd475 {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
}

.shg-product-image-wrapper {
  display: none;
  position: relative;
  width: 100%;
}

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-e99903a5-19b6-4dc9-af0c-463c8b86d5dc {
  text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-e99903a5-19b6-4dc9-af0c-463c8b86d5dc {
  margin-left: 20%;
margin-right: 20%;
}
}@media (max-width: 767px){#s-e99903a5-19b6-4dc9-af0c-463c8b86d5dc {
  margin-top: 50px;
margin-bottom: 20px;
padding-top: 0px;
}
}


.shg-c#s-e99903a5-19b6-4dc9-af0c-463c8b86d5dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e99903a5-19b6-4dc9-af0c-463c8b86d5dc img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e99903a5-19b6-4dc9-af0c-463c8b86d5dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e99903a5-19b6-4dc9-af0c-463c8b86d5dc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e99903a5-19b6-4dc9-af0c-463c8b86d5dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e99903a5-19b6-4dc9-af0c-463c8b86d5dc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e99903a5-19b6-4dc9-af0c-463c8b86d5dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e99903a5-19b6-4dc9-af0c-463c8b86d5dc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e99903a5-19b6-4dc9-af0c-463c8b86d5dc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e99903a5-19b6-4dc9-af0c-463c8b86d5dc img.shogun-image {
  width: 100%;
}



}
#s-b5757f13-2ea9-4668-a9e7-13b1b0147646 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b5757f13-2ea9-4668-a9e7-13b1b0147646 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.25em;
  
  
}



#s-8318a0ef-4e16-4ac9-add0-908ebe0f7c2b {
  margin-bottom: 5px;
}
@media (min-width: 1200px){#s-8318a0ef-4e16-4ac9-add0-908ebe0f7c2b {
  margin-top: 5px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8318a0ef-4e16-4ac9-add0-908ebe0f7c2b {
  margin-top: 5px;
}
}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

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

#s-57efba38-e699-417d-a1d0-bb3673d16b21 {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(117, 97, 170, 1);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
cursor: pointer;
}
#s-57efba38-e699-417d-a1d0-bb3673d16b21:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-57efba38-e699-417d-a1d0-bb3673d16b21:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-57efba38-e699-417d-a1d0-bb3673d16b21 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-57efba38-e699-417d-a1d0-bb3673d16b21.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-57efba38-e699-417d-a1d0-bb3673d16b21.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}

#s-57efba38-e699-417d-a1d0-bb3673d16b21.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-8e1e6292-48d4-464c-b575-0bab150ba540 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(117, 97, 170, 1);
border-style: solid;
border-radius: 25px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
color: rgba(117, 97, 170, 1);
}
#s-8e1e6292-48d4-464c-b575-0bab150ba540:hover {background-color: rgba(117, 97, 170, 0.26) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-8e1e6292-48d4-464c-b575-0bab150ba540:active {background-color: rgba(2, 200, 215, 0.54) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-8e1e6292-48d4-464c-b575-0bab150ba540 {
  margin-top: 40px;
margin-bottom: 40px;
}
}@media (max-width: 767px){#s-8e1e6292-48d4-464c-b575-0bab150ba540 {
  padding-left: 50px;
padding-right: 50px;
}
}

  #s-8e1e6292-48d4-464c-b575-0bab150ba540-root {
    text-align: center;
  }


#s-8e1e6292-48d4-464c-b575-0bab150ba540.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8e1e6292-48d4-464c-b575-0bab150ba540-root {
    text-align: center;
  }


#s-8e1e6292-48d4-464c-b575-0bab150ba540.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8e1e6292-48d4-464c-b575-0bab150ba540-root {
    text-align: center;
  }


#s-8e1e6292-48d4-464c-b575-0bab150ba540.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8e1e6292-48d4-464c-b575-0bab150ba540-root {
    text-align: center;
  }


#s-8e1e6292-48d4-464c-b575-0bab150ba540.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8e1e6292-48d4-464c-b575-0bab150ba540-root {
    text-align: center;
  }


#s-8e1e6292-48d4-464c-b575-0bab150ba540.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-f16f6a37-2b12-434c-bb6f-847063dfc22c {
  min-height: 50px;
}








#s-f16f6a37-2b12-434c-bb6f-847063dfc22c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f16f6a37-2b12-434c-bb6f-847063dfc22c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-195c0591-6261-4288-8420-f5ee53ecc19a {
  display: none;
}
#s-837dc860-516e-44cc-a29e-b1b8894721fb {
  text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-837dc860-516e-44cc-a29e-b1b8894721fb {
  padding-left: 20%;
padding-right: 20%;
}
}


.shg-c#s-837dc860-516e-44cc-a29e-b1b8894721fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-837dc860-516e-44cc-a29e-b1b8894721fb img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-837dc860-516e-44cc-a29e-b1b8894721fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-837dc860-516e-44cc-a29e-b1b8894721fb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-837dc860-516e-44cc-a29e-b1b8894721fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-837dc860-516e-44cc-a29e-b1b8894721fb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-837dc860-516e-44cc-a29e-b1b8894721fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-837dc860-516e-44cc-a29e-b1b8894721fb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-837dc860-516e-44cc-a29e-b1b8894721fb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-837dc860-516e-44cc-a29e-b1b8894721fb img.shogun-image {
  width: 100%;
}



}
#s-e7e8b604-f6af-4c98-ac76-c85cdaa054cd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e7e8b604-f6af-4c98-ac76-c85cdaa054cd .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.25em;
  
  
}



#s-ebbb5de5-82c7-434f-8f4e-a5257559eca3 {
  margin-bottom: 5px;
margin-right: 0%;
}
@media (min-width: 1200px){#s-ebbb5de5-82c7-434f-8f4e-a5257559eca3 {
  margin-top: 5px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ebbb5de5-82c7-434f-8f4e-a5257559eca3 {
  margin-top: 5px;
}
}
#s-3db2b195-c1cc-440b-973a-fd7c6f35b884 {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(117, 97, 170, 1);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
cursor: pointer;
}
#s-3db2b195-c1cc-440b-973a-fd7c6f35b884:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3db2b195-c1cc-440b-973a-fd7c6f35b884:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-3db2b195-c1cc-440b-973a-fd7c6f35b884 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3db2b195-c1cc-440b-973a-fd7c6f35b884.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3db2b195-c1cc-440b-973a-fd7c6f35b884.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}

#s-3db2b195-c1cc-440b-973a-fd7c6f35b884.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-ee7510b1-7454-4f6b-82d8-6dbce1eb94bd {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(117, 97, 170, 1);
border-style: solid;
border-radius: 25px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
color: rgba(117, 97, 170, 1);
}
#s-ee7510b1-7454-4f6b-82d8-6dbce1eb94bd:hover {background-color: rgba(117, 97, 170, 0.24) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-ee7510b1-7454-4f6b-82d8-6dbce1eb94bd:active {background-color: rgba(2, 200, 215, 0.54) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-ee7510b1-7454-4f6b-82d8-6dbce1eb94bd {
  margin-bottom: 40px;
}
}@media (max-width: 767px){#s-ee7510b1-7454-4f6b-82d8-6dbce1eb94bd {
  padding-left: 50px;
padding-right: 50px;
}
}

  #s-ee7510b1-7454-4f6b-82d8-6dbce1eb94bd-root {
    text-align: center;
  }


#s-ee7510b1-7454-4f6b-82d8-6dbce1eb94bd.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ee7510b1-7454-4f6b-82d8-6dbce1eb94bd-root {
    text-align: center;
  }


#s-ee7510b1-7454-4f6b-82d8-6dbce1eb94bd.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ee7510b1-7454-4f6b-82d8-6dbce1eb94bd-root {
    text-align: center;
  }


#s-ee7510b1-7454-4f6b-82d8-6dbce1eb94bd.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ee7510b1-7454-4f6b-82d8-6dbce1eb94bd-root {
    text-align: center;
  }


#s-ee7510b1-7454-4f6b-82d8-6dbce1eb94bd.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ee7510b1-7454-4f6b-82d8-6dbce1eb94bd-root {
    text-align: center;
  }


#s-ee7510b1-7454-4f6b-82d8-6dbce1eb94bd.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-011d5bfc-8918-48b1-a743-d6ebbfcb5355 {
  min-height: 50px;
}








#s-011d5bfc-8918-48b1-a743-d6ebbfcb5355 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-011d5bfc-8918-48b1-a743-d6ebbfcb5355.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dc8653c4-55f8-45eb-b0f6-7fcf7dda672f {
  display: none;
}
#s-cdc7514f-2fc4-442f-bb06-d63b309503f0 {
  padding-top: 10px;
padding-left: 25%;
padding-right: 25%;
text-align: left;
}



.shg-c#s-cdc7514f-2fc4-442f-bb06-d63b309503f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cdc7514f-2fc4-442f-bb06-d63b309503f0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-cdc7514f-2fc4-442f-bb06-d63b309503f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cdc7514f-2fc4-442f-bb06-d63b309503f0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cdc7514f-2fc4-442f-bb06-d63b309503f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cdc7514f-2fc4-442f-bb06-d63b309503f0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cdc7514f-2fc4-442f-bb06-d63b309503f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cdc7514f-2fc4-442f-bb06-d63b309503f0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cdc7514f-2fc4-442f-bb06-d63b309503f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cdc7514f-2fc4-442f-bb06-d63b309503f0 img.shogun-image {
  width: 100%;
}



}
#s-7f1abc33-80a3-4ed3-a8b2-7e972b67b17a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7f1abc33-80a3-4ed3-a8b2-7e972b67b17a .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.25em;
  
  
}



#s-9a7f9aba-5817-4aa2-822f-9cdb71ac4181 {
  margin-bottom: 5px;
}
@media (min-width: 1200px){#s-9a7f9aba-5817-4aa2-822f-9cdb71ac4181 {
  margin-top: 5px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9a7f9aba-5817-4aa2-822f-9cdb71ac4181 {
  margin-top: 5px;
}
}
#s-1fcf7e09-6d6f-41cc-9021-0ee28ed20ea4 {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 25px;
background-color: rgba(75, 143, 231, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-1fcf7e09-6d6f-41cc-9021-0ee28ed20ea4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1fcf7e09-6d6f-41cc-9021-0ee28ed20ea4:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-1fcf7e09-6d6f-41cc-9021-0ee28ed20ea4 {
  padding-left: 35px;
padding-right: 35px;
}
}


#s-1fcf7e09-6d6f-41cc-9021-0ee28ed20ea4 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-1fcf7e09-6d6f-41cc-9021-0ee28ed20ea4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1fcf7e09-6d6f-41cc-9021-0ee28ed20ea4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}

#s-1fcf7e09-6d6f-41cc-9021-0ee28ed20ea4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-b917c946-6dc3-4c71-909e-568fb24a6f97 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(75, 143, 231, 1);
border-style: solid;
border-radius: 25px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
color: rgba(75, 143, 231, 1);
}
#s-b917c946-6dc3-4c71-909e-568fb24a6f97:hover {background-color: rgba(117, 97, 170, 0.3) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-b917c946-6dc3-4c71-909e-568fb24a6f97:active {background-color: rgba(2, 200, 215, 0.54) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-b917c946-6dc3-4c71-909e-568fb24a6f97 {
  padding-left: 35px;
padding-right: 35px;
}
}

  #s-b917c946-6dc3-4c71-909e-568fb24a6f97-root {
    text-align: center;
  }


#s-b917c946-6dc3-4c71-909e-568fb24a6f97.shg-btn {
  color: rgba(75, 143, 231, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b917c946-6dc3-4c71-909e-568fb24a6f97-root {
    text-align: center;
  }


#s-b917c946-6dc3-4c71-909e-568fb24a6f97.shg-btn {
  color: rgba(75, 143, 231, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b917c946-6dc3-4c71-909e-568fb24a6f97-root {
    text-align: center;
  }


#s-b917c946-6dc3-4c71-909e-568fb24a6f97.shg-btn {
  color: rgba(75, 143, 231, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b917c946-6dc3-4c71-909e-568fb24a6f97-root {
    text-align: center;
  }


#s-b917c946-6dc3-4c71-909e-568fb24a6f97.shg-btn {
  color: rgba(75, 143, 231, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b917c946-6dc3-4c71-909e-568fb24a6f97-root {
    text-align: center;
  }


#s-b917c946-6dc3-4c71-909e-568fb24a6f97.shg-btn {
  color: rgba(75, 143, 231, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-ff6008c5-5273-4e34-bd5e-394096d09a20 {
  margin-top: 20px;
margin-left: 2%;
margin-bottom: 80px;
margin-right: 2%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ff6008c5-5273-4e34-bd5e-394096d09a20 {
  margin-top: 20px;
margin-left: 2%;
margin-bottom: 80px;
margin-right: 2%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ff6008c5-5273-4e34-bd5e-394096d09a20 {
  margin-left: 5%;
margin-bottom: 60px;
margin-right: 5%;
}
}@media (max-width: 767px){#s-ff6008c5-5273-4e34-bd5e-394096d09a20 {
  display: none;
}
#s-ff6008c5-5273-4e34-bd5e-394096d09a20, #wrap-s-ff6008c5-5273-4e34-bd5e-394096d09a20 { display:none !important; }}
@media (min-width: 0px) {
[id="s-ff6008c5-5273-4e34-bd5e-394096d09a20"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 17.5px);
}

}

@media (min-width: 768px) {
[id="s-ff6008c5-5273-4e34-bd5e-394096d09a20"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 26.25px);
}

}

@media (min-width: 992px) {
[id="s-ff6008c5-5273-4e34-bd5e-394096d09a20"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 26.25px);
}

}

@media (min-width: 1200px) {
[id="s-ff6008c5-5273-4e34-bd5e-394096d09a20"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 26.25px);
}

}

#s-75c2f01e-fe71-4eb4-bc0b-36dcd4a9e5fc {
  min-height: 50px;
}








#s-75c2f01e-fe71-4eb4-bc0b-36dcd4a9e5fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-75c2f01e-fe71-4eb4-bc0b-36dcd4a9e5fc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7a8552e0-8fb7-4a8c-b02a-88a72b335d05 {
  border-style: solid;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(228, 228, 228, 1);
text-align: center;
}







  #s-7a8552e0-8fb7-4a8c-b02a-88a72b335d05 img.shogun-image {
    

    
    
    
  }


#s-7a8552e0-8fb7-4a8c-b02a-88a72b335d05 .shogun-image-content {
  
    align-items: center;
  
}

#s-1abd3d9f-9d0c-4037-80f3-ad58e7682bba {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-1abd3d9f-9d0c-4037-80f3-ad58e7682bba .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}



#s-36229056-fe52-4430-a889-4a2f20f23f70 {
  margin-top: 7px;
margin-left: 0%;
margin-right: 0%;
}

#s-1adfa052-41d9-491f-aacb-ff518ae16214 {
  min-height: 50px;
}








#s-1adfa052-41d9-491f-aacb-ff518ae16214 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1adfa052-41d9-491f-aacb-ff518ae16214.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5be4c8e4-66a6-4f44-a50e-efb65386ac0d {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(228, 228, 228, 1);
border-style: solid;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-5be4c8e4-66a6-4f44-a50e-efb65386ac0d {
  margin-top: 40px;
}
}






  #s-5be4c8e4-66a6-4f44-a50e-efb65386ac0d img.shogun-image {
    

    
    
    
  }


#s-5be4c8e4-66a6-4f44-a50e-efb65386ac0d .shogun-image-content {
  
    align-items: center;
  
}

#s-2c30228e-2307-4ce1-8bf5-ff2e2265e943 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-2c30228e-2307-4ce1-8bf5-ff2e2265e943 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}



#s-a0c5e658-be94-4486-af78-5c283bb643a5 {
  margin-top: 7px;
margin-left: 0%;
margin-right: 0%;
}

#s-ea9762d5-38d9-4ad9-93dc-2b60f710bffb {
  min-height: 50px;
}








#s-ea9762d5-38d9-4ad9-93dc-2b60f710bffb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ea9762d5-38d9-4ad9-93dc-2b60f710bffb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9cf12c64-0f01-453f-8c51-257a641e3a78 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(228, 228, 228, 1);
border-style: solid;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-9cf12c64-0f01-453f-8c51-257a641e3a78 {
  margin-top: 40px;
}
}






  #s-9cf12c64-0f01-453f-8c51-257a641e3a78 img.shogun-image {
    

    
    
    
  }


#s-9cf12c64-0f01-453f-8c51-257a641e3a78 .shogun-image-content {
  
    align-items: center;
  
}

#s-f80538ca-264d-4a37-a9e5-9cddd88dc31c {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-f80538ca-264d-4a37-a9e5-9cddd88dc31c .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}



#s-3d995c0b-502c-43ab-aefd-91de3c5bae54 {
  margin-top: 7px;
margin-left: 0%;
margin-right: 0%;
}

#s-42aff277-2ed0-4fe4-b376-a40c410ff7fb {
  min-height: 50px;
}








#s-42aff277-2ed0-4fe4-b376-a40c410ff7fb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-42aff277-2ed0-4fe4-b376-a40c410ff7fb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cff7174d-3a07-490e-b5df-85b274f865bf {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(228, 228, 228, 1);
border-style: solid;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-cff7174d-3a07-490e-b5df-85b274f865bf {
  margin-top: 40px;
}
}






  #s-cff7174d-3a07-490e-b5df-85b274f865bf img.shogun-image {
    

    
    
    
  }


#s-cff7174d-3a07-490e-b5df-85b274f865bf .shogun-image-content {
  
    align-items: center;
  
}

#s-04b5ca07-e03f-4f47-9c2b-2e54d0a294ff {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-04b5ca07-e03f-4f47-9c2b-2e54d0a294ff .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}



#s-d3d0b87d-310a-4da7-984d-1b9a6571f39f {
  margin-top: 7px;
margin-left: 0%;
margin-right: 0%;
}

#s-1b2a0d73-a0ab-4e46-ada9-3062a0c24668 {
  min-height: 250px;
background-color: rgba(2, 200, 215, 1);
}
@media (min-width: 1200px){#s-1b2a0d73-a0ab-4e46-ada9-3062a0c24668 {
  display: none;
}
#s-1b2a0d73-a0ab-4e46-ada9-3062a0c24668, #wrap-s-1b2a0d73-a0ab-4e46-ada9-3062a0c24668 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1b2a0d73-a0ab-4e46-ada9-3062a0c24668 {
  display: none;
}
#s-1b2a0d73-a0ab-4e46-ada9-3062a0c24668, #wrap-s-1b2a0d73-a0ab-4e46-ada9-3062a0c24668 { display:none !important; }}







#s-1b2a0d73-a0ab-4e46-ada9-3062a0c24668 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1b2a0d73-a0ab-4e46-ada9-3062a0c24668.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-59d01a41-cb9c-4321-8cbc-55ef9cb6fd34 {
  text-align: center;
}
@media (min-width: 1200px){#s-59d01a41-cb9c-4321-8cbc-55ef9cb6fd34 {
  display: none;
}
#s-59d01a41-cb9c-4321-8cbc-55ef9cb6fd34, #wrap-s-59d01a41-cb9c-4321-8cbc-55ef9cb6fd34 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-59d01a41-cb9c-4321-8cbc-55ef9cb6fd34 {
  display: none;
}
#s-59d01a41-cb9c-4321-8cbc-55ef9cb6fd34, #wrap-s-59d01a41-cb9c-4321-8cbc-55ef9cb6fd34 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-59d01a41-cb9c-4321-8cbc-55ef9cb6fd34 {
  margin-top: 35px;
margin-left: 20%;
margin-right: 20%;
}
}






  #s-59d01a41-cb9c-4321-8cbc-55ef9cb6fd34 img.shogun-image {
    

    
    
    
  }


#s-59d01a41-cb9c-4321-8cbc-55ef9cb6fd34 .shogun-image-content {
  
    align-items: center;
  
}

#s-c847bc13-4f34-4b48-8821-af1d25550dbf {
  padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
}








#s-c847bc13-4f34-4b48-8821-af1d25550dbf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c847bc13-4f34-4b48-8821-af1d25550dbf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-067d39f6-071e-4763-acd1-f361609479d5 {
  margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-067d39f6-071e-4763-acd1-f361609479d5 {
  margin-left: 8%;
margin-right: 8%;
}
}
#s-067d39f6-071e-4763-acd1-f361609479d5 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.2em;
  
  text-align: center;
}


@media (max-width: 767px){#s-067d39f6-071e-4763-acd1-f361609479d5 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.1em;
  
  text-align: center;
}


}
#s-306a4e85-5bf6-4455-bebb-a29225e4e1c7 {
  padding-top: 10px;
padding-bottom: 0px;
}

#s-fd159203-8350-45ea-9c85-8145c1d476e3 {
  margin-bottom: 10px;
padding-top: 2px;
padding-bottom: 10px;
text-align: center;
}

#s-fd159203-8350-45ea-9c85-8145c1d476e3 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Medium";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.2em;
  
  text-align: center;
}



#s-2e3964bf-0e46-4999-9534-c0707de79150 {
  margin-left: 0%;
margin-right: 0%;
}

#s-94f51825-a185-4b02-9c1a-f054ec54db17 {
  margin-top: 25px;
margin-bottom: 25px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(75, 143, 231, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-94f51825-a185-4b02-9c1a-f054ec54db17:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-94f51825-a185-4b02-9c1a-f054ec54db17:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-94f51825-a185-4b02-9c1a-f054ec54db17 {
  padding-left: 28px;
padding-right: 28px;
}
}

  #s-94f51825-a185-4b02-9c1a-f054ec54db17-root {
    text-align: center;
  }


#s-94f51825-a185-4b02-9c1a-f054ec54db17.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-94f51825-a185-4b02-9c1a-f054ec54db17-root {
    text-align: center;
  }


#s-94f51825-a185-4b02-9c1a-f054ec54db17.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-94f51825-a185-4b02-9c1a-f054ec54db17-root {
    text-align: center;
  }


#s-94f51825-a185-4b02-9c1a-f054ec54db17.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-94f51825-a185-4b02-9c1a-f054ec54db17-root {
    text-align: center;
  }


#s-94f51825-a185-4b02-9c1a-f054ec54db17.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-94f51825-a185-4b02-9c1a-f054ec54db17-root {
    text-align: center;
  }


#s-94f51825-a185-4b02-9c1a-f054ec54db17.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-306f4bbd-d3a4-4257-9625-03949320d4bd {
  background-repeat: no-repeat;
background-size: cover;
min-height: 650px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-306f4bbd-d3a4-4257-9625-03949320d4bd {
  min-height: 450px;
}
}@media (max-width: 767px){#s-306f4bbd-d3a4-4257-9625-03949320d4bd {
  min-height: 400px;
}
}







#s-306f4bbd-d3a4-4257-9625-03949320d4bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-306f4bbd-d3a4-4257-9625-03949320d4bd {
  cursor: pointer;
}#s-306f4bbd-d3a4-4257-9625-03949320d4bd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 991px){






#s-306f4bbd-d3a4-4257-9625-03949320d4bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-306f4bbd-d3a4-4257-9625-03949320d4bd {
  cursor: pointer;
}#s-306f4bbd-d3a4-4257-9625-03949320d4bd.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
}@media (max-width: 767px){






#s-306f4bbd-d3a4-4257-9625-03949320d4bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-306f4bbd-d3a4-4257-9625-03949320d4bd {
  cursor: pointer;
}#s-306f4bbd-d3a4-4257-9625-03949320d4bd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
}
@media (min-width: 768px) and (max-width: 991px){#s-37ddb3b1-ed7b-43eb-80b8-04c4f66490ab {
  padding-left: 3%;
padding-right: 3%;
}
}
@media (min-width: 0px) {
[id="s-37ddb3b1-ed7b-43eb-80b8-04c4f66490ab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-37ddb3b1-ed7b-43eb-80b8-04c4f66490ab"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-37ddb3b1-ed7b-43eb-80b8-04c4f66490ab"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-37ddb3b1-ed7b-43eb-80b8-04c4f66490ab"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-37ddb3b1-ed7b-43eb-80b8-04c4f66490ab"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-37ddb3b1-ed7b-43eb-80b8-04c4f66490ab"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-37ddb3b1-ed7b-43eb-80b8-04c4f66490ab"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-37ddb3b1-ed7b-43eb-80b8-04c4f66490ab"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-f2bbd532-b30a-4f11-a485-c59099c86092 {
  margin-left: 10px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-f2bbd532-b30a-4f11-a485-c59099c86092 {
  margin-left: 10px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}
}@media (max-width: 767px){#s-f2bbd532-b30a-4f11-a485-c59099c86092 {
  margin-left: 150px;
margin-bottom: 10px;
margin-right: 7%;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}
}
#s-f2bbd532-b30a-4f11-a485-c59099c86092 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Medium";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-f2bbd532-b30a-4f11-a485-c59099c86092 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Medium";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: right;
}


}@media (max-width: 767px){#s-f2bbd532-b30a-4f11-a485-c59099c86092 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Medium";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: right;
}


}
#s-8df234b5-edf2-4546-9bf4-3e2ff61d56ae {
  text-align: left;
}
@media (min-width: 1200px){#s-8df234b5-edf2-4546-9bf4-3e2ff61d56ae {
  margin-top: 20px;
margin-bottom: 20px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8df234b5-edf2-4546-9bf4-3e2ff61d56ae {
  padding-top: 20px;
padding-left: 45%;
padding-bottom: 20px;
text-align: right;
}
}@media (max-width: 767px){#s-8df234b5-edf2-4546-9bf4-3e2ff61d56ae {
  margin-left: 35%;
margin-right: 5%;
}
}






  #s-8df234b5-edf2-4546-9bf4-3e2ff61d56ae img.shogun-image {
    

    
    
    
  }


#s-8df234b5-edf2-4546-9bf4-3e2ff61d56ae .shogun-image-content {
  
    align-items: center;
  
}

#s-541ab829-757f-4645-90c8-6975b60ec3ae {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
padding-top: 10px;
padding-left: 35px;
padding-bottom: 10px;
padding-right: 35px;
border-radius: 2px;
background-color: rgba(75, 143, 231, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-541ab829-757f-4645-90c8-6975b60ec3ae:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-541ab829-757f-4645-90c8-6975b60ec3ae:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-541ab829-757f-4645-90c8-6975b60ec3ae {
  text-align: right;
}
}@media (max-width: 767px){#s-541ab829-757f-4645-90c8-6975b60ec3ae {
  margin-right: 8%;
text-align: right;
}
}

  #s-541ab829-757f-4645-90c8-6975b60ec3ae-root {
    text-align: left;
  }


#s-541ab829-757f-4645-90c8-6975b60ec3ae.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-541ab829-757f-4645-90c8-6975b60ec3ae-root {
    text-align: left;
  }


#s-541ab829-757f-4645-90c8-6975b60ec3ae.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-541ab829-757f-4645-90c8-6975b60ec3ae-root {
    text-align: left;
  }


#s-541ab829-757f-4645-90c8-6975b60ec3ae.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-541ab829-757f-4645-90c8-6975b60ec3ae-root {
    text-align: right;
  }


#s-541ab829-757f-4645-90c8-6975b60ec3ae.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-541ab829-757f-4645-90c8-6975b60ec3ae-root {
    text-align: right;
  }


#s-541ab829-757f-4645-90c8-6975b60ec3ae.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-a57cd418-062e-474d-a234-c5ed68c1daee {
  min-height: 50px;
}








#s-a57cd418-062e-474d-a234-c5ed68c1daee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a57cd418-062e-474d-a234-c5ed68c1daee.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-21aa3686-abbc-4090-8a23-9303651b6238 {
  background-color: rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) and (max-width: 991px){#s-21aa3686-abbc-4090-8a23-9303651b6238 {
  display: none;
}
#s-21aa3686-abbc-4090-8a23-9303651b6238, #wrap-s-21aa3686-abbc-4090-8a23-9303651b6238 { display:none !important; }}@media (max-width: 767px){#s-21aa3686-abbc-4090-8a23-9303651b6238 {
  display: none;
}
#s-21aa3686-abbc-4090-8a23-9303651b6238, #wrap-s-21aa3686-abbc-4090-8a23-9303651b6238 { display:none !important; }}
@media (min-width: 0px) {
[id="s-21aa3686-abbc-4090-8a23-9303651b6238"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 17.5px);
}

}

@media (min-width: 768px) {
[id="s-21aa3686-abbc-4090-8a23-9303651b6238"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 17.5px);
}

[id="s-21aa3686-abbc-4090-8a23-9303651b6238"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 17.5px);
}

}

@media (min-width: 992px) {
[id="s-21aa3686-abbc-4090-8a23-9303651b6238"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 17.5px);
}

[id="s-21aa3686-abbc-4090-8a23-9303651b6238"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 17.5px);
}

}

@media (min-width: 1200px) {
[id="s-21aa3686-abbc-4090-8a23-9303651b6238"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 17.5px);
}

[id="s-21aa3686-abbc-4090-8a23-9303651b6238"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 17.5px);
}

}

#s-d6f0ae36-2316-4cba-8e2f-58585a817bdc {
  margin-top: 5%;
margin-left: 15%;
margin-right: 0%;
min-height: 50px;
}








#s-d6f0ae36-2316-4cba-8e2f-58585a817bdc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d6f0ae36-2316-4cba-8e2f-58585a817bdc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9385f55c-cd35-4e8e-855b-67106d443f85 {
  margin-left: 0%;
margin-bottom: 20px;
min-height: 50px;
}








#s-9385f55c-cd35-4e8e-855b-67106d443f85 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9385f55c-cd35-4e8e-855b-67106d443f85.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fbf93c78-410d-40e7-9325-bf5b841ba815 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-bfaf3909-b3e4-481d-bf6e-41e0f11a8a2a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-bfaf3909-b3e4-481d-bf6e-41e0f11a8a2a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-d2af5799-f469-44e8-9c0f-0ec87e67cc2f {
  margin-bottom: 3px;
padding-top: 2px;
padding-bottom: 10px;
text-align: left;
}

#s-d2af5799-f469-44e8-9c0f-0ec87e67cc2f .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Medium";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.2em;
  
  text-align: left;
}



#s-2d407ed2-403c-441a-a6a8-d38fef94394a {
  margin-left: 5%;
}

#s-6da1e52b-cf12-4025-b380-e02c01aedad3 {
  margin-top: 8px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 25px;
background-color: rgba(75, 143, 231, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
}
#s-6da1e52b-cf12-4025-b380-e02c01aedad3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6da1e52b-cf12-4025-b380-e02c01aedad3:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-6da1e52b-cf12-4025-b380-e02c01aedad3 {
  padding-left: 28px;
padding-right: 28px;
}
}

  #s-6da1e52b-cf12-4025-b380-e02c01aedad3-root {
    text-align: left;
  }


#s-6da1e52b-cf12-4025-b380-e02c01aedad3.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6da1e52b-cf12-4025-b380-e02c01aedad3-root {
    text-align: left;
  }


#s-6da1e52b-cf12-4025-b380-e02c01aedad3.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6da1e52b-cf12-4025-b380-e02c01aedad3-root {
    text-align: left;
  }


#s-6da1e52b-cf12-4025-b380-e02c01aedad3.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6da1e52b-cf12-4025-b380-e02c01aedad3-root {
    text-align: left;
  }


#s-6da1e52b-cf12-4025-b380-e02c01aedad3.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6da1e52b-cf12-4025-b380-e02c01aedad3-root {
    text-align: left;
  }


#s-6da1e52b-cf12-4025-b380-e02c01aedad3.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-354b9e5a-c879-48dd-a354-f623b7ac86c5 {
  margin-left: 0%;
max-width: 600px;
text-align: right;
}







  #s-354b9e5a-c879-48dd-a354-f623b7ac86c5 img.shogun-image {
    

    
    
    
  }


#s-354b9e5a-c879-48dd-a354-f623b7ac86c5 .shogun-image-content {
  
    align-items: center;
  
}

#s-2ea7042c-84dd-4079-ae24-05ff1a743cb8 {
  min-height: 50px;
}








#s-2ea7042c-84dd-4079-ae24-05ff1a743cb8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2ea7042c-84dd-4079-ae24-05ff1a743cb8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9d39099e-a6bf-451b-9407-e8d538f83c07 {
  margin-top: 0px;
padding-top: 100px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 25%;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-9d39099e-a6bf-451b-9407-e8d538f83c07 {
  padding-top: 0px;
}
}@media (max-width: 767px){#s-9d39099e-a6bf-451b-9407-e8d538f83c07 {
  padding-top: 40px;
}
}
#s-9d39099e-a6bf-451b-9407-e8d538f83c07 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 36px;
  
  
  text-align: left;
}



@media (min-width: 1200px){#s-d37bc929-a511-44e8-a174-ff30704dae59 {
  padding-left: 5%;
padding-right: 5%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d37bc929-a511-44e8-a174-ff30704dae59 {
  padding-left: 5%;
padding-right: 5%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d37bc929-a511-44e8-a174-ff30704dae59 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-d37bc929-a511-44e8-a174-ff30704dae59 hr {
  border-top: 2px solid rgba(0, 46, 93, 1);
}

#s-e154e06b-ff0f-4bb8-8545-f6145243dda2 {
  margin-left: 5%;
margin-bottom: 80px;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-e154e06b-ff0f-4bb8-8545-f6145243dda2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e154e06b-ff0f-4bb8-8545-f6145243dda2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-e154e06b-ff0f-4bb8-8545-f6145243dda2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-e154e06b-ff0f-4bb8-8545-f6145243dda2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-d791bd46-7108-454b-846d-64a6f652a213 {
  text-align: center;
}







  #s-d791bd46-7108-454b-846d-64a6f652a213 img.shogun-image {
    

    
    
    
  }


#s-d791bd46-7108-454b-846d-64a6f652a213 .shogun-image-content {
  
    align-items: center;
  
}

#s-dd9370b8-1745-40ca-a58f-3fb6daffd9ab {
  text-align: center;
}







  #s-dd9370b8-1745-40ca-a58f-3fb6daffd9ab img.shogun-image {
    

    
    
    
  }


#s-dd9370b8-1745-40ca-a58f-3fb6daffd9ab .shogun-image-content {
  
    align-items: center;
  
}

#s-36aa890d-c8da-4c16-bd2d-50a75526bacb {
  text-align: center;
}







  #s-36aa890d-c8da-4c16-bd2d-50a75526bacb img.shogun-image {
    

    
    
    
  }


#s-36aa890d-c8da-4c16-bd2d-50a75526bacb .shogun-image-content {
  
    align-items: center;
  
}

#s-4f20b280-bc0c-4b26-91df-8aadd8ab3ea6 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-4f20b280-bc0c-4b26-91df-8aadd8ab3ea6 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4f20b280-bc0c-4b26-91df-8aadd8ab3ea6 {
  
}
}@media (max-width: 767px){#s-4f20b280-bc0c-4b26-91df-8aadd8ab3ea6 {
  
}
}







#s-4f20b280-bc0c-4b26-91df-8aadd8ab3ea6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4f20b280-bc0c-4b26-91df-8aadd8ab3ea6 {
  cursor: pointer;
}#s-4f20b280-bc0c-4b26-91df-8aadd8ab3ea6.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-8a3aa5cb-17a4-4d9e-bea0-46b74ad8b930 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 60px;
padding-bottom: 60px;
background-color: rgba(2, 200, 215, 1);
}
@media (min-width: 1200px){#s-8a3aa5cb-17a4-4d9e-bea0-46b74ad8b930 {
  padding-left: 15%;
padding-right: 15%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8a3aa5cb-17a4-4d9e-bea0-46b74ad8b930 {
  padding-left: 10%;
padding-right: 10%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8a3aa5cb-17a4-4d9e-bea0-46b74ad8b930 {
  margin-top: 50px;
padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-8a3aa5cb-17a4-4d9e-bea0-46b74ad8b930 {
  padding-top: 35px;
padding-bottom: 35px;
}
}
@media (min-width: 0px) {
[id="s-8a3aa5cb-17a4-4d9e-bea0-46b74ad8b930"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8a3aa5cb-17a4-4d9e-bea0-46b74ad8b930"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8a3aa5cb-17a4-4d9e-bea0-46b74ad8b930"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8a3aa5cb-17a4-4d9e-bea0-46b74ad8b930"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f8dfb2e0-10c8-4fa1-b6a5-0108e513605c {
  margin-left: 20%;
}
@media (min-width: 768px) and (max-width: 991px){#s-f8dfb2e0-10c8-4fa1-b6a5-0108e513605c {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-f8dfb2e0-10c8-4fa1-b6a5-0108e513605c {
  margin-left: 10%;
}
}







#s-f8dfb2e0-10c8-4fa1-b6a5-0108e513605c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f8dfb2e0-10c8-4fa1-b6a5-0108e513605c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8eba6541-c83a-4388-9271-95358d46f5c6 {
  min-height: 50px;
}








#s-8eba6541-c83a-4388-9271-95358d46f5c6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8eba6541-c83a-4388-9271-95358d46f5c6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b075ecde-d03b-4e09-8cda-4f4399369144 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
padding-top: 20px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-b075ecde-d03b-4e09-8cda-4f4399369144 {
  padding-top: 0px;
}
}@media (max-width: 767px){#s-b075ecde-d03b-4e09-8cda-4f4399369144 {
  margin-right: 10%;
padding-top: 0px;
}
}
#s-b075ecde-d03b-4e09-8cda-4f4399369144 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-0c1d5191-0dcf-4dec-b0e8-d69b61395d00 {
  margin-left: 0%;
}
@media (min-width: 768px) and (max-width: 991px){#s-0c1d5191-0dcf-4dec-b0e8-d69b61395d00 {
  margin-right: 5%;
}
}@media (max-width: 767px){#s-0c1d5191-0dcf-4dec-b0e8-d69b61395d00 {
  margin-right: 7%;
}
}
#s-27785469-a149-4058-a887-2394ded57518 {
  margin-top: 40px;
padding-top: 15px;
padding-left: 10%;
padding-bottom: 15px;
padding-right: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 35px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined 5px;
color: rgba(4, 2, 2, 1);
}
#s-27785469-a149-4058-a887-2394ded57518:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
color: rgba(117, 97, 170, 1) !important;
background-image: none !important;
hover-type: color !important;}#s-27785469-a149-4058-a887-2394ded57518:active {background-color: rgba(117, 97, 170, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}@media (min-width: 1200px){#s-27785469-a149-4058-a887-2394ded57518 {
  margin-bottom: 20px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-27785469-a149-4058-a887-2394ded57518 {
  margin-top: 30px;
margin-bottom: 30px;
margin-right: 5%;
text-align: center;
}
}@media (max-width: 767px){#s-27785469-a149-4058-a887-2394ded57518 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 20px;
}
}

  #s-27785469-a149-4058-a887-2394ded57518-root {
    text-align: left;
  }


#s-27785469-a149-4058-a887-2394ded57518.shg-btn {
  color: rgba(4, 2, 2, 1);
  font-size: 16px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-27785469-a149-4058-a887-2394ded57518-root {
    text-align: left;
  }


#s-27785469-a149-4058-a887-2394ded57518.shg-btn {
  color: rgba(4, 2, 2, 1);
  font-size: 16px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-27785469-a149-4058-a887-2394ded57518-root {
    text-align: left;
  }


#s-27785469-a149-4058-a887-2394ded57518.shg-btn {
  color: rgba(4, 2, 2, 1);
  font-size: 16px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-27785469-a149-4058-a887-2394ded57518-root {
    text-align: center;
  }


#s-27785469-a149-4058-a887-2394ded57518.shg-btn {
  color: rgba(4, 2, 2, 1);
  font-size: 16px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-27785469-a149-4058-a887-2394ded57518-root {
    text-align: left;
  }


#s-27785469-a149-4058-a887-2394ded57518.shg-btn {
  color: rgba(4, 2, 2, 1);
  font-size: 16px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-757cc62e-1ade-4cc5-99da-301cfb387c04 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px){#s-757cc62e-1ade-4cc5-99da-301cfb387c04 {
  padding-top: 20px;
padding-left: 7%;
padding-bottom: 20px;
padding-right: 7%;
}
}
#s-757cc62e-1ade-4cc5-99da-301cfb387c04 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 0.44);
}

#s-757cc62e-1ade-4cc5-99da-301cfb387c04 .shg-sld-nav-button.shg-sld-left,
#s-757cc62e-1ade-4cc5-99da-301cfb387c04 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 0.44);
}

#s-29ba9a73-f73f-47e0-a8e2-bd46054fa9d5 {
  text-align: center;
}







  #s-29ba9a73-f73f-47e0-a8e2-bd46054fa9d5 img.shogun-image {
    

    
    
    
  }


#s-29ba9a73-f73f-47e0-a8e2-bd46054fa9d5 .shogun-image-content {
  
    align-items: center;
  
}

#s-fd488201-663e-4c02-8064-569018ef5450 {
  text-align: center;
}







  #s-fd488201-663e-4c02-8064-569018ef5450 img.shogun-image {
    

    
    
    
  }


#s-fd488201-663e-4c02-8064-569018ef5450 .shogun-image-content {
  
    align-items: center;
  
}

#s-ef45d7ab-ee1d-4ab3-92c4-e4d7d0fdd65e {
  text-align: center;
}
@media (max-width: 767px){#s-ef45d7ab-ee1d-4ab3-92c4-e4d7d0fdd65e {
  margin-left: 5%;
margin-right: 5%;
}
}






  #s-ef45d7ab-ee1d-4ab3-92c4-e4d7d0fdd65e img.shogun-image {
    

    
    
    
  }


#s-ef45d7ab-ee1d-4ab3-92c4-e4d7d0fdd65e .shogun-image-content {
  
    align-items: center;
  
}

#s-aa432e3d-2a4a-4039-8fab-4975908bc418 {
  min-height: 50px;
background-color: rgba(244, 197, 92, 0.88);
}








#s-aa432e3d-2a4a-4039-8fab-4975908bc418 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aa432e3d-2a4a-4039-8fab-4975908bc418.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9399fdff-f731-433c-a68b-1bc1f00e517d {
  margin-top: 40px;
margin-bottom: 40px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-9399fdff-f731-433c-a68b-1bc1f00e517d .shogun-form-box label.shogun-form-label {
  display: flex;
  font-weight:  normal;
  color: #000;
  
  
  
  
  
  
  padding-top: 5px;
  padding-bottom: 5px;
  
  
}

#s-9399fdff-f731-433c-a68b-1bc1f00e517d .shogun-form-success-msg {
  visibility: hidden;
  display: flex;
  align-items: center;
  font-size: ;
  
  color: rgba(5, 3, 9, 1);
  font-family: NeutralStd-Regular;
  
  
  
  justify-content: center;
}

#s-9399fdff-f731-433c-a68b-1bc1f00e517d .shogun-form-success-msg > svg {
  margin-right: 4px;
  stroke: rgba(5, 3, 9, 1);
}

#s-9399fdff-f731-433c-a68b-1bc1f00e517d .shogun-form-error-msg-container, #s-9399fdff-f731-433c-a68b-1bc1f00e517d .shogun-form-field-error-msg-container {
  display: none;
}

#s-9399fdff-f731-433c-a68b-1bc1f00e517d .shogun-form-error-msg {
  
  
  color: #ff0000;
  font-family: NeutralStd-Regular;
  
  
  
  justify-content: center;
}

#s-9399fdff-f731-433c-a68b-1bc1f00e517d .shogun-form-field-error-msg > svg {
  margin-right: 4px;
  stroke: #ff0000;
}

#s-11a7bfdc-c914-402a-b3c0-a2a8ba9a2480 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-11a7bfdc-c914-402a-b3c0-a2a8ba9a2480 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-97c51f45-b68d-42d8-ba9a-3295f6f14cb5 {
  margin-top: 40px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
text-align: center;
}
@media (min-width: 1200px){#s-97c51f45-b68d-42d8-ba9a-3295f6f14cb5 {
  margin-top: 5px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-97c51f45-b68d-42d8-ba9a-3295f6f14cb5 {
  margin-top: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-97c51f45-b68d-42d8-ba9a-3295f6f14cb5 {
  margin-top: 0px;
margin-left: 0%;
margin-right: 0px;
}
}@media (max-width: 767px){#s-97c51f45-b68d-42d8-ba9a-3295f6f14cb5 {
  
}
}
#s-97c51f45-b68d-42d8-ba9a-3295f6f14cb5 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Regular";
  font-style:  normal ;
  
  
  
  
}



.shogun-form-text-input-field {
  width: 100%;
}

.shogun-form-text-input-field:focus {
  outline: none;
}

textarea.shogun-form-text-input-field {
  resize: none;
  overflow: hidden;
  min-height: 70px !important;
}

#s-3c409f17-1ca2-4ba9-b31d-5acde01d9bfb {
  margin-top: 0px;
margin-left: 35%;
margin-bottom: 20px;
margin-right: 35%;
padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-3c409f17-1ca2-4ba9-b31d-5acde01d9bfb {
  margin-bottom: 10px;
padding-top: 5px;
padding-bottom: 5px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3c409f17-1ca2-4ba9-b31d-5acde01d9bfb {
  margin-left: 35%;
margin-bottom: 10px;
margin-right: 35%;
padding-top: 5px;
padding-bottom: 5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-3c409f17-1ca2-4ba9-b31d-5acde01d9bfb {
  margin-left: 15%;
margin-bottom: 15px;
margin-right: 15%;
padding-top: 5px;
padding-bottom: 5px;
}
}@media (max-width: 767px){#s-3c409f17-1ca2-4ba9-b31d-5acde01d9bfb {
  margin-left: 10%;
margin-right: 10%;
padding-top: 15px;
padding-left: 0%;
padding-bottom: 15px;
padding-right: 0%;
}
}
#s-3c409f17-1ca2-4ba9-b31d-5acde01d9bfb  .shogun-form-text-input-field {
  border-width: 2px;
  border-color: rgba(255, 255, 255, 1);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 1);
  
  font-size: 16px;
  
  color: rgba(110, 109, 109, 1);
  font-family: NeutralStd-Regular;
  
  
  
}

#s-3c409f17-1ca2-4ba9-b31d-5acde01d9bfb  .shogun-form-text-input-field::placeholder {
  
  
  color: rgba(114, 111, 111, 1);
  font-family: NeutralStd-Regular;
  
  
  
}


#s-3c409f17-1ca2-4ba9-b31d-5acde01d9bfb .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 1);
  
  
  color: #000;
}



#s-3c409f17-1ca2-4ba9-b31d-5acde01d9bfb .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 1);
  
  
  color: #000;
}


.shogun-form-box-submit {
  border: 0;
  font-size: 1em;
  line-height: 1.8;
}

.shogun-form-box-submit:focus {
  outline: none;
}

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

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

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

#s-59188856-f8d6-45b3-9802-22eb0212886c {
  margin-bottom: 10px;
padding-top: 10px;
padding-left: 60px;
padding-bottom: 10px;
padding-right: 60px;
border-radius: 30px;
color: #FFFFFF;
background-color: rgba(75, 143, 231, 1);
text-align: center;
cursor: pointer;
font-family: NeutralStd-Medium;
background-image: none;
hover-type: color;
}
#s-59188856-f8d6-45b3-9802-22eb0212886c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-59188856-f8d6-45b3-9802-22eb0212886c:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-59188856-f8d6-45b3-9802-22eb0212886c {
  margin-top: 10px;
}
}
#s-59188856-f8d6-45b3-9802-22eb0212886c[disabled],
#s-59188856-f8d6-45b3-9802-22eb0212886c[disabled]:hover,
#s-59188856-f8d6-45b3-9802-22eb0212886c[disabled]:focus {
  background-color: #D7D5E2 !important;
}

#s-59188856-f8d6-45b3-9802-22eb0212886c {
  display:  inline-block ;
  width:  auto ;
}


#s-7045cbc4-fef4-412b-9629-54872d6e7060 {
  text-align: center;
}
@media (min-width: 1200px){#s-7045cbc4-fef4-412b-9629-54872d6e7060 {
  display: none;
}
#s-7045cbc4-fef4-412b-9629-54872d6e7060, #wrap-s-7045cbc4-fef4-412b-9629-54872d6e7060 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7045cbc4-fef4-412b-9629-54872d6e7060 {
  display: none;
}
#s-7045cbc4-fef4-412b-9629-54872d6e7060, #wrap-s-7045cbc4-fef4-412b-9629-54872d6e7060 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7045cbc4-fef4-412b-9629-54872d6e7060 {
  padding-top: 30px;
padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-7045cbc4-fef4-412b-9629-54872d6e7060 {
  margin-top: 50px;
margin-left: 10%;
margin-bottom: 20px;
margin-right: 10%;
}
}






  #s-7045cbc4-fef4-412b-9629-54872d6e7060 img.shogun-image {
    

    
    
    
  }


#s-7045cbc4-fef4-412b-9629-54872d6e7060 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 1200px){#s-7a43e9ee-580d-4ef2-8046-32c66796ce5d {
  margin-left: 20%;
margin-right: 20%;
display: none;
}
#s-7a43e9ee-580d-4ef2-8046-32c66796ce5d, #wrap-s-7a43e9ee-580d-4ef2-8046-32c66796ce5d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7a43e9ee-580d-4ef2-8046-32c66796ce5d {
  display: none;
}
#s-7a43e9ee-580d-4ef2-8046-32c66796ce5d, #wrap-s-7a43e9ee-580d-4ef2-8046-32c66796ce5d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7a43e9ee-580d-4ef2-8046-32c66796ce5d {
  margin-top: 10px;
margin-left: 10%;
margin-bottom: 10px;
margin-right: 10%;
}
}@media (max-width: 767px){#s-7a43e9ee-580d-4ef2-8046-32c66796ce5d {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-57d773d9-3613-44e5-9f62-591182fa9ddb {
  margin-top: 50px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-57d773d9-3613-44e5-9f62-591182fa9ddb {
  display: none;
}
#s-57d773d9-3613-44e5-9f62-591182fa9ddb, #wrap-s-57d773d9-3613-44e5-9f62-591182fa9ddb { display:none !important; }}@media (max-width: 767px){#s-57d773d9-3613-44e5-9f62-591182fa9ddb {
  display: none;
}
#s-57d773d9-3613-44e5-9f62-591182fa9ddb, #wrap-s-57d773d9-3613-44e5-9f62-591182fa9ddb { display:none !important; }}







#s-57d773d9-3613-44e5-9f62-591182fa9ddb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-57d773d9-3613-44e5-9f62-591182fa9ddb {
  cursor: pointer;
}#s-57d773d9-3613-44e5-9f62-591182fa9ddb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-297d8898-85f1-4711-bc46-6e59a56767db {
  text-align: center;
}
@media (min-width: 1200px){#s-297d8898-85f1-4711-bc46-6e59a56767db {
  margin-left: 35%;
margin-bottom: 10px;
margin-right: 35%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-297d8898-85f1-4711-bc46-6e59a56767db {
  margin-left: 35%;
margin-bottom: 10px;
margin-right: 35%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-297d8898-85f1-4711-bc46-6e59a56767db {
  display: none;
}
#s-297d8898-85f1-4711-bc46-6e59a56767db, #wrap-s-297d8898-85f1-4711-bc46-6e59a56767db { display:none !important; }}@media (max-width: 767px){#s-297d8898-85f1-4711-bc46-6e59a56767db {
  display: none;
}
#s-297d8898-85f1-4711-bc46-6e59a56767db, #wrap-s-297d8898-85f1-4711-bc46-6e59a56767db { display:none !important; }}






  #s-297d8898-85f1-4711-bc46-6e59a56767db img.shogun-image {
    

    
    
    
  }


#s-297d8898-85f1-4711-bc46-6e59a56767db .shogun-image-content {
  
    align-items: center;
  
}

#s-f20409b8-f35e-4e76-a66e-82bcd93c90a7 {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
}
@media (min-width: 1200px){#s-f20409b8-f35e-4e76-a66e-82bcd93c90a7 {
  margin-left: 0%;
margin-right: 0%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f20409b8-f35e-4e76-a66e-82bcd93c90a7 {
  margin-left: 0%;
margin-right: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f20409b8-f35e-4e76-a66e-82bcd93c90a7 {
  margin-left: 4%;
margin-right: 6%;
display: none;
}
#s-f20409b8-f35e-4e76-a66e-82bcd93c90a7, #wrap-s-f20409b8-f35e-4e76-a66e-82bcd93c90a7 { display:none !important; }}







#s-f20409b8-f35e-4e76-a66e-82bcd93c90a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f20409b8-f35e-4e76-a66e-82bcd93c90a7 {
  cursor: pointer;
}#s-f20409b8-f35e-4e76-a66e-82bcd93c90a7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-6d421620-bc06-4751-9622-b093fe71feba {
  margin-left: 5%;
margin-right: 5%;
display: none;
}
#s-6d421620-bc06-4751-9622-b093fe71feba, #wrap-s-6d421620-bc06-4751-9622-b093fe71feba { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6d421620-bc06-4751-9622-b093fe71feba {
  margin-left: 5%;
margin-right: 5%;
display: none;
}
#s-6d421620-bc06-4751-9622-b093fe71feba, #wrap-s-6d421620-bc06-4751-9622-b093fe71feba { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6d421620-bc06-4751-9622-b093fe71feba {
  display: none;
}
#s-6d421620-bc06-4751-9622-b093fe71feba, #wrap-s-6d421620-bc06-4751-9622-b093fe71feba { display:none !important; }}@media (max-width: 767px){#s-6d421620-bc06-4751-9622-b093fe71feba {
  display: none;
}
#s-6d421620-bc06-4751-9622-b093fe71feba, #wrap-s-6d421620-bc06-4751-9622-b093fe71feba { display:none !important; }}
@media (min-width: 0px) {
[id="s-6d421620-bc06-4751-9622-b093fe71feba"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-6d421620-bc06-4751-9622-b093fe71feba"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6d421620-bc06-4751-9622-b093fe71feba"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6d421620-bc06-4751-9622-b093fe71feba"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-3ad1675c-16e9-4e4d-bf54-726df34e6eb4 {
  min-height: 50px;
}








#s-3ad1675c-16e9-4e4d-bf54-726df34e6eb4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3ad1675c-16e9-4e4d-bf54-726df34e6eb4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a52bc8d4-c874-4027-87a4-3274be3021fc {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
text-align: center;
}







  #s-a52bc8d4-c874-4027-87a4-3274be3021fc img.shogun-image {
    

    
    
    
  }


#s-a52bc8d4-c874-4027-87a4-3274be3021fc .shogun-image-content {
  
    align-items: center;
  
}

#s-a3d726c3-23f2-4f88-adb0-91bbaff58cff {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a3d726c3-23f2-4f88-adb0-91bbaff58cff .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.25em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-a3d726c3-23f2-4f88-adb0-91bbaff58cff .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  
  
}


}
#s-e0ab5729-626f-4e28-b485-3985d7de7255 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e0ab5729-626f-4e28-b485-3985d7de7255 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Regular";
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  
}



#s-29d69541-e071-402f-873b-244bda67f4fb {
  display: none;
}
#s-7c6661a8-c755-436d-bd4b-423522c41e60 {
  margin-top: 20px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(117, 97, 170, 1);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
cursor: pointer;
}
#s-7c6661a8-c755-436d-bd4b-423522c41e60:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7c6661a8-c755-436d-bd4b-423522c41e60:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7c6661a8-c755-436d-bd4b-423522c41e60 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7c6661a8-c755-436d-bd4b-423522c41e60.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7c6661a8-c755-436d-bd4b-423522c41e60.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}

#s-7c6661a8-c755-436d-bd4b-423522c41e60.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-ffcb1eb7-b4c1-4582-a3ba-8dd9f6e365d3 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(117, 97, 170, 1);
border-style: solid;
border-radius: 25px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
color: rgba(117, 97, 170, 1);
}
#s-ffcb1eb7-b4c1-4582-a3ba-8dd9f6e365d3:hover {background-color: rgba(117, 97, 170, 0.3) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-ffcb1eb7-b4c1-4582-a3ba-8dd9f6e365d3:active {background-color: rgba(2, 200, 215, 0.54) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-ffcb1eb7-b4c1-4582-a3ba-8dd9f6e365d3 {
  padding-left: 28px;
padding-right: 28px;
}
}

  #s-ffcb1eb7-b4c1-4582-a3ba-8dd9f6e365d3-root {
    text-align: center;
  }


#s-ffcb1eb7-b4c1-4582-a3ba-8dd9f6e365d3.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ffcb1eb7-b4c1-4582-a3ba-8dd9f6e365d3-root {
    text-align: center;
  }


#s-ffcb1eb7-b4c1-4582-a3ba-8dd9f6e365d3.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ffcb1eb7-b4c1-4582-a3ba-8dd9f6e365d3-root {
    text-align: center;
  }


#s-ffcb1eb7-b4c1-4582-a3ba-8dd9f6e365d3.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ffcb1eb7-b4c1-4582-a3ba-8dd9f6e365d3-root {
    text-align: center;
  }


#s-ffcb1eb7-b4c1-4582-a3ba-8dd9f6e365d3.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ffcb1eb7-b4c1-4582-a3ba-8dd9f6e365d3-root {
    text-align: center;
  }


#s-ffcb1eb7-b4c1-4582-a3ba-8dd9f6e365d3.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-2af419d1-1a76-4814-af6c-2fa1f260e4be {
  text-align: center;
}







  #s-2af419d1-1a76-4814-af6c-2fa1f260e4be img.shogun-image {
    

    
    
    
  }


#s-2af419d1-1a76-4814-af6c-2fa1f260e4be .shogun-image-content {
  
    align-items: center;
  
}

#s-dc1f321b-25ab-4ef7-a423-63d9dd5b2bc0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dc1f321b-25ab-4ef7-a423-63d9dd5b2bc0 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.25em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-dc1f321b-25ab-4ef7-a423-63d9dd5b2bc0 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  
  
}


}
#s-57e14524-9016-4a9f-acb6-cfcc93ec88d5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-57e14524-9016-4a9f-acb6-cfcc93ec88d5 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Regular";
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  
}



#s-03cc9ba5-104a-4b85-81b2-d671caec5f88 {
  display: none;
}
#s-ad54ca9c-a633-4f78-bbb4-f5dbcc3a7cdf {
  display: none;
}
#s-953afef5-b0c3-43c0-95c7-8776657c4daf {
  margin-top: 20px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(117, 97, 170, 1);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
cursor: pointer;
}
#s-953afef5-b0c3-43c0-95c7-8776657c4daf:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-953afef5-b0c3-43c0-95c7-8776657c4daf:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-953afef5-b0c3-43c0-95c7-8776657c4daf {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-953afef5-b0c3-43c0-95c7-8776657c4daf.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-953afef5-b0c3-43c0-95c7-8776657c4daf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}

#s-953afef5-b0c3-43c0-95c7-8776657c4daf.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-6c07df9a-d5c5-4452-ab11-bbd586079ccf {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(117, 97, 170, 1);
border-style: solid;
border-radius: 25px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
color: rgba(117, 97, 170, 1);
}
#s-6c07df9a-d5c5-4452-ab11-bbd586079ccf:hover {background-color: rgba(117, 97, 170, 0.3) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-6c07df9a-d5c5-4452-ab11-bbd586079ccf:active {background-color: rgba(2, 200, 215, 0.54) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-6c07df9a-d5c5-4452-ab11-bbd586079ccf {
  padding-left: 28px;
padding-right: 28px;
}
}

  #s-6c07df9a-d5c5-4452-ab11-bbd586079ccf-root {
    text-align: center;
  }


#s-6c07df9a-d5c5-4452-ab11-bbd586079ccf.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6c07df9a-d5c5-4452-ab11-bbd586079ccf-root {
    text-align: center;
  }


#s-6c07df9a-d5c5-4452-ab11-bbd586079ccf.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6c07df9a-d5c5-4452-ab11-bbd586079ccf-root {
    text-align: center;
  }


#s-6c07df9a-d5c5-4452-ab11-bbd586079ccf.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6c07df9a-d5c5-4452-ab11-bbd586079ccf-root {
    text-align: center;
  }


#s-6c07df9a-d5c5-4452-ab11-bbd586079ccf.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6c07df9a-d5c5-4452-ab11-bbd586079ccf-root {
    text-align: center;
  }


#s-6c07df9a-d5c5-4452-ab11-bbd586079ccf.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-f8d6805c-dc6a-475a-8652-66d20b70a933 {
  text-align: center;
}







  #s-f8d6805c-dc6a-475a-8652-66d20b70a933 img.shogun-image {
    

    
    
    
  }


#s-f8d6805c-dc6a-475a-8652-66d20b70a933 .shogun-image-content {
  
    align-items: center;
  
}

#s-ed16c640-0830-4531-8cf5-b5cb1218a450 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ed16c640-0830-4531-8cf5-b5cb1218a450 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.25em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-ed16c640-0830-4531-8cf5-b5cb1218a450 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  
  
}


}
#s-d7364dab-62ce-491a-b158-ff3880865bf4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d7364dab-62ce-491a-b158-ff3880865bf4 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Regular";
  font-style:  normal ;
  font-size: 16px;
  line-height: 2em;
  
  
}



#s-7de82cda-3109-4806-9b60-32326990440f {
  display: none;
}
#s-28ef872d-eaca-4361-ac1f-89ad984ae47d {
  display: none;
}
#s-9e40ee41-97be-4450-aa74-308d45de93ed {
  margin-top: 20px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(117, 97, 170, 1);
border-style: solid;
border-radius: 25px;
background-color: rgba(117, 97, 170, 1);
text-align: center;
cursor: pointer;
}
#s-9e40ee41-97be-4450-aa74-308d45de93ed:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9e40ee41-97be-4450-aa74-308d45de93ed:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9e40ee41-97be-4450-aa74-308d45de93ed {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-9e40ee41-97be-4450-aa74-308d45de93ed.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9e40ee41-97be-4450-aa74-308d45de93ed.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}

#s-9e40ee41-97be-4450-aa74-308d45de93ed.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-8f8aa54c-c7dd-4a9d-9860-52b427a66caa {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(117, 97, 170, 1);
border-style: solid;
border-radius: 25px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined -7px;
color: rgba(117, 97, 170, 1);
}
#s-8f8aa54c-c7dd-4a9d-9860-52b427a66caa:hover {background-color: rgba(117, 97, 170, 0.3) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-8f8aa54c-c7dd-4a9d-9860-52b427a66caa:active {background-color: rgba(2, 200, 215, 0.54) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-8f8aa54c-c7dd-4a9d-9860-52b427a66caa {
  padding-left: 28px;
padding-right: 28px;
}
}

  #s-8f8aa54c-c7dd-4a9d-9860-52b427a66caa-root {
    text-align: center;
  }


#s-8f8aa54c-c7dd-4a9d-9860-52b427a66caa.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8f8aa54c-c7dd-4a9d-9860-52b427a66caa-root {
    text-align: center;
  }


#s-8f8aa54c-c7dd-4a9d-9860-52b427a66caa.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8f8aa54c-c7dd-4a9d-9860-52b427a66caa-root {
    text-align: center;
  }


#s-8f8aa54c-c7dd-4a9d-9860-52b427a66caa.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8f8aa54c-c7dd-4a9d-9860-52b427a66caa-root {
    text-align: center;
  }


#s-8f8aa54c-c7dd-4a9d-9860-52b427a66caa.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8f8aa54c-c7dd-4a9d-9860-52b427a66caa-root {
    text-align: center;
  }


#s-8f8aa54c-c7dd-4a9d-9860-52b427a66caa.shg-btn {
  color: rgba(117, 97, 170, 1);
  font-size: 14px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-b685603f-027c-43be-8fe6-d43b3e2df380 {
  margin-left: 10%;
margin-right: 10%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b685603f-027c-43be-8fe6-d43b3e2df380 {
  margin-left: 5%;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-b685603f-027c-43be-8fe6-d43b3e2df380"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b685603f-027c-43be-8fe6-d43b3e2df380"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 992px) {
[id="s-b685603f-027c-43be-8fe6-d43b3e2df380"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 1200px) {
[id="s-b685603f-027c-43be-8fe6-d43b3e2df380"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

#s-da927b6e-b17c-455f-af71-914cf8b0dc6b {
  min-height: 50px;
}








#s-da927b6e-b17c-455f-af71-914cf8b0dc6b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-da927b6e-b17c-455f-af71-914cf8b0dc6b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6ae73957-0f19-4d71-a96c-c1edc7e48989 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-6ae73957-0f19-4d71-a96c-c1edc7e48989 {
  margin-left: 20%;
margin-right: 20%;
}
}@media (max-width: 767px){#s-6ae73957-0f19-4d71-a96c-c1edc7e48989 {
  margin-left: 10%;
margin-right: 10%;
}
}






  #s-6ae73957-0f19-4d71-a96c-c1edc7e48989 img.shogun-image {
    

    
    
    
  }


#s-6ae73957-0f19-4d71-a96c-c1edc7e48989 .shogun-image-content {
  
    align-items: center;
  
}

#s-6e23e26d-93a6-4310-951d-351825f12611 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6e23e26d-93a6-4310-951d-351825f12611 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.25em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-6e23e26d-93a6-4310-951d-351825f12611 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  
  
}


}
#s-c76d59ae-02be-4cac-bfc1-66569e0faae7 {
  margin-top: 7px;
margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 1200px){#s-c76d59ae-02be-4cac-bfc1-66569e0faae7 {
  margin-top: 35px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c76d59ae-02be-4cac-bfc1-66569e0faae7 {
  margin-top: 35px;
}
}@media (max-width: 767px){#s-c76d59ae-02be-4cac-bfc1-66569e0faae7 {
  margin-top: 15px;
}
}
#s-a3206864-59a5-4ae0-b30e-902798ea28a8 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-a3206864-59a5-4ae0-b30e-902798ea28a8 {
  margin-top: 60px;
margin-left: 20%;
margin-right: 20%;
}
}@media (max-width: 767px){#s-a3206864-59a5-4ae0-b30e-902798ea28a8 {
  margin-top: 50px;
margin-left: 10%;
margin-right: 10%;
}
}






  #s-a3206864-59a5-4ae0-b30e-902798ea28a8 img.shogun-image {
    

    
    
    
  }


#s-a3206864-59a5-4ae0-b30e-902798ea28a8 .shogun-image-content {
  
    align-items: center;
  
}

#s-806c45ef-3af6-4f47-8be9-4fe0bcf87b65 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-806c45ef-3af6-4f47-8be9-4fe0bcf87b65 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.25em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-806c45ef-3af6-4f47-8be9-4fe0bcf87b65 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  
  
}


}
@media (max-width: 767px){#s-94ef545f-3060-4c34-8b25-e6a6306276be {
  margin-top: 20px;
margin-bottom: 0px;
}
}
#s-94ef545f-3060-4c34-8b25-e6a6306276be {
  display: none;
}
#s-cff4b159-8c1f-4bb9-a29c-29ad1f75b040 {
  margin-top: 7px;
margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 1200px){#s-cff4b159-8c1f-4bb9-a29c-29ad1f75b040 {
  margin-top: 35px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cff4b159-8c1f-4bb9-a29c-29ad1f75b040 {
  margin-top: 35px;
}
}
#s-7fec5276-94b9-45f6-b318-039059f7a9cb {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-7fec5276-94b9-45f6-b318-039059f7a9cb {
  margin-top: 50px;
margin-left: 25%;
margin-right: 25%;
}
}@media (max-width: 767px){#s-7fec5276-94b9-45f6-b318-039059f7a9cb {
  margin-top: 55px;
margin-left: 10%;
margin-right: 10%;
}
}






  #s-7fec5276-94b9-45f6-b318-039059f7a9cb img.shogun-image {
    

    
    
    
  }


#s-7fec5276-94b9-45f6-b318-039059f7a9cb .shogun-image-content {
  
    align-items: center;
  
}

#s-df892c27-2206-4363-8955-13fa7f2d330e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-df892c27-2206-4363-8955-13fa7f2d330e .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.25em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-df892c27-2206-4363-8955-13fa7f2d330e .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  
  
}


}
#s-120724f4-d496-44f6-b114-ea5aaee4d615 {
  display: none;
}
#s-6a98b81b-f0df-4f90-8ea2-1e8b8d153fb7 {
  margin-top: 7px;
margin-left: 0%;
margin-right: 0%;
}
@media (min-width: 1200px){#s-6a98b81b-f0df-4f90-8ea2-1e8b8d153fb7 {
  margin-top: 35px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6a98b81b-f0df-4f90-8ea2-1e8b8d153fb7 {
  margin-top: 35px;
}
}@media (max-width: 767px){#s-6a98b81b-f0df-4f90-8ea2-1e8b8d153fb7 {
  margin-top: 15px;
}
}
@media (min-width: 1200px){#s-8f30f60b-b181-41b1-989e-f93a0018ac3a {
  display: none;
}
#s-8f30f60b-b181-41b1-989e-f93a0018ac3a, #wrap-s-8f30f60b-b181-41b1-989e-f93a0018ac3a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8f30f60b-b181-41b1-989e-f93a0018ac3a {
  display: none;
}
#s-8f30f60b-b181-41b1-989e-f93a0018ac3a, #wrap-s-8f30f60b-b181-41b1-989e-f93a0018ac3a { display:none !important; }}@media (max-width: 767px){#s-8f30f60b-b181-41b1-989e-f93a0018ac3a {
  display: none;
}
#s-8f30f60b-b181-41b1-989e-f93a0018ac3a, #wrap-s-8f30f60b-b181-41b1-989e-f93a0018ac3a { display:none !important; }}
@media (min-width: 0px) {
[id="s-8f30f60b-b181-41b1-989e-f93a0018ac3a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-8f30f60b-b181-41b1-989e-f93a0018ac3a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8f30f60b-b181-41b1-989e-f93a0018ac3a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8f30f60b-b181-41b1-989e-f93a0018ac3a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-40425136-24c2-4e02-8fed-4ed8768107ce {
  min-height: 50px;
}








#s-40425136-24c2-4e02-8fed-4ed8768107ce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-40425136-24c2-4e02-8fed-4ed8768107ce.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4d4284f7-d4f7-4cb6-a2e8-1f89acfc43ba {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-4d4284f7-d4f7-4cb6-a2e8-1f89acfc43ba {
  margin-left: 10%;
margin-right: 10%;
}
}@media (max-width: 767px){#s-4d4284f7-d4f7-4cb6-a2e8-1f89acfc43ba {
  margin-left: 15%;
margin-right: 15%;
}
}






  #s-4d4284f7-d4f7-4cb6-a2e8-1f89acfc43ba img.shogun-image {
    

    
    
    
  }


#s-4d4284f7-d4f7-4cb6-a2e8-1f89acfc43ba .shogun-image-content {
  
    align-items: center;
  
}

#s-843d4776-fecf-4e01-9831-2ef98487ef22 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-843d4776-fecf-4e01-9831-2ef98487ef22 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.25em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-843d4776-fecf-4e01-9831-2ef98487ef22 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  
  
}


}
#s-e0a28991-3556-499e-82d2-d11ad6e9bb98 {
  display: none;
}
#s-9c859fd9-4827-47fd-9b15-d176470e8fe8 {
  margin-top: 25px;
margin-left: 0%;
margin-bottom: 15px;
margin-right: 0%;
}

#s-fb297999-7dbc-40ba-9fca-473fa2c3bc58 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-fb297999-7dbc-40ba-9fca-473fa2c3bc58 {
  padding-top: 49px;
}
}







#s-fb297999-7dbc-40ba-9fca-473fa2c3bc58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fb297999-7dbc-40ba-9fca-473fa2c3bc58.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-306452be-5247-4e3f-81ac-30a60430266f {
  margin-left: 10%;
margin-right: 10%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-306452be-5247-4e3f-81ac-30a60430266f {
  margin-top: 50px;
}
}@media (max-width: 767px){#s-306452be-5247-4e3f-81ac-30a60430266f {
  margin-top: 55px;
}
}






  #s-306452be-5247-4e3f-81ac-30a60430266f img.shogun-image {
    

    
    
    
  }


#s-306452be-5247-4e3f-81ac-30a60430266f .shogun-image-content {
  
    align-items: center;
  
}

#s-6ffea245-1d44-408f-a74e-441fb49cdaf2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6ffea245-1d44-408f-a74e-441fb49cdaf2 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.25em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-6ffea245-1d44-408f-a74e-441fb49cdaf2 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  
  
}


}
#s-d1024cde-6d69-4d2e-820f-4f397dc036e5 {
  margin-top: 25px;
margin-left: 0%;
margin-bottom: 15px;
margin-right: 0%;
}

#s-cd8a05a7-806e-4d7c-8b4a-9f26e3ec86aa {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-cd8a05a7-806e-4d7c-8b4a-9f26e3ec86aa {
  margin-top: 0px;
margin-left: 10%;
margin-right: 10%;
}
}@media (max-width: 767px){#s-cd8a05a7-806e-4d7c-8b4a-9f26e3ec86aa {
  margin-top: 50px;
margin-left: 20%;
margin-right: 20%;
}
}






  #s-cd8a05a7-806e-4d7c-8b4a-9f26e3ec86aa img.shogun-image {
    

    
    
    
  }


#s-cd8a05a7-806e-4d7c-8b4a-9f26e3ec86aa .shogun-image-content {
  
    align-items: center;
  
}

#s-d1506e44-882c-4e2e-8281-624897ec0cfe {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d1506e44-882c-4e2e-8281-624897ec0cfe .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.25em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-d1506e44-882c-4e2e-8281-624897ec0cfe .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  
  
}


}
#s-152fb128-d236-403e-929e-4a17387ceb01 {
  display: none;
}
#s-dfcb8b86-31f6-44b5-891d-ae9942a0da67 {
  display: none;
}
#s-b38358db-89c1-442d-87b6-9e383bb143e7 {
  margin-top: 25px;
margin-left: 0%;
margin-bottom: 15px;
margin-right: 0%;
}

#s-51165a08-2f2e-4f97-bbf0-87f8f1341db7 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-51165a08-2f2e-4f97-bbf0-87f8f1341db7 {
  margin-top: 50px;
margin-bottom: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-51165a08-2f2e-4f97-bbf0-87f8f1341db7 {
  padding-top: 80px;
padding-bottom: 50px;
}
}







#s-51165a08-2f2e-4f97-bbf0-87f8f1341db7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-51165a08-2f2e-4f97-bbf0-87f8f1341db7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7c3b5615-8d7e-4449-890a-8448e3d82a15 {
  margin-top: 50px;
margin-bottom: 0px;
padding-top: 80px;
padding-bottom: 80px;
background-color: rgba(75, 143, 231, 0.17);
}
@media (min-width: 768px) and (max-width: 991px){#s-7c3b5615-8d7e-4449-890a-8448e3d82a15 {
  margin-top: 10px;
}
}@media (max-width: 767px){#s-7c3b5615-8d7e-4449-890a-8448e3d82a15 {
  margin-top: 50px;
padding-top: 20px;
padding-bottom: 20px;
}
}
@media (min-width: 0px) {
[id="s-7c3b5615-8d7e-4449-890a-8448e3d82a15"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7c3b5615-8d7e-4449-890a-8448e3d82a15"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-7c3b5615-8d7e-4449-890a-8448e3d82a15"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-7c3b5615-8d7e-4449-890a-8448e3d82a15"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-7c3b5615-8d7e-4449-890a-8448e3d82a15"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-7c3b5615-8d7e-4449-890a-8448e3d82a15"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-7c3b5615-8d7e-4449-890a-8448e3d82a15"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

#s-dcc7015a-3cfb-41d4-aef2-73f24623bbb6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dcc7015a-3cfb-41d4-aef2-73f24623bbb6 .shogun-heading-component h1 {
  color: rgba(36, 36, 38, 1);
  font-weight:  normal ;
  font-family: "NeutralStd-Bold";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



@media (min-width: 768px) and (max-width: 991px){#s-d1356835-d673-4b7f-bc34-eda0a4b018c8 {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-d1356835-d673-4b7f-bc34-eda0a4b018c8 {
  margin-left: 2%;
margin-right: 2%;
}
}
#s-a995799a-dd70-4db5-9ade-0c0d982ccdd2 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 40px;
border-radius: 25px;
background-color: rgba(75, 143, 231, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-a995799a-dd70-4db5-9ade-0c0d982ccdd2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a995799a-dd70-4db5-9ade-0c0d982ccdd2:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-a995799a-dd70-4db5-9ade-0c0d982ccdd2 {
  margin-top: 25px;
margin-bottom: 10px;
padding-top: 14px;
padding-left: 75px;
padding-bottom: 14px;
padding-right: 75px;
}
}

  #s-a995799a-dd70-4db5-9ade-0c0d982ccdd2-root {
    text-align: center;
  }


#s-a995799a-dd70-4db5-9ade-0c0d982ccdd2.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a995799a-dd70-4db5-9ade-0c0d982ccdd2-root {
    text-align: center;
  }


#s-a995799a-dd70-4db5-9ade-0c0d982ccdd2.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a995799a-dd70-4db5-9ade-0c0d982ccdd2-root {
    text-align: center;
  }


#s-a995799a-dd70-4db5-9ade-0c0d982ccdd2.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a995799a-dd70-4db5-9ade-0c0d982ccdd2-root {
    text-align: center;
  }


#s-a995799a-dd70-4db5-9ade-0c0d982ccdd2.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a995799a-dd70-4db5-9ade-0c0d982ccdd2-root {
    text-align: center;
  }


#s-a995799a-dd70-4db5-9ade-0c0d982ccdd2.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  font-family: NeutralStd-Medium;
  display:  inline-block ;
}
}
#s-29e27315-b1a7-4185-8129-84696d435f3b {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
background-color: rgba(75, 143, 231, 0.69);
}
@media (min-width: 1200px){#s-29e27315-b1a7-4185-8129-84696d435f3b {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-29e27315-b1a7-4185-8129-84696d435f3b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-29e27315-b1a7-4185-8129-84696d435f3b {
  
}
}@media (max-width: 767px){#s-29e27315-b1a7-4185-8129-84696d435f3b {
  
}
}







#s-29e27315-b1a7-4185-8129-84696d435f3b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-29e27315-b1a7-4185-8129-84696d435f3b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-b647053a-9e89-456e-a110-2928d2392558 {
  margin-top: 40px;
margin-left: 40px;
margin-bottom: 40px;
margin-right: 40px;
}
@media (min-width: 1200px){#s-b647053a-9e89-456e-a110-2928d2392558 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b647053a-9e89-456e-a110-2928d2392558 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b647053a-9e89-456e-a110-2928d2392558 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-b647053a-9e89-456e-a110-2928d2392558 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}
}
@media (min-width: 0px) {
[id="s-b647053a-9e89-456e-a110-2928d2392558"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b647053a-9e89-456e-a110-2928d2392558"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 26.666666666666668px);
}

[id="s-b647053a-9e89-456e-a110-2928d2392558"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 26.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-b647053a-9e89-456e-a110-2928d2392558"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 26.666666666666668px);
}

[id="s-b647053a-9e89-456e-a110-2928d2392558"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 26.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-b647053a-9e89-456e-a110-2928d2392558"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 26.666666666666668px);
}

[id="s-b647053a-9e89-456e-a110-2928d2392558"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 26.666666666666668px);
}

}

#s-8dd6c2c1-ccda-45bb-be6c-09ddbfed3e07 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 0.47);
}
@media (min-width: 1200px){#s-8dd6c2c1-ccda-45bb-be6c-09ddbfed3e07 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8dd6c2c1-ccda-45bb-be6c-09ddbfed3e07 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-8dd6c2c1-ccda-45bb-be6c-09ddbfed3e07 {
  
}
}@media (max-width: 767px){#s-8dd6c2c1-ccda-45bb-be6c-09ddbfed3e07 {
  
}
}







#s-8dd6c2c1-ccda-45bb-be6c-09ddbfed3e07 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8dd6c2c1-ccda-45bb-be6c-09ddbfed3e07.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0e82deb5-d498-40ea-b600-4802314fa174 {
  margin-top: 40px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
text-align: center;
}
@media (min-width: 1200px){#s-0e82deb5-d498-40ea-b600-4802314fa174 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0e82deb5-d498-40ea-b600-4802314fa174 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-0e82deb5-d498-40ea-b600-4802314fa174 {
  
}
}@media (max-width: 767px){#s-0e82deb5-d498-40ea-b600-4802314fa174 {
  
}
}
#s-0e82deb5-d498-40ea-b600-4802314fa174 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



.shg-social-alignable {
  display: inline-block;
}

.shg-social-container {
  display: flex;
}

.shg-social-element {
  display: inline-block;
  border: none !important;
  padding: 0px !important;
}

#s-a9e8d0f5-4293-4b0d-b0d0-4b12fa9a3e82 {
  margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
text-align: center;
}

@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:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{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,.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:focus,.shg-lightbox .shg-lightbox-close:hover{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 .3s}.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}