.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-a87a82f8-a6ec-4a32-8f7a-98c63f9ead4b {
  min-height: 50px;
}
@media (min-width: 1200px){#s-a87a82f8-a6ec-4a32-8f7a-98c63f9ead4b {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a87a82f8-a6ec-4a32-8f7a-98c63f9ead4b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a87a82f8-a6ec-4a32-8f7a-98c63f9ead4b {
  
}
}@media (max-width: 767px){#s-a87a82f8-a6ec-4a32-8f7a-98c63f9ead4b {
  
}
}







#s-a87a82f8-a6ec-4a32-8f7a-98c63f9ead4b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a87a82f8-a6ec-4a32-8f7a-98c63f9ead4b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.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-a82b6aec-d7b0-4bf2-a6e3-1c34dadab46e {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-a82b6aec-d7b0-4bf2-a6e3-1c34dadab46e .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-a82b6aec-d7b0-4bf2-a6e3-1c34dadab46e .shg-sld-nav-button.shg-sld-left,
#s-a82b6aec-d7b0-4bf2-a6e3-1c34dadab46e .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-1195986a-be75-4600-bd3a-244aade554f0 {
  background-size: cover;
padding-top: 50px;
padding-left: 10%;
padding-bottom: 30px;
padding-right: 10%;
background-position: center center;
}
@media (max-width: 767px){#s-1195986a-be75-4600-bd3a-244aade554f0 {
  padding-left: 7%;
padding-right: 7%;
}
}







#s-1195986a-be75-4600-bd3a-244aade554f0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1195986a-be75-4600-bd3a-244aade554f0.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.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-26dd46b3-b59d-434e-bc07-3af91f3659d1 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-26dd46b3-b59d-434e-bc07-3af91f3659d1 .shogun-heading-component h1 {
  color: rgba(15, 15, 15, 1);
  font-weight:  700 ;
  font-family: "Roboto Condensed";
  font-style:  normal ;
  font-size: 36px;
  
  letter-spacing: 0.36px;
  
}



#s-708590fa-f712-4cc4-938b-551707c867e0 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: center;
}

#s-708590fa-f712-4cc4-938b-551707c867e0 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: center;
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-f3fbb912-ceac-458b-9f14-43dd498748d2 {
  margin-top: 10px;
}
@media (min-width: 1200px){#s-f3fbb912-ceac-458b-9f14-43dd498748d2 {
  display: none;
}
#s-f3fbb912-ceac-458b-9f14-43dd498748d2, #wrap-s-f3fbb912-ceac-458b-9f14-43dd498748d2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f3fbb912-ceac-458b-9f14-43dd498748d2 {
  display: none;
}
#s-f3fbb912-ceac-458b-9f14-43dd498748d2, #wrap-s-f3fbb912-ceac-458b-9f14-43dd498748d2 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f3fbb912-ceac-458b-9f14-43dd498748d2 {
  display: none;
}
#s-f3fbb912-ceac-458b-9f14-43dd498748d2, #wrap-s-f3fbb912-ceac-458b-9f14-43dd498748d2 { display:none !important; }}
#s-7ad27462-d589-4aa6-b176-93bbeefffac0 {
  margin-top: 10px;
}
@media (max-width: 767px){#s-7ad27462-d589-4aa6-b176-93bbeefffac0 {
  display: none;
}
#s-7ad27462-d589-4aa6-b176-93bbeefffac0, #wrap-s-7ad27462-d589-4aa6-b176-93bbeefffac0 { display:none !important; }}
#s-d6b72daa-b43b-40ea-a292-06c3abcbc38d {
  padding-top: 40px;
padding-left: 40px;
padding-bottom: 40px;
padding-right: 40px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-d6b72daa-b43b-40ea-a292-06c3abcbc38d {
  margin-bottom: 100px;
padding-top: 0px;
padding-bottom: 0px;
}
}







#s-d6b72daa-b43b-40ea-a292-06c3abcbc38d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d6b72daa-b43b-40ea-a292-06c3abcbc38d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-98a3d790-0542-46e0-86b5-3d35ae2538d3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-98a3d790-0542-46e0-86b5-3d35ae2538d3 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto Condensed";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



@media (min-width: 1200px){#s-df62d24e-f621-4f1c-9df1-d42e2dfc70b7 {
  display: none;
}
#s-df62d24e-f621-4f1c-9df1-d42e2dfc70b7, #wrap-s-df62d24e-f621-4f1c-9df1-d42e2dfc70b7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-df62d24e-f621-4f1c-9df1-d42e2dfc70b7 {
  display: none;
}
#s-df62d24e-f621-4f1c-9df1-d42e2dfc70b7, #wrap-s-df62d24e-f621-4f1c-9df1-d42e2dfc70b7 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-df62d24e-f621-4f1c-9df1-d42e2dfc70b7 {
  
}
}
#s-b6fcce44-6792-4799-9d75-b71fccf16aaa {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-b6fcce44-6792-4799-9d75-b71fccf16aaa {
  display: none;
}
#s-b6fcce44-6792-4799-9d75-b71fccf16aaa, #wrap-s-b6fcce44-6792-4799-9d75-b71fccf16aaa { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b6fcce44-6792-4799-9d75-b71fccf16aaa {
  display: none;
}
#s-b6fcce44-6792-4799-9d75-b71fccf16aaa, #wrap-s-b6fcce44-6792-4799-9d75-b71fccf16aaa { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b6fcce44-6792-4799-9d75-b71fccf16aaa {
  
}
}
#s-b6fcce44-6792-4799-9d75-b71fccf16aaa .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-b6fcce44-6792-4799-9d75-b71fccf16aaa .shg-sld-nav-button.shg-sld-left,
#s-b6fcce44-6792-4799-9d75-b71fccf16aaa .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-5461db56-17b4-497b-9eba-9e13c0f94ca1 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-5461db56-17b4-497b-9eba-9e13c0f94ca1 {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-5461db56-17b4-497b-9eba-9e13c0f94ca1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5461db56-17b4-497b-9eba-9e13c0f94ca1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image.hover ~ * {
  z-index: 1;
}

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

#s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 img.shogun-image,
  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 {
    width: 100%;
    height: auto;
  }

  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shogun-image {
    
    
  }


.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 .shogun-image-content {
  
    align-items: center;
  
}

.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 img.shogun-image,
  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 {
    width: 100%;
    height: auto;
  }

  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shogun-image {
    
    
  }


.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 .shogun-image-content {
  
    align-items: center;
  
}

.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shogun-image {
  box-sizing: border-box;
}

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



  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 img.shogun-image,
  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 {
    width: 100%;
    height: auto;
  }

  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shogun-image {
    
    
  }


.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 .shogun-image-content {
  
    align-items: center;
  
}

.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shogun-image {
  box-sizing: border-box;
}

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



  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 img.shogun-image,
  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 {
    width: 100%;
    height: auto;
  }

  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shogun-image {
    
    
  }


.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 .shogun-image-content {
  
    align-items: center;
  
}

.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shogun-image {
  box-sizing: border-box;
}

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



  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 img.shogun-image,
  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 {
    width: 100%;
    height: auto;
  }

  #s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shogun-image {
    
    
  }


.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2 .shogun-image-content {
  
    align-items: center;
  
}

.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e23544cd-c75d-4a7b-88d4-352940ec2bf2.shogun-image {
  box-sizing: border-box;
}

}
#s-862081da-50f1-4773-858d-ff23499b063f {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-862081da-50f1-4773-858d-ff23499b063f .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-544bad3c-477b-4f1e-95fc-4d6f49ec7ac3 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-544bad3c-477b-4f1e-95fc-4d6f49ec7ac3 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



.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-f98fad4c-3c98-45ed-9aae-f13a244311a9 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f98fad4c-3c98-45ed-9aae-f13a244311a9:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-f98fad4c-3c98-45ed-9aae-f13a244311a9:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-f98fad4c-3c98-45ed-9aae-f13a244311a9 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-f98fad4c-3c98-45ed-9aae-f13a244311a9 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-f98fad4c-3c98-45ed-9aae-f13a244311a9-root {
    text-align: center;
  }


#s-f98fad4c-3c98-45ed-9aae-f13a244311a9.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f98fad4c-3c98-45ed-9aae-f13a244311a9-root {
    text-align: center;
  }


#s-f98fad4c-3c98-45ed-9aae-f13a244311a9.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f98fad4c-3c98-45ed-9aae-f13a244311a9-root {
    text-align: center;
  }


#s-f98fad4c-3c98-45ed-9aae-f13a244311a9.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f98fad4c-3c98-45ed-9aae-f13a244311a9-root {
    text-align: center;
  }


#s-f98fad4c-3c98-45ed-9aae-f13a244311a9.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f98fad4c-3c98-45ed-9aae-f13a244311a9-root {
    text-align: center;
  }


#s-f98fad4c-3c98-45ed-9aae-f13a244311a9.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-6bc30ea1-57ec-4611-a046-57c7a0c5ccaa {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-6bc30ea1-57ec-4611-a046-57c7a0c5ccaa {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-6bc30ea1-57ec-4611-a046-57c7a0c5ccaa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6bc30ea1-57ec-4611-a046-57c7a0c5ccaa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-daa3c3e7-5f62-46a0-82f6-a03c10378458 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 img.shogun-image,
  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 {
    width: 100%;
    height: auto;
  }

  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shogun-image {
    
    
  }


.s-daa3c3e7-5f62-46a0-82f6-a03c10378458 .shogun-image-content {
  
    align-items: center;
  
}

.s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shg-align-container {
  display: flex;
  justify-content: center
}

.s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 img.shogun-image,
  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 {
    width: 100%;
    height: auto;
  }

  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shogun-image {
    
    
  }


.s-daa3c3e7-5f62-46a0-82f6-a03c10378458 .shogun-image-content {
  
    align-items: center;
  
}

.s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shg-align-container {
  display: flex;
  justify-content: center
}

.s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shogun-image {
  box-sizing: border-box;
}

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



  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 img.shogun-image,
  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 {
    width: 100%;
    height: auto;
  }

  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shogun-image {
    
    
  }


.s-daa3c3e7-5f62-46a0-82f6-a03c10378458 .shogun-image-content {
  
    align-items: center;
  
}

.s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shg-align-container {
  display: flex;
  justify-content: center
}

.s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shogun-image {
  box-sizing: border-box;
}

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



  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 img.shogun-image,
  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 {
    width: 100%;
    height: auto;
  }

  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shogun-image {
    
    
  }


.s-daa3c3e7-5f62-46a0-82f6-a03c10378458 .shogun-image-content {
  
    align-items: center;
  
}

.s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shg-align-container {
  display: flex;
  justify-content: center
}

.s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shogun-image {
  box-sizing: border-box;
}

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



  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 img.shogun-image,
  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 {
    width: 100%;
    height: auto;
  }

  #s-daa3c3e7-5f62-46a0-82f6-a03c10378458 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shogun-image {
    
    
  }


.s-daa3c3e7-5f62-46a0-82f6-a03c10378458 .shogun-image-content {
  
    align-items: center;
  
}

.s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shg-align-container {
  display: flex;
  justify-content: center
}

.s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-daa3c3e7-5f62-46a0-82f6-a03c10378458.shogun-image {
  box-sizing: border-box;
}

}
#s-7c386579-4c51-40e2-8a18-a7cd0ec7ee76 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-7c386579-4c51-40e2-8a18-a7cd0ec7ee76 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-4b0f98cb-8ec0-4bac-8459-0f4fe7f143c9 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-4b0f98cb-8ec0-4bac-8459-0f4fe7f143c9 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-5be73c39-ca34-4883-8701-4ea5edd809f4 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-5be73c39-ca34-4883-8701-4ea5edd809f4:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-5be73c39-ca34-4883-8701-4ea5edd809f4:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-5be73c39-ca34-4883-8701-4ea5edd809f4 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-5be73c39-ca34-4883-8701-4ea5edd809f4 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-5be73c39-ca34-4883-8701-4ea5edd809f4-root {
    text-align: center;
  }


#s-5be73c39-ca34-4883-8701-4ea5edd809f4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-5be73c39-ca34-4883-8701-4ea5edd809f4-root {
    text-align: center;
  }


#s-5be73c39-ca34-4883-8701-4ea5edd809f4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5be73c39-ca34-4883-8701-4ea5edd809f4-root {
    text-align: center;
  }


#s-5be73c39-ca34-4883-8701-4ea5edd809f4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5be73c39-ca34-4883-8701-4ea5edd809f4-root {
    text-align: center;
  }


#s-5be73c39-ca34-4883-8701-4ea5edd809f4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-5be73c39-ca34-4883-8701-4ea5edd809f4-root {
    text-align: center;
  }


#s-5be73c39-ca34-4883-8701-4ea5edd809f4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
.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-2f10d98f-fcce-4769-b2e6-05265f22e574 {
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px){#s-2f10d98f-fcce-4769-b2e6-05265f22e574 {
  display: none;
}
#s-2f10d98f-fcce-4769-b2e6-05265f22e574, #wrap-s-2f10d98f-fcce-4769-b2e6-05265f22e574 { display:none !important; }}@media (max-width: 767px){#s-2f10d98f-fcce-4769-b2e6-05265f22e574 {
  margin-bottom: 10px;
display: none;
}
#s-2f10d98f-fcce-4769-b2e6-05265f22e574, #wrap-s-2f10d98f-fcce-4769-b2e6-05265f22e574 { display:none !important; }}
@media (min-width: 0px) {
[id="s-2f10d98f-fcce-4769-b2e6-05265f22e574"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2f10d98f-fcce-4769-b2e6-05265f22e574"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-2f10d98f-fcce-4769-b2e6-05265f22e574"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-2f10d98f-fcce-4769-b2e6-05265f22e574"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-653b232e-cf14-48c0-9480-3eb14b2d2dae {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-653b232e-cf14-48c0-9480-3eb14b2d2dae {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-653b232e-cf14-48c0-9480-3eb14b2d2dae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-653b232e-cf14-48c0-9480-3eb14b2d2dae.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3827504a-2405-43d6-80b8-2631bfe84176 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-3827504a-2405-43d6-80b8-2631bfe84176 img.shogun-image,
  #s-3827504a-2405-43d6-80b8-2631bfe84176 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3827504a-2405-43d6-80b8-2631bfe84176 {
    width: 100%;
    height: auto;
  }

  #s-3827504a-2405-43d6-80b8-2631bfe84176 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3827504a-2405-43d6-80b8-2631bfe84176.shogun-image {
    
    
  }


.s-3827504a-2405-43d6-80b8-2631bfe84176 .shogun-image-content {
  
    align-items: center;
  
}

.s-3827504a-2405-43d6-80b8-2631bfe84176.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3827504a-2405-43d6-80b8-2631bfe84176.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3827504a-2405-43d6-80b8-2631bfe84176.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-3827504a-2405-43d6-80b8-2631bfe84176 img.shogun-image,
  #s-3827504a-2405-43d6-80b8-2631bfe84176 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3827504a-2405-43d6-80b8-2631bfe84176 {
    width: 100%;
    height: auto;
  }

  #s-3827504a-2405-43d6-80b8-2631bfe84176 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3827504a-2405-43d6-80b8-2631bfe84176.shogun-image {
    
    
  }


.s-3827504a-2405-43d6-80b8-2631bfe84176 .shogun-image-content {
  
    align-items: center;
  
}

.s-3827504a-2405-43d6-80b8-2631bfe84176.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3827504a-2405-43d6-80b8-2631bfe84176.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3827504a-2405-43d6-80b8-2631bfe84176.shogun-image {
  box-sizing: border-box;
}

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



  #s-3827504a-2405-43d6-80b8-2631bfe84176 img.shogun-image,
  #s-3827504a-2405-43d6-80b8-2631bfe84176 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3827504a-2405-43d6-80b8-2631bfe84176 {
    width: 100%;
    height: auto;
  }

  #s-3827504a-2405-43d6-80b8-2631bfe84176 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3827504a-2405-43d6-80b8-2631bfe84176.shogun-image {
    
    
  }


.s-3827504a-2405-43d6-80b8-2631bfe84176 .shogun-image-content {
  
    align-items: center;
  
}

.s-3827504a-2405-43d6-80b8-2631bfe84176.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3827504a-2405-43d6-80b8-2631bfe84176.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3827504a-2405-43d6-80b8-2631bfe84176.shogun-image {
  box-sizing: border-box;
}

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



  #s-3827504a-2405-43d6-80b8-2631bfe84176 img.shogun-image,
  #s-3827504a-2405-43d6-80b8-2631bfe84176 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3827504a-2405-43d6-80b8-2631bfe84176 {
    width: 100%;
    height: auto;
  }

  #s-3827504a-2405-43d6-80b8-2631bfe84176 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3827504a-2405-43d6-80b8-2631bfe84176.shogun-image {
    
    
  }


.s-3827504a-2405-43d6-80b8-2631bfe84176 .shogun-image-content {
  
    align-items: center;
  
}

.s-3827504a-2405-43d6-80b8-2631bfe84176.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3827504a-2405-43d6-80b8-2631bfe84176.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3827504a-2405-43d6-80b8-2631bfe84176.shogun-image {
  box-sizing: border-box;
}

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



  #s-3827504a-2405-43d6-80b8-2631bfe84176 img.shogun-image,
  #s-3827504a-2405-43d6-80b8-2631bfe84176 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3827504a-2405-43d6-80b8-2631bfe84176 {
    width: 100%;
    height: auto;
  }

  #s-3827504a-2405-43d6-80b8-2631bfe84176 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3827504a-2405-43d6-80b8-2631bfe84176.shogun-image {
    
    
  }


.s-3827504a-2405-43d6-80b8-2631bfe84176 .shogun-image-content {
  
    align-items: center;
  
}

.s-3827504a-2405-43d6-80b8-2631bfe84176.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3827504a-2405-43d6-80b8-2631bfe84176.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3827504a-2405-43d6-80b8-2631bfe84176.shogun-image {
  box-sizing: border-box;
}

}
#s-a9a633e9-9fe5-4a0a-9da7-33ab605ceb31 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-a9a633e9-9fe5-4a0a-9da7-33ab605ceb31 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-79451acb-e534-4b4f-abb3-aa1ccf6544ae {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-79451acb-e534-4b4f-abb3-aa1ccf6544ae .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-98bc91d7-1531-4c71-aa8a-d72671bb18de {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-98bc91d7-1531-4c71-aa8a-d72671bb18de:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-98bc91d7-1531-4c71-aa8a-d72671bb18de:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-98bc91d7-1531-4c71-aa8a-d72671bb18de {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-98bc91d7-1531-4c71-aa8a-d72671bb18de {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-98bc91d7-1531-4c71-aa8a-d72671bb18de-root {
    text-align: center;
  }


#s-98bc91d7-1531-4c71-aa8a-d72671bb18de.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-98bc91d7-1531-4c71-aa8a-d72671bb18de-root {
    text-align: center;
  }


#s-98bc91d7-1531-4c71-aa8a-d72671bb18de.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-98bc91d7-1531-4c71-aa8a-d72671bb18de-root {
    text-align: center;
  }


#s-98bc91d7-1531-4c71-aa8a-d72671bb18de.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-98bc91d7-1531-4c71-aa8a-d72671bb18de-root {
    text-align: center;
  }


#s-98bc91d7-1531-4c71-aa8a-d72671bb18de.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-98bc91d7-1531-4c71-aa8a-d72671bb18de-root {
    text-align: center;
  }


#s-98bc91d7-1531-4c71-aa8a-d72671bb18de.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-fa4f7e09-0d57-44f7-bef7-1f93198ff211 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-fa4f7e09-0d57-44f7-bef7-1f93198ff211 {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-fa4f7e09-0d57-44f7-bef7-1f93198ff211 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fa4f7e09-0d57-44f7-bef7-1f93198ff211.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f img.shogun-image,
  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f {
    width: 100%;
    height: auto;
  }

  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shogun-image {
    
    
  }


