.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;
}

.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-75a42833-cbbb-4d64-a5ac-0dc6de1f7189 {
  margin-left: auto;
margin-right: auto;
padding-top: 1%;
padding-left: 50px;
padding-bottom: 1%;
padding-right: 50px;
min-height: 50px;
background-color: rgba(246, 246, 246, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-75a42833-cbbb-4d64-a5ac-0dc6de1f7189 {
  padding-top: 1%;
padding-left: 3%;
padding-bottom: 1%;
padding-right: 3%;
}
}@media (max-width: 767px){#s-75a42833-cbbb-4d64-a5ac-0dc6de1f7189 {
  padding-top: 3%;
padding-left: 3%;
padding-bottom: 3%;
padding-right: 3%;
}
}







#s-75a42833-cbbb-4d64-a5ac-0dc6de1f7189 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-75a42833-cbbb-4d64-a5ac-0dc6de1f7189.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

/* 
  Shopify base css adds display none to empty divs
  This causes items in the second column position to shift when
  the first column is empty. In order to overwrite that style,
  we have to manually set empty divs in the column to display block 
  so the whole element holds its positioning on published pages.
*/

.shg-row > div:empty {
  display: block;
}

#s-7cb48067-b43b-4aea-8a75-d9a61608f901 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-7cb48067-b43b-4aea-8a75-d9a61608f901"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-7cb48067-b43b-4aea-8a75-d9a61608f901"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 3.75px);
}

}

@media (min-width: 992px) {
[id="s-7cb48067-b43b-4aea-8a75-d9a61608f901"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 3.75px);
}

}

@media (min-width: 1200px) {
[id="s-7cb48067-b43b-4aea-8a75-d9a61608f901"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 3.75px);
}

}

.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 {
  margin-left: auto;
margin-right: auto;
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 211, 0, 1);
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 211, 0, 1);
  padding: 10px;
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(19, 17, 12, 1);
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 211, 0, 1);
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(19, 17, 12, 1);
  text-align: center;
  font-family: Archivo;
  font-weight: 800;
  font-style: ;
  font-size: 18px;
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}@media (min-width: 768px) and (max-width: 991px){#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 211, 0, 1);
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 211, 0, 1);
  padding: 10px;
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(19, 17, 12, 1);
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 211, 0, 1);
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(19, 17, 12, 1);
  text-align: center;
  font-family: Archivo;
  font-weight: 800;
  font-style: ;
  font-size: 15px;
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 15px;
}}@media (max-width: 767px){#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 211, 0, 1);
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 211, 0, 1);
  padding: 10px;
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(19, 17, 12, 1);
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 211, 0, 1);
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(19, 17, 12, 1);
  text-align: center;
  font-family: Archivo;
  font-weight: 800;
  font-style: ;
  font-size: 15px;
}

#s-eac2fd7e-38b8-4b5e-84a5-4ef158458004 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 15px;
}}
#s-40693924-04f9-483b-9db4-bc55a049be61 {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}

#s-40693924-04f9-483b-9db4-bc55a049be61 {
  background-image: url();
}








#s-40693924-04f9-483b-9db4-bc55a049be61 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-40693924-04f9-483b-9db4-bc55a049be61 {
  cursor: pointer;
}#s-40693924-04f9-483b-9db4-bc55a049be61.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-05113fe0-694d-433e-ae1e-2b6c48e7dd90 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-05113fe0-694d-433e-ae1e-2b6c48e7dd90"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-05113fe0-694d-433e-ae1e-2b6c48e7dd90"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-05113fe0-694d-433e-ae1e-2b6c48e7dd90"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-05113fe0-694d-433e-ae1e-2b6c48e7dd90"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-05113fe0-694d-433e-ae1e-2b6c48e7dd90"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-05113fe0-694d-433e-ae1e-2b6c48e7dd90"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-05113fe0-694d-433e-ae1e-2b6c48e7dd90"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

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

.shg-inner-inline-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.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-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
  height: inherit;
  position: relative;
}

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

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

.shogun-image-content-v3 {
  display: flex;
  flex-direction: column;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  /* Ensures that the content children fills the container */
  align-items: stretch;
}

.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-top {
  align-items: flex-start;
}

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

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

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