.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f .shogun-image-content {
  
    align-items: center;
  
}

.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f img.shogun-image,
  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f {
    width: 100%;
    height: auto;
  }

  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shogun-image {
    
    
  }


.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f .shogun-image-content {
  
    align-items: center;
  
}

.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shogun-image {
  box-sizing: border-box;
}

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



  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f img.shogun-image,
  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f {
    width: 100%;
    height: auto;
  }

  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shogun-image {
    
    
  }


.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f .shogun-image-content {
  
    align-items: center;
  
}

.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shogun-image {
  box-sizing: border-box;
}

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



  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f img.shogun-image,
  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f {
    width: 100%;
    height: auto;
  }

  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shogun-image {
    
    
  }


.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f .shogun-image-content {
  
    align-items: center;
  
}

.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shogun-image {
  box-sizing: border-box;
}

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



  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f img.shogun-image,
  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f {
    width: 100%;
    height: auto;
  }

  #s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shogun-image {
    
    
  }


.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f .shogun-image-content {
  
    align-items: center;
  
}

.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ca210db-6b1a-405f-8a14-61a4eb1d1f0f.shogun-image {
  box-sizing: border-box;
}

}
#s-021d4003-aa5f-4a70-90f7-c547eaf98db1 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-021d4003-aa5f-4a70-90f7-c547eaf98db1 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-040ab650-d159-4a8e-a595-807eb55aa118 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-040ab650-d159-4a8e-a595-807eb55aa118 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-f0a97c1e-84b6-4efe-b2ec-ab2b867fecac {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f0a97c1e-84b6-4efe-b2ec-ab2b867fecac:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-f0a97c1e-84b6-4efe-b2ec-ab2b867fecac:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-f0a97c1e-84b6-4efe-b2ec-ab2b867fecac {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-f0a97c1e-84b6-4efe-b2ec-ab2b867fecac {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-f0a97c1e-84b6-4efe-b2ec-ab2b867fecac-root {
    text-align: center;
  }


#s-f0a97c1e-84b6-4efe-b2ec-ab2b867fecac.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f0a97c1e-84b6-4efe-b2ec-ab2b867fecac-root {
    text-align: center;
  }


#s-f0a97c1e-84b6-4efe-b2ec-ab2b867fecac.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f0a97c1e-84b6-4efe-b2ec-ab2b867fecac-root {
    text-align: center;
  }


#s-f0a97c1e-84b6-4efe-b2ec-ab2b867fecac.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f0a97c1e-84b6-4efe-b2ec-ab2b867fecac-root {
    text-align: center;
  }


#s-f0a97c1e-84b6-4efe-b2ec-ab2b867fecac.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f0a97c1e-84b6-4efe-b2ec-ab2b867fecac-root {
    text-align: center;
  }


#s-f0a97c1e-84b6-4efe-b2ec-ab2b867fecac.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-85f2d8f3-9e31-4754-90d3-710329e1a9ba {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-85f2d8f3-9e31-4754-90d3-710329e1a9ba {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-85f2d8f3-9e31-4754-90d3-710329e1a9ba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-85f2d8f3-9e31-4754-90d3-710329e1a9ba.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6e652367-b0e9-46b2-9d26-ecd977c2b594 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 img.shogun-image,
  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 {
    width: 100%;
    height: auto;
  }

  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shogun-image {
    
    
  }


.s-6e652367-b0e9-46b2-9d26-ecd977c2b594 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 img.shogun-image,
  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 {
    width: 100%;
    height: auto;
  }

  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shogun-image {
    
    
  }


.s-6e652367-b0e9-46b2-9d26-ecd977c2b594 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shogun-image {
  box-sizing: border-box;
}

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



  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 img.shogun-image,
  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 {
    width: 100%;
    height: auto;
  }

  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shogun-image {
    
    
  }


.s-6e652367-b0e9-46b2-9d26-ecd977c2b594 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shogun-image {
  box-sizing: border-box;
}

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



  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 img.shogun-image,
  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 {
    width: 100%;
    height: auto;
  }

  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shogun-image {
    
    
  }


.s-6e652367-b0e9-46b2-9d26-ecd977c2b594 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shogun-image {
  box-sizing: border-box;
}

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



  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 img.shogun-image,
  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 {
    width: 100%;
    height: auto;
  }

  #s-6e652367-b0e9-46b2-9d26-ecd977c2b594 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shogun-image {
    
    
  }


.s-6e652367-b0e9-46b2-9d26-ecd977c2b594 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e652367-b0e9-46b2-9d26-ecd977c2b594.shogun-image {
  box-sizing: border-box;
}

}
#s-9fedf1b9-361c-4cc7-b286-5287f61f7409 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-9fedf1b9-361c-4cc7-b286-5287f61f7409 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-820cd680-ae5d-4e70-b34f-10ddd6b8fa71 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-820cd680-ae5d-4e70-b34f-10ddd6b8fa71 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-dff57939-5f34-475c-b951-0fe7974a8215 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-dff57939-5f34-475c-b951-0fe7974a8215:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-dff57939-5f34-475c-b951-0fe7974a8215:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-dff57939-5f34-475c-b951-0fe7974a8215 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-dff57939-5f34-475c-b951-0fe7974a8215 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-dff57939-5f34-475c-b951-0fe7974a8215-root {
    text-align: center;
  }


#s-dff57939-5f34-475c-b951-0fe7974a8215.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-dff57939-5f34-475c-b951-0fe7974a8215-root {
    text-align: center;
  }


#s-dff57939-5f34-475c-b951-0fe7974a8215.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-dff57939-5f34-475c-b951-0fe7974a8215-root {
    text-align: center;
  }


#s-dff57939-5f34-475c-b951-0fe7974a8215.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-dff57939-5f34-475c-b951-0fe7974a8215-root {
    text-align: center;
  }


#s-dff57939-5f34-475c-b951-0fe7974a8215.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-dff57939-5f34-475c-b951-0fe7974a8215-root {
    text-align: center;
  }


#s-dff57939-5f34-475c-b951-0fe7974a8215.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-8ac79146-78c2-47d7-b1b9-6a8329eb0cab {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-8ac79146-78c2-47d7-b1b9-6a8329eb0cab {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-8ac79146-78c2-47d7-b1b9-6a8329eb0cab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8ac79146-78c2-47d7-b1b9-6a8329eb0cab.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9cef5891-897a-4b42-af44-19db1ff60a13 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-9cef5891-897a-4b42-af44-19db1ff60a13 img.shogun-image,
  #s-9cef5891-897a-4b42-af44-19db1ff60a13 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9cef5891-897a-4b42-af44-19db1ff60a13 {
    width: 100%;
    height: auto;
  }

  #s-9cef5891-897a-4b42-af44-19db1ff60a13 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9cef5891-897a-4b42-af44-19db1ff60a13.shogun-image {
    
    
  }


.s-9cef5891-897a-4b42-af44-19db1ff60a13 .shogun-image-content {
  
    align-items: center;
  
}

.s-9cef5891-897a-4b42-af44-19db1ff60a13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9cef5891-897a-4b42-af44-19db1ff60a13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cef5891-897a-4b42-af44-19db1ff60a13.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-9cef5891-897a-4b42-af44-19db1ff60a13 img.shogun-image,
  #s-9cef5891-897a-4b42-af44-19db1ff60a13 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9cef5891-897a-4b42-af44-19db1ff60a13 {
    width: 100%;
    height: auto;
  }

  #s-9cef5891-897a-4b42-af44-19db1ff60a13 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9cef5891-897a-4b42-af44-19db1ff60a13.shogun-image {
    
    
  }


.s-9cef5891-897a-4b42-af44-19db1ff60a13 .shogun-image-content {
  
    align-items: center;
  
}

.s-9cef5891-897a-4b42-af44-19db1ff60a13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9cef5891-897a-4b42-af44-19db1ff60a13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cef5891-897a-4b42-af44-19db1ff60a13.shogun-image {
  box-sizing: border-box;
}

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



  #s-9cef5891-897a-4b42-af44-19db1ff60a13 img.shogun-image,
  #s-9cef5891-897a-4b42-af44-19db1ff60a13 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9cef5891-897a-4b42-af44-19db1ff60a13 {
    width: 100%;
    height: auto;
  }

  #s-9cef5891-897a-4b42-af44-19db1ff60a13 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9cef5891-897a-4b42-af44-19db1ff60a13.shogun-image {
    
    
  }


.s-9cef5891-897a-4b42-af44-19db1ff60a13 .shogun-image-content {
  
    align-items: center;
  
}

.s-9cef5891-897a-4b42-af44-19db1ff60a13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9cef5891-897a-4b42-af44-19db1ff60a13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cef5891-897a-4b42-af44-19db1ff60a13.shogun-image {
  box-sizing: border-box;
}

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



  #s-9cef5891-897a-4b42-af44-19db1ff60a13 img.shogun-image,
  #s-9cef5891-897a-4b42-af44-19db1ff60a13 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9cef5891-897a-4b42-af44-19db1ff60a13 {
    width: 100%;
    height: auto;
  }

  #s-9cef5891-897a-4b42-af44-19db1ff60a13 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9cef5891-897a-4b42-af44-19db1ff60a13.shogun-image {
    
    
  }


.s-9cef5891-897a-4b42-af44-19db1ff60a13 .shogun-image-content {
  
    align-items: center;
  
}

.s-9cef5891-897a-4b42-af44-19db1ff60a13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9cef5891-897a-4b42-af44-19db1ff60a13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cef5891-897a-4b42-af44-19db1ff60a13.shogun-image {
  box-sizing: border-box;
}

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



  #s-9cef5891-897a-4b42-af44-19db1ff60a13 img.shogun-image,
  #s-9cef5891-897a-4b42-af44-19db1ff60a13 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9cef5891-897a-4b42-af44-19db1ff60a13 {
    width: 100%;
    height: auto;
  }

  #s-9cef5891-897a-4b42-af44-19db1ff60a13 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9cef5891-897a-4b42-af44-19db1ff60a13.shogun-image {
    
    
  }


.s-9cef5891-897a-4b42-af44-19db1ff60a13 .shogun-image-content {
  
    align-items: center;
  
}

.s-9cef5891-897a-4b42-af44-19db1ff60a13.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9cef5891-897a-4b42-af44-19db1ff60a13.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cef5891-897a-4b42-af44-19db1ff60a13.shogun-image {
  box-sizing: border-box;
}

}
#s-268a3138-87f9-4bfa-a5d6-c08288c050c3 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-268a3138-87f9-4bfa-a5d6-c08288c050c3 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-83706951-c361-4481-9c40-f677ca6498bb {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-83706951-c361-4481-9c40-f677ca6498bb .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-2c3af63e-ea57-43aa-ad0f-4b29c662b0a8 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-2c3af63e-ea57-43aa-ad0f-4b29c662b0a8:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-2c3af63e-ea57-43aa-ad0f-4b29c662b0a8:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-2c3af63e-ea57-43aa-ad0f-4b29c662b0a8 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-2c3af63e-ea57-43aa-ad0f-4b29c662b0a8 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-2c3af63e-ea57-43aa-ad0f-4b29c662b0a8-root {
    text-align: center;
  }


#s-2c3af63e-ea57-43aa-ad0f-4b29c662b0a8.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-2c3af63e-ea57-43aa-ad0f-4b29c662b0a8-root {
    text-align: center;
  }


#s-2c3af63e-ea57-43aa-ad0f-4b29c662b0a8.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2c3af63e-ea57-43aa-ad0f-4b29c662b0a8-root {
    text-align: center;
  }


#s-2c3af63e-ea57-43aa-ad0f-4b29c662b0a8.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2c3af63e-ea57-43aa-ad0f-4b29c662b0a8-root {
    text-align: center;
  }


#s-2c3af63e-ea57-43aa-ad0f-4b29c662b0a8.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-2c3af63e-ea57-43aa-ad0f-4b29c662b0a8-root {
    text-align: center;
  }


#s-2c3af63e-ea57-43aa-ad0f-4b29c662b0a8.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-433dbc85-18a7-4d62-8721-d0cd0cf98add {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-433dbc85-18a7-4d62-8721-d0cd0cf98add {
  display: none;
}
#s-433dbc85-18a7-4d62-8721-d0cd0cf98add, #wrap-s-433dbc85-18a7-4d62-8721-d0cd0cf98add { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-433dbc85-18a7-4d62-8721-d0cd0cf98add {
  display: none;
}
#s-433dbc85-18a7-4d62-8721-d0cd0cf98add, #wrap-s-433dbc85-18a7-4d62-8721-d0cd0cf98add { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-433dbc85-18a7-4d62-8721-d0cd0cf98add {
  
}
}
#s-433dbc85-18a7-4d62-8721-d0cd0cf98add .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-433dbc85-18a7-4d62-8721-d0cd0cf98add .shg-sld-nav-button.shg-sld-left,
#s-433dbc85-18a7-4d62-8721-d0cd0cf98add .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-e47b1cb4-85dd-4891-b543-8b8bc26bb0fa {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-e47b1cb4-85dd-4891-b543-8b8bc26bb0fa {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-e47b1cb4-85dd-4891-b543-8b8bc26bb0fa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e47b1cb4-85dd-4891-b543-8b8bc26bb0fa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5942f2c3-a4e5-4e75-8c84-a9d218d742df {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df img.shogun-image,
  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df {
    width: 100%;
    height: auto;
  }

  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shogun-image {
    
    
  }


.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df .shogun-image-content {
  
    align-items: center;
  
}

.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df img.shogun-image,
  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df {
    width: 100%;
    height: auto;
  }

  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shogun-image {
    
    
  }


.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df .shogun-image-content {
  
    align-items: center;
  
}

.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shogun-image {
  box-sizing: border-box;
}

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



  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df img.shogun-image,
  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df {
    width: 100%;
    height: auto;
  }

  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shogun-image {
    
    
  }


.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df .shogun-image-content {
  
    align-items: center;
  
}

.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shogun-image {
  box-sizing: border-box;
}

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



  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df img.shogun-image,
  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df {
    width: 100%;
    height: auto;
  }

  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shogun-image {
    
    
  }


.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df .shogun-image-content {
  
    align-items: center;
  
}

.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shogun-image {
  box-sizing: border-box;
}

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



  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df img.shogun-image,
  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df {
    width: 100%;
    height: auto;
  }

  #s-5942f2c3-a4e5-4e75-8c84-a9d218d742df img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shogun-image {
    
    
  }


.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df .shogun-image-content {
  
    align-items: center;
  
}

.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5942f2c3-a4e5-4e75-8c84-a9d218d742df.shogun-image {
  box-sizing: border-box;
}

}
#s-3eca8cab-1628-4218-908f-e06631b5d5f3 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-3eca8cab-1628-4218-908f-e06631b5d5f3 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-160541db-4ef5-495d-97a7-1133770a9596 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-160541db-4ef5-495d-97a7-1133770a9596 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-9994f082-28cd-42dc-9f09-24ec3953028d {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-9994f082-28cd-42dc-9f09-24ec3953028d:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-9994f082-28cd-42dc-9f09-24ec3953028d:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-9994f082-28cd-42dc-9f09-24ec3953028d {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-9994f082-28cd-42dc-9f09-24ec3953028d {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-9994f082-28cd-42dc-9f09-24ec3953028d-root {
    text-align: center;
  }


#s-9994f082-28cd-42dc-9f09-24ec3953028d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-9994f082-28cd-42dc-9f09-24ec3953028d-root {
    text-align: center;
  }


#s-9994f082-28cd-42dc-9f09-24ec3953028d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9994f082-28cd-42dc-9f09-24ec3953028d-root {
    text-align: center;
  }


#s-9994f082-28cd-42dc-9f09-24ec3953028d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9994f082-28cd-42dc-9f09-24ec3953028d-root {
    text-align: center;
  }


#s-9994f082-28cd-42dc-9f09-24ec3953028d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-9994f082-28cd-42dc-9f09-24ec3953028d-root {
    text-align: center;
  }


#s-9994f082-28cd-42dc-9f09-24ec3953028d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-639e1410-e48f-48a4-a6b9-9947aa740058 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-639e1410-e48f-48a4-a6b9-9947aa740058 {
  display: none;
}
#s-639e1410-e48f-48a4-a6b9-9947aa740058, #wrap-s-639e1410-e48f-48a4-a6b9-9947aa740058 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-639e1410-e48f-48a4-a6b9-9947aa740058 {
  display: none;
}
#s-639e1410-e48f-48a4-a6b9-9947aa740058, #wrap-s-639e1410-e48f-48a4-a6b9-9947aa740058 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-639e1410-e48f-48a4-a6b9-9947aa740058 {
  display: none;
}
#s-639e1410-e48f-48a4-a6b9-9947aa740058, #wrap-s-639e1410-e48f-48a4-a6b9-9947aa740058 { display:none !important; }}@media (max-width: 767px){#s-639e1410-e48f-48a4-a6b9-9947aa740058 {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-639e1410-e48f-48a4-a6b9-9947aa740058 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-639e1410-e48f-48a4-a6b9-9947aa740058.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 img.shogun-image,
  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 {
    width: 100%;
    height: auto;
  }

  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shogun-image {
    
    
  }


.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 img.shogun-image,
  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 {
    width: 100%;
    height: auto;
  }

  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shogun-image {
    
    
  }


.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shogun-image {
  box-sizing: border-box;
}

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



  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 img.shogun-image,
  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 {
    width: 100%;
    height: auto;
  }

  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shogun-image {
    
    
  }


.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shogun-image {
  box-sizing: border-box;
}

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



  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 img.shogun-image,
  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 {
    width: 100%;
    height: auto;
  }

  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shogun-image {
    
    
  }


.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shogun-image {
  box-sizing: border-box;
}

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



  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 img.shogun-image,
  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 {
    width: 100%;
    height: auto;
  }

  #s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shogun-image {
    
    
  }


.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b609a6e-0b23-4f44-8455-4f5c0a2d4ac2.shogun-image {
  box-sizing: border-box;
}

}
#s-083c1eb0-964e-40df-b473-ca5a20ea11dc {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-083c1eb0-964e-40df-b473-ca5a20ea11dc .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-e026596e-3a8b-44ab-87d2-e634a6072adc {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-e026596e-3a8b-44ab-87d2-e634a6072adc .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-14c894ae-6fca-485d-95bf-2ec4552991bc {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-14c894ae-6fca-485d-95bf-2ec4552991bc:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-14c894ae-6fca-485d-95bf-2ec4552991bc:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-14c894ae-6fca-485d-95bf-2ec4552991bc {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-14c894ae-6fca-485d-95bf-2ec4552991bc {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-14c894ae-6fca-485d-95bf-2ec4552991bc-root {
    text-align: center;
  }


#s-14c894ae-6fca-485d-95bf-2ec4552991bc.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-14c894ae-6fca-485d-95bf-2ec4552991bc-root {
    text-align: center;
  }


#s-14c894ae-6fca-485d-95bf-2ec4552991bc.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-14c894ae-6fca-485d-95bf-2ec4552991bc-root {
    text-align: center;
  }


#s-14c894ae-6fca-485d-95bf-2ec4552991bc.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-14c894ae-6fca-485d-95bf-2ec4552991bc-root {
    text-align: center;
  }


#s-14c894ae-6fca-485d-95bf-2ec4552991bc.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-14c894ae-6fca-485d-95bf-2ec4552991bc-root {
    text-align: center;
  }


#s-14c894ae-6fca-485d-95bf-2ec4552991bc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-4d094f85-0255-4ba5-8afe-f3d33bd998fc {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-4d094f85-0255-4ba5-8afe-f3d33bd998fc {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-4d094f85-0255-4ba5-8afe-f3d33bd998fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4d094f85-0255-4ba5-8afe-f3d33bd998fc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a img.shogun-image,
  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a {
    width: 100%;
    height: auto;
  }

  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shogun-image {
    
    
  }


.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a .shogun-image-content {
  
    align-items: center;
  
}

.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a img.shogun-image,
  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a {
    width: 100%;
    height: auto;
  }

  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shogun-image {
    
    
  }


.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a .shogun-image-content {
  
    align-items: center;
  
}

.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shogun-image {
  box-sizing: border-box;
}

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



  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a img.shogun-image,
  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a {
    width: 100%;
    height: auto;
  }

  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shogun-image {
    
    
  }


.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a .shogun-image-content {
  
    align-items: center;
  
}

.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shogun-image {
  box-sizing: border-box;
}

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



  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a img.shogun-image,
  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a {
    width: 100%;
    height: auto;
  }

  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shogun-image {
    
    
  }


.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a .shogun-image-content {
  
    align-items: center;
  
}

.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shogun-image {
  box-sizing: border-box;
}

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



  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a img.shogun-image,
  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a {
    width: 100%;
    height: auto;
  }

  #s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shogun-image {
    
    
  }


.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a .shogun-image-content {
  
    align-items: center;
  
}

.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b83bcc22-a0c9-4feb-b01e-5d57215e4d0a.shogun-image {
  box-sizing: border-box;
}

}
#s-4db8eb38-6827-47d7-99bb-308a189cc883 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-4db8eb38-6827-47d7-99bb-308a189cc883 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-c3790670-22e7-47fa-b016-c9ad44c88677 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-c3790670-22e7-47fa-b016-c9ad44c88677 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-702d7f2d-e8b4-44ed-b5b3-8ae47e615b05 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-702d7f2d-e8b4-44ed-b5b3-8ae47e615b05:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-702d7f2d-e8b4-44ed-b5b3-8ae47e615b05:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-702d7f2d-e8b4-44ed-b5b3-8ae47e615b05 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-702d7f2d-e8b4-44ed-b5b3-8ae47e615b05 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-702d7f2d-e8b4-44ed-b5b3-8ae47e615b05-root {
    text-align: center;
  }


#s-702d7f2d-e8b4-44ed-b5b3-8ae47e615b05.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-702d7f2d-e8b4-44ed-b5b3-8ae47e615b05-root {
    text-align: center;
  }


#s-702d7f2d-e8b4-44ed-b5b3-8ae47e615b05.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-702d7f2d-e8b4-44ed-b5b3-8ae47e615b05-root {
    text-align: center;
  }


#s-702d7f2d-e8b4-44ed-b5b3-8ae47e615b05.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-702d7f2d-e8b4-44ed-b5b3-8ae47e615b05-root {
    text-align: center;
  }


#s-702d7f2d-e8b4-44ed-b5b3-8ae47e615b05.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-702d7f2d-e8b4-44ed-b5b3-8ae47e615b05-root {
    text-align: center;
  }


#s-702d7f2d-e8b4-44ed-b5b3-8ae47e615b05.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-1097b995-c6c6-44b3-a053-065722f882cb {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-1097b995-c6c6-44b3-a053-065722f882cb {
  display: none;
}
#s-1097b995-c6c6-44b3-a053-065722f882cb, #wrap-s-1097b995-c6c6-44b3-a053-065722f882cb { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1097b995-c6c6-44b3-a053-065722f882cb {
  display: none;
}
#s-1097b995-c6c6-44b3-a053-065722f882cb, #wrap-s-1097b995-c6c6-44b3-a053-065722f882cb { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1097b995-c6c6-44b3-a053-065722f882cb {
  
}
}
#s-1097b995-c6c6-44b3-a053-065722f882cb .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-1097b995-c6c6-44b3-a053-065722f882cb .shg-sld-nav-button.shg-sld-left,
#s-1097b995-c6c6-44b3-a053-065722f882cb .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-aff8be2b-dce7-4e78-b125-81c62a894bcb {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-aff8be2b-dce7-4e78-b125-81c62a894bcb {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-aff8be2b-dce7-4e78-b125-81c62a894bcb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aff8be2b-dce7-4e78-b125-81c62a894bcb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a23d1913-71d1-4a8d-a5bf-020b72419452 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 img.shogun-image,
  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 {
    width: 100%;
    height: auto;
  }

  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a23d1913-71d1-4a8d-a5bf-020b72419452.shogun-image {
    
    
  }


.s-a23d1913-71d1-4a8d-a5bf-020b72419452 .shogun-image-content {
  
    align-items: center;
  
}

.s-a23d1913-71d1-4a8d-a5bf-020b72419452.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a23d1913-71d1-4a8d-a5bf-020b72419452.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a23d1913-71d1-4a8d-a5bf-020b72419452.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 img.shogun-image,
  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 {
    width: 100%;
    height: auto;
  }

  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a23d1913-71d1-4a8d-a5bf-020b72419452.shogun-image {
    
    
  }


.s-a23d1913-71d1-4a8d-a5bf-020b72419452 .shogun-image-content {
  
    align-items: center;
  
}

.s-a23d1913-71d1-4a8d-a5bf-020b72419452.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a23d1913-71d1-4a8d-a5bf-020b72419452.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a23d1913-71d1-4a8d-a5bf-020b72419452.shogun-image {
  box-sizing: border-box;
}

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



  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 img.shogun-image,
  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 {
    width: 100%;
    height: auto;
  }

  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a23d1913-71d1-4a8d-a5bf-020b72419452.shogun-image {
    
    
  }


.s-a23d1913-71d1-4a8d-a5bf-020b72419452 .shogun-image-content {
  
    align-items: center;
  
}

.s-a23d1913-71d1-4a8d-a5bf-020b72419452.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a23d1913-71d1-4a8d-a5bf-020b72419452.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a23d1913-71d1-4a8d-a5bf-020b72419452.shogun-image {
  box-sizing: border-box;
}

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



  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 img.shogun-image,
  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 {
    width: 100%;
    height: auto;
  }

  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a23d1913-71d1-4a8d-a5bf-020b72419452.shogun-image {
    
    
  }


.s-a23d1913-71d1-4a8d-a5bf-020b72419452 .shogun-image-content {
  
    align-items: center;
  
}

.s-a23d1913-71d1-4a8d-a5bf-020b72419452.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a23d1913-71d1-4a8d-a5bf-020b72419452.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a23d1913-71d1-4a8d-a5bf-020b72419452.shogun-image {
  box-sizing: border-box;
}

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



  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 img.shogun-image,
  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 {
    width: 100%;
    height: auto;
  }

  #s-a23d1913-71d1-4a8d-a5bf-020b72419452 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a23d1913-71d1-4a8d-a5bf-020b72419452.shogun-image {
    
    
  }


.s-a23d1913-71d1-4a8d-a5bf-020b72419452 .shogun-image-content {
  
    align-items: center;
  
}

.s-a23d1913-71d1-4a8d-a5bf-020b72419452.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a23d1913-71d1-4a8d-a5bf-020b72419452.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a23d1913-71d1-4a8d-a5bf-020b72419452.shogun-image {
  box-sizing: border-box;
}

}
#s-b849b5d7-5ac1-44e5-861f-b441f7659d8a {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-b849b5d7-5ac1-44e5-861f-b441f7659d8a .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-421c696a-422b-4608-9546-13607b32a1ad {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-421c696a-422b-4608-9546-13607b32a1ad .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-a1507082-d6aa-4023-ba35-0f7663ba4be4 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-a1507082-d6aa-4023-ba35-0f7663ba4be4:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-a1507082-d6aa-4023-ba35-0f7663ba4be4:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-a1507082-d6aa-4023-ba35-0f7663ba4be4 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-a1507082-d6aa-4023-ba35-0f7663ba4be4 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-a1507082-d6aa-4023-ba35-0f7663ba4be4-root {
    text-align: center;
  }


#s-a1507082-d6aa-4023-ba35-0f7663ba4be4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-a1507082-d6aa-4023-ba35-0f7663ba4be4-root {
    text-align: center;
  }


#s-a1507082-d6aa-4023-ba35-0f7663ba4be4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a1507082-d6aa-4023-ba35-0f7663ba4be4-root {
    text-align: center;
  }


#s-a1507082-d6aa-4023-ba35-0f7663ba4be4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a1507082-d6aa-4023-ba35-0f7663ba4be4-root {
    text-align: center;
  }


#s-a1507082-d6aa-4023-ba35-0f7663ba4be4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-a1507082-d6aa-4023-ba35-0f7663ba4be4-root {
    text-align: center;
  }


#s-a1507082-d6aa-4023-ba35-0f7663ba4be4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-43d76dac-9e7b-4452-a019-31ed9c840978 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-43d76dac-9e7b-4452-a019-31ed9c840978 {
  display: none;
}
#s-43d76dac-9e7b-4452-a019-31ed9c840978, #wrap-s-43d76dac-9e7b-4452-a019-31ed9c840978 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-43d76dac-9e7b-4452-a019-31ed9c840978 {
  display: none;
}
#s-43d76dac-9e7b-4452-a019-31ed9c840978, #wrap-s-43d76dac-9e7b-4452-a019-31ed9c840978 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-43d76dac-9e7b-4452-a019-31ed9c840978 {
  display: none;
}
#s-43d76dac-9e7b-4452-a019-31ed9c840978, #wrap-s-43d76dac-9e7b-4452-a019-31ed9c840978 { display:none !important; }}@media (max-width: 767px){#s-43d76dac-9e7b-4452-a019-31ed9c840978 {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-43d76dac-9e7b-4452-a019-31ed9c840978 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43d76dac-9e7b-4452-a019-31ed9c840978.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c img.shogun-image,
  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c {
    width: 100%;
    height: auto;
  }

  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shogun-image {
    
    
  }


.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c .shogun-image-content {
  
    align-items: center;
  
}

.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c img.shogun-image,
  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c {
    width: 100%;
    height: auto;
  }

  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shogun-image {
    
    
  }


.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c .shogun-image-content {
  
    align-items: center;
  
}

.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shogun-image {
  box-sizing: border-box;
}

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



  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c img.shogun-image,
  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c {
    width: 100%;
    height: auto;
  }

  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shogun-image {
    
    
  }


.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c .shogun-image-content {
  
    align-items: center;
  
}

.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shogun-image {
  box-sizing: border-box;
}

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



  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c img.shogun-image,
  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c {
    width: 100%;
    height: auto;
  }

  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shogun-image {
    
    
  }


.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c .shogun-image-content {
  
    align-items: center;
  
}

.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shogun-image {
  box-sizing: border-box;
}

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



  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c img.shogun-image,
  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c {
    width: 100%;
    height: auto;
  }

  #s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shogun-image {
    
    
  }


.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c .shogun-image-content {
  
    align-items: center;
  
}

.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a42dad2-e718-4cc2-aabc-22ec4c4d1f0c.shogun-image {
  box-sizing: border-box;
}

}
#s-b49584c3-db33-495d-8275-e61e40a81aca {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-b49584c3-db33-495d-8275-e61e40a81aca .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-8b6def05-b078-4965-a03a-afbe28239bcc {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-8b6def05-b078-4965-a03a-afbe28239bcc .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-77ec4624-5e34-46ac-9796-8762dcb6ebc2 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-77ec4624-5e34-46ac-9796-8762dcb6ebc2:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-77ec4624-5e34-46ac-9796-8762dcb6ebc2:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-77ec4624-5e34-46ac-9796-8762dcb6ebc2 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-77ec4624-5e34-46ac-9796-8762dcb6ebc2 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-77ec4624-5e34-46ac-9796-8762dcb6ebc2-root {
    text-align: center;
  }


#s-77ec4624-5e34-46ac-9796-8762dcb6ebc2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-77ec4624-5e34-46ac-9796-8762dcb6ebc2-root {
    text-align: center;
  }


#s-77ec4624-5e34-46ac-9796-8762dcb6ebc2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-77ec4624-5e34-46ac-9796-8762dcb6ebc2-root {
    text-align: center;
  }


#s-77ec4624-5e34-46ac-9796-8762dcb6ebc2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-77ec4624-5e34-46ac-9796-8762dcb6ebc2-root {
    text-align: center;
  }


#s-77ec4624-5e34-46ac-9796-8762dcb6ebc2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-77ec4624-5e34-46ac-9796-8762dcb6ebc2-root {
    text-align: center;
  }


#s-77ec4624-5e34-46ac-9796-8762dcb6ebc2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-c4572538-0b4d-44c8-9a75-bf373cd04204 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-c4572538-0b4d-44c8-9a75-bf373cd04204 {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-c4572538-0b4d-44c8-9a75-bf373cd04204 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c4572538-0b4d-44c8-9a75-bf373cd04204.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 img.shogun-image,
  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 {
    width: 100%;
    height: auto;
  }

  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shogun-image {
    
    
  }


.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 .shogun-image-content {
  
    align-items: center;
  
}

.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 img.shogun-image,
  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 {
    width: 100%;
    height: auto;
  }

  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shogun-image {
    
    
  }


.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 .shogun-image-content {
  
    align-items: center;
  
}

.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shogun-image {
  box-sizing: border-box;
}

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



  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 img.shogun-image,
  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 {
    width: 100%;
    height: auto;
  }

  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shogun-image {
    
    
  }


.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 .shogun-image-content {
  
    align-items: center;
  
}

.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shogun-image {
  box-sizing: border-box;
}

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



  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 img.shogun-image,
  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 {
    width: 100%;
    height: auto;
  }

  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shogun-image {
    
    
  }


.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 .shogun-image-content {
  
    align-items: center;
  
}

.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shogun-image {
  box-sizing: border-box;
}

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



  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 img.shogun-image,
  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 {
    width: 100%;
    height: auto;
  }

  #s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shogun-image {
    
    
  }


.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04 .shogun-image-content {
  
    align-items: center;
  
}

.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cd199dd-2d9e-4bdf-af3f-3d51dfd54b04.shogun-image {
  box-sizing: border-box;
}

}
#s-8324e6a6-587b-4def-9743-797c9c566053 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-8324e6a6-587b-4def-9743-797c9c566053 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-af564062-24ca-43d2-a743-b226c51e0a66 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-af564062-24ca-43d2-a743-b226c51e0a66 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-ec872a82-575f-4e0d-b1d7-372e737ca26e {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-ec872a82-575f-4e0d-b1d7-372e737ca26e:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-ec872a82-575f-4e0d-b1d7-372e737ca26e:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-ec872a82-575f-4e0d-b1d7-372e737ca26e {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-ec872a82-575f-4e0d-b1d7-372e737ca26e {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-ec872a82-575f-4e0d-b1d7-372e737ca26e-root {
    text-align: center;
  }


#s-ec872a82-575f-4e0d-b1d7-372e737ca26e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-ec872a82-575f-4e0d-b1d7-372e737ca26e-root {
    text-align: center;
  }


#s-ec872a82-575f-4e0d-b1d7-372e737ca26e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ec872a82-575f-4e0d-b1d7-372e737ca26e-root {
    text-align: center;
  }


#s-ec872a82-575f-4e0d-b1d7-372e737ca26e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ec872a82-575f-4e0d-b1d7-372e737ca26e-root {
    text-align: center;
  }


#s-ec872a82-575f-4e0d-b1d7-372e737ca26e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-ec872a82-575f-4e0d-b1d7-372e737ca26e-root {
    text-align: center;
  }


#s-ec872a82-575f-4e0d-b1d7-372e737ca26e.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-56591fea-0eeb-4efb-bcd8-25f230e8e59e {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-56591fea-0eeb-4efb-bcd8-25f230e8e59e {
  display: none;
}
#s-56591fea-0eeb-4efb-bcd8-25f230e8e59e, #wrap-s-56591fea-0eeb-4efb-bcd8-25f230e8e59e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-56591fea-0eeb-4efb-bcd8-25f230e8e59e {
  display: none;
}
#s-56591fea-0eeb-4efb-bcd8-25f230e8e59e, #wrap-s-56591fea-0eeb-4efb-bcd8-25f230e8e59e { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-56591fea-0eeb-4efb-bcd8-25f230e8e59e {
  
}
}
#s-56591fea-0eeb-4efb-bcd8-25f230e8e59e .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-56591fea-0eeb-4efb-bcd8-25f230e8e59e .shg-sld-nav-button.shg-sld-left,
#s-56591fea-0eeb-4efb-bcd8-25f230e8e59e .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-51e0fe50-c8a0-4c21-8b2a-9941b54b2774 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-51e0fe50-c8a0-4c21-8b2a-9941b54b2774 {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-51e0fe50-c8a0-4c21-8b2a-9941b54b2774 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-51e0fe50-c8a0-4c21-8b2a-9941b54b2774.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-59f9f853-30e2-4b9a-afad-0a275962f32c {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-59f9f853-30e2-4b9a-afad-0a275962f32c img.shogun-image,
  #s-59f9f853-30e2-4b9a-afad-0a275962f32c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-59f9f853-30e2-4b9a-afad-0a275962f32c {
    width: 100%;
    height: auto;
  }

  #s-59f9f853-30e2-4b9a-afad-0a275962f32c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-59f9f853-30e2-4b9a-afad-0a275962f32c.shogun-image {
    
    
  }


.s-59f9f853-30e2-4b9a-afad-0a275962f32c .shogun-image-content {
  
    align-items: center;
  
}

.s-59f9f853-30e2-4b9a-afad-0a275962f32c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59f9f853-30e2-4b9a-afad-0a275962f32c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59f9f853-30e2-4b9a-afad-0a275962f32c.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-59f9f853-30e2-4b9a-afad-0a275962f32c img.shogun-image,
  #s-59f9f853-30e2-4b9a-afad-0a275962f32c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-59f9f853-30e2-4b9a-afad-0a275962f32c {
    width: 100%;
    height: auto;
  }

  #s-59f9f853-30e2-4b9a-afad-0a275962f32c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-59f9f853-30e2-4b9a-afad-0a275962f32c.shogun-image {
    
    
  }


.s-59f9f853-30e2-4b9a-afad-0a275962f32c .shogun-image-content {
  
    align-items: center;
  
}

.s-59f9f853-30e2-4b9a-afad-0a275962f32c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59f9f853-30e2-4b9a-afad-0a275962f32c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59f9f853-30e2-4b9a-afad-0a275962f32c.shogun-image {
  box-sizing: border-box;
}

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



  #s-59f9f853-30e2-4b9a-afad-0a275962f32c img.shogun-image,
  #s-59f9f853-30e2-4b9a-afad-0a275962f32c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-59f9f853-30e2-4b9a-afad-0a275962f32c {
    width: 100%;
    height: auto;
  }

  #s-59f9f853-30e2-4b9a-afad-0a275962f32c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-59f9f853-30e2-4b9a-afad-0a275962f32c.shogun-image {
    
    
  }


.s-59f9f853-30e2-4b9a-afad-0a275962f32c .shogun-image-content {
  
    align-items: center;
  
}

.s-59f9f853-30e2-4b9a-afad-0a275962f32c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59f9f853-30e2-4b9a-afad-0a275962f32c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59f9f853-30e2-4b9a-afad-0a275962f32c.shogun-image {
  box-sizing: border-box;
}

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



  #s-59f9f853-30e2-4b9a-afad-0a275962f32c img.shogun-image,
  #s-59f9f853-30e2-4b9a-afad-0a275962f32c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-59f9f853-30e2-4b9a-afad-0a275962f32c {
    width: 100%;
    height: auto;
  }

  #s-59f9f853-30e2-4b9a-afad-0a275962f32c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-59f9f853-30e2-4b9a-afad-0a275962f32c.shogun-image {
    
    
  }


.s-59f9f853-30e2-4b9a-afad-0a275962f32c .shogun-image-content {
  
    align-items: center;
  
}