.shogun-image-content-v3 > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  margin-left: auto;
margin-right: auto;
max-width: 1332px;
text-align: center;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 img.shogun-image {
  width: 100%;
  
  
  max-width: 1332px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-91dc34c9-949a-4e43-a399-07f3dd9bf411 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-91dc34c9-949a-4e43-a399-07f3dd9bf411.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91dc34c9-949a-4e43-a399-07f3dd9bf411.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-91dc34c9-949a-4e43-a399-07f3dd9bf411 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-91dc34c9-949a-4e43-a399-07f3dd9bf411.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91dc34c9-949a-4e43-a399-07f3dd9bf411.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-91dc34c9-949a-4e43-a399-07f3dd9bf411 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-91dc34c9-949a-4e43-a399-07f3dd9bf411.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91dc34c9-949a-4e43-a399-07f3dd9bf411.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-91dc34c9-949a-4e43-a399-07f3dd9bf411 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-91dc34c9-949a-4e43-a399-07f3dd9bf411.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91dc34c9-949a-4e43-a399-07f3dd9bf411.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-91dc34c9-949a-4e43-a399-07f3dd9bf411 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-91dc34c9-949a-4e43-a399-07f3dd9bf411 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-91dc34c9-949a-4e43-a399-07f3dd9bf411.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91dc34c9-949a-4e43-a399-07f3dd9bf411.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91dc34c9-949a-4e43-a399-07f3dd9bf411.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-aab5a4fe-d28d-43aa-8413-7ce1bc598903 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-aab5a4fe-d28d-43aa-8413-7ce1bc598903 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-aab5a4fe-d28d-43aa-8413-7ce1bc598903.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #000000;
  font-family: "Montserrat";
  text-transform: none;
  font-weight: 700;
  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-dda76328-f261-4567-8b43-a11e87a13906 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dda76328-f261-4567-8b43-a11e87a13906 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-dda76328-f261-4567-8b43-a11e87a13906 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-dda76328-f261-4567-8b43-a11e87a13906 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-b0f2aee2-1210-4db0-a102-30431a1baf6f {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-b0f2aee2-1210-4db0-a102-30431a1baf6f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b0f2aee2-1210-4db0-a102-30431a1baf6f {
  cursor: pointer;
}#s-b0f2aee2-1210-4db0-a102-30431a1baf6f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8c6e6d56-acf2-4b60-b3e2-6299ca3e0034 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-8c6e6d56-acf2-4b60-b3e2-6299ca3e0034"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-8c6e6d56-acf2-4b60-b3e2-6299ca3e0034"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-8c6e6d56-acf2-4b60-b3e2-6299ca3e0034"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-8c6e6d56-acf2-4b60-b3e2-6299ca3e0034"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-8c6e6d56-acf2-4b60-b3e2-6299ca3e0034"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-8c6e6d56-acf2-4b60-b3e2-6299ca3e0034"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-8c6e6d56-acf2-4b60-b3e2-6299ca3e0034"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  margin-left: auto;
margin-right: auto;
max-width: 896px;
text-align: center;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c img.shogun-image {
  width: 100%;
  
  
  max-width: 896px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e3fd320-5952-4e82-bc0d-a0d4720aba8c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-b23c91a1-89a7-478a-aa49-08bfd73bb948 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-b23c91a1-89a7-478a-aa49-08bfd73bb948 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b23c91a1-89a7-478a-aa49-08bfd73bb948.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c3d9bca2-dda7-4b27-a567-078c371fd6a1 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c3d9bca2-dda7-4b27-a567-078c371fd6a1 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-c3d9bca2-dda7-4b27-a567-078c371fd6a1 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-c3d9bca2-dda7-4b27-a567-078c371fd6a1 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-a8219323-453b-4ebb-b65b-0745cc01f7a0 {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-a8219323-453b-4ebb-b65b-0745cc01f7a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a8219323-453b-4ebb-b65b-0745cc01f7a0 {
  cursor: pointer;
}#s-a8219323-453b-4ebb-b65b-0745cc01f7a0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f017f600-a349-4ef0-8dac-925b978c8df4 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-f017f600-a349-4ef0-8dac-925b978c8df4"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-f017f600-a349-4ef0-8dac-925b978c8df4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-f017f600-a349-4ef0-8dac-925b978c8df4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-f017f600-a349-4ef0-8dac-925b978c8df4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-f017f600-a349-4ef0-8dac-925b978c8df4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-f017f600-a349-4ef0-8dac-925b978c8df4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-f017f600-a349-4ef0-8dac-925b978c8df4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  margin-left: auto;
margin-right: auto;
max-width: 898px;
text-align: center;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 img.shogun-image {
  width: 100%;
  
  
  max-width: 898px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77b13cc2-78b3-4cd7-ac27-2cbadb34ba23.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-bc81c898-bfd4-46f5-afdf-e1539422e262 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-bc81c898-bfd4-46f5-afdf-e1539422e262 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bc81c898-bfd4-46f5-afdf-e1539422e262.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d4e348fd-463a-4272-8e57-c2216ee6d42e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d4e348fd-463a-4272-8e57-c2216ee6d42e .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-d4e348fd-463a-4272-8e57-c2216ee6d42e .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-d4e348fd-463a-4272-8e57-c2216ee6d42e .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-945eba32-a635-4377-aa95-9ab7f0a17a7b {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-945eba32-a635-4377-aa95-9ab7f0a17a7b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-945eba32-a635-4377-aa95-9ab7f0a17a7b {
  cursor: pointer;
}#s-945eba32-a635-4377-aa95-9ab7f0a17a7b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c005521a-f0cb-43d8-89f6-f9fc474a3446 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-c005521a-f0cb-43d8-89f6-f9fc474a3446"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-c005521a-f0cb-43d8-89f6-f9fc474a3446"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c005521a-f0cb-43d8-89f6-f9fc474a3446"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-c005521a-f0cb-43d8-89f6-f9fc474a3446"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c005521a-f0cb-43d8-89f6-f9fc474a3446"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-c005521a-f0cb-43d8-89f6-f9fc474a3446"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c005521a-f0cb-43d8-89f6-f9fc474a3446"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  margin-left: auto;
margin-right: auto;
max-width: 2098px;
text-align: center;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b img.shogun-image {
  width: 100%;
  
  
  max-width: 2098px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-ecbf1cfe-9408-4d90-917f-234520ad963b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ecbf1cfe-9408-4d90-917f-234520ad963b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ecbf1cfe-9408-4d90-917f-234520ad963b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-ecbf1cfe-9408-4d90-917f-234520ad963b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ecbf1cfe-9408-4d90-917f-234520ad963b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ecbf1cfe-9408-4d90-917f-234520ad963b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-ecbf1cfe-9408-4d90-917f-234520ad963b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ecbf1cfe-9408-4d90-917f-234520ad963b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ecbf1cfe-9408-4d90-917f-234520ad963b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-ecbf1cfe-9408-4d90-917f-234520ad963b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ecbf1cfe-9408-4d90-917f-234520ad963b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ecbf1cfe-9408-4d90-917f-234520ad963b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-ecbf1cfe-9408-4d90-917f-234520ad963b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-ecbf1cfe-9408-4d90-917f-234520ad963b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-ecbf1cfe-9408-4d90-917f-234520ad963b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ecbf1cfe-9408-4d90-917f-234520ad963b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ecbf1cfe-9408-4d90-917f-234520ad963b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-d3c272b5-0ec0-415f-8e69-c1686e55da20 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-d3c272b5-0ec0-415f-8e69-c1686e55da20 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d3c272b5-0ec0-415f-8e69-c1686e55da20.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-186ab540-897f-4581-9e5d-a3d052a0fc53 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-186ab540-897f-4581-9e5d-a3d052a0fc53 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-186ab540-897f-4581-9e5d-a3d052a0fc53 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-186ab540-897f-4581-9e5d-a3d052a0fc53 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-2b94bc1a-2cfd-4e69-96fe-c1c551c002a3 {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-2b94bc1a-2cfd-4e69-96fe-c1c551c002a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2b94bc1a-2cfd-4e69-96fe-c1c551c002a3 {
  cursor: pointer;
}#s-2b94bc1a-2cfd-4e69-96fe-c1c551c002a3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-90e1ed47-e648-49ab-a628-bb7275853517 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-90e1ed47-e648-49ab-a628-bb7275853517"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-90e1ed47-e648-49ab-a628-bb7275853517"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-90e1ed47-e648-49ab-a628-bb7275853517"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-90e1ed47-e648-49ab-a628-bb7275853517"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-90e1ed47-e648-49ab-a628-bb7275853517"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-90e1ed47-e648-49ab-a628-bb7275853517"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-90e1ed47-e648-49ab-a628-bb7275853517"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  margin-left: auto;
margin-right: auto;
max-width: 3000px;
text-align: center;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 img.shogun-image {
  width: 100%;
  
  
  max-width: 3000px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a6b9ae2-6590-43a4-bbc8-b91379e64723.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a6b9ae2-6590-43a4-bbc8-b91379e64723.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a6b9ae2-6590-43a4-bbc8-b91379e64723.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a6b9ae2-6590-43a4-bbc8-b91379e64723.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a6b9ae2-6590-43a4-bbc8-b91379e64723.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a6b9ae2-6590-43a4-bbc8-b91379e64723.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a6b9ae2-6590-43a4-bbc8-b91379e64723.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a6b9ae2-6590-43a4-bbc8-b91379e64723.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-3a6b9ae2-6590-43a4-bbc8-b91379e64723 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-3a6b9ae2-6590-43a4-bbc8-b91379e64723.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3a6b9ae2-6590-43a4-bbc8-b91379e64723.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3a6b9ae2-6590-43a4-bbc8-b91379e64723.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-87698e2d-fe30-4d1e-ab0f-054e9b572413 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-87698e2d-fe30-4d1e-ab0f-054e9b572413 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-87698e2d-fe30-4d1e-ab0f-054e9b572413.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d3b9408c-4587-47cb-bc6d-f2b245f31bc1 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d3b9408c-4587-47cb-bc6d-f2b245f31bc1 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-d3b9408c-4587-47cb-bc6d-f2b245f31bc1 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-d3b9408c-4587-47cb-bc6d-f2b245f31bc1 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-7dd92bb3-bea6-4b1a-ac58-9f611efff83a {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-7dd92bb3-bea6-4b1a-ac58-9f611efff83a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7dd92bb3-bea6-4b1a-ac58-9f611efff83a {
  cursor: pointer;
}#s-7dd92bb3-bea6-4b1a-ac58-9f611efff83a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b4d89d0c-ca41-4f7f-963f-93d149db4925 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-b4d89d0c-ca41-4f7f-963f-93d149db4925"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-b4d89d0c-ca41-4f7f-963f-93d149db4925"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-b4d89d0c-ca41-4f7f-963f-93d149db4925"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-b4d89d0c-ca41-4f7f-963f-93d149db4925"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-b4d89d0c-ca41-4f7f-963f-93d149db4925"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-b4d89d0c-ca41-4f7f-963f-93d149db4925"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-b4d89d0c-ca41-4f7f-963f-93d149db4925"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  margin-left: auto;
margin-right: auto;
max-width: 2403px;
text-align: center;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d img.shogun-image {
  width: 100%;
  
  
  max-width: 2403px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-de8ae1ad-3922-4f96-a809-a34a84574a3d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-de8ae1ad-3922-4f96-a809-a34a84574a3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de8ae1ad-3922-4f96-a809-a34a84574a3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-de8ae1ad-3922-4f96-a809-a34a84574a3d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-de8ae1ad-3922-4f96-a809-a34a84574a3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de8ae1ad-3922-4f96-a809-a34a84574a3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-de8ae1ad-3922-4f96-a809-a34a84574a3d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-de8ae1ad-3922-4f96-a809-a34a84574a3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de8ae1ad-3922-4f96-a809-a34a84574a3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-de8ae1ad-3922-4f96-a809-a34a84574a3d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-de8ae1ad-3922-4f96-a809-a34a84574a3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de8ae1ad-3922-4f96-a809-a34a84574a3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-de8ae1ad-3922-4f96-a809-a34a84574a3d {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-de8ae1ad-3922-4f96-a809-a34a84574a3d .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-de8ae1ad-3922-4f96-a809-a34a84574a3d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de8ae1ad-3922-4f96-a809-a34a84574a3d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de8ae1ad-3922-4f96-a809-a34a84574a3d.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-27742b0e-13d3-4e4c-849f-69d0411cda73 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-27742b0e-13d3-4e4c-849f-69d0411cda73 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-27742b0e-13d3-4e4c-849f-69d0411cda73.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7ace06fd-4092-4056-8e5d-7d7001fc07cd {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7ace06fd-4092-4056-8e5d-7d7001fc07cd .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-7ace06fd-4092-4056-8e5d-7d7001fc07cd .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-7ace06fd-4092-4056-8e5d-7d7001fc07cd .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


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

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

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

.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-2bb40eb2-afbc-4502-80ea-4ff1f826d5dd {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 8px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-2bb40eb2-afbc-4502-80ea-4ff1f826d5dd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2bb40eb2-afbc-4502-80ea-4ff1f826d5dd:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2bb40eb2-afbc-4502-80ea-4ff1f826d5dd-root {
    text-align: center;
  }


#s-2bb40eb2-afbc-4502-80ea-4ff1f826d5dd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  
  font-family: Archivo;
  display:  block ;
}
@media (min-width: 1200px){
  #s-2bb40eb2-afbc-4502-80ea-4ff1f826d5dd-root {
    text-align: center;
  }


#s-2bb40eb2-afbc-4502-80ea-4ff1f826d5dd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  
  font-family: Archivo;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2bb40eb2-afbc-4502-80ea-4ff1f826d5dd-root {
    text-align: center;
  }


#s-2bb40eb2-afbc-4502-80ea-4ff1f826d5dd.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  
  font-family: Archivo;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2bb40eb2-afbc-4502-80ea-4ff1f826d5dd-root {
    text-align: center;
  }


#s-2bb40eb2-afbc-4502-80ea-4ff1f826d5dd.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  
  font-family: Archivo;
  display:  block ;
}
}@media (max-width: 767px){
  #s-2bb40eb2-afbc-4502-80ea-4ff1f826d5dd-root {
    text-align: center;
  }


#s-2bb40eb2-afbc-4502-80ea-4ff1f826d5dd.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  
  font-family: Archivo;
  display:  block ;
}
}
#s-980cea83-08c3-4deb-b4ab-5d68c64a957c {
  margin-left: auto;
margin-right: auto;
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 211, 0, 1);
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 211, 0, 1);
  padding: 10px;
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(19, 17, 12, 1);
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 211, 0, 1);
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(19, 17, 12, 1);
  text-align: center;
  font-family: Archivo;
  font-weight: 800;
  font-style: ;
  font-size: 18px;
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}@media (min-width: 768px) and (max-width: 991px){#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 211, 0, 1);
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 211, 0, 1);
  padding: 10px;
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(19, 17, 12, 1);
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 211, 0, 1);
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(19, 17, 12, 1);
  text-align: center;
  font-family: Archivo;
  font-weight: 800;
  font-style: ;
  font-size: 15px;
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 15px;
}}@media (max-width: 767px){#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 211, 0, 1);
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 211, 0, 1);
  padding: 10px;
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(19, 17, 12, 1);
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 211, 0, 1);
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(19, 17, 12, 1);
  text-align: center;
  font-family: Archivo;
  font-weight: 800;
  font-style: ;
  font-size: 15px;
}