.s-59f9f853-30e2-4b9a-afad-0a275962f32c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59f9f853-30e2-4b9a-afad-0a275962f32c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59f9f853-30e2-4b9a-afad-0a275962f32c.shogun-image {
  box-sizing: border-box;
}

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



  #s-59f9f853-30e2-4b9a-afad-0a275962f32c img.shogun-image,
  #s-59f9f853-30e2-4b9a-afad-0a275962f32c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-59f9f853-30e2-4b9a-afad-0a275962f32c {
    width: 100%;
    height: auto;
  }

  #s-59f9f853-30e2-4b9a-afad-0a275962f32c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-59f9f853-30e2-4b9a-afad-0a275962f32c.shogun-image {
    
    
  }


.s-59f9f853-30e2-4b9a-afad-0a275962f32c .shogun-image-content {
  
    align-items: center;
  
}

.s-59f9f853-30e2-4b9a-afad-0a275962f32c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-59f9f853-30e2-4b9a-afad-0a275962f32c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-59f9f853-30e2-4b9a-afad-0a275962f32c.shogun-image {
  box-sizing: border-box;
}

}
#s-e774e3ba-c60e-4d05-ad5c-856d0af81859 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-e774e3ba-c60e-4d05-ad5c-856d0af81859 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-b417bd8d-841d-4796-a97a-9329fe0319c2 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-b417bd8d-841d-4796-a97a-9329fe0319c2 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-27b82113-3edd-4984-80ec-3b0e33e293e1 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-27b82113-3edd-4984-80ec-3b0e33e293e1:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-27b82113-3edd-4984-80ec-3b0e33e293e1:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-27b82113-3edd-4984-80ec-3b0e33e293e1 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-27b82113-3edd-4984-80ec-3b0e33e293e1 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-27b82113-3edd-4984-80ec-3b0e33e293e1-root {
    text-align: center;
  }


#s-27b82113-3edd-4984-80ec-3b0e33e293e1.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-27b82113-3edd-4984-80ec-3b0e33e293e1-root {
    text-align: center;
  }


#s-27b82113-3edd-4984-80ec-3b0e33e293e1.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-27b82113-3edd-4984-80ec-3b0e33e293e1-root {
    text-align: center;
  }


#s-27b82113-3edd-4984-80ec-3b0e33e293e1.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-27b82113-3edd-4984-80ec-3b0e33e293e1-root {
    text-align: center;
  }


#s-27b82113-3edd-4984-80ec-3b0e33e293e1.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-27b82113-3edd-4984-80ec-3b0e33e293e1-root {
    text-align: center;
  }


#s-27b82113-3edd-4984-80ec-3b0e33e293e1.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-1b4d5fde-e208-4298-84ce-9fdde7a42840 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-1b4d5fde-e208-4298-84ce-9fdde7a42840 {
  display: none;
}
#s-1b4d5fde-e208-4298-84ce-9fdde7a42840, #wrap-s-1b4d5fde-e208-4298-84ce-9fdde7a42840 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1b4d5fde-e208-4298-84ce-9fdde7a42840 {
  display: none;
}
#s-1b4d5fde-e208-4298-84ce-9fdde7a42840, #wrap-s-1b4d5fde-e208-4298-84ce-9fdde7a42840 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1b4d5fde-e208-4298-84ce-9fdde7a42840 {
  display: none;
}
#s-1b4d5fde-e208-4298-84ce-9fdde7a42840, #wrap-s-1b4d5fde-e208-4298-84ce-9fdde7a42840 { display:none !important; }}@media (max-width: 767px){#s-1b4d5fde-e208-4298-84ce-9fdde7a42840 {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-1b4d5fde-e208-4298-84ce-9fdde7a42840 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1b4d5fde-e208-4298-84ce-9fdde7a42840.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-73f8758c-2856-4362-a9b2-b4d879ea7697 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 img.shogun-image,
  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 {
    width: 100%;
    height: auto;
  }

  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73f8758c-2856-4362-a9b2-b4d879ea7697.shogun-image {
    
    
  }


.s-73f8758c-2856-4362-a9b2-b4d879ea7697 .shogun-image-content {
  
    align-items: center;
  
}

.s-73f8758c-2856-4362-a9b2-b4d879ea7697.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73f8758c-2856-4362-a9b2-b4d879ea7697.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73f8758c-2856-4362-a9b2-b4d879ea7697.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 img.shogun-image,
  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 {
    width: 100%;
    height: auto;
  }

  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73f8758c-2856-4362-a9b2-b4d879ea7697.shogun-image {
    
    
  }


.s-73f8758c-2856-4362-a9b2-b4d879ea7697 .shogun-image-content {
  
    align-items: center;
  
}

.s-73f8758c-2856-4362-a9b2-b4d879ea7697.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73f8758c-2856-4362-a9b2-b4d879ea7697.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73f8758c-2856-4362-a9b2-b4d879ea7697.shogun-image {
  box-sizing: border-box;
}

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



  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 img.shogun-image,
  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 {
    width: 100%;
    height: auto;
  }

  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73f8758c-2856-4362-a9b2-b4d879ea7697.shogun-image {
    
    
  }


.s-73f8758c-2856-4362-a9b2-b4d879ea7697 .shogun-image-content {
  
    align-items: center;
  
}

.s-73f8758c-2856-4362-a9b2-b4d879ea7697.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73f8758c-2856-4362-a9b2-b4d879ea7697.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73f8758c-2856-4362-a9b2-b4d879ea7697.shogun-image {
  box-sizing: border-box;
}

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



  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 img.shogun-image,
  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 {
    width: 100%;
    height: auto;
  }

  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73f8758c-2856-4362-a9b2-b4d879ea7697.shogun-image {
    
    
  }


.s-73f8758c-2856-4362-a9b2-b4d879ea7697 .shogun-image-content {
  
    align-items: center;
  
}

.s-73f8758c-2856-4362-a9b2-b4d879ea7697.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73f8758c-2856-4362-a9b2-b4d879ea7697.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73f8758c-2856-4362-a9b2-b4d879ea7697.shogun-image {
  box-sizing: border-box;
}

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



  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 img.shogun-image,
  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 {
    width: 100%;
    height: auto;
  }

  #s-73f8758c-2856-4362-a9b2-b4d879ea7697 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73f8758c-2856-4362-a9b2-b4d879ea7697.shogun-image {
    
    
  }


.s-73f8758c-2856-4362-a9b2-b4d879ea7697 .shogun-image-content {
  
    align-items: center;
  
}

.s-73f8758c-2856-4362-a9b2-b4d879ea7697.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73f8758c-2856-4362-a9b2-b4d879ea7697.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73f8758c-2856-4362-a9b2-b4d879ea7697.shogun-image {
  box-sizing: border-box;
}

}
#s-33da8c7d-0a71-4acf-b9ec-e4b6f9caee06 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-33da8c7d-0a71-4acf-b9ec-e4b6f9caee06 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-1b473e04-4c52-4feb-84c3-658d2f8ea754 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-1b473e04-4c52-4feb-84c3-658d2f8ea754 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-bda901e2-c44d-4760-94ed-0f080a1023c2 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-bda901e2-c44d-4760-94ed-0f080a1023c2:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-bda901e2-c44d-4760-94ed-0f080a1023c2:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-bda901e2-c44d-4760-94ed-0f080a1023c2 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-bda901e2-c44d-4760-94ed-0f080a1023c2 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-bda901e2-c44d-4760-94ed-0f080a1023c2-root {
    text-align: center;
  }


#s-bda901e2-c44d-4760-94ed-0f080a1023c2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-bda901e2-c44d-4760-94ed-0f080a1023c2-root {
    text-align: center;
  }


#s-bda901e2-c44d-4760-94ed-0f080a1023c2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-bda901e2-c44d-4760-94ed-0f080a1023c2-root {
    text-align: center;
  }


#s-bda901e2-c44d-4760-94ed-0f080a1023c2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-bda901e2-c44d-4760-94ed-0f080a1023c2-root {
    text-align: center;
  }


#s-bda901e2-c44d-4760-94ed-0f080a1023c2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-bda901e2-c44d-4760-94ed-0f080a1023c2-root {
    text-align: center;
  }


#s-bda901e2-c44d-4760-94ed-0f080a1023c2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-0d2871aa-7640-421e-a9f2-aec3904829d1 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-0d2871aa-7640-421e-a9f2-aec3904829d1 {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-0d2871aa-7640-421e-a9f2-aec3904829d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0d2871aa-7640-421e-a9f2-aec3904829d1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e57004cf-ec2a-4d54-9a92-b081907d635e {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-e57004cf-ec2a-4d54-9a92-b081907d635e img.shogun-image,
  #s-e57004cf-ec2a-4d54-9a92-b081907d635e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e57004cf-ec2a-4d54-9a92-b081907d635e {
    width: 100%;
    height: auto;
  }

  #s-e57004cf-ec2a-4d54-9a92-b081907d635e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e57004cf-ec2a-4d54-9a92-b081907d635e.shogun-image {
    
    
  }


.s-e57004cf-ec2a-4d54-9a92-b081907d635e .shogun-image-content {
  
    align-items: center;
  
}

.s-e57004cf-ec2a-4d54-9a92-b081907d635e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e57004cf-ec2a-4d54-9a92-b081907d635e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e57004cf-ec2a-4d54-9a92-b081907d635e.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-e57004cf-ec2a-4d54-9a92-b081907d635e img.shogun-image,
  #s-e57004cf-ec2a-4d54-9a92-b081907d635e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e57004cf-ec2a-4d54-9a92-b081907d635e {
    width: 100%;
    height: auto;
  }

  #s-e57004cf-ec2a-4d54-9a92-b081907d635e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e57004cf-ec2a-4d54-9a92-b081907d635e.shogun-image {
    
    
  }


.s-e57004cf-ec2a-4d54-9a92-b081907d635e .shogun-image-content {
  
    align-items: center;
  
}

.s-e57004cf-ec2a-4d54-9a92-b081907d635e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e57004cf-ec2a-4d54-9a92-b081907d635e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e57004cf-ec2a-4d54-9a92-b081907d635e.shogun-image {
  box-sizing: border-box;
}

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



  #s-e57004cf-ec2a-4d54-9a92-b081907d635e img.shogun-image,
  #s-e57004cf-ec2a-4d54-9a92-b081907d635e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e57004cf-ec2a-4d54-9a92-b081907d635e {
    width: 100%;
    height: auto;
  }

  #s-e57004cf-ec2a-4d54-9a92-b081907d635e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e57004cf-ec2a-4d54-9a92-b081907d635e.shogun-image {
    
    
  }


.s-e57004cf-ec2a-4d54-9a92-b081907d635e .shogun-image-content {
  
    align-items: center;
  
}

.s-e57004cf-ec2a-4d54-9a92-b081907d635e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e57004cf-ec2a-4d54-9a92-b081907d635e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e57004cf-ec2a-4d54-9a92-b081907d635e.shogun-image {
  box-sizing: border-box;
}

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



  #s-e57004cf-ec2a-4d54-9a92-b081907d635e img.shogun-image,
  #s-e57004cf-ec2a-4d54-9a92-b081907d635e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e57004cf-ec2a-4d54-9a92-b081907d635e {
    width: 100%;
    height: auto;
  }

  #s-e57004cf-ec2a-4d54-9a92-b081907d635e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e57004cf-ec2a-4d54-9a92-b081907d635e.shogun-image {
    
    
  }


.s-e57004cf-ec2a-4d54-9a92-b081907d635e .shogun-image-content {
  
    align-items: center;
  
}

.s-e57004cf-ec2a-4d54-9a92-b081907d635e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e57004cf-ec2a-4d54-9a92-b081907d635e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e57004cf-ec2a-4d54-9a92-b081907d635e.shogun-image {
  box-sizing: border-box;
}

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



  #s-e57004cf-ec2a-4d54-9a92-b081907d635e img.shogun-image,
  #s-e57004cf-ec2a-4d54-9a92-b081907d635e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e57004cf-ec2a-4d54-9a92-b081907d635e {
    width: 100%;
    height: auto;
  }

  #s-e57004cf-ec2a-4d54-9a92-b081907d635e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e57004cf-ec2a-4d54-9a92-b081907d635e.shogun-image {
    
    
  }


.s-e57004cf-ec2a-4d54-9a92-b081907d635e .shogun-image-content {
  
    align-items: center;
  
}

.s-e57004cf-ec2a-4d54-9a92-b081907d635e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e57004cf-ec2a-4d54-9a92-b081907d635e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e57004cf-ec2a-4d54-9a92-b081907d635e.shogun-image {
  box-sizing: border-box;
}

}
#s-07299a2f-a418-4237-92d0-d255f7018d7e {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-07299a2f-a418-4237-92d0-d255f7018d7e .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-6ce2c102-a649-4ffb-ab53-0e68571ff73e {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-6ce2c102-a649-4ffb-ab53-0e68571ff73e .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-6c2265d9-bc99-4be6-b289-931a15746412 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-6c2265d9-bc99-4be6-b289-931a15746412:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-6c2265d9-bc99-4be6-b289-931a15746412:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-6c2265d9-bc99-4be6-b289-931a15746412 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-6c2265d9-bc99-4be6-b289-931a15746412 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-6c2265d9-bc99-4be6-b289-931a15746412-root {
    text-align: center;
  }


#s-6c2265d9-bc99-4be6-b289-931a15746412.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-6c2265d9-bc99-4be6-b289-931a15746412-root {
    text-align: center;
  }


#s-6c2265d9-bc99-4be6-b289-931a15746412.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6c2265d9-bc99-4be6-b289-931a15746412-root {
    text-align: center;
  }


#s-6c2265d9-bc99-4be6-b289-931a15746412.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6c2265d9-bc99-4be6-b289-931a15746412-root {
    text-align: center;
  }


#s-6c2265d9-bc99-4be6-b289-931a15746412.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-6c2265d9-bc99-4be6-b289-931a15746412-root {
    text-align: center;
  }


#s-6c2265d9-bc99-4be6-b289-931a15746412.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-ba999901-f119-447c-8d85-6c79437c9191 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-ba999901-f119-447c-8d85-6c79437c9191 {
  display: none;
}
#s-ba999901-f119-447c-8d85-6c79437c9191, #wrap-s-ba999901-f119-447c-8d85-6c79437c9191 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ba999901-f119-447c-8d85-6c79437c9191 {
  display: none;
}
#s-ba999901-f119-447c-8d85-6c79437c9191, #wrap-s-ba999901-f119-447c-8d85-6c79437c9191 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ba999901-f119-447c-8d85-6c79437c9191 {
  
}
}
#s-ba999901-f119-447c-8d85-6c79437c9191 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-ba999901-f119-447c-8d85-6c79437c9191 .shg-sld-nav-button.shg-sld-left,
#s-ba999901-f119-447c-8d85-6c79437c9191 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-3f77030e-38e9-48d9-bec6-3629cbcd6ae8 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-3f77030e-38e9-48d9-bec6-3629cbcd6ae8 {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-3f77030e-38e9-48d9-bec6-3629cbcd6ae8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3f77030e-38e9-48d9-bec6-3629cbcd6ae8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 img.shogun-image,
  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 {
    width: 100%;
    height: auto;
  }

  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shogun-image {
    
    
  }


.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 img.shogun-image,
  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 {
    width: 100%;
    height: auto;
  }

  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shogun-image {
    
    
  }


.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shogun-image {
  box-sizing: border-box;
}

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



  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 img.shogun-image,
  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 {
    width: 100%;
    height: auto;
  }

  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shogun-image {
    
    
  }


.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shogun-image {
  box-sizing: border-box;
}

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



  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 img.shogun-image,
  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 {
    width: 100%;
    height: auto;
  }

  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shogun-image {
    
    
  }


.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shogun-image {
  box-sizing: border-box;
}

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



  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 img.shogun-image,
  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 {
    width: 100%;
    height: auto;
  }

  #s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shogun-image {
    
    
  }


.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e5e163a-03b0-4cbc-92ac-78c6c78e92a3.shogun-image {
  box-sizing: border-box;
}

}
#s-36cc15e1-ac61-4fde-b425-f2ec0e4ad631 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-36cc15e1-ac61-4fde-b425-f2ec0e4ad631 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-f470e223-88dc-4c5a-95b9-28db0e0d2272 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-f470e223-88dc-4c5a-95b9-28db0e0d2272 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-507919e2-3d1a-40d1-a276-350edb0ee358 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-507919e2-3d1a-40d1-a276-350edb0ee358:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-507919e2-3d1a-40d1-a276-350edb0ee358:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-507919e2-3d1a-40d1-a276-350edb0ee358 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-507919e2-3d1a-40d1-a276-350edb0ee358 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-507919e2-3d1a-40d1-a276-350edb0ee358-root {
    text-align: center;
  }


#s-507919e2-3d1a-40d1-a276-350edb0ee358.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-507919e2-3d1a-40d1-a276-350edb0ee358-root {
    text-align: center;
  }


#s-507919e2-3d1a-40d1-a276-350edb0ee358.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-507919e2-3d1a-40d1-a276-350edb0ee358-root {
    text-align: center;
  }


#s-507919e2-3d1a-40d1-a276-350edb0ee358.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-507919e2-3d1a-40d1-a276-350edb0ee358-root {
    text-align: center;
  }


#s-507919e2-3d1a-40d1-a276-350edb0ee358.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-507919e2-3d1a-40d1-a276-350edb0ee358-root {
    text-align: center;
  }


#s-507919e2-3d1a-40d1-a276-350edb0ee358.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-53bf0fa1-4665-46fa-a5a2-8a439ae80b4f {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-53bf0fa1-4665-46fa-a5a2-8a439ae80b4f {
  display: none;
}
#s-53bf0fa1-4665-46fa-a5a2-8a439ae80b4f, #wrap-s-53bf0fa1-4665-46fa-a5a2-8a439ae80b4f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-53bf0fa1-4665-46fa-a5a2-8a439ae80b4f {
  display: none;
}
#s-53bf0fa1-4665-46fa-a5a2-8a439ae80b4f, #wrap-s-53bf0fa1-4665-46fa-a5a2-8a439ae80b4f { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-53bf0fa1-4665-46fa-a5a2-8a439ae80b4f {
  display: none;
}
#s-53bf0fa1-4665-46fa-a5a2-8a439ae80b4f, #wrap-s-53bf0fa1-4665-46fa-a5a2-8a439ae80b4f { display:none !important; }}@media (max-width: 767px){#s-53bf0fa1-4665-46fa-a5a2-8a439ae80b4f {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-53bf0fa1-4665-46fa-a5a2-8a439ae80b4f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-53bf0fa1-4665-46fa-a5a2-8a439ae80b4f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 img.shogun-image,
  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 {
    width: 100%;
    height: auto;
  }

  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shogun-image {
    
    
  }


.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 .shogun-image-content {
  
    align-items: center;
  
}

.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 img.shogun-image,
  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 {
    width: 100%;
    height: auto;
  }

  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shogun-image {
    
    
  }


.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 .shogun-image-content {
  
    align-items: center;
  
}

.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shogun-image {
  box-sizing: border-box;
}

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



  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 img.shogun-image,
  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 {
    width: 100%;
    height: auto;
  }

  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shogun-image {
    
    
  }


.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 .shogun-image-content {
  
    align-items: center;
  
}

.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shogun-image {
  box-sizing: border-box;
}

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



  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 img.shogun-image,
  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 {
    width: 100%;
    height: auto;
  }

  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shogun-image {
    
    
  }


.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 .shogun-image-content {
  
    align-items: center;
  
}

.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shogun-image {
  box-sizing: border-box;
}

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



  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 img.shogun-image,
  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 {
    width: 100%;
    height: auto;
  }

  #s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shogun-image {
    
    
  }


.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3 .shogun-image-content {
  
    align-items: center;
  
}

.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f3e205d-c92a-4a68-a599-743f9ce7dae3.shogun-image {
  box-sizing: border-box;
}

}
#s-637954b8-b895-4ac5-b970-9e8f450e1ecb {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-637954b8-b895-4ac5-b970-9e8f450e1ecb .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-3171df9e-3e97-4c2f-8bfe-c958cd48bbca {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-3171df9e-3e97-4c2f-8bfe-c958cd48bbca .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-27e3800a-48bb-4126-b617-3d8fb4b9530a {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-27e3800a-48bb-4126-b617-3d8fb4b9530a:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-27e3800a-48bb-4126-b617-3d8fb4b9530a:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-27e3800a-48bb-4126-b617-3d8fb4b9530a {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-27e3800a-48bb-4126-b617-3d8fb4b9530a {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-27e3800a-48bb-4126-b617-3d8fb4b9530a-root {
    text-align: center;
  }


#s-27e3800a-48bb-4126-b617-3d8fb4b9530a.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-27e3800a-48bb-4126-b617-3d8fb4b9530a-root {
    text-align: center;
  }


#s-27e3800a-48bb-4126-b617-3d8fb4b9530a.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-27e3800a-48bb-4126-b617-3d8fb4b9530a-root {
    text-align: center;
  }


#s-27e3800a-48bb-4126-b617-3d8fb4b9530a.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-27e3800a-48bb-4126-b617-3d8fb4b9530a-root {
    text-align: center;
  }


#s-27e3800a-48bb-4126-b617-3d8fb4b9530a.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-27e3800a-48bb-4126-b617-3d8fb4b9530a-root {
    text-align: center;
  }


#s-27e3800a-48bb-4126-b617-3d8fb4b9530a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-5415c9ca-fb4b-4bee-9fe1-60e4a9cad4bc {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-5415c9ca-fb4b-4bee-9fe1-60e4a9cad4bc {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-5415c9ca-fb4b-4bee-9fe1-60e4a9cad4bc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5415c9ca-fb4b-4bee-9fe1-60e4a9cad4bc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e45af974-4672-4fcf-b8b7-af07bbd6f073 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 img.shogun-image,
  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 {
    width: 100%;
    height: auto;
  }

  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shogun-image {
    
    
  }


.s-e45af974-4672-4fcf-b8b7-af07bbd6f073 .shogun-image-content {
  
    align-items: center;
  
}

.s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 img.shogun-image,
  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 {
    width: 100%;
    height: auto;
  }

  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shogun-image {
    
    
  }


.s-e45af974-4672-4fcf-b8b7-af07bbd6f073 .shogun-image-content {
  
    align-items: center;
  
}

.s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shogun-image {
  box-sizing: border-box;
}

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



  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 img.shogun-image,
  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 {
    width: 100%;
    height: auto;
  }

  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shogun-image {
    
    
  }


.s-e45af974-4672-4fcf-b8b7-af07bbd6f073 .shogun-image-content {
  
    align-items: center;
  
}

.s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shogun-image {
  box-sizing: border-box;
}

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



  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 img.shogun-image,
  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 {
    width: 100%;
    height: auto;
  }

  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shogun-image {
    
    
  }


.s-e45af974-4672-4fcf-b8b7-af07bbd6f073 .shogun-image-content {
  
    align-items: center;
  
}

.s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shogun-image {
  box-sizing: border-box;
}

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



  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 img.shogun-image,
  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 {
    width: 100%;
    height: auto;
  }

  #s-e45af974-4672-4fcf-b8b7-af07bbd6f073 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shogun-image {
    
    
  }


.s-e45af974-4672-4fcf-b8b7-af07bbd6f073 .shogun-image-content {
  
    align-items: center;
  
}

.s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e45af974-4672-4fcf-b8b7-af07bbd6f073.shogun-image {
  box-sizing: border-box;
}

}
#s-57bcf220-8733-45a2-81d0-2093ea7b3376 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-57bcf220-8733-45a2-81d0-2093ea7b3376 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-8304ba2a-b5bd-46b2-890f-6835f7979da2 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-8304ba2a-b5bd-46b2-890f-6835f7979da2 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-d7229ac2-95d4-4ffe-adbd-4c16150a4d95 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-d7229ac2-95d4-4ffe-adbd-4c16150a4d95:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-d7229ac2-95d4-4ffe-adbd-4c16150a4d95:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-d7229ac2-95d4-4ffe-adbd-4c16150a4d95 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-d7229ac2-95d4-4ffe-adbd-4c16150a4d95 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-d7229ac2-95d4-4ffe-adbd-4c16150a4d95-root {
    text-align: center;
  }


#s-d7229ac2-95d4-4ffe-adbd-4c16150a4d95.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-d7229ac2-95d4-4ffe-adbd-4c16150a4d95-root {
    text-align: center;
  }


#s-d7229ac2-95d4-4ffe-adbd-4c16150a4d95.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d7229ac2-95d4-4ffe-adbd-4c16150a4d95-root {
    text-align: center;
  }


#s-d7229ac2-95d4-4ffe-adbd-4c16150a4d95.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d7229ac2-95d4-4ffe-adbd-4c16150a4d95-root {
    text-align: center;
  }


#s-d7229ac2-95d4-4ffe-adbd-4c16150a4d95.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-d7229ac2-95d4-4ffe-adbd-4c16150a4d95-root {
    text-align: center;
  }


#s-d7229ac2-95d4-4ffe-adbd-4c16150a4d95.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-148399d8-0d83-4f0a-b200-c6953af996d2 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-148399d8-0d83-4f0a-b200-c6953af996d2 {
  display: none;
}
#s-148399d8-0d83-4f0a-b200-c6953af996d2, #wrap-s-148399d8-0d83-4f0a-b200-c6953af996d2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-148399d8-0d83-4f0a-b200-c6953af996d2 {
  display: none;
}
#s-148399d8-0d83-4f0a-b200-c6953af996d2, #wrap-s-148399d8-0d83-4f0a-b200-c6953af996d2 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-148399d8-0d83-4f0a-b200-c6953af996d2 {
  
}
}
#s-148399d8-0d83-4f0a-b200-c6953af996d2 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-148399d8-0d83-4f0a-b200-c6953af996d2 .shg-sld-nav-button.shg-sld-left,
#s-148399d8-0d83-4f0a-b200-c6953af996d2 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-9f1c9654-b458-4e64-aa85-4beb757660d2 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-9f1c9654-b458-4e64-aa85-4beb757660d2 {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-9f1c9654-b458-4e64-aa85-4beb757660d2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9f1c9654-b458-4e64-aa85-4beb757660d2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-055b8194-2b53-4797-bfad-0b1e728d9811 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-055b8194-2b53-4797-bfad-0b1e728d9811 img.shogun-image,
  #s-055b8194-2b53-4797-bfad-0b1e728d9811 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-055b8194-2b53-4797-bfad-0b1e728d9811 {
    width: 100%;
    height: auto;
  }

  #s-055b8194-2b53-4797-bfad-0b1e728d9811 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-055b8194-2b53-4797-bfad-0b1e728d9811.shogun-image {
    
    
  }


.s-055b8194-2b53-4797-bfad-0b1e728d9811 .shogun-image-content {
  
    align-items: center;
  
}

.s-055b8194-2b53-4797-bfad-0b1e728d9811.shg-align-container {
  display: flex;
  justify-content: center
}

.s-055b8194-2b53-4797-bfad-0b1e728d9811.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-055b8194-2b53-4797-bfad-0b1e728d9811.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-055b8194-2b53-4797-bfad-0b1e728d9811 img.shogun-image,
  #s-055b8194-2b53-4797-bfad-0b1e728d9811 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-055b8194-2b53-4797-bfad-0b1e728d9811 {
    width: 100%;
    height: auto;
  }

  #s-055b8194-2b53-4797-bfad-0b1e728d9811 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-055b8194-2b53-4797-bfad-0b1e728d9811.shogun-image {
    
    
  }


.s-055b8194-2b53-4797-bfad-0b1e728d9811 .shogun-image-content {
  
    align-items: center;
  
}

.s-055b8194-2b53-4797-bfad-0b1e728d9811.shg-align-container {
  display: flex;
  justify-content: center
}

.s-055b8194-2b53-4797-bfad-0b1e728d9811.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-055b8194-2b53-4797-bfad-0b1e728d9811.shogun-image {
  box-sizing: border-box;
}

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



  #s-055b8194-2b53-4797-bfad-0b1e728d9811 img.shogun-image,
  #s-055b8194-2b53-4797-bfad-0b1e728d9811 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-055b8194-2b53-4797-bfad-0b1e728d9811 {
    width: 100%;
    height: auto;
  }

  #s-055b8194-2b53-4797-bfad-0b1e728d9811 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-055b8194-2b53-4797-bfad-0b1e728d9811.shogun-image {
    
    
  }


.s-055b8194-2b53-4797-bfad-0b1e728d9811 .shogun-image-content {
  
    align-items: center;
  
}

.s-055b8194-2b53-4797-bfad-0b1e728d9811.shg-align-container {
  display: flex;
  justify-content: center
}

.s-055b8194-2b53-4797-bfad-0b1e728d9811.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-055b8194-2b53-4797-bfad-0b1e728d9811.shogun-image {
  box-sizing: border-box;
}

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



  #s-055b8194-2b53-4797-bfad-0b1e728d9811 img.shogun-image,
  #s-055b8194-2b53-4797-bfad-0b1e728d9811 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-055b8194-2b53-4797-bfad-0b1e728d9811 {
    width: 100%;
    height: auto;
  }

  #s-055b8194-2b53-4797-bfad-0b1e728d9811 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-055b8194-2b53-4797-bfad-0b1e728d9811.shogun-image {
    
    
  }


.s-055b8194-2b53-4797-bfad-0b1e728d9811 .shogun-image-content {
  
    align-items: center;
  
}

.s-055b8194-2b53-4797-bfad-0b1e728d9811.shg-align-container {
  display: flex;
  justify-content: center
}

.s-055b8194-2b53-4797-bfad-0b1e728d9811.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-055b8194-2b53-4797-bfad-0b1e728d9811.shogun-image {
  box-sizing: border-box;
}

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



  #s-055b8194-2b53-4797-bfad-0b1e728d9811 img.shogun-image,
  #s-055b8194-2b53-4797-bfad-0b1e728d9811 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-055b8194-2b53-4797-bfad-0b1e728d9811 {
    width: 100%;
    height: auto;
  }

  #s-055b8194-2b53-4797-bfad-0b1e728d9811 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-055b8194-2b53-4797-bfad-0b1e728d9811.shogun-image {
    
    
  }


.s-055b8194-2b53-4797-bfad-0b1e728d9811 .shogun-image-content {
  
    align-items: center;
  
}

.s-055b8194-2b53-4797-bfad-0b1e728d9811.shg-align-container {
  display: flex;
  justify-content: center
}

.s-055b8194-2b53-4797-bfad-0b1e728d9811.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-055b8194-2b53-4797-bfad-0b1e728d9811.shogun-image {
  box-sizing: border-box;
}

}
#s-4b2e9a87-cfd6-433e-8836-3a3af19ebcf3 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-4b2e9a87-cfd6-433e-8836-3a3af19ebcf3 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-1fd19b0b-1fd2-4e85-8455-2665ec5c6a06 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-1fd19b0b-1fd2-4e85-8455-2665ec5c6a06 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-6599c681-5a68-4467-b234-64d71609c1cf {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-6599c681-5a68-4467-b234-64d71609c1cf:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-6599c681-5a68-4467-b234-64d71609c1cf:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-6599c681-5a68-4467-b234-64d71609c1cf {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-6599c681-5a68-4467-b234-64d71609c1cf {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-6599c681-5a68-4467-b234-64d71609c1cf-root {
    text-align: center;
  }


#s-6599c681-5a68-4467-b234-64d71609c1cf.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-6599c681-5a68-4467-b234-64d71609c1cf-root {
    text-align: center;
  }


#s-6599c681-5a68-4467-b234-64d71609c1cf.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6599c681-5a68-4467-b234-64d71609c1cf-root {
    text-align: center;
  }


#s-6599c681-5a68-4467-b234-64d71609c1cf.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6599c681-5a68-4467-b234-64d71609c1cf-root {
    text-align: center;
  }


#s-6599c681-5a68-4467-b234-64d71609c1cf.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-6599c681-5a68-4467-b234-64d71609c1cf-root {
    text-align: center;
  }


#s-6599c681-5a68-4467-b234-64d71609c1cf.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-6aa54a9f-2998-4f3e-9846-db0fbeffa078 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (min-width: 1200px){#s-6aa54a9f-2998-4f3e-9846-db0fbeffa078 {
  display: none;
}
#s-6aa54a9f-2998-4f3e-9846-db0fbeffa078, #wrap-s-6aa54a9f-2998-4f3e-9846-db0fbeffa078 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6aa54a9f-2998-4f3e-9846-db0fbeffa078 {
  display: none;
}
#s-6aa54a9f-2998-4f3e-9846-db0fbeffa078, #wrap-s-6aa54a9f-2998-4f3e-9846-db0fbeffa078 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6aa54a9f-2998-4f3e-9846-db0fbeffa078 {
  display: none;
}
#s-6aa54a9f-2998-4f3e-9846-db0fbeffa078, #wrap-s-6aa54a9f-2998-4f3e-9846-db0fbeffa078 { display:none !important; }}@media (max-width: 767px){#s-6aa54a9f-2998-4f3e-9846-db0fbeffa078 {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-6aa54a9f-2998-4f3e-9846-db0fbeffa078 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6aa54a9f-2998-4f3e-9846-db0fbeffa078.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8fd32e54-647b-47e9-8f33-452d1f2416f0 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 img.shogun-image,
  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 {
    width: 100%;
    height: auto;
  }

  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shogun-image {
    
    
  }


.s-8fd32e54-647b-47e9-8f33-452d1f2416f0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 img.shogun-image,
  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 {
    width: 100%;
    height: auto;
  }

  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shogun-image {
    
    
  }


.s-8fd32e54-647b-47e9-8f33-452d1f2416f0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shogun-image {
  box-sizing: border-box;
}

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



  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 img.shogun-image,
  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 {
    width: 100%;
    height: auto;
  }

  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shogun-image {
    
    
  }


.s-8fd32e54-647b-47e9-8f33-452d1f2416f0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shogun-image {
  box-sizing: border-box;
}

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



  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 img.shogun-image,
  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 {
    width: 100%;
    height: auto;
  }

  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shogun-image {
    
    
  }


.s-8fd32e54-647b-47e9-8f33-452d1f2416f0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shogun-image {
  box-sizing: border-box;
}

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



  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 img.shogun-image,
  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 {
    width: 100%;
    height: auto;
  }

  #s-8fd32e54-647b-47e9-8f33-452d1f2416f0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shogun-image {
    
    
  }


.s-8fd32e54-647b-47e9-8f33-452d1f2416f0 .shogun-image-content {
  
    align-items: center;
  
}

.s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8fd32e54-647b-47e9-8f33-452d1f2416f0.shogun-image {
  box-sizing: border-box;
}

}
#s-e80be3e8-b215-449d-970b-b52081ca6449 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-e80be3e8-b215-449d-970b-b52081ca6449 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-1a537fa6-faa6-4e75-a77e-1679917caf23 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-1a537fa6-faa6-4e75-a77e-1679917caf23 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-2bde5d54-d655-47b8-a85b-799d0c0a045b {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-2bde5d54-d655-47b8-a85b-799d0c0a045b:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-2bde5d54-d655-47b8-a85b-799d0c0a045b:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-2bde5d54-d655-47b8-a85b-799d0c0a045b {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-2bde5d54-d655-47b8-a85b-799d0c0a045b {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-2bde5d54-d655-47b8-a85b-799d0c0a045b-root {
    text-align: center;
  }


#s-2bde5d54-d655-47b8-a85b-799d0c0a045b.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-2bde5d54-d655-47b8-a85b-799d0c0a045b-root {
    text-align: center;
  }


#s-2bde5d54-d655-47b8-a85b-799d0c0a045b.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2bde5d54-d655-47b8-a85b-799d0c0a045b-root {
    text-align: center;
  }


#s-2bde5d54-d655-47b8-a85b-799d0c0a045b.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2bde5d54-d655-47b8-a85b-799d0c0a045b-root {
    text-align: center;
  }


#s-2bde5d54-d655-47b8-a85b-799d0c0a045b.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-2bde5d54-d655-47b8-a85b-799d0c0a045b-root {
    text-align: center;
  }


#s-2bde5d54-d655-47b8-a85b-799d0c0a045b.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-c19718f1-85e5-4080-b061-aef7cc6a6369 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-c19718f1-85e5-4080-b061-aef7cc6a6369 {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-c19718f1-85e5-4080-b061-aef7cc6a6369 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c19718f1-85e5-4080-b061-aef7cc6a6369.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ff2a9d12-223b-42f0-a188-9db56ede74f0 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 img.shogun-image,
  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 {
    width: 100%;
    height: auto;
  }

  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shogun-image {
    
    
  }


.s-ff2a9d12-223b-42f0-a188-9db56ede74f0 .shogun-image-content {
  
    align-items: center;
  
}

.s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 img.shogun-image,
  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 {
    width: 100%;
    height: auto;
  }

  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shogun-image {
    
    
  }


.s-ff2a9d12-223b-42f0-a188-9db56ede74f0 .shogun-image-content {
  
    align-items: center;
  
}

.s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shogun-image {
  box-sizing: border-box;
}

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



  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 img.shogun-image,
  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 {
    width: 100%;
    height: auto;
  }

  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shogun-image {
    
    
  }


.s-ff2a9d12-223b-42f0-a188-9db56ede74f0 .shogun-image-content {
  
    align-items: center;
  
}

.s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shogun-image {
  box-sizing: border-box;
}

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



  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 img.shogun-image,
  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 {
    width: 100%;
    height: auto;
  }

  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shogun-image {
    
    
  }


.s-ff2a9d12-223b-42f0-a188-9db56ede74f0 .shogun-image-content {
  
    align-items: center;
  
}

.s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shogun-image {
  box-sizing: border-box;
}

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



  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 img.shogun-image,
  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 {
    width: 100%;
    height: auto;
  }

  #s-ff2a9d12-223b-42f0-a188-9db56ede74f0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shogun-image {
    
    
  }


.s-ff2a9d12-223b-42f0-a188-9db56ede74f0 .shogun-image-content {
  
    align-items: center;
  
}

.s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ff2a9d12-223b-42f0-a188-9db56ede74f0.shogun-image {
  box-sizing: border-box;
}

}
#s-92a67337-173b-4c2f-b900-e4099100bd31 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-92a67337-173b-4c2f-b900-e4099100bd31 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-a2cdb204-4117-4b31-9d0f-f4b811fa2130 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-a2cdb204-4117-4b31-9d0f-f4b811fa2130 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-de67c295-c9e9-42e2-9f86-6ea89666c09d {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-de67c295-c9e9-42e2-9f86-6ea89666c09d:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-de67c295-c9e9-42e2-9f86-6ea89666c09d:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-de67c295-c9e9-42e2-9f86-6ea89666c09d {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-de67c295-c9e9-42e2-9f86-6ea89666c09d {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-de67c295-c9e9-42e2-9f86-6ea89666c09d-root {
    text-align: center;
  }


#s-de67c295-c9e9-42e2-9f86-6ea89666c09d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-de67c295-c9e9-42e2-9f86-6ea89666c09d-root {
    text-align: center;
  }


#s-de67c295-c9e9-42e2-9f86-6ea89666c09d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-de67c295-c9e9-42e2-9f86-6ea89666c09d-root {
    text-align: center;
  }


#s-de67c295-c9e9-42e2-9f86-6ea89666c09d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-de67c295-c9e9-42e2-9f86-6ea89666c09d-root {
    text-align: center;
  }


#s-de67c295-c9e9-42e2-9f86-6ea89666c09d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-de67c295-c9e9-42e2-9f86-6ea89666c09d-root {
    text-align: center;
  }