#s-980cea83-08c3-4deb-b4ab-5d68c64a957c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 15px;
}}
#s-ffb50da7-7426-420e-83b3-9ba4b61900fa {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}

#s-ffb50da7-7426-420e-83b3-9ba4b61900fa {
  background-image: url();
}








#s-ffb50da7-7426-420e-83b3-9ba4b61900fa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ffb50da7-7426-420e-83b3-9ba4b61900fa {
  cursor: pointer;
}#s-ffb50da7-7426-420e-83b3-9ba4b61900fa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-93374134-fea9-4fc2-a599-94139d8ad789 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-93374134-fea9-4fc2-a599-94139d8ad789"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-93374134-fea9-4fc2-a599-94139d8ad789"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-93374134-fea9-4fc2-a599-94139d8ad789"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-93374134-fea9-4fc2-a599-94139d8ad789"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-93374134-fea9-4fc2-a599-94139d8ad789"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-93374134-fea9-4fc2-a599-94139d8ad789"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-93374134-fea9-4fc2-a599-94139d8ad789"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  margin-left: auto;
margin-right: auto;
max-width: 2204px;
text-align: center;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 img.shogun-image {
  width: 100%;
  
  
  max-width: 2204px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fcac4047-0a20-4a15-b0e9-31a2a34cb953.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fcac4047-0a20-4a15-b0e9-31a2a34cb953.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fcac4047-0a20-4a15-b0e9-31a2a34cb953.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fcac4047-0a20-4a15-b0e9-31a2a34cb953.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fcac4047-0a20-4a15-b0e9-31a2a34cb953.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fcac4047-0a20-4a15-b0e9-31a2a34cb953.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fcac4047-0a20-4a15-b0e9-31a2a34cb953.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fcac4047-0a20-4a15-b0e9-31a2a34cb953.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-fcac4047-0a20-4a15-b0e9-31a2a34cb953 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fcac4047-0a20-4a15-b0e9-31a2a34cb953.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fcac4047-0a20-4a15-b0e9-31a2a34cb953.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fcac4047-0a20-4a15-b0e9-31a2a34cb953.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-97e4dd32-0e46-4cf3-a869-df008c4af62b {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-97e4dd32-0e46-4cf3-a869-df008c4af62b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-97e4dd32-0e46-4cf3-a869-df008c4af62b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a5d200ae-7c9d-4779-9753-f66e8bf79e8e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a5d200ae-7c9d-4779-9753-f66e8bf79e8e .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-a5d200ae-7c9d-4779-9753-f66e8bf79e8e .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-a5d200ae-7c9d-4779-9753-f66e8bf79e8e .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-dd3a989f-fbea-45d6-85c8-5eb65fa579ad {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-dd3a989f-fbea-45d6-85c8-5eb65fa579ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-dd3a989f-fbea-45d6-85c8-5eb65fa579ad {
  cursor: pointer;
}#s-dd3a989f-fbea-45d6-85c8-5eb65fa579ad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-046a34eb-bbe8-4c77-b991-2299ce08b3ef {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-046a34eb-bbe8-4c77-b991-2299ce08b3ef"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-046a34eb-bbe8-4c77-b991-2299ce08b3ef"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-046a34eb-bbe8-4c77-b991-2299ce08b3ef"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-046a34eb-bbe8-4c77-b991-2299ce08b3ef"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-046a34eb-bbe8-4c77-b991-2299ce08b3ef"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-046a34eb-bbe8-4c77-b991-2299ce08b3ef"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-046a34eb-bbe8-4c77-b991-2299ce08b3ef"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  margin-left: auto;
margin-right: auto;
max-width: 1228px;
text-align: center;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 img.shogun-image {
  width: 100%;
  
  
  max-width: 1228px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0a9dce79-3f33-4c90-90d1-39348ef3eda9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a9dce79-3f33-4c90-90d1-39348ef3eda9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0a9dce79-3f33-4c90-90d1-39348ef3eda9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a9dce79-3f33-4c90-90d1-39348ef3eda9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0a9dce79-3f33-4c90-90d1-39348ef3eda9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a9dce79-3f33-4c90-90d1-39348ef3eda9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0a9dce79-3f33-4c90-90d1-39348ef3eda9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a9dce79-3f33-4c90-90d1-39348ef3eda9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-0a9dce79-3f33-4c90-90d1-39348ef3eda9 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0a9dce79-3f33-4c90-90d1-39348ef3eda9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a9dce79-3f33-4c90-90d1-39348ef3eda9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a9dce79-3f33-4c90-90d1-39348ef3eda9.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-0453f009-9ae4-43ee-99ab-0949d78b41f1 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-0453f009-9ae4-43ee-99ab-0949d78b41f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0453f009-9ae4-43ee-99ab-0949d78b41f1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2ab9dd7f-872f-4904-82ec-fdb56ad122b2 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2ab9dd7f-872f-4904-82ec-fdb56ad122b2 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-2ab9dd7f-872f-4904-82ec-fdb56ad122b2 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-2ab9dd7f-872f-4904-82ec-fdb56ad122b2 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-7438e8a4-214b-4cb4-be2a-ea2382910ed8 {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-7438e8a4-214b-4cb4-be2a-ea2382910ed8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7438e8a4-214b-4cb4-be2a-ea2382910ed8 {
  cursor: pointer;
}#s-7438e8a4-214b-4cb4-be2a-ea2382910ed8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-02800fbb-db2c-4810-ad40-0704b1d53ea0 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-02800fbb-db2c-4810-ad40-0704b1d53ea0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-02800fbb-db2c-4810-ad40-0704b1d53ea0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-02800fbb-db2c-4810-ad40-0704b1d53ea0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-02800fbb-db2c-4810-ad40-0704b1d53ea0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-02800fbb-db2c-4810-ad40-0704b1d53ea0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-02800fbb-db2c-4810-ad40-0704b1d53ea0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-02800fbb-db2c-4810-ad40-0704b1d53ea0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-6c02d416-2bdb-452b-b20b-4736da827494 {
  margin-left: auto;
margin-right: auto;
max-width: 1851px;
text-align: center;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6c02d416-2bdb-452b-b20b-4736da827494 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6c02d416-2bdb-452b-b20b-4736da827494 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-6c02d416-2bdb-452b-b20b-4736da827494 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494 img.shogun-image {
  width: 100%;
  
  
  max-width: 1851px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-6c02d416-2bdb-452b-b20b-4736da827494 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6c02d416-2bdb-452b-b20b-4736da827494.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6c02d416-2bdb-452b-b20b-4736da827494.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-6c02d416-2bdb-452b-b20b-4736da827494 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6c02d416-2bdb-452b-b20b-4736da827494 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6c02d416-2bdb-452b-b20b-4736da827494 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-6c02d416-2bdb-452b-b20b-4736da827494 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-6c02d416-2bdb-452b-b20b-4736da827494 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6c02d416-2bdb-452b-b20b-4736da827494.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6c02d416-2bdb-452b-b20b-4736da827494.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-6c02d416-2bdb-452b-b20b-4736da827494 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6c02d416-2bdb-452b-b20b-4736da827494 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6c02d416-2bdb-452b-b20b-4736da827494 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-6c02d416-2bdb-452b-b20b-4736da827494 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-6c02d416-2bdb-452b-b20b-4736da827494 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6c02d416-2bdb-452b-b20b-4736da827494.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6c02d416-2bdb-452b-b20b-4736da827494.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-6c02d416-2bdb-452b-b20b-4736da827494 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6c02d416-2bdb-452b-b20b-4736da827494 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6c02d416-2bdb-452b-b20b-4736da827494 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-6c02d416-2bdb-452b-b20b-4736da827494 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-6c02d416-2bdb-452b-b20b-4736da827494 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6c02d416-2bdb-452b-b20b-4736da827494.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6c02d416-2bdb-452b-b20b-4736da827494.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-6c02d416-2bdb-452b-b20b-4736da827494 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-6c02d416-2bdb-452b-b20b-4736da827494 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6c02d416-2bdb-452b-b20b-4736da827494 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-6c02d416-2bdb-452b-b20b-4736da827494 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-6c02d416-2bdb-452b-b20b-4736da827494 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6c02d416-2bdb-452b-b20b-4736da827494.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6c02d416-2bdb-452b-b20b-4736da827494.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6c02d416-2bdb-452b-b20b-4736da827494.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-6b5dee07-6dfd-4d50-a08d-e03636faa531 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-6b5dee07-6dfd-4d50-a08d-e03636faa531 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6b5dee07-6dfd-4d50-a08d-e03636faa531.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-92e7a757-de4d-42fb-9013-1a394de876c9 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-92e7a757-de4d-42fb-9013-1a394de876c9 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-92e7a757-de4d-42fb-9013-1a394de876c9 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-92e7a757-de4d-42fb-9013-1a394de876c9 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-ed012699-323c-42d5-ad46-ae620b7910db {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-ed012699-323c-42d5-ad46-ae620b7910db > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ed012699-323c-42d5-ad46-ae620b7910db {
  cursor: pointer;
}#s-ed012699-323c-42d5-ad46-ae620b7910db.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-75cf8022-e654-41d2-a848-9ef23c954a44 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-75cf8022-e654-41d2-a848-9ef23c954a44"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-75cf8022-e654-41d2-a848-9ef23c954a44"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-75cf8022-e654-41d2-a848-9ef23c954a44"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-75cf8022-e654-41d2-a848-9ef23c954a44"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-75cf8022-e654-41d2-a848-9ef23c954a44"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-75cf8022-e654-41d2-a848-9ef23c954a44"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-75cf8022-e654-41d2-a848-9ef23c954a44"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-738340e4-9582-4503-9521-4f2d7f53784a {
  margin-left: auto;
margin-right: auto;
max-width: 1986px;
text-align: center;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-738340e4-9582-4503-9521-4f2d7f53784a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-738340e4-9582-4503-9521-4f2d7f53784a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-738340e4-9582-4503-9521-4f2d7f53784a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a img.shogun-image {
  width: 100%;
  
  
  max-width: 1986px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-738340e4-9582-4503-9521-4f2d7f53784a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-738340e4-9582-4503-9521-4f2d7f53784a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-738340e4-9582-4503-9521-4f2d7f53784a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-738340e4-9582-4503-9521-4f2d7f53784a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-738340e4-9582-4503-9521-4f2d7f53784a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-738340e4-9582-4503-9521-4f2d7f53784a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-738340e4-9582-4503-9521-4f2d7f53784a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-738340e4-9582-4503-9521-4f2d7f53784a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-738340e4-9582-4503-9521-4f2d7f53784a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-738340e4-9582-4503-9521-4f2d7f53784a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-738340e4-9582-4503-9521-4f2d7f53784a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-738340e4-9582-4503-9521-4f2d7f53784a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-738340e4-9582-4503-9521-4f2d7f53784a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-738340e4-9582-4503-9521-4f2d7f53784a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-738340e4-9582-4503-9521-4f2d7f53784a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-738340e4-9582-4503-9521-4f2d7f53784a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-738340e4-9582-4503-9521-4f2d7f53784a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-738340e4-9582-4503-9521-4f2d7f53784a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-738340e4-9582-4503-9521-4f2d7f53784a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-738340e4-9582-4503-9521-4f2d7f53784a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-738340e4-9582-4503-9521-4f2d7f53784a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-738340e4-9582-4503-9521-4f2d7f53784a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-738340e4-9582-4503-9521-4f2d7f53784a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-738340e4-9582-4503-9521-4f2d7f53784a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-738340e4-9582-4503-9521-4f2d7f53784a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-738340e4-9582-4503-9521-4f2d7f53784a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-738340e4-9582-4503-9521-4f2d7f53784a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-738340e4-9582-4503-9521-4f2d7f53784a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-738340e4-9582-4503-9521-4f2d7f53784a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-738340e4-9582-4503-9521-4f2d7f53784a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-738340e4-9582-4503-9521-4f2d7f53784a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-738340e4-9582-4503-9521-4f2d7f53784a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-d258a79e-bf2f-454e-9b61-b4bb8702b155 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-d258a79e-bf2f-454e-9b61-b4bb8702b155 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d258a79e-bf2f-454e-9b61-b4bb8702b155.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fb4b81be-2cfe-40bf-b417-aae4a2a343dd {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fb4b81be-2cfe-40bf-b417-aae4a2a343dd .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-fb4b81be-2cfe-40bf-b417-aae4a2a343dd .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-fb4b81be-2cfe-40bf-b417-aae4a2a343dd .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-23deebbe-cc21-402b-b773-3e9f1def3bda {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-23deebbe-cc21-402b-b773-3e9f1def3bda > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-23deebbe-cc21-402b-b773-3e9f1def3bda {
  cursor: pointer;
}#s-23deebbe-cc21-402b-b773-3e9f1def3bda.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-422487f4-71ac-469a-86e1-a8436545a7cd {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-422487f4-71ac-469a-86e1-a8436545a7cd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-422487f4-71ac-469a-86e1-a8436545a7cd"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-422487f4-71ac-469a-86e1-a8436545a7cd"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-422487f4-71ac-469a-86e1-a8436545a7cd"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-422487f4-71ac-469a-86e1-a8436545a7cd"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-422487f4-71ac-469a-86e1-a8436545a7cd"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-422487f4-71ac-469a-86e1-a8436545a7cd"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  margin-left: auto;
margin-right: auto;
max-width: 1982px;
text-align: center;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c img.shogun-image {
  width: 100%;
  
  
  max-width: 1982px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-06bf2b1d-4974-40b3-8528-aaf9c31ea12c.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-f69d9a29-e65a-4e47-9ef4-ae6321dd2897 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-f69d9a29-e65a-4e47-9ef4-ae6321dd2897 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f69d9a29-e65a-4e47-9ef4-ae6321dd2897.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e2081c95-7505-42a2-b9ce-60234de81dfa {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e2081c95-7505-42a2-b9ce-60234de81dfa .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-e2081c95-7505-42a2-b9ce-60234de81dfa .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-e2081c95-7505-42a2-b9ce-60234de81dfa .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-493a0a9b-1e4b-4aa1-81a8-6e7c1a6cde6a {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-493a0a9b-1e4b-4aa1-81a8-6e7c1a6cde6a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-493a0a9b-1e4b-4aa1-81a8-6e7c1a6cde6a {
  cursor: pointer;
}#s-493a0a9b-1e4b-4aa1-81a8-6e7c1a6cde6a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-430af3ca-79f9-4416-a025-60700f176659 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-430af3ca-79f9-4416-a025-60700f176659"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-430af3ca-79f9-4416-a025-60700f176659"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-430af3ca-79f9-4416-a025-60700f176659"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-430af3ca-79f9-4416-a025-60700f176659"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-430af3ca-79f9-4416-a025-60700f176659"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-430af3ca-79f9-4416-a025-60700f176659"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-430af3ca-79f9-4416-a025-60700f176659"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  margin-left: auto;
margin-right: auto;
max-width: 1283px;
text-align: center;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 img.shogun-image {
  width: 100%;
  
  
  max-width: 1283px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-959ec3f0-4eda-4258-8127-7a9011a3ba85 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-959ec3f0-4eda-4258-8127-7a9011a3ba85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-959ec3f0-4eda-4258-8127-7a9011a3ba85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-959ec3f0-4eda-4258-8127-7a9011a3ba85 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-959ec3f0-4eda-4258-8127-7a9011a3ba85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-959ec3f0-4eda-4258-8127-7a9011a3ba85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-959ec3f0-4eda-4258-8127-7a9011a3ba85 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-959ec3f0-4eda-4258-8127-7a9011a3ba85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-959ec3f0-4eda-4258-8127-7a9011a3ba85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-959ec3f0-4eda-4258-8127-7a9011a3ba85 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-959ec3f0-4eda-4258-8127-7a9011a3ba85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-959ec3f0-4eda-4258-8127-7a9011a3ba85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-959ec3f0-4eda-4258-8127-7a9011a3ba85 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-959ec3f0-4eda-4258-8127-7a9011a3ba85 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-959ec3f0-4eda-4258-8127-7a9011a3ba85.shg-align-container {
  display: flex;
  justify-content: center
}

.s-959ec3f0-4eda-4258-8127-7a9011a3ba85.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-959ec3f0-4eda-4258-8127-7a9011a3ba85.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-06dd30c7-5a89-4586-91c7-6067010cc4ff {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-06dd30c7-5a89-4586-91c7-6067010cc4ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-06dd30c7-5a89-4586-91c7-6067010cc4ff.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-986e7930-5fb5-4390-a8ab-014d9c8fa7af {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-986e7930-5fb5-4390-a8ab-014d9c8fa7af .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-986e7930-5fb5-4390-a8ab-014d9c8fa7af .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-986e7930-5fb5-4390-a8ab-014d9c8fa7af .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-4e57b372-2c1e-498c-aa2d-cac8e701a042 {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-4e57b372-2c1e-498c-aa2d-cac8e701a042 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4e57b372-2c1e-498c-aa2d-cac8e701a042 {
  cursor: pointer;
}#s-4e57b372-2c1e-498c-aa2d-cac8e701a042.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c9033fb4-0a5c-400b-8122-5e78a51a6c0c {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-c9033fb4-0a5c-400b-8122-5e78a51a6c0c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-c9033fb4-0a5c-400b-8122-5e78a51a6c0c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c9033fb4-0a5c-400b-8122-5e78a51a6c0c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-c9033fb4-0a5c-400b-8122-5e78a51a6c0c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c9033fb4-0a5c-400b-8122-5e78a51a6c0c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-c9033fb4-0a5c-400b-8122-5e78a51a6c0c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c9033fb4-0a5c-400b-8122-5e78a51a6c0c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  margin-left: auto;
margin-right: auto;
max-width: 1263px;
text-align: center;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0 img.shogun-image {
  width: 100%;
  
  
  max-width: 1263px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-887751df-2d86-4593-82be-a7d17a77cfe0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-887751df-2d86-4593-82be-a7d17a77cfe0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-887751df-2d86-4593-82be-a7d17a77cfe0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-887751df-2d86-4593-82be-a7d17a77cfe0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-887751df-2d86-4593-82be-a7d17a77cfe0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-887751df-2d86-4593-82be-a7d17a77cfe0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-887751df-2d86-4593-82be-a7d17a77cfe0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-887751df-2d86-4593-82be-a7d17a77cfe0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-887751df-2d86-4593-82be-a7d17a77cfe0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-887751df-2d86-4593-82be-a7d17a77cfe0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-887751df-2d86-4593-82be-a7d17a77cfe0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-887751df-2d86-4593-82be-a7d17a77cfe0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-887751df-2d86-4593-82be-a7d17a77cfe0 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-887751df-2d86-4593-82be-a7d17a77cfe0 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-887751df-2d86-4593-82be-a7d17a77cfe0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-887751df-2d86-4593-82be-a7d17a77cfe0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-887751df-2d86-4593-82be-a7d17a77cfe0.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-38afbf03-3a07-40e1-9699-24af92334df4 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-38afbf03-3a07-40e1-9699-24af92334df4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-38afbf03-3a07-40e1-9699-24af92334df4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-da5742f7-cae2-45d3-b631-c7561558a7f0 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-da5742f7-cae2-45d3-b631-c7561558a7f0 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-da5742f7-cae2-45d3-b631-c7561558a7f0 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-da5742f7-cae2-45d3-b631-c7561558a7f0 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-9bead846-c479-43a7-ba3c-9f3ba40e4b75 {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-9bead846-c479-43a7-ba3c-9f3ba40e4b75 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9bead846-c479-43a7-ba3c-9f3ba40e4b75 {
  cursor: pointer;
}#s-9bead846-c479-43a7-ba3c-9f3ba40e4b75.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ec150421-4880-40b9-8d1d-e241971110ba {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-ec150421-4880-40b9-8d1d-e241971110ba"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-ec150421-4880-40b9-8d1d-e241971110ba"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-ec150421-4880-40b9-8d1d-e241971110ba"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-ec150421-4880-40b9-8d1d-e241971110ba"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-ec150421-4880-40b9-8d1d-e241971110ba"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-ec150421-4880-40b9-8d1d-e241971110ba"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-ec150421-4880-40b9-8d1d-e241971110ba"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  margin-left: auto;
margin-right: auto;
max-width: 1203px;
text-align: center;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a img.shogun-image {
  width: 100%;
  
  
  max-width: 1203px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-325dbe2e-3031-47be-b37c-29b0ba661c7a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-325dbe2e-3031-47be-b37c-29b0ba661c7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-325dbe2e-3031-47be-b37c-29b0ba661c7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-325dbe2e-3031-47be-b37c-29b0ba661c7a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-325dbe2e-3031-47be-b37c-29b0ba661c7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-325dbe2e-3031-47be-b37c-29b0ba661c7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-325dbe2e-3031-47be-b37c-29b0ba661c7a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-325dbe2e-3031-47be-b37c-29b0ba661c7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-325dbe2e-3031-47be-b37c-29b0ba661c7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-325dbe2e-3031-47be-b37c-29b0ba661c7a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-325dbe2e-3031-47be-b37c-29b0ba661c7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-325dbe2e-3031-47be-b37c-29b0ba661c7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-325dbe2e-3031-47be-b37c-29b0ba661c7a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-325dbe2e-3031-47be-b37c-29b0ba661c7a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-325dbe2e-3031-47be-b37c-29b0ba661c7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-325dbe2e-3031-47be-b37c-29b0ba661c7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-325dbe2e-3031-47be-b37c-29b0ba661c7a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-f5d5c6dc-5aaa-42bb-84e2-197bcae8174d {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-f5d5c6dc-5aaa-42bb-84e2-197bcae8174d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f5d5c6dc-5aaa-42bb-84e2-197bcae8174d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6cbf5b5a-d613-4c0b-b74a-6b7a0a00ea1d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6cbf5b5a-d613-4c0b-b74a-6b7a0a00ea1d .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-6cbf5b5a-d613-4c0b-b74a-6b7a0a00ea1d .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-6cbf5b5a-d613-4c0b-b74a-6b7a0a00ea1d .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-0a05150b-4beb-4276-b200-de8768210e4a {
  margin-left: auto;
margin-right: auto;
padding-top: 1px;
padding-bottom: 1px;
}
@media (max-width: 767px){#s-0a05150b-4beb-4276-b200-de8768210e4a {
  margin-top: 5px;
}
}
#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(227, 227, 227, 1);
}

#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(19, 17, 12, 1);
}

#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(227, 227, 227, 1);
}

#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(19, 17, 12, 1);
  text-align: center;
  font-family: Archivo;
  font-weight: 800;
  font-style: ;
  font-size: 18px;
}

#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}@media (min-width: 768px) and (max-width: 991px){#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(227, 227, 227, 1);
}

#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(19, 17, 12, 1);
}

#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(227, 227, 227, 1);
}

#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(19, 17, 12, 1);
  text-align: center;
  font-family: Archivo;
  font-weight: 800;
  font-style: ;
  font-size: 15px;
}

#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 15px;
}}@media (max-width: 767px){#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(227, 227, 227, 1);
}

#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(19, 17, 12, 1);
}

#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(227, 227, 227, 1);
}

#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(19, 17, 12, 1);
  text-align: center;
  font-family: Archivo;
  font-weight: 800;
  font-style: ;
  font-size: 15px;
}

#s-0a05150b-4beb-4276-b200-de8768210e4a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 15px;
}}
#s-20573c61-374c-47f9-bfcf-bd25c1184872 {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}

#s-20573c61-374c-47f9-bfcf-bd25c1184872 {
  background-image: url();
}








#s-20573c61-374c-47f9-bfcf-bd25c1184872 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-20573c61-374c-47f9-bfcf-bd25c1184872 {
  cursor: pointer;
}#s-20573c61-374c-47f9-bfcf-bd25c1184872.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-93c6e0bb-77e6-4e78-88c1-1ed2f954a876 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-93c6e0bb-77e6-4e78-88c1-1ed2f954a876"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-93c6e0bb-77e6-4e78-88c1-1ed2f954a876"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-93c6e0bb-77e6-4e78-88c1-1ed2f954a876"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-93c6e0bb-77e6-4e78-88c1-1ed2f954a876"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-93c6e0bb-77e6-4e78-88c1-1ed2f954a876"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-93c6e0bb-77e6-4e78-88c1-1ed2f954a876"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-93c6e0bb-77e6-4e78-88c1-1ed2f954a876"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  margin-left: auto;
margin-right: auto;
max-width: 1332px;
text-align: center;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 img.shogun-image {
  width: 100%;
  
  
  max-width: 1332px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a06ca1d1-7297-4c2f-bdbf-bc44661f8752.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-92fe749e-c44a-4004-872f-0f01f6b420f5 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-92fe749e-c44a-4004-872f-0f01f6b420f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-92fe749e-c44a-4004-872f-0f01f6b420f5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5780dc0b-5330-4268-b6e9-339bac877484 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5780dc0b-5330-4268-b6e9-339bac877484 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-5780dc0b-5330-4268-b6e9-339bac877484 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-5780dc0b-5330-4268-b6e9-339bac877484 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-97e42aad-5aeb-4b27-bba6-340e94534922 {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-97e42aad-5aeb-4b27-bba6-340e94534922 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-97e42aad-5aeb-4b27-bba6-340e94534922 {
  cursor: pointer;
}#s-97e42aad-5aeb-4b27-bba6-340e94534922.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1f409484-3c46-4e80-bff6-c72f2e94715c {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-1f409484-3c46-4e80-bff6-c72f2e94715c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-1f409484-3c46-4e80-bff6-c72f2e94715c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-1f409484-3c46-4e80-bff6-c72f2e94715c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-1f409484-3c46-4e80-bff6-c72f2e94715c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-1f409484-3c46-4e80-bff6-c72f2e94715c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-1f409484-3c46-4e80-bff6-c72f2e94715c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-1f409484-3c46-4e80-bff6-c72f2e94715c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  margin-left: auto;
margin-right: auto;
max-width: 919px;
text-align: center;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43 img.shogun-image {
  width: 100%;
  
  
  max-width: 919px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-922f3e0a-c76e-4089-af8b-de3483b22d43 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-922f3e0a-c76e-4089-af8b-de3483b22d43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-922f3e0a-c76e-4089-af8b-de3483b22d43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-922f3e0a-c76e-4089-af8b-de3483b22d43 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-922f3e0a-c76e-4089-af8b-de3483b22d43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-922f3e0a-c76e-4089-af8b-de3483b22d43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-922f3e0a-c76e-4089-af8b-de3483b22d43 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-922f3e0a-c76e-4089-af8b-de3483b22d43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-922f3e0a-c76e-4089-af8b-de3483b22d43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-922f3e0a-c76e-4089-af8b-de3483b22d43 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-922f3e0a-c76e-4089-af8b-de3483b22d43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-922f3e0a-c76e-4089-af8b-de3483b22d43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-922f3e0a-c76e-4089-af8b-de3483b22d43 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-922f3e0a-c76e-4089-af8b-de3483b22d43 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-922f3e0a-c76e-4089-af8b-de3483b22d43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-922f3e0a-c76e-4089-af8b-de3483b22d43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-922f3e0a-c76e-4089-af8b-de3483b22d43.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-76bd5078-6614-4745-803e-960b05985e32 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-76bd5078-6614-4745-803e-960b05985e32 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-76bd5078-6614-4745-803e-960b05985e32.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c0fbffae-6667-4500-b18e-9857c70a91f4 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c0fbffae-6667-4500-b18e-9857c70a91f4 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-c0fbffae-6667-4500-b18e-9857c70a91f4 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-c0fbffae-6667-4500-b18e-9857c70a91f4 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-54872085-6f1f-4116-98ec-80c80079bc52 {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-54872085-6f1f-4116-98ec-80c80079bc52 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-54872085-6f1f-4116-98ec-80c80079bc52 {
  cursor: pointer;
}#s-54872085-6f1f-4116-98ec-80c80079bc52.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f2dc1292-36c2-4fa7-a82a-82557297a280 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-f2dc1292-36c2-4fa7-a82a-82557297a280"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-f2dc1292-36c2-4fa7-a82a-82557297a280"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-f2dc1292-36c2-4fa7-a82a-82557297a280"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-f2dc1292-36c2-4fa7-a82a-82557297a280"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-f2dc1292-36c2-4fa7-a82a-82557297a280"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-f2dc1292-36c2-4fa7-a82a-82557297a280"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-f2dc1292-36c2-4fa7-a82a-82557297a280"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  margin-left: auto;
margin-right: auto;
max-width: 1574px;
text-align: center;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f img.shogun-image {
  width: 100%;
  
  
  max-width: 1574px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-99807da9-f7c6-4e22-8019-d85032ba7a1f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-99807da9-f7c6-4e22-8019-d85032ba7a1f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99807da9-f7c6-4e22-8019-d85032ba7a1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-99807da9-f7c6-4e22-8019-d85032ba7a1f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-99807da9-f7c6-4e22-8019-d85032ba7a1f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99807da9-f7c6-4e22-8019-d85032ba7a1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-99807da9-f7c6-4e22-8019-d85032ba7a1f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-99807da9-f7c6-4e22-8019-d85032ba7a1f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99807da9-f7c6-4e22-8019-d85032ba7a1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-99807da9-f7c6-4e22-8019-d85032ba7a1f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-99807da9-f7c6-4e22-8019-d85032ba7a1f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99807da9-f7c6-4e22-8019-d85032ba7a1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-99807da9-f7c6-4e22-8019-d85032ba7a1f {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-99807da9-f7c6-4e22-8019-d85032ba7a1f .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-99807da9-f7c6-4e22-8019-d85032ba7a1f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-99807da9-f7c6-4e22-8019-d85032ba7a1f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-99807da9-f7c6-4e22-8019-d85032ba7a1f.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-32fd8cc3-3ff2-4acc-ac5d-8e62bc93d081 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-32fd8cc3-3ff2-4acc-ac5d-8e62bc93d081 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-32fd8cc3-3ff2-4acc-ac5d-8e62bc93d081.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4a23be69-eb54-4705-8be8-78bb54ae30f4 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4a23be69-eb54-4705-8be8-78bb54ae30f4 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-4a23be69-eb54-4705-8be8-78bb54ae30f4 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-4a23be69-eb54-4705-8be8-78bb54ae30f4 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 {
  margin-left: auto;
margin-right: auto;
padding-top: 1px;
padding-bottom: 1px;
}
@media (max-width: 767px){#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 {
  margin-top: 5px;
}
}
#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(19, 17, 12, 1);
}

#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(19, 17, 12, 1);
  padding: 10px;
}

#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(19, 17, 12, 1);
}

#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-family: Archivo;
  font-weight: 800;
  font-style: ;
  font-size: 18px;
}

#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}@media (min-width: 768px) and (max-width: 991px){#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(19, 17, 12, 1);
}

#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(19, 17, 12, 1);
  padding: 10px;
}

#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(19, 17, 12, 1);
}

#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-family: Archivo;
  font-weight: 800;
  font-style: ;
  font-size: 15px;
}