#s-de67c295-c9e9-42e2-9f86-6ea89666c09d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-8687c686-4bbc-462c-9f8c-e62e15115d7e {
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px){#s-8687c686-4bbc-462c-9f8c-e62e15115d7e {
  display: none;
}
#s-8687c686-4bbc-462c-9f8c-e62e15115d7e, #wrap-s-8687c686-4bbc-462c-9f8c-e62e15115d7e { display:none !important; }}@media (max-width: 767px){#s-8687c686-4bbc-462c-9f8c-e62e15115d7e {
  margin-bottom: 10px;
display: none;
}
#s-8687c686-4bbc-462c-9f8c-e62e15115d7e, #wrap-s-8687c686-4bbc-462c-9f8c-e62e15115d7e { display:none !important; }}
@media (min-width: 0px) {
[id="s-8687c686-4bbc-462c-9f8c-e62e15115d7e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-8687c686-4bbc-462c-9f8c-e62e15115d7e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-8687c686-4bbc-462c-9f8c-e62e15115d7e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-8687c686-4bbc-462c-9f8c-e62e15115d7e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-2e081cdb-9626-4aed-9f36-2e238dad6b0c {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-2e081cdb-9626-4aed-9f36-2e238dad6b0c {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-2e081cdb-9626-4aed-9f36-2e238dad6b0c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2e081cdb-9626-4aed-9f36-2e238dad6b0c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 img.shogun-image,
  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 {
    width: 100%;
    height: auto;
  }

  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shogun-image {
    
    
  }


.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 img.shogun-image,
  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 {
    width: 100%;
    height: auto;
  }

  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shogun-image {
    
    
  }


.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shogun-image {
  box-sizing: border-box;
}

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



  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 img.shogun-image,
  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 {
    width: 100%;
    height: auto;
  }

  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shogun-image {
    
    
  }


.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shogun-image {
  box-sizing: border-box;
}

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



  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 img.shogun-image,
  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 {
    width: 100%;
    height: auto;
  }

  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shogun-image {
    
    
  }


.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shogun-image {
  box-sizing: border-box;
}

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



  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 img.shogun-image,
  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 {
    width: 100%;
    height: auto;
  }

  #s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shogun-image {
    
    
  }


.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5c61523-46ac-430f-bfaa-fca69a5d4cd9.shogun-image {
  box-sizing: border-box;
}

}
#s-74459f7d-1171-4cfe-8083-4f1165e3da7d {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-74459f7d-1171-4cfe-8083-4f1165e3da7d .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-3ef0ae78-dec1-453b-b3a5-c584550cbea5 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-3ef0ae78-dec1-453b-b3a5-c584550cbea5 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-4863e233-e2ca-4cc5-9956-1dfd94991e1e {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-4863e233-e2ca-4cc5-9956-1dfd94991e1e:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-4863e233-e2ca-4cc5-9956-1dfd94991e1e:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-4863e233-e2ca-4cc5-9956-1dfd94991e1e {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-4863e233-e2ca-4cc5-9956-1dfd94991e1e {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-4863e233-e2ca-4cc5-9956-1dfd94991e1e-root {
    text-align: center;
  }


#s-4863e233-e2ca-4cc5-9956-1dfd94991e1e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-4863e233-e2ca-4cc5-9956-1dfd94991e1e-root {
    text-align: center;
  }


#s-4863e233-e2ca-4cc5-9956-1dfd94991e1e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4863e233-e2ca-4cc5-9956-1dfd94991e1e-root {
    text-align: center;
  }


#s-4863e233-e2ca-4cc5-9956-1dfd94991e1e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4863e233-e2ca-4cc5-9956-1dfd94991e1e-root {
    text-align: center;
  }


#s-4863e233-e2ca-4cc5-9956-1dfd94991e1e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-4863e233-e2ca-4cc5-9956-1dfd94991e1e-root {
    text-align: center;
  }


#s-4863e233-e2ca-4cc5-9956-1dfd94991e1e.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-0da1391f-788c-471e-ac93-561aaba39448 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-0da1391f-788c-471e-ac93-561aaba39448 {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-0da1391f-788c-471e-ac93-561aaba39448 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0da1391f-788c-471e-ac93-561aaba39448.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-49620379-9f92-4b23-8b6a-185c075daf1d {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-49620379-9f92-4b23-8b6a-185c075daf1d img.shogun-image,
  #s-49620379-9f92-4b23-8b6a-185c075daf1d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-49620379-9f92-4b23-8b6a-185c075daf1d {
    width: 100%;
    height: auto;
  }

  #s-49620379-9f92-4b23-8b6a-185c075daf1d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-49620379-9f92-4b23-8b6a-185c075daf1d.shogun-image {
    
    
  }


.s-49620379-9f92-4b23-8b6a-185c075daf1d .shogun-image-content {
  
    align-items: center;
  
}

.s-49620379-9f92-4b23-8b6a-185c075daf1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-49620379-9f92-4b23-8b6a-185c075daf1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-49620379-9f92-4b23-8b6a-185c075daf1d.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-49620379-9f92-4b23-8b6a-185c075daf1d img.shogun-image,
  #s-49620379-9f92-4b23-8b6a-185c075daf1d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-49620379-9f92-4b23-8b6a-185c075daf1d {
    width: 100%;
    height: auto;
  }

  #s-49620379-9f92-4b23-8b6a-185c075daf1d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-49620379-9f92-4b23-8b6a-185c075daf1d.shogun-image {
    
    
  }


.s-49620379-9f92-4b23-8b6a-185c075daf1d .shogun-image-content {
  
    align-items: center;
  
}

.s-49620379-9f92-4b23-8b6a-185c075daf1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-49620379-9f92-4b23-8b6a-185c075daf1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-49620379-9f92-4b23-8b6a-185c075daf1d.shogun-image {
  box-sizing: border-box;
}

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



  #s-49620379-9f92-4b23-8b6a-185c075daf1d img.shogun-image,
  #s-49620379-9f92-4b23-8b6a-185c075daf1d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-49620379-9f92-4b23-8b6a-185c075daf1d {
    width: 100%;
    height: auto;
  }

  #s-49620379-9f92-4b23-8b6a-185c075daf1d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-49620379-9f92-4b23-8b6a-185c075daf1d.shogun-image {
    
    
  }


.s-49620379-9f92-4b23-8b6a-185c075daf1d .shogun-image-content {
  
    align-items: center;
  
}

.s-49620379-9f92-4b23-8b6a-185c075daf1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-49620379-9f92-4b23-8b6a-185c075daf1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-49620379-9f92-4b23-8b6a-185c075daf1d.shogun-image {
  box-sizing: border-box;
}

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



  #s-49620379-9f92-4b23-8b6a-185c075daf1d img.shogun-image,
  #s-49620379-9f92-4b23-8b6a-185c075daf1d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-49620379-9f92-4b23-8b6a-185c075daf1d {
    width: 100%;
    height: auto;
  }

  #s-49620379-9f92-4b23-8b6a-185c075daf1d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-49620379-9f92-4b23-8b6a-185c075daf1d.shogun-image {
    
    
  }


.s-49620379-9f92-4b23-8b6a-185c075daf1d .shogun-image-content {
  
    align-items: center;
  
}

.s-49620379-9f92-4b23-8b6a-185c075daf1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-49620379-9f92-4b23-8b6a-185c075daf1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-49620379-9f92-4b23-8b6a-185c075daf1d.shogun-image {
  box-sizing: border-box;
}

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



  #s-49620379-9f92-4b23-8b6a-185c075daf1d img.shogun-image,
  #s-49620379-9f92-4b23-8b6a-185c075daf1d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-49620379-9f92-4b23-8b6a-185c075daf1d {
    width: 100%;
    height: auto;
  }

  #s-49620379-9f92-4b23-8b6a-185c075daf1d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-49620379-9f92-4b23-8b6a-185c075daf1d.shogun-image {
    
    
  }


.s-49620379-9f92-4b23-8b6a-185c075daf1d .shogun-image-content {
  
    align-items: center;
  
}

.s-49620379-9f92-4b23-8b6a-185c075daf1d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-49620379-9f92-4b23-8b6a-185c075daf1d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-49620379-9f92-4b23-8b6a-185c075daf1d.shogun-image {
  box-sizing: border-box;
}

}
#s-315ed8dd-b6e8-4bcc-87e1-716eecd08bcc {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-315ed8dd-b6e8-4bcc-87e1-716eecd08bcc .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-4eb02841-2d27-4a8a-a1a5-ece8c6d01148 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-4eb02841-2d27-4a8a-a1a5-ece8c6d01148 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-fdefdddf-ecd1-4d3e-8271-82b7ed26afef {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-fdefdddf-ecd1-4d3e-8271-82b7ed26afef:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-fdefdddf-ecd1-4d3e-8271-82b7ed26afef:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-fdefdddf-ecd1-4d3e-8271-82b7ed26afef {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-fdefdddf-ecd1-4d3e-8271-82b7ed26afef {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-fdefdddf-ecd1-4d3e-8271-82b7ed26afef-root {
    text-align: center;
  }


#s-fdefdddf-ecd1-4d3e-8271-82b7ed26afef.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-fdefdddf-ecd1-4d3e-8271-82b7ed26afef-root {
    text-align: center;
  }


#s-fdefdddf-ecd1-4d3e-8271-82b7ed26afef.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fdefdddf-ecd1-4d3e-8271-82b7ed26afef-root {
    text-align: center;
  }


#s-fdefdddf-ecd1-4d3e-8271-82b7ed26afef.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fdefdddf-ecd1-4d3e-8271-82b7ed26afef-root {
    text-align: center;
  }


#s-fdefdddf-ecd1-4d3e-8271-82b7ed26afef.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-fdefdddf-ecd1-4d3e-8271-82b7ed26afef-root {
    text-align: center;
  }


#s-fdefdddf-ecd1-4d3e-8271-82b7ed26afef.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-37a87b5f-eb44-4455-b5d3-ea024c0e2e6e {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-37a87b5f-eb44-4455-b5d3-ea024c0e2e6e {
  margin-top: 25px;
margin-bottom: 25px;
}
}







#s-37a87b5f-eb44-4455-b5d3-ea024c0e2e6e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-37a87b5f-eb44-4455-b5d3-ea024c0e2e6e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 {
  max-width: 2048px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 img.shogun-image,
  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 {
    width: 100%;
    height: auto;
  }

  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shogun-image {
    
    
  }


.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 img.shogun-image,
  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 {
    width: 100%;
    height: auto;
  }

  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shogun-image {
    
    
  }


.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shogun-image {
  box-sizing: border-box;
}

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



  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 img.shogun-image,
  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 {
    width: 100%;
    height: auto;
  }

  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shogun-image {
    
    
  }


.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shogun-image {
  box-sizing: border-box;
}

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



  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 img.shogun-image,
  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 {
    width: 100%;
    height: auto;
  }

  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shogun-image {
    
    
  }


.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shogun-image {
  box-sizing: border-box;
}

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



  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 img.shogun-image,
  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 {
    width: 100%;
    height: auto;
  }

  #s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shogun-image {
    
    
  }


.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e3e45093-fb47-43a0-986e-f2bfcdb877b0.shogun-image {
  box-sizing: border-box;
}

}
#s-3c61e0e6-37b4-4c12-9733-a90ec97a5fa9 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-3c61e0e6-37b4-4c12-9733-a90ec97a5fa9 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-999303d3-bb69-427d-bb0e-69ccb2589ff2 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-999303d3-bb69-427d-bb0e-69ccb2589ff2 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-aa836d9e-4d93-42ea-809a-c0923d8e92b2 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-aa836d9e-4d93-42ea-809a-c0923d8e92b2:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-aa836d9e-4d93-42ea-809a-c0923d8e92b2:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-aa836d9e-4d93-42ea-809a-c0923d8e92b2 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-aa836d9e-4d93-42ea-809a-c0923d8e92b2 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-aa836d9e-4d93-42ea-809a-c0923d8e92b2-root {
    text-align: center;
  }


#s-aa836d9e-4d93-42ea-809a-c0923d8e92b2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-aa836d9e-4d93-42ea-809a-c0923d8e92b2-root {
    text-align: center;
  }


#s-aa836d9e-4d93-42ea-809a-c0923d8e92b2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-aa836d9e-4d93-42ea-809a-c0923d8e92b2-root {
    text-align: center;
  }


#s-aa836d9e-4d93-42ea-809a-c0923d8e92b2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-aa836d9e-4d93-42ea-809a-c0923d8e92b2-root {
    text-align: center;
  }


#s-aa836d9e-4d93-42ea-809a-c0923d8e92b2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-aa836d9e-4d93-42ea-809a-c0923d8e92b2-root {
    text-align: center;
  }


#s-aa836d9e-4d93-42ea-809a-c0923d8e92b2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-9501d1ef-9d19-43dc-b0c8-0ef0f1464b4d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-9501d1ef-9d19-43dc-b0c8-0ef0f1464b4d {
  padding-top: 30px;
}
}
#s-9501d1ef-9d19-43dc-b0c8-0ef0f1464b4d .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto Condensed";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-14303218-4d88-4a58-99b2-719bb3fbdf55 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-14303218-4d88-4a58-99b2-719bb3fbdf55 {
  display: none;
}
#s-14303218-4d88-4a58-99b2-719bb3fbdf55, #wrap-s-14303218-4d88-4a58-99b2-719bb3fbdf55 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-14303218-4d88-4a58-99b2-719bb3fbdf55 {
  display: none;
}
#s-14303218-4d88-4a58-99b2-719bb3fbdf55, #wrap-s-14303218-4d88-4a58-99b2-719bb3fbdf55 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-14303218-4d88-4a58-99b2-719bb3fbdf55 {
  
}
}
#s-14303218-4d88-4a58-99b2-719bb3fbdf55 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-14303218-4d88-4a58-99b2-719bb3fbdf55 .shg-sld-nav-button.shg-sld-left,
#s-14303218-4d88-4a58-99b2-719bb3fbdf55 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-05cdbfb5-bf73-4b58-a518-429251b9e827 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-05cdbfb5-bf73-4b58-a518-429251b9e827 {
  margin-top: 0px;
margin-bottom: 0px;
}
}







#s-05cdbfb5-bf73-4b58-a518-429251b9e827 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-05cdbfb5-bf73-4b58-a518-429251b9e827.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d076c6be-f7cc-46be-9692-42c1193efabc {
  max-width: 1360px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-d076c6be-f7cc-46be-9692-42c1193efabc img.shogun-image,
  #s-d076c6be-f7cc-46be-9692-42c1193efabc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d076c6be-f7cc-46be-9692-42c1193efabc {
    width: 100%;
    height: auto;
  }

  #s-d076c6be-f7cc-46be-9692-42c1193efabc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d076c6be-f7cc-46be-9692-42c1193efabc.shogun-image {
    
    
  }


.s-d076c6be-f7cc-46be-9692-42c1193efabc .shogun-image-content {
  
    align-items: center;
  
}

.s-d076c6be-f7cc-46be-9692-42c1193efabc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d076c6be-f7cc-46be-9692-42c1193efabc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d076c6be-f7cc-46be-9692-42c1193efabc.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-d076c6be-f7cc-46be-9692-42c1193efabc img.shogun-image,
  #s-d076c6be-f7cc-46be-9692-42c1193efabc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d076c6be-f7cc-46be-9692-42c1193efabc {
    width: 100%;
    height: auto;
  }

  #s-d076c6be-f7cc-46be-9692-42c1193efabc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d076c6be-f7cc-46be-9692-42c1193efabc.shogun-image {
    
    
  }


.s-d076c6be-f7cc-46be-9692-42c1193efabc .shogun-image-content {
  
    align-items: center;
  
}

.s-d076c6be-f7cc-46be-9692-42c1193efabc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d076c6be-f7cc-46be-9692-42c1193efabc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d076c6be-f7cc-46be-9692-42c1193efabc.shogun-image {
  box-sizing: border-box;
}

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



  #s-d076c6be-f7cc-46be-9692-42c1193efabc img.shogun-image,
  #s-d076c6be-f7cc-46be-9692-42c1193efabc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d076c6be-f7cc-46be-9692-42c1193efabc {
    width: 100%;
    height: auto;
  }

  #s-d076c6be-f7cc-46be-9692-42c1193efabc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d076c6be-f7cc-46be-9692-42c1193efabc.shogun-image {
    
    
  }


.s-d076c6be-f7cc-46be-9692-42c1193efabc .shogun-image-content {
  
    align-items: center;
  
}

.s-d076c6be-f7cc-46be-9692-42c1193efabc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d076c6be-f7cc-46be-9692-42c1193efabc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d076c6be-f7cc-46be-9692-42c1193efabc.shogun-image {
  box-sizing: border-box;
}

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



  #s-d076c6be-f7cc-46be-9692-42c1193efabc img.shogun-image,
  #s-d076c6be-f7cc-46be-9692-42c1193efabc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d076c6be-f7cc-46be-9692-42c1193efabc {
    width: 100%;
    height: auto;
  }

  #s-d076c6be-f7cc-46be-9692-42c1193efabc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d076c6be-f7cc-46be-9692-42c1193efabc.shogun-image {
    
    
  }


.s-d076c6be-f7cc-46be-9692-42c1193efabc .shogun-image-content {
  
    align-items: center;
  
}

.s-d076c6be-f7cc-46be-9692-42c1193efabc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d076c6be-f7cc-46be-9692-42c1193efabc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d076c6be-f7cc-46be-9692-42c1193efabc.shogun-image {
  box-sizing: border-box;
}

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



  #s-d076c6be-f7cc-46be-9692-42c1193efabc img.shogun-image,
  #s-d076c6be-f7cc-46be-9692-42c1193efabc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d076c6be-f7cc-46be-9692-42c1193efabc {
    width: 100%;
    height: auto;
  }

  #s-d076c6be-f7cc-46be-9692-42c1193efabc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d076c6be-f7cc-46be-9692-42c1193efabc.shogun-image {
    
    
  }


.s-d076c6be-f7cc-46be-9692-42c1193efabc .shogun-image-content {
  
    align-items: center;
  
}

.s-d076c6be-f7cc-46be-9692-42c1193efabc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d076c6be-f7cc-46be-9692-42c1193efabc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d076c6be-f7cc-46be-9692-42c1193efabc.shogun-image {
  box-sizing: border-box;
}

}
#s-86680e9d-f01b-4855-bb5a-51099668c776 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-86680e9d-f01b-4855-bb5a-51099668c776 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-8960ac4b-98a8-4316-b65e-114dcae1d377 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-8960ac4b-98a8-4316-b65e-114dcae1d377 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-93f1a7ac-5c7b-4719-b742-fdf8e4ed7a36 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-93f1a7ac-5c7b-4719-b742-fdf8e4ed7a36:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-93f1a7ac-5c7b-4719-b742-fdf8e4ed7a36:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-93f1a7ac-5c7b-4719-b742-fdf8e4ed7a36 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-93f1a7ac-5c7b-4719-b742-fdf8e4ed7a36 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-93f1a7ac-5c7b-4719-b742-fdf8e4ed7a36-root {
    text-align: center;
  }


#s-93f1a7ac-5c7b-4719-b742-fdf8e4ed7a36.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-93f1a7ac-5c7b-4719-b742-fdf8e4ed7a36-root {
    text-align: center;
  }


#s-93f1a7ac-5c7b-4719-b742-fdf8e4ed7a36.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-93f1a7ac-5c7b-4719-b742-fdf8e4ed7a36-root {
    text-align: center;
  }


#s-93f1a7ac-5c7b-4719-b742-fdf8e4ed7a36.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-93f1a7ac-5c7b-4719-b742-fdf8e4ed7a36-root {
    text-align: center;
  }


#s-93f1a7ac-5c7b-4719-b742-fdf8e4ed7a36.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-93f1a7ac-5c7b-4719-b742-fdf8e4ed7a36-root {
    text-align: center;
  }


#s-93f1a7ac-5c7b-4719-b742-fdf8e4ed7a36.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-acf53e2b-f278-4383-96f0-7f014090b044 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-acf53e2b-f278-4383-96f0-7f014090b044 {
  margin-top: 0px;