#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 15px;
}}@media (max-width: 767px){#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(19, 17, 12, 1);
}

#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(19, 17, 12, 1);
  padding: 10px;
}

#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(19, 17, 12, 1);
}

#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-family: Archivo;
  font-weight: 800;
  font-style: ;
  font-size: 15px;
}

#s-0bc020ce-61cb-435e-ba3d-f44b68f19610 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 15px;
}}
#s-15269102-47fe-4bda-bb63-52f9d6ac7b90 {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-15269102-47fe-4bda-bb63-52f9d6ac7b90 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-15269102-47fe-4bda-bb63-52f9d6ac7b90 {
  cursor: pointer;
}#s-15269102-47fe-4bda-bb63-52f9d6ac7b90.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-24372131-3939-476f-9141-ed10315b378e {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-24372131-3939-476f-9141-ed10315b378e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-24372131-3939-476f-9141-ed10315b378e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-24372131-3939-476f-9141-ed10315b378e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-24372131-3939-476f-9141-ed10315b378e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-24372131-3939-476f-9141-ed10315b378e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-24372131-3939-476f-9141-ed10315b378e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-24372131-3939-476f-9141-ed10315b378e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  margin-left: auto;
margin-right: auto;
max-width: 1332px;
text-align: center;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7 img.shogun-image {
  width: 100%;
  
  
  max-width: 1332px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-359901fd-4988-4b55-9abd-a27785a0c0c7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-359901fd-4988-4b55-9abd-a27785a0c0c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-359901fd-4988-4b55-9abd-a27785a0c0c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-359901fd-4988-4b55-9abd-a27785a0c0c7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-359901fd-4988-4b55-9abd-a27785a0c0c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-359901fd-4988-4b55-9abd-a27785a0c0c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-359901fd-4988-4b55-9abd-a27785a0c0c7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-359901fd-4988-4b55-9abd-a27785a0c0c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-359901fd-4988-4b55-9abd-a27785a0c0c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-359901fd-4988-4b55-9abd-a27785a0c0c7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-359901fd-4988-4b55-9abd-a27785a0c0c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-359901fd-4988-4b55-9abd-a27785a0c0c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-359901fd-4988-4b55-9abd-a27785a0c0c7 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-359901fd-4988-4b55-9abd-a27785a0c0c7 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-359901fd-4988-4b55-9abd-a27785a0c0c7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-359901fd-4988-4b55-9abd-a27785a0c0c7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-359901fd-4988-4b55-9abd-a27785a0c0c7.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-e26e58e8-56bc-4953-b966-be9829f79764 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-e26e58e8-56bc-4953-b966-be9829f79764 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e26e58e8-56bc-4953-b966-be9829f79764.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f8daa005-74ee-4168-b8a8-6da9a91eb24b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f8daa005-74ee-4168-b8a8-6da9a91eb24b .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-f8daa005-74ee-4168-b8a8-6da9a91eb24b .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-f8daa005-74ee-4168-b8a8-6da9a91eb24b .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-e05a6aa0-ab44-4b9d-a1f5-ba103ef6a8df {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-e05a6aa0-ab44-4b9d-a1f5-ba103ef6a8df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e05a6aa0-ab44-4b9d-a1f5-ba103ef6a8df {
  cursor: pointer;
}#s-e05a6aa0-ab44-4b9d-a1f5-ba103ef6a8df.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-af575d0b-0ad3-4fb6-82d9-c984a5a3f934 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-af575d0b-0ad3-4fb6-82d9-c984a5a3f934"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-af575d0b-0ad3-4fb6-82d9-c984a5a3f934"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-af575d0b-0ad3-4fb6-82d9-c984a5a3f934"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-af575d0b-0ad3-4fb6-82d9-c984a5a3f934"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-af575d0b-0ad3-4fb6-82d9-c984a5a3f934"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-af575d0b-0ad3-4fb6-82d9-c984a5a3f934"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-af575d0b-0ad3-4fb6-82d9-c984a5a3f934"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  margin-left: auto;
margin-right: auto;
max-width: 2201px;
text-align: center;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 img.shogun-image {
  width: 100%;
  
  
  max-width: 2201px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-fbbd48b9-bca3-4341-8a73-0013bbe58990 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fbbd48b9-bca3-4341-8a73-0013bbe58990.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbbd48b9-bca3-4341-8a73-0013bbe58990.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-fbbd48b9-bca3-4341-8a73-0013bbe58990 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fbbd48b9-bca3-4341-8a73-0013bbe58990.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbbd48b9-bca3-4341-8a73-0013bbe58990.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-fbbd48b9-bca3-4341-8a73-0013bbe58990 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fbbd48b9-bca3-4341-8a73-0013bbe58990.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbbd48b9-bca3-4341-8a73-0013bbe58990.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-fbbd48b9-bca3-4341-8a73-0013bbe58990 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fbbd48b9-bca3-4341-8a73-0013bbe58990.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbbd48b9-bca3-4341-8a73-0013bbe58990.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-fbbd48b9-bca3-4341-8a73-0013bbe58990 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990 img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-fbbd48b9-bca3-4341-8a73-0013bbe58990 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-fbbd48b9-bca3-4341-8a73-0013bbe58990.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbbd48b9-bca3-4341-8a73-0013bbe58990.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbbd48b9-bca3-4341-8a73-0013bbe58990.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-2504c7bf-4037-4210-a129-1a75d28f94a7 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-2504c7bf-4037-4210-a129-1a75d28f94a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2504c7bf-4037-4210-a129-1a75d28f94a7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6892f63b-a42a-4a2e-98a2-9ff71fc8355d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6892f63b-a42a-4a2e-98a2-9ff71fc8355d .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-6892f63b-a42a-4a2e-98a2-9ff71fc8355d .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-6892f63b-a42a-4a2e-98a2-9ff71fc8355d .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-633200de-3e9f-4399-8dd6-22bd660b0331 {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-633200de-3e9f-4399-8dd6-22bd660b0331 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-633200de-3e9f-4399-8dd6-22bd660b0331 {
  cursor: pointer;
}#s-633200de-3e9f-4399-8dd6-22bd660b0331.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c8514d34-36d9-4173-aa15-36e971b4a825 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-c8514d34-36d9-4173-aa15-36e971b4a825"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-c8514d34-36d9-4173-aa15-36e971b4a825"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c8514d34-36d9-4173-aa15-36e971b4a825"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-c8514d34-36d9-4173-aa15-36e971b4a825"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c8514d34-36d9-4173-aa15-36e971b4a825"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-c8514d34-36d9-4173-aa15-36e971b4a825"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c8514d34-36d9-4173-aa15-36e971b4a825"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  margin-left: auto;
margin-right: auto;
max-width: 1228px;
text-align: center;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca img.shogun-image {
  width: 100%;
  
  
  max-width: 1228px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-0f06eb7b-4c45-4836-a950-4b9169136aca .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0f06eb7b-4c45-4836-a950-4b9169136aca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f06eb7b-4c45-4836-a950-4b9169136aca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-0f06eb7b-4c45-4836-a950-4b9169136aca .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0f06eb7b-4c45-4836-a950-4b9169136aca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f06eb7b-4c45-4836-a950-4b9169136aca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-0f06eb7b-4c45-4836-a950-4b9169136aca .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0f06eb7b-4c45-4836-a950-4b9169136aca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f06eb7b-4c45-4836-a950-4b9169136aca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-0f06eb7b-4c45-4836-a950-4b9169136aca .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0f06eb7b-4c45-4836-a950-4b9169136aca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f06eb7b-4c45-4836-a950-4b9169136aca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-0f06eb7b-4c45-4836-a950-4b9169136aca {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-0f06eb7b-4c45-4836-a950-4b9169136aca .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-0f06eb7b-4c45-4836-a950-4b9169136aca.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0f06eb7b-4c45-4836-a950-4b9169136aca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0f06eb7b-4c45-4836-a950-4b9169136aca.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-f92e1738-1c78-4400-bd77-fcc48a391846 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-f92e1738-1c78-4400-bd77-fcc48a391846 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f92e1738-1c78-4400-bd77-fcc48a391846.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3eac985b-8864-4076-a2ba-b556359f76ee {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3eac985b-8864-4076-a2ba-b556359f76ee .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-3eac985b-8864-4076-a2ba-b556359f76ee .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-3eac985b-8864-4076-a2ba-b556359f76ee .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-fdd53bc4-40d0-4174-90b1-39c7831ba5be {
  margin-left: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(246, 246, 246, 1);
border-style: solid;
min-height: 50px;
}








#s-fdd53bc4-40d0-4174-90b1-39c7831ba5be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fdd53bc4-40d0-4174-90b1-39c7831ba5be {
  cursor: pointer;
}#s-fdd53bc4-40d0-4174-90b1-39c7831ba5be.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3309030b-59a2-42cf-9aba-5d896012488d {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-3309030b-59a2-42cf-9aba-5d896012488d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-3309030b-59a2-42cf-9aba-5d896012488d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-3309030b-59a2-42cf-9aba-5d896012488d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-3309030b-59a2-42cf-9aba-5d896012488d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-3309030b-59a2-42cf-9aba-5d896012488d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-3309030b-59a2-42cf-9aba-5d896012488d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-3309030b-59a2-42cf-9aba-5d896012488d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  margin-left: auto;
margin-right: auto;
max-width: 1574px;
text-align: center;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b img.shogun-image {
  width: 100%;
  
  
  max-width: 1574px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b img.shogun-image {
  width: 100%;
  
  
  

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2dbdde77-852e-43c8-8a32-ce5ff7c2c17b.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-da505075-c0fa-405a-bd5b-da54290fc849 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-da505075-c0fa-405a-bd5b-da54290fc849 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-da505075-c0fa-405a-bd5b-da54290fc849.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e019548c-e85f-40f7-b6fc-fe141cb9a077 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e019548c-e85f-40f7-b6fc-fe141cb9a077 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-e019548c-e85f-40f7-b6fc-fe141cb9a077 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}@media (max-width: 767px){#s-e019548c-e85f-40f7-b6fc-fe141cb9a077 .shogun-heading-component h3 {
  color: ;
  font-weight:  800 ;
  font-family: "Archivo";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}


}
#s-ac2a598c-3a7e-4246-a529-1802626fdc9b {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 8px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-ac2a598c-3a7e-4246-a529-1802626fdc9b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ac2a598c-3a7e-4246-a529-1802626fdc9b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ac2a598c-3a7e-4246-a529-1802626fdc9b-root {
    text-align: center;
  }


#s-ac2a598c-3a7e-4246-a529-1802626fdc9b.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  
  font-family: Archivo;
  display:  block ;
}
@media (min-width: 1200px){
  #s-ac2a598c-3a7e-4246-a529-1802626fdc9b-root {
    text-align: center;
  }


#s-ac2a598c-3a7e-4246-a529-1802626fdc9b.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  
  font-family: Archivo;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ac2a598c-3a7e-4246-a529-1802626fdc9b-root {
    text-align: center;
  }


#s-ac2a598c-3a7e-4246-a529-1802626fdc9b.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  
  font-family: Archivo;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ac2a598c-3a7e-4246-a529-1802626fdc9b-root {
    text-align: center;
  }


#s-ac2a598c-3a7e-4246-a529-1802626fdc9b.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  
  font-family: Archivo;
  display:  block ;
}
}@media (max-width: 767px){
  #s-ac2a598c-3a7e-4246-a529-1802626fdc9b-root {
    text-align: center;
  }


#s-ac2a598c-3a7e-4246-a529-1802626fdc9b.shg-btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  
  font-family: Archivo;
  display:  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;
}

#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-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:not(.shopify-section *):not([id^="wistia"]) {
  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;
}

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}.animate__animated.animate__infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animate__animated.animate__repeat-1{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-iteration-count:var(--animate-repeat);animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{-webkit-animation-iteration-count:2;animation-iteration-count:2;-webkit-animation-iteration-count:calc(var(--animate-repeat)*2);animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{-webkit-animation-iteration-count:3;animation-iteration-count:3;-webkit-animation-iteration-count:calc(var(--animate-repeat)*3);animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-delay:var(--animate-delay);animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{-webkit-animation-delay:2s;animation-delay:2s;-webkit-animation-delay:calc(var(--animate-delay)*2);animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{-webkit-animation-delay:3s;animation-delay:3s;-webkit-animation-delay:calc(var(--animate-delay)*3);animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{-webkit-animation-delay:4s;animation-delay:4s;-webkit-animation-delay:calc(var(--animate-delay)*4);animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{-webkit-animation-delay:5s;animation-delay:5s;-webkit-animation-delay:calc(var(--animate-delay)*5);animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-duration:calc(var(--animate-duration)/2);animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-duration:calc(var(--animate-duration)*0.8);animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-duration:calc(var(--animate-duration)*3);animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@-webkit-keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}@keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.animate__shakeX{-webkit-animation-name:shakeX;animation-name:shakeX}@-webkit-keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}.animate__shakeY{-webkit-animation-name:shakeY;animation-name:shakeY}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.animate__headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.animate__swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.animate__heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-duration:calc(var(--animate-duration)*1.3);animation-duration:calc(var(--animate-duration)*1.3);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInDown{-webkit-animation-name:backInDown;animation-name:backInDown}@-webkit-keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInLeft{-webkit-animation-name:backInLeft;animation-name:backInLeft}@-webkit-keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInRight{-webkit-animation-name:backInRight;animation-name:backInRight}@-webkit-keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInUp{-webkit-animation-name:backInUp;animation-name:backInUp}@-webkit-keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}@keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{-webkit-animation-name:backOutDown;animation-name:backOutDown}@-webkit-keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}@keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{-webkit-animation-name:backOutLeft;animation-name:backOutLeft}@-webkit-keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}@keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{-webkit-animation-name:backOutRight;animation-name:backOutRight}@-webkit-keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}@keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{-webkit-animation-name:backOutUp;animation-name:backOutUp}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.animate__bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopLeft{-webkit-animation-name:fadeInTopLeft;animation-name:fadeInTopLeft}@-webkit-keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopRight{-webkit-animation-name:fadeInTopRight;animation-name:fadeInTopRight}@-webkit-keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomLeft{-webkit-animation-name:fadeInBottomLeft;animation-name:fadeInBottomLeft}@-webkit-keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomRight{-webkit-animation-name:fadeInBottomRight;animation-name:fadeInBottomRight}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}@keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{-webkit-animation-name:fadeOutTopLeft;animation-name:fadeOutTopLeft}@-webkit-keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}@keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{-webkit-animation-name:fadeOutTopRight;animation-name:fadeOutTopRight}@-webkit-keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}@keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{-webkit-animation-name:fadeOutBottomRight;animation-name:fadeOutBottomRight}@-webkit-keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}@keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{-webkit-animation-name:fadeOutBottomLeft;animation-name:fadeOutBottomLeft}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animate__animated.animate__flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInRight{-webkit-animation-name:lightSpeedInRight;animation-name:lightSpeedInRight;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInLeft{-webkit-animation-name:lightSpeedInLeft;animation-name:lightSpeedInLeft;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{-webkit-animation-name:lightSpeedOutRight;animation-name:lightSpeedOutRight;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}@keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{-webkit-animation-name:lightSpeedOutLeft;animation-name:lightSpeedOutLeft;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.animate__rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2);-webkit-animation-name:hinge;animation-name:hinge;-webkit-transform-origin:top left;transform-origin:top left}@-webkit-keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.animate__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft;-webkit-transform-origin:left center;transform-origin:left center}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight;-webkit-transform-origin:right center;transform-origin:right center}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}