margin-bottom: 0px;
}
}







#s-acf53e2b-f278-4383-96f0-7f014090b044 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-acf53e2b-f278-4383-96f0-7f014090b044.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8155603a-ec44-4f23-8943-ecde5fd941cc {
  max-width: 1360px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-8155603a-ec44-4f23-8943-ecde5fd941cc img.shogun-image,
  #s-8155603a-ec44-4f23-8943-ecde5fd941cc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8155603a-ec44-4f23-8943-ecde5fd941cc {
    width: 100%;
    height: auto;
  }

  #s-8155603a-ec44-4f23-8943-ecde5fd941cc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8155603a-ec44-4f23-8943-ecde5fd941cc.shogun-image {
    
    
  }


.s-8155603a-ec44-4f23-8943-ecde5fd941cc .shogun-image-content {
  
    align-items: center;
  
}

.s-8155603a-ec44-4f23-8943-ecde5fd941cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8155603a-ec44-4f23-8943-ecde5fd941cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8155603a-ec44-4f23-8943-ecde5fd941cc.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-8155603a-ec44-4f23-8943-ecde5fd941cc img.shogun-image,
  #s-8155603a-ec44-4f23-8943-ecde5fd941cc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8155603a-ec44-4f23-8943-ecde5fd941cc {
    width: 100%;
    height: auto;
  }

  #s-8155603a-ec44-4f23-8943-ecde5fd941cc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8155603a-ec44-4f23-8943-ecde5fd941cc.shogun-image {
    
    
  }


.s-8155603a-ec44-4f23-8943-ecde5fd941cc .shogun-image-content {
  
    align-items: center;
  
}

.s-8155603a-ec44-4f23-8943-ecde5fd941cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8155603a-ec44-4f23-8943-ecde5fd941cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8155603a-ec44-4f23-8943-ecde5fd941cc.shogun-image {
  box-sizing: border-box;
}

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



  #s-8155603a-ec44-4f23-8943-ecde5fd941cc img.shogun-image,
  #s-8155603a-ec44-4f23-8943-ecde5fd941cc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8155603a-ec44-4f23-8943-ecde5fd941cc {
    width: 100%;
    height: auto;
  }

  #s-8155603a-ec44-4f23-8943-ecde5fd941cc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8155603a-ec44-4f23-8943-ecde5fd941cc.shogun-image {
    
    
  }


.s-8155603a-ec44-4f23-8943-ecde5fd941cc .shogun-image-content {
  
    align-items: center;
  
}

.s-8155603a-ec44-4f23-8943-ecde5fd941cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8155603a-ec44-4f23-8943-ecde5fd941cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8155603a-ec44-4f23-8943-ecde5fd941cc.shogun-image {
  box-sizing: border-box;
}

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



  #s-8155603a-ec44-4f23-8943-ecde5fd941cc img.shogun-image,
  #s-8155603a-ec44-4f23-8943-ecde5fd941cc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8155603a-ec44-4f23-8943-ecde5fd941cc {
    width: 100%;
    height: auto;
  }

  #s-8155603a-ec44-4f23-8943-ecde5fd941cc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8155603a-ec44-4f23-8943-ecde5fd941cc.shogun-image {
    
    
  }


.s-8155603a-ec44-4f23-8943-ecde5fd941cc .shogun-image-content {
  
    align-items: center;
  
}

.s-8155603a-ec44-4f23-8943-ecde5fd941cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8155603a-ec44-4f23-8943-ecde5fd941cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8155603a-ec44-4f23-8943-ecde5fd941cc.shogun-image {
  box-sizing: border-box;
}

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



  #s-8155603a-ec44-4f23-8943-ecde5fd941cc img.shogun-image,
  #s-8155603a-ec44-4f23-8943-ecde5fd941cc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8155603a-ec44-4f23-8943-ecde5fd941cc {
    width: 100%;
    height: auto;
  }

  #s-8155603a-ec44-4f23-8943-ecde5fd941cc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8155603a-ec44-4f23-8943-ecde5fd941cc.shogun-image {
    
    
  }


.s-8155603a-ec44-4f23-8943-ecde5fd941cc .shogun-image-content {
  
    align-items: center;
  
}

.s-8155603a-ec44-4f23-8943-ecde5fd941cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8155603a-ec44-4f23-8943-ecde5fd941cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8155603a-ec44-4f23-8943-ecde5fd941cc.shogun-image {
  box-sizing: border-box;
}

}
#s-f47ec566-724a-4bba-822f-8496ba5eaf4d {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-f47ec566-724a-4bba-822f-8496ba5eaf4d .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-0a315d24-4a1d-46ea-9624-737b138c56e0 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-0a315d24-4a1d-46ea-9624-737b138c56e0 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-25eec074-8445-4601-bad7-5ba7c83dde99 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-25eec074-8445-4601-bad7-5ba7c83dde99:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-25eec074-8445-4601-bad7-5ba7c83dde99:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-25eec074-8445-4601-bad7-5ba7c83dde99 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-25eec074-8445-4601-bad7-5ba7c83dde99 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-25eec074-8445-4601-bad7-5ba7c83dde99-root {
    text-align: center;
  }


#s-25eec074-8445-4601-bad7-5ba7c83dde99.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-25eec074-8445-4601-bad7-5ba7c83dde99-root {
    text-align: center;
  }


#s-25eec074-8445-4601-bad7-5ba7c83dde99.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-25eec074-8445-4601-bad7-5ba7c83dde99-root {
    text-align: center;
  }


#s-25eec074-8445-4601-bad7-5ba7c83dde99.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-25eec074-8445-4601-bad7-5ba7c83dde99-root {
    text-align: center;
  }


#s-25eec074-8445-4601-bad7-5ba7c83dde99.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-25eec074-8445-4601-bad7-5ba7c83dde99-root {
    text-align: center;
  }


#s-25eec074-8445-4601-bad7-5ba7c83dde99.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-5cbe93ba-ffe8-4def-9c72-013708663ff6 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-5cbe93ba-ffe8-4def-9c72-013708663ff6 {
  margin-top: 0px;
margin-bottom: 0px;
}
}







#s-5cbe93ba-ffe8-4def-9c72-013708663ff6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5cbe93ba-ffe8-4def-9c72-013708663ff6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8bdfe0da-2238-4d3c-a1df-e191557012c6 {
  max-width: 1360px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 img.shogun-image,
  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 {
    width: 100%;
    height: auto;
  }

  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shogun-image {
    
    
  }


.s-8bdfe0da-2238-4d3c-a1df-e191557012c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 img.shogun-image,
  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 {
    width: 100%;
    height: auto;
  }

  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shogun-image {
    
    
  }


.s-8bdfe0da-2238-4d3c-a1df-e191557012c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shogun-image {
  box-sizing: border-box;
}

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



  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 img.shogun-image,
  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 {
    width: 100%;
    height: auto;
  }

  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shogun-image {
    
    
  }


.s-8bdfe0da-2238-4d3c-a1df-e191557012c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shogun-image {
  box-sizing: border-box;
}

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



  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 img.shogun-image,
  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 {
    width: 100%;
    height: auto;
  }

  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shogun-image {
    
    
  }


.s-8bdfe0da-2238-4d3c-a1df-e191557012c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shogun-image {
  box-sizing: border-box;
}

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



  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 img.shogun-image,
  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 {
    width: 100%;
    height: auto;
  }

  #s-8bdfe0da-2238-4d3c-a1df-e191557012c6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shogun-image {
    
    
  }


.s-8bdfe0da-2238-4d3c-a1df-e191557012c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8bdfe0da-2238-4d3c-a1df-e191557012c6.shogun-image {
  box-sizing: border-box;
}

}
#s-3e3274c8-f88a-4f12-8679-0f97fbdf3259 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-3e3274c8-f88a-4f12-8679-0f97fbdf3259 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-a20c735c-3267-4180-bd85-effb39b542a8 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-a20c735c-3267-4180-bd85-effb39b542a8 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-b5c52589-2068-4501-a037-f0d621057fc0 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-b5c52589-2068-4501-a037-f0d621057fc0:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-b5c52589-2068-4501-a037-f0d621057fc0:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-b5c52589-2068-4501-a037-f0d621057fc0 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-b5c52589-2068-4501-a037-f0d621057fc0 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-b5c52589-2068-4501-a037-f0d621057fc0-root {
    text-align: center;
  }


#s-b5c52589-2068-4501-a037-f0d621057fc0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-b5c52589-2068-4501-a037-f0d621057fc0-root {
    text-align: center;
  }


#s-b5c52589-2068-4501-a037-f0d621057fc0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b5c52589-2068-4501-a037-f0d621057fc0-root {
    text-align: center;
  }


#s-b5c52589-2068-4501-a037-f0d621057fc0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b5c52589-2068-4501-a037-f0d621057fc0-root {
    text-align: center;
  }


#s-b5c52589-2068-4501-a037-f0d621057fc0.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-b5c52589-2068-4501-a037-f0d621057fc0-root {
    text-align: center;
  }


#s-b5c52589-2068-4501-a037-f0d621057fc0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-81798746-a149-4fee-b875-ee638ff0dc59 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-81798746-a149-4fee-b875-ee638ff0dc59 {
  margin-top: 0px;
margin-bottom: 0px;
}
}







#s-81798746-a149-4fee-b875-ee638ff0dc59 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-81798746-a149-4fee-b875-ee638ff0dc59.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6aa223a5-2e89-4e7d-a12b-55420536969a {
  max-width: 1360px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-6aa223a5-2e89-4e7d-a12b-55420536969a img.shogun-image,
  #s-6aa223a5-2e89-4e7d-a12b-55420536969a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6aa223a5-2e89-4e7d-a12b-55420536969a {
    width: 100%;
    height: auto;
  }

  #s-6aa223a5-2e89-4e7d-a12b-55420536969a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6aa223a5-2e89-4e7d-a12b-55420536969a.shogun-image {
    
    
  }


.s-6aa223a5-2e89-4e7d-a12b-55420536969a .shogun-image-content {
  
    align-items: center;
  
}

.s-6aa223a5-2e89-4e7d-a12b-55420536969a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6aa223a5-2e89-4e7d-a12b-55420536969a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6aa223a5-2e89-4e7d-a12b-55420536969a.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-6aa223a5-2e89-4e7d-a12b-55420536969a img.shogun-image,
  #s-6aa223a5-2e89-4e7d-a12b-55420536969a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6aa223a5-2e89-4e7d-a12b-55420536969a {
    width: 100%;
    height: auto;
  }

  #s-6aa223a5-2e89-4e7d-a12b-55420536969a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6aa223a5-2e89-4e7d-a12b-55420536969a.shogun-image {
    
    
  }


.s-6aa223a5-2e89-4e7d-a12b-55420536969a .shogun-image-content {
  
    align-items: center;
  
}

.s-6aa223a5-2e89-4e7d-a12b-55420536969a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6aa223a5-2e89-4e7d-a12b-55420536969a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6aa223a5-2e89-4e7d-a12b-55420536969a.shogun-image {
  box-sizing: border-box;
}

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



  #s-6aa223a5-2e89-4e7d-a12b-55420536969a img.shogun-image,
  #s-6aa223a5-2e89-4e7d-a12b-55420536969a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6aa223a5-2e89-4e7d-a12b-55420536969a {
    width: 100%;
    height: auto;
  }

  #s-6aa223a5-2e89-4e7d-a12b-55420536969a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6aa223a5-2e89-4e7d-a12b-55420536969a.shogun-image {
    
    
  }


.s-6aa223a5-2e89-4e7d-a12b-55420536969a .shogun-image-content {
  
    align-items: center;
  
}

.s-6aa223a5-2e89-4e7d-a12b-55420536969a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6aa223a5-2e89-4e7d-a12b-55420536969a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6aa223a5-2e89-4e7d-a12b-55420536969a.shogun-image {
  box-sizing: border-box;
}

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



  #s-6aa223a5-2e89-4e7d-a12b-55420536969a img.shogun-image,
  #s-6aa223a5-2e89-4e7d-a12b-55420536969a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6aa223a5-2e89-4e7d-a12b-55420536969a {
    width: 100%;
    height: auto;
  }

  #s-6aa223a5-2e89-4e7d-a12b-55420536969a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6aa223a5-2e89-4e7d-a12b-55420536969a.shogun-image {
    
    
  }


.s-6aa223a5-2e89-4e7d-a12b-55420536969a .shogun-image-content {
  
    align-items: center;
  
}

.s-6aa223a5-2e89-4e7d-a12b-55420536969a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6aa223a5-2e89-4e7d-a12b-55420536969a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6aa223a5-2e89-4e7d-a12b-55420536969a.shogun-image {
  box-sizing: border-box;
}

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



  #s-6aa223a5-2e89-4e7d-a12b-55420536969a img.shogun-image,
  #s-6aa223a5-2e89-4e7d-a12b-55420536969a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6aa223a5-2e89-4e7d-a12b-55420536969a {
    width: 100%;
    height: auto;
  }

  #s-6aa223a5-2e89-4e7d-a12b-55420536969a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6aa223a5-2e89-4e7d-a12b-55420536969a.shogun-image {
    
    
  }


.s-6aa223a5-2e89-4e7d-a12b-55420536969a .shogun-image-content {
  
    align-items: center;
  
}

.s-6aa223a5-2e89-4e7d-a12b-55420536969a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6aa223a5-2e89-4e7d-a12b-55420536969a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6aa223a5-2e89-4e7d-a12b-55420536969a.shogun-image {
  box-sizing: border-box;
}

}
#s-0c8525d6-b190-4b08-a9a1-ed74d4b1a481 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-0c8525d6-b190-4b08-a9a1-ed74d4b1a481 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-742be30b-0e38-46f6-b40d-6c52872da70f {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-742be30b-0e38-46f6-b40d-6c52872da70f .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-7a339051-9878-416d-b710-fa8e6a615c2d {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-7a339051-9878-416d-b710-fa8e6a615c2d:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-7a339051-9878-416d-b710-fa8e6a615c2d:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-7a339051-9878-416d-b710-fa8e6a615c2d {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-7a339051-9878-416d-b710-fa8e6a615c2d {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-7a339051-9878-416d-b710-fa8e6a615c2d-root {
    text-align: center;
  }


#s-7a339051-9878-416d-b710-fa8e6a615c2d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-7a339051-9878-416d-b710-fa8e6a615c2d-root {
    text-align: center;
  }


#s-7a339051-9878-416d-b710-fa8e6a615c2d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7a339051-9878-416d-b710-fa8e6a615c2d-root {
    text-align: center;
  }


#s-7a339051-9878-416d-b710-fa8e6a615c2d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7a339051-9878-416d-b710-fa8e6a615c2d-root {
    text-align: center;
  }


#s-7a339051-9878-416d-b710-fa8e6a615c2d.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-7a339051-9878-416d-b710-fa8e6a615c2d-root {
    text-align: center;
  }


#s-7a339051-9878-416d-b710-fa8e6a615c2d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-798db4d9-d998-4c89-8276-8111ff50f058 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-798db4d9-d998-4c89-8276-8111ff50f058 {
  margin-top: 0px;
margin-bottom: 0px;
}
}







#s-798db4d9-d998-4c89-8276-8111ff50f058 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-798db4d9-d998-4c89-8276-8111ff50f058.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 {
  max-width: 1360px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 img.shogun-image,
  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 {
    width: 100%;
    height: auto;
  }

  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shogun-image {
    
    
  }


.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 .shogun-image-content {
  
    align-items: center;
  
}

.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 img.shogun-image,
  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 {
    width: 100%;
    height: auto;
  }

  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shogun-image {
    
    
  }


.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 .shogun-image-content {
  
    align-items: center;
  
}

.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shogun-image {
  box-sizing: border-box;
}

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



  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 img.shogun-image,
  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 {
    width: 100%;
    height: auto;
  }

  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shogun-image {
    
    
  }


.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 .shogun-image-content {
  
    align-items: center;
  
}

.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shogun-image {
  box-sizing: border-box;
}

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



  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 img.shogun-image,
  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 {
    width: 100%;
    height: auto;
  }

  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shogun-image {
    
    
  }


.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 .shogun-image-content {
  
    align-items: center;
  
}

.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shogun-image {
  box-sizing: border-box;
}

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



  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 img.shogun-image,
  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 {
    width: 100%;
    height: auto;
  }

  #s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shogun-image {
    
    
  }


.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730 .shogun-image-content {
  
    align-items: center;
  
}

.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e20eb5ed-f94a-4d25-9fa1-3183d84f4730.shogun-image {
  box-sizing: border-box;
}

}
#s-b0cc5d96-3867-45a1-91df-e7d0be0f5534 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-b0cc5d96-3867-45a1-91df-e7d0be0f5534 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-e0b6d642-e15c-4cf7-a257-07cd0efa7111 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-e0b6d642-e15c-4cf7-a257-07cd0efa7111 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-1ff465da-65b1-48b9-9389-d0129092ba74 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-1ff465da-65b1-48b9-9389-d0129092ba74:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-1ff465da-65b1-48b9-9389-d0129092ba74:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-1ff465da-65b1-48b9-9389-d0129092ba74 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-1ff465da-65b1-48b9-9389-d0129092ba74 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-1ff465da-65b1-48b9-9389-d0129092ba74-root {
    text-align: center;
  }


#s-1ff465da-65b1-48b9-9389-d0129092ba74.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-1ff465da-65b1-48b9-9389-d0129092ba74-root {
    text-align: center;
  }


#s-1ff465da-65b1-48b9-9389-d0129092ba74.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1ff465da-65b1-48b9-9389-d0129092ba74-root {
    text-align: center;
  }


#s-1ff465da-65b1-48b9-9389-d0129092ba74.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1ff465da-65b1-48b9-9389-d0129092ba74-root {
    text-align: center;
  }


#s-1ff465da-65b1-48b9-9389-d0129092ba74.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-1ff465da-65b1-48b9-9389-d0129092ba74-root {
    text-align: center;
  }


#s-1ff465da-65b1-48b9-9389-d0129092ba74.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-dc249d27-7aae-4565-955f-83fd714104d9 {
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px){#s-dc249d27-7aae-4565-955f-83fd714104d9 {
  display: none;
}
#s-dc249d27-7aae-4565-955f-83fd714104d9, #wrap-s-dc249d27-7aae-4565-955f-83fd714104d9 { display:none !important; }}@media (max-width: 767px){#s-dc249d27-7aae-4565-955f-83fd714104d9 {
  margin-bottom: 10px;
display: none;
}
#s-dc249d27-7aae-4565-955f-83fd714104d9, #wrap-s-dc249d27-7aae-4565-955f-83fd714104d9 { display:none !important; }}
@media (min-width: 0px) {
[id="s-dc249d27-7aae-4565-955f-83fd714104d9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-dc249d27-7aae-4565-955f-83fd714104d9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-dc249d27-7aae-4565-955f-83fd714104d9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-dc249d27-7aae-4565-955f-83fd714104d9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-2dc32b2b-241c-4f2b-81f6-8af34491032f {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-2dc32b2b-241c-4f2b-81f6-8af34491032f {
  margin-top: 0px;
margin-bottom: 0px;
}
}







#s-2dc32b2b-241c-4f2b-81f6-8af34491032f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2dc32b2b-241c-4f2b-81f6-8af34491032f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9c7aea88-6621-476c-afb7-d73db59812bf {
  max-width: 1360px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-9c7aea88-6621-476c-afb7-d73db59812bf img.shogun-image,
  #s-9c7aea88-6621-476c-afb7-d73db59812bf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9c7aea88-6621-476c-afb7-d73db59812bf {
    width: 100%;
    height: auto;
  }

  #s-9c7aea88-6621-476c-afb7-d73db59812bf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9c7aea88-6621-476c-afb7-d73db59812bf.shogun-image {
    
    
  }


.s-9c7aea88-6621-476c-afb7-d73db59812bf .shogun-image-content {
  
    align-items: center;
  
}

.s-9c7aea88-6621-476c-afb7-d73db59812bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c7aea88-6621-476c-afb7-d73db59812bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c7aea88-6621-476c-afb7-d73db59812bf.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-9c7aea88-6621-476c-afb7-d73db59812bf img.shogun-image,
  #s-9c7aea88-6621-476c-afb7-d73db59812bf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9c7aea88-6621-476c-afb7-d73db59812bf {
    width: 100%;
    height: auto;
  }

  #s-9c7aea88-6621-476c-afb7-d73db59812bf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9c7aea88-6621-476c-afb7-d73db59812bf.shogun-image {
    
    
  }


.s-9c7aea88-6621-476c-afb7-d73db59812bf .shogun-image-content {
  
    align-items: center;
  
}

.s-9c7aea88-6621-476c-afb7-d73db59812bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c7aea88-6621-476c-afb7-d73db59812bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c7aea88-6621-476c-afb7-d73db59812bf.shogun-image {
  box-sizing: border-box;
}

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



  #s-9c7aea88-6621-476c-afb7-d73db59812bf img.shogun-image,
  #s-9c7aea88-6621-476c-afb7-d73db59812bf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9c7aea88-6621-476c-afb7-d73db59812bf {
    width: 100%;
    height: auto;
  }

  #s-9c7aea88-6621-476c-afb7-d73db59812bf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9c7aea88-6621-476c-afb7-d73db59812bf.shogun-image {
    
    
  }


.s-9c7aea88-6621-476c-afb7-d73db59812bf .shogun-image-content {
  
    align-items: center;
  
}

.s-9c7aea88-6621-476c-afb7-d73db59812bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c7aea88-6621-476c-afb7-d73db59812bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c7aea88-6621-476c-afb7-d73db59812bf.shogun-image {
  box-sizing: border-box;
}

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



  #s-9c7aea88-6621-476c-afb7-d73db59812bf img.shogun-image,
  #s-9c7aea88-6621-476c-afb7-d73db59812bf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9c7aea88-6621-476c-afb7-d73db59812bf {
    width: 100%;
    height: auto;
  }

  #s-9c7aea88-6621-476c-afb7-d73db59812bf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9c7aea88-6621-476c-afb7-d73db59812bf.shogun-image {
    
    
  }


.s-9c7aea88-6621-476c-afb7-d73db59812bf .shogun-image-content {
  
    align-items: center;
  
}

.s-9c7aea88-6621-476c-afb7-d73db59812bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c7aea88-6621-476c-afb7-d73db59812bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c7aea88-6621-476c-afb7-d73db59812bf.shogun-image {
  box-sizing: border-box;
}

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



  #s-9c7aea88-6621-476c-afb7-d73db59812bf img.shogun-image,
  #s-9c7aea88-6621-476c-afb7-d73db59812bf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9c7aea88-6621-476c-afb7-d73db59812bf {
    width: 100%;
    height: auto;
  }

  #s-9c7aea88-6621-476c-afb7-d73db59812bf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9c7aea88-6621-476c-afb7-d73db59812bf.shogun-image {
    
    
  }


.s-9c7aea88-6621-476c-afb7-d73db59812bf .shogun-image-content {
  
    align-items: center;
  
}

.s-9c7aea88-6621-476c-afb7-d73db59812bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c7aea88-6621-476c-afb7-d73db59812bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c7aea88-6621-476c-afb7-d73db59812bf.shogun-image {
  box-sizing: border-box;
}

}
#s-632e6a60-d982-4f11-98c8-5a930715da83 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-632e6a60-d982-4f11-98c8-5a930715da83 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-a62673e1-9c2e-43b0-9515-26c822a172d9 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-a62673e1-9c2e-43b0-9515-26c822a172d9 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-34e129fa-0d45-4f45-abf6-e0d5d586b2d4 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-34e129fa-0d45-4f45-abf6-e0d5d586b2d4:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-34e129fa-0d45-4f45-abf6-e0d5d586b2d4:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-34e129fa-0d45-4f45-abf6-e0d5d586b2d4 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-34e129fa-0d45-4f45-abf6-e0d5d586b2d4 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-34e129fa-0d45-4f45-abf6-e0d5d586b2d4-root {
    text-align: center;
  }


#s-34e129fa-0d45-4f45-abf6-e0d5d586b2d4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-34e129fa-0d45-4f45-abf6-e0d5d586b2d4-root {
    text-align: center;
  }


#s-34e129fa-0d45-4f45-abf6-e0d5d586b2d4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-34e129fa-0d45-4f45-abf6-e0d5d586b2d4-root {
    text-align: center;
  }


#s-34e129fa-0d45-4f45-abf6-e0d5d586b2d4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-34e129fa-0d45-4f45-abf6-e0d5d586b2d4-root {
    text-align: center;
  }


#s-34e129fa-0d45-4f45-abf6-e0d5d586b2d4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-34e129fa-0d45-4f45-abf6-e0d5d586b2d4-root {
    text-align: center;
  }


#s-34e129fa-0d45-4f45-abf6-e0d5d586b2d4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-0ef96c41-64c0-47b6-b447-f96bf64942b4 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-0ef96c41-64c0-47b6-b447-f96bf64942b4 {
  margin-top: 0px;
margin-bottom: 0px;
}
}







#s-0ef96c41-64c0-47b6-b447-f96bf64942b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0ef96c41-64c0-47b6-b447-f96bf64942b4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a9378917-8ed2-4d62-ba62-fe4b26d3841f {
  max-width: 1360px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f img.shogun-image,
  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f {
    width: 100%;
    height: auto;
  }

  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shogun-image {
    
    
  }


.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f .shogun-image-content {
  
    align-items: center;
  
}

.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f img.shogun-image,
  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f {
    width: 100%;
    height: auto;
  }

  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shogun-image {
    
    
  }


.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f .shogun-image-content {
  
    align-items: center;
  
}

.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shogun-image {
  box-sizing: border-box;
}

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



  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f img.shogun-image,
  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f {
    width: 100%;
    height: auto;
  }

  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shogun-image {
    
    
  }


.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f .shogun-image-content {
  
    align-items: center;
  
}

.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shogun-image {
  box-sizing: border-box;
}

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



  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f img.shogun-image,
  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f {
    width: 100%;
    height: auto;
  }

  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shogun-image {
    
    
  }


.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f .shogun-image-content {
  
    align-items: center;
  
}

.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shogun-image {
  box-sizing: border-box;
}

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



  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f img.shogun-image,
  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f {
    width: 100%;
    height: auto;
  }

  #s-a9378917-8ed2-4d62-ba62-fe4b26d3841f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shogun-image {
    
    
  }


.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f .shogun-image-content {
  
    align-items: center;
  
}

.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a9378917-8ed2-4d62-ba62-fe4b26d3841f.shogun-image {
  box-sizing: border-box;
}

}
#s-2baf4eb5-0b50-476a-a100-1890c4e80bd0 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-2baf4eb5-0b50-476a-a100-1890c4e80bd0 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-09615fac-b8e9-4ca5-bf5a-94dea6207229 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-09615fac-b8e9-4ca5-bf5a-94dea6207229 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-6fb74e87-a8c9-494b-9d42-b9a4d5eac994 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-6fb74e87-a8c9-494b-9d42-b9a4d5eac994:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-6fb74e87-a8c9-494b-9d42-b9a4d5eac994:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-6fb74e87-a8c9-494b-9d42-b9a4d5eac994 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-6fb74e87-a8c9-494b-9d42-b9a4d5eac994 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-6fb74e87-a8c9-494b-9d42-b9a4d5eac994-root {
    text-align: center;
  }


#s-6fb74e87-a8c9-494b-9d42-b9a4d5eac994.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-6fb74e87-a8c9-494b-9d42-b9a4d5eac994-root {
    text-align: center;
  }


#s-6fb74e87-a8c9-494b-9d42-b9a4d5eac994.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6fb74e87-a8c9-494b-9d42-b9a4d5eac994-root {
    text-align: center;
  }


#s-6fb74e87-a8c9-494b-9d42-b9a4d5eac994.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6fb74e87-a8c9-494b-9d42-b9a4d5eac994-root {
    text-align: center;
  }


#s-6fb74e87-a8c9-494b-9d42-b9a4d5eac994.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-6fb74e87-a8c9-494b-9d42-b9a4d5eac994-root {
    text-align: center;
  }


#s-6fb74e87-a8c9-494b-9d42-b9a4d5eac994.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-e8ac9638-b3c7-4a45-a556-a378bd536800 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-e8ac9638-b3c7-4a45-a556-a378bd536800 {
  margin-top: 0px;
margin-bottom: 0px;
}
}







#s-e8ac9638-b3c7-4a45-a556-a378bd536800 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e8ac9638-b3c7-4a45-a556-a378bd536800.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb {
  max-width: 1360px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb img.shogun-image,
  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb {
    width: 100%;
    height: auto;
  }

  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shogun-image {
    
    
  }


.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb .shogun-image-content {
  
    align-items: center;
  
}

.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb img.shogun-image,
  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb {
    width: 100%;
    height: auto;
  }

  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shogun-image {
    
    
  }


.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb .shogun-image-content {
  
    align-items: center;
  
}

.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shogun-image {
  box-sizing: border-box;
}

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



  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb img.shogun-image,
  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb {
    width: 100%;
    height: auto;
  }

  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shogun-image {
    
    
  }


.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb .shogun-image-content {
  
    align-items: center;
  
}

.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shogun-image {
  box-sizing: border-box;
}

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



  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb img.shogun-image,
  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb {
    width: 100%;
    height: auto;
  }

  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shogun-image {
    
    
  }


.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb .shogun-image-content {
  
    align-items: center;
  
}

.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shogun-image {
  box-sizing: border-box;
}

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



  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb img.shogun-image,
  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb {
    width: 100%;
    height: auto;
  }

  #s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shogun-image {
    
    
  }


.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb .shogun-image-content {
  
    align-items: center;
  
}

.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73a458d1-c7f4-45c6-b30a-63279ffa6bdb.shogun-image {
  box-sizing: border-box;
}

}
#s-42269d22-5087-4e2f-82fc-08c909ca6646 {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-42269d22-5087-4e2f-82fc-08c909ca6646 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-c4260fee-64b9-43b1-96f8-2f1013568764 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-c4260fee-64b9-43b1-96f8-2f1013568764 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-5a9f5584-d05a-483a-ab6d-221c728978f4 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-5a9f5584-d05a-483a-ab6d-221c728978f4:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-5a9f5584-d05a-483a-ab6d-221c728978f4:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-5a9f5584-d05a-483a-ab6d-221c728978f4 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-5a9f5584-d05a-483a-ab6d-221c728978f4 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-5a9f5584-d05a-483a-ab6d-221c728978f4-root {
    text-align: center;
  }


#s-5a9f5584-d05a-483a-ab6d-221c728978f4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-5a9f5584-d05a-483a-ab6d-221c728978f4-root {
    text-align: center;
  }


#s-5a9f5584-d05a-483a-ab6d-221c728978f4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5a9f5584-d05a-483a-ab6d-221c728978f4-root {
    text-align: center;
  }


#s-5a9f5584-d05a-483a-ab6d-221c728978f4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5a9f5584-d05a-483a-ab6d-221c728978f4-root {
    text-align: center;
  }


#s-5a9f5584-d05a-483a-ab6d-221c728978f4.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-5a9f5584-d05a-483a-ab6d-221c728978f4-root {
    text-align: center;
  }


#s-5a9f5584-d05a-483a-ab6d-221c728978f4.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-1ed73af7-3476-4505-91bc-b800341e7882 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
}
@media (max-width: 767px){#s-1ed73af7-3476-4505-91bc-b800341e7882 {
  margin-top: 0px;
margin-bottom: 0px;
}
}







#s-1ed73af7-3476-4505-91bc-b800341e7882 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1ed73af7-3476-4505-91bc-b800341e7882.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d8313289-3d33-4c39-9fe0-c6709eddddc8 {
  max-width: 1360px;
aspect-ratio: 2/3;
text-align: center;
}





  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 img.shogun-image,
  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 {
    width: 100%;
    height: auto;
  }

  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shogun-image {
    
    
  }


.s-d8313289-3d33-4c39-9fe0-c6709eddddc8 .shogun-image-content {
  
    align-items: center;
  
}

.s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 img.shogun-image,
  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 {
    width: 100%;
    height: auto;
  }

  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shogun-image {
    
    
  }


.s-d8313289-3d33-4c39-9fe0-c6709eddddc8 .shogun-image-content {
  
    align-items: center;
  
}

.s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shogun-image {
  box-sizing: border-box;
}

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



  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 img.shogun-image,
  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 {
    width: 100%;
    height: auto;
  }

  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shogun-image {
    
    
  }


.s-d8313289-3d33-4c39-9fe0-c6709eddddc8 .shogun-image-content {
  
    align-items: center;
  
}

.s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shogun-image {
  box-sizing: border-box;
}

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



  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 img.shogun-image,
  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 {
    width: 100%;
    height: auto;
  }

  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shogun-image {
    
    
  }


.s-d8313289-3d33-4c39-9fe0-c6709eddddc8 .shogun-image-content {
  
    align-items: center;
  
}

.s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shogun-image {
  box-sizing: border-box;
}

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



  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 img.shogun-image,
  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 {
    width: 100%;
    height: auto;
  }

  #s-d8313289-3d33-4c39-9fe0-c6709eddddc8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shogun-image {
    
    
  }


.s-d8313289-3d33-4c39-9fe0-c6709eddddc8 .shogun-image-content {
  
    align-items: center;
  
}

.s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8313289-3d33-4c39-9fe0-c6709eddddc8.shogun-image {
  box-sizing: border-box;
}

}
#s-07148a9d-8f14-439b-8025-2d55209bce3f {
  padding-top: 10px;
padding-left: 3%;
padding-bottom: 10px;
padding-right: 3%;
text-align: left;
}

#s-07148a9d-8f14-439b-8025-2d55209bce3f .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 15px;
  
  letter-spacing: 0.375px;
  text-align: left;
}



#s-d3b21b2c-145c-4f5d-a494-8a4ee1a45f2c {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
padding-right: 3%;
text-align: left;
}

#s-d3b21b2c-145c-4f5d-a494-8a4ee1a45f2c .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-5acc7a08-9b9f-4e98-9a77-7278d32c8959 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-left: 150px;
padding-bottom: 10px;
padding-right: 150px;
border-radius: 50px;
background-color: rgba(187, 187, 187, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-5acc7a08-9b9f-4e98-9a77-7278d32c8959:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(27, 27, 27, 1) !important;}#s-5acc7a08-9b9f-4e98-9a77-7278d32c8959:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-5acc7a08-9b9f-4e98-9a77-7278d32c8959 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-5acc7a08-9b9f-4e98-9a77-7278d32c8959 {
  padding-left: 20%;
padding-right: 20%;
}
}

  #s-5acc7a08-9b9f-4e98-9a77-7278d32c8959-root {
    text-align: center;
  }


#s-5acc7a08-9b9f-4e98-9a77-7278d32c8959.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
@media (min-width: 1200px){
  #s-5acc7a08-9b9f-4e98-9a77-7278d32c8959-root {
    text-align: center;
  }


#s-5acc7a08-9b9f-4e98-9a77-7278d32c8959.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5acc7a08-9b9f-4e98-9a77-7278d32c8959-root {
    text-align: center;
  }


#s-5acc7a08-9b9f-4e98-9a77-7278d32c8959.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5acc7a08-9b9f-4e98-9a77-7278d32c8959-root {
    text-align: center;
  }


#s-5acc7a08-9b9f-4e98-9a77-7278d32c8959.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}@media (max-width: 767px){
  #s-5acc7a08-9b9f-4e98-9a77-7278d32c8959-root {
    text-align: center;
  }


#s-5acc7a08-9b9f-4e98-9a77-7278d32c8959.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  block ;
}
}
#s-d74fde84-cd21-4dfb-b482-d967a7e97afb {
  background-size: cover;
padding-top: 40px;
padding-left: 8%;
padding-bottom: 40px;
padding-right: 8%;
min-height: 350px;
background-position: center center;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-d74fde84-cd21-4dfb-b482-d967a7e97afb {
  display: none;
}
#s-d74fde84-cd21-4dfb-b482-d967a7e97afb, #wrap-s-d74fde84-cd21-4dfb-b482-d967a7e97afb { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d74fde84-cd21-4dfb-b482-d967a7e97afb {
  display: none;
}
#s-d74fde84-cd21-4dfb-b482-d967a7e97afb, #wrap-s-d74fde84-cd21-4dfb-b482-d967a7e97afb { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d74fde84-cd21-4dfb-b482-d967a7e97afb {
  display: none;
}
#s-d74fde84-cd21-4dfb-b482-d967a7e97afb, #wrap-s-d74fde84-cd21-4dfb-b482-d967a7e97afb { display:none !important; }}@media (max-width: 767px){#s-d74fde84-cd21-4dfb-b482-d967a7e97afb {
  display: none;
}
#s-d74fde84-cd21-4dfb-b482-d967a7e97afb, #wrap-s-d74fde84-cd21-4dfb-b482-d967a7e97afb { display:none !important; }}







#s-d74fde84-cd21-4dfb-b482-d967a7e97afb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d74fde84-cd21-4dfb-b482-d967a7e97afb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ab41b09e-7427-4ef4-af19-e3f54d79f360 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ab41b09e-7427-4ef4-af19-e3f54d79f360 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Roboto Condensed";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1em;
  
  
}



#s-c6a5311b-ab54-45ae-bcc6-2433e033cb46 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c6a5311b-ab54-45ae-bcc6-2433e033cb46 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Roboto Condensed";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  
  
}



#s-67a47db0-b6c0-43e5-a800-8ea03a9a5d77 {
  border-style: solid;
margin-top: 30px;
margin-bottom: 5px;
padding-top: 15px;
padding-left: 50px;
padding-bottom: 15px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-radius: 50px;
background-color: rgba(201, 201, 201, 1);
text-align: center;
text-decoration: none;
color: rgba(10, 10, 10, 1);
background-image: none;
hover-type: color;
line-height: 0.5em;
letter-spacing: 1.25px;
}
#s-67a47db0-b6c0-43e5-a800-8ea03a9a5d77:hover {background-color: rgba(244, 153, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-67a47db0-b6c0-43e5-a800-8ea03a9a5d77:active {background-color: rgba(244, 155, 185, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-67a47db0-b6c0-43e5-a800-8ea03a9a5d77-root {
    text-align: center;
  }


#s-67a47db0-b6c0-43e5-a800-8ea03a9a5d77.shg-btn {
  color: rgba(10, 10, 10, 1);
  font-size: 17px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-67a47db0-b6c0-43e5-a800-8ea03a9a5d77-root {
    text-align: center;
  }


#s-67a47db0-b6c0-43e5-a800-8ea03a9a5d77.shg-btn {
  color: rgba(10, 10, 10, 1);
  font-size: 17px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-67a47db0-b6c0-43e5-a800-8ea03a9a5d77-root {
    text-align: center;
  }


#s-67a47db0-b6c0-43e5-a800-8ea03a9a5d77.shg-btn {
  color: rgba(10, 10, 10, 1);
  font-size: 17px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-67a47db0-b6c0-43e5-a800-8ea03a9a5d77-root {
    text-align: center;
  }


#s-67a47db0-b6c0-43e5-a800-8ea03a9a5d77.shg-btn {
  color: rgba(10, 10, 10, 1);
  font-size: 17px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-67a47db0-b6c0-43e5-a800-8ea03a9a5d77-root {
    text-align: center;
  }


#s-67a47db0-b6c0-43e5-a800-8ea03a9a5d77.shg-btn {
  color: rgba(10, 10, 10, 1);
  font-size: 17px;
  font-weight: 700;
  
  
  display:  inline-block ;
}
}
/*
  $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}