.imageHeroSubscribe {
    display: flex;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
}

.imageHeroSubscribe--container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 1284px;
    min-height: 150px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.imageHeroSubscribe--overlay{
    position: relative;
    width: 100%;
    min-height: 150px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
     padding-top: 48px;
    padding-bottom: 30px;
}

.imageHeroSubscribe--title {
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    font-size: 36px;
}

.imageHeroSubscribe-card--wrapper {
    position: relative;
    width: 100%;
    max-width: 415px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 36px;
}

.imageHeroSubscribe-card--wrapper::before, .imageHeroSubscribe-card--wrapper::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
}

.imageHeroSubscribe-card--wrapper::before {
    top: -20px;
    left: 10px;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0,0H20A20,20,0,0,1,40,20V40a0,0,0,0,1,0,0H20A20,20,0,0,1,0,20V0A0,0,0,0,1,0,0Z' fill='%23488bfa'/%3E%3C/svg%3E%0A");
    z-index: 11;
}

.imageHeroSubscribe-card--wrapper::after {
    bottom: -20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M0,0H40A40,40,0,0,1,80,40V80a0,0,0,0,1,0,0H40A40,40,0,0,1,0,40V0A0,0,0,0,1,0,0Z' fill='%2395a8ba'/%3E%3C/svg%3E%0A");
}

.imageHeroSubscribe--card {
    position: relative;
    padding: 26px 30px 15px;
    text-align: center;
    border-radius: 0 50px 0 50px;
    background-color: #12223f;
    z-index: 10;
}

.imageHeroSubscribe-card--actions .button--primary{
    line-height: 1.5rem;
}

.imageHeroSubscribe-card--actions a {
    display: block;
}

@media (min-width: 801px) {
    .imageHeroSubscribe {
        margin-bottom: 75px;
    }
    
    .imageHeroSubscribe--container {
        justify-content: flex-end;
        min-height: 350px;
    }
    
  .imageHeroSubscribe--overlay{
        padding-top: 0;
        min-height: 350px;
        padding-bottom: 60px;
  }
    
    .imageHeroSubscribe--title {
        font-size: 60px;
    }
    
    .imageHeroSubscribe-card--wrapper {
        position: absolute;
        right: 15px;
        bottom: -110px;
        margin-right: 0;
    }

    .imageHeroSubscribe--card {
        padding-bottom: 26px;
    }
    
    .imageHeroSubscribe-card--actions {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.shg-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.shg-box-video-wrapper {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    position: fixed
    The element is removed from the normal document flow, and no space is created for the element in the page layout. 
    It is positioned relative to the initial containing block established by the viewport, 

    *
      except when one of its ancestors has a transform, perspective, or filter property set to something other than none 
      (see the CSS Transforms Spec), or the will-change property is set to transform, 
      in which case that ancestor behaves as the containing block. 
    *
  */

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#s-564886fe-8263-4c45-a962-d209d2a429b5 {
  min-height: 50px;
}








#s-564886fe-8263-4c45-a962-d209d2a429b5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-564886fe-8263-4c45-a962-d209d2a429b5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c030b480-dbf6-442d-945a-347abb083c24 {
  margin-top: 75px;
margin-left: auto;
margin-bottom: 75px;
margin-right: auto;
min-height: 50px;
max-width: 1250px;
}
@media (min-width: 768px) and (max-width: 991px){#s-c030b480-dbf6-442d-945a-347abb083c24 {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 2%;
padding-right: 2%;
}
}@media (max-width: 767px){#s-c030b480-dbf6-442d-945a-347abb083c24 {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 2%;
padding-right: 2%;
}
}







#s-c030b480-dbf6-442d-945a-347abb083c24 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c030b480-dbf6-442d-945a-347abb083c24.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.textLeftVideoRight--flex {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.textLeftVideoRight-flex--left {
    width: 100%;
}

.textLeftVideoRight-flex--right {
    width: 100%;
}

@media (min-width: 801px) {
    .textLeftVideoRight--flex {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .textLeftVideoRight-flex--left {
        margin-right: 6px;
        width: 50%;
        flex: 1;
    }
    
    .textLeftVideoRight-flex--right {
        margin-left: 15px;
        width: 50%;
        order: 1;
    }
}

.textLeftVideoRight--subtitle {
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #12233f;
    font-size: 40px;
    font-family: Lora, serif;
    font-weight: 700;
    line-height: 1.275em;
}

.button-leaf--primary {
    display: inline-block;
    padding: 22px 40px;
    color: #e31c3d;
    font-size: 16px;
    font-family: Montserrat;
    text-align: center;
    text-decoration: none;
    line-height: 1em;
    border: 2px solid #e31c3d;
    border-radius: 0 30px 0 30px;
    background-color: #fff;
    transition: all .15s ease-out;
}

.button-leaf--primary:hover, .button-leaf--primary:focus {
    color: #fff;
    background-color: #a31d2e;
}

.textLeftVideoRight--video {
    position: relative;
    border-radius: 10px;
}

@media(min-width: 801px){
    .textLeftVideoRight--video::before, .textLeftVideoRight--video::after {
        content: "";
        position: absolute;
        display: block !important;
        width: 275px;
        height: 246px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='276' height='246' viewBox='0 0 276 246'%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 240)' fill='%23488bfa'/%3E%3C/svg%3E%0A");
        z-index: -1;
    }
    
    .textLeftVideoRight--video::before {
        left: -20px;
        top: -50px;
    }
    
    .textLeftVideoRight--video::after {
        right: 20px;
        bottom: -50px;
    }
}
.shogun-image-container {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-918d1f49-84a2-49b7-8c63-ea5edc16436a {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
text-align: center;
}







  #s-918d1f49-84a2-49b7-8c63-ea5edc16436a img.shogun-image {
    

    
    
    
  }


#s-918d1f49-84a2-49b7-8c63-ea5edc16436a .shogun-image-content {
  
    align-items: center;
  
}

.imageLeftTabsRight {
    margin-top: 5px;
    margin-bottom: 37px;
}

.imageLeftTabsRight--container {
    width: 100%;
    max-width: 1284px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.imageLeftTabsRight-flex--left {
    margin-bottom: 100px;
}

.imageLeftTabsRight--img {
    position: relative;
}

.imageLeftTabsRight--img::after {
    content: '';
    position: absolute;
    left: -10px;
    bottom: -60px;
    width: 120px;
    height: 120px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='276' height='246' viewBox='0 0 276 246'%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 30)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 60)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 90)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 120)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 150)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 180)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 210)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(270 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(240 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(210 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(180 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(150 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(120 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(90 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(60 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(30 240)' fill='%23488bfa'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(0 240)' fill='%23488bfa'/%3E%3C/svg%3E%0A");
}

.imageLeftTabsRight--img img {
    border-radius: 12px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.14);
}

.imageLeftTabsRight .shogun-tabs.shogun-rounded li {
    margin-right: 5px;
}

.imageLeftTabsRight .shogun-tabs.shogun-rounded li .shogun-tab-box {
    border-radius: 16px 16px 0 0;
}

@media (min-width: 801px) {
    .imageLeftTabsRight {
        margin-top: 0;
        margin-bottom: 159px;
    }
    
    .imageLeftTabsRight--flex {
        display: flex;
        flex-wrap: wrap;
    }
    
    .imageLeftTabsRight--flex > div {
        flex: 1;
    }
    
    .imageLeftTabsRight-flex--left {
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .imageLeftTabsRight-flex--right {
        margin-left: 15px;
    }
    
    .imageLeftTabsRight--img::after {
        left: 60px;
        bottom: -86px;
        width: 156px;
        height: 156px;
    }
}
.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.shogun-tabs.shogun-modern {
  padding-left: 10px;
  padding-right: 5px;
  overflow: hidden;
  transform: translate(0px, 0px);
}

.shogun-tabs li {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.shogun-tabs.shogun-modern li {
  width: 200px;
  height: 45px;
  margin: 0 5px 0 0;
}

.shogun-tabs.shogun-rounded li {
  margin-bottom: 0;
  float: left;
  box-sizing: border-box;
  margin-right: 2px;
  line-height: 1.42857143;
  position: relative;
  display: block;
  overflow: visible;
}

.shogun-tabs.shogun-rounded li .shogun-tab-box {
  padding: 10px 15px !important;
  border-radius: 4px 4px 0 0;
}

.shogun-tabs.shogun-modern li .shogun-tab-box {
  padding: 12px 5px !important;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .shogun-tabs.shogun-rounded li .shogun-tab-box {
    padding: 10px 5px !important;
    text-align: center;
  }

  .shogun-tabs.shogun-modern li .shogun-tab-box {
    padding: 12px 15px !important;
  }
}

.shogun-tabs.shogun-rounded .shogun-tab-box {
  border-bottom: none !important;
}

.shogun-tabs.shogun-modern li.active {
  z-index: 40;
}

.shogun-tabs.shogun-modern li .shogun-tab-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  content: "";
  transform: perspective(100px) rotateX(30deg);
  -webkit-transform: perspective(100px) rotateX(30deg);
}

.shogun-tabs.shogun-modern li.shogun-tab-active .shogun-tab-box::after {
  border-bottom: none !important;
  height: 46px;
}

.shogun-tabs-body {
  padding-top: 10px;
}

.shogun-tabs-body.shogun-rounded {
  margin-top: 0px !important;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.shogun-tabs-body > .shogun-tab-content {
  display: none;
}

.shogun-tabs-body > .shogun-tab-content.shogun-tab-active {
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
  display: block;
}

.shogun-tab-border {
  position: absolute;
}

.shogun-tab-title {
  white-space: nowrap;
  text-align: center;

  display: inline-block;
  width: 100%;
}

.shogun-tabs.shogun-modern .shogun-tab-title {
  /** Hack for Safari weird bug */
  /* https://stackoverflow.com/questions/18146511/bug-in-css3-rotatey-transition-on-safari */
  transform: translateZ(1000px);
}

#s-9492dafe-9de5-4742-9089-41455191c7f6 {
  background-color: rgba(255, 255, 255, 1);
}


  #s-9492dafe-9de5-4742-9089-41455191c7f6 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(245, 245, 245, 1);
    border: 1px solid rgba(221, 221, 221, 0);
  }
  #s-9492dafe-9de5-4742-9089-41455191c7f6 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(84, 98, 119, 1);
    border: 1px solid rgba(84, 98, 119, 1);
  }
#s-9492dafe-9de5-4742-9089-41455191c7f6 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(84, 98, 119, 1);
  font-family: Montserrat;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
}

#s-9492dafe-9de5-4742-9089-41455191c7f6 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-9492dafe-9de5-4742-9089-41455191c7f6 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(84, 98, 119, 1);
}

#s-9492dafe-9de5-4742-9089-41455191c7f6 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(84, 98, 119, 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-521d9a23-e6bf-4ddb-be0d-a6f26f3f71a0 {
  margin-top: 20px;
padding-left: 7px;
padding-right: 7px;
}

.tabContentLine {
    margin-top: 20px;
    padding-left: 7px;
    padding-right: 7px;
}

.tabContentLine--img {
    margin-bottom: 20px;
    text-align: center;
}

@media (min-width: 801px) {
    .tabContentLine--flex {
        display: flex;
        flex-wrap: wrap;
    }
    
    .tabContentLine--img {
        margin-bottom: 0;
        margin-right: 32px;
    }
    
    .tabContentLine--text {
        flex: 1;
    }
}
#s-22bc71b0-d53c-430f-83df-89d1df400236 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-22bc71b0-d53c-430f-83df-89d1df400236 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 120px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-22bc71b0-d53c-430f-83df-89d1df400236 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 120px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-22bc71b0-d53c-430f-83df-89d1df400236 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-top: 50px;
padding-left: 1%;
padding-bottom: 50px;
padding-right: 1%;
}
}@media (max-width: 767px){#s-22bc71b0-d53c-430f-83df-89d1df400236 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 20px;
margin-right: 0%;
padding-top: 25px;
padding-left: 1%;
padding-bottom: 25px;
padding-right: 1%;
}
}







#s-22bc71b0-d53c-430f-83df-89d1df400236 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-22bc71b0-d53c-430f-83df-89d1df400236.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: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

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

#s-144f19ae-0d71-4a9b-af0c-1f80e1f69a03 {
  margin-bottom: 60px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-144f19ae-0d71-4a9b-af0c-1f80e1f69a03 .shogun-heading-component h2 {
  color: rgba(18, 35, 63, 1);
  font-weight:  700 ;
  font-family: "Lora";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



.shogun-table-wrapper {
  overflow: auto;
}

table.shogun-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

thead.shogun-table-column-container {
  font-weight: bold;
}

td.shogun-table-column {
  padding: 10px;
}

td.shogun-table-row {
  padding: 10px;
  min-height: 45px;
}

td.shogun-table-column:only-child, td.shogun-table-row:only-child {
  width: 100%;
}

#s-17b44792-d538-4606-8307-166bc492fdcd {
  margin-left: auto;
margin-right: auto;
max-width: 1250px;
}

#s-17b44792-d538-4606-8307-166bc492fdcd .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-17b44792-d538-4606-8307-166bc492fdcd table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-17b44792-d538-4606-8307-166bc492fdcd td.shogun-table-column {
  background-color: #fff;
  padding: 0px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-17b44792-d538-4606-8307-166bc492fdcd td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-17b44792-d538-4606-8307-166bc492fdcd td.shogun-table-column, #s-17b44792-d538-4606-8307-166bc492fdcd td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-a8dd360b-7664-4729-9d15-76f24a0530f8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a8dd360b-7664-4729-9d15-76f24a0530f8 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Lora";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.5em;
  
  
}



#s-d8519c33-4a63-45b1-a7de-6b132c24971b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d8519c33-4a63-45b1-a7de-6b132c24971b .shogun-heading-component h3 {
  color: rgba(18, 35, 63, 1);
  font-weight:  700 ;
  font-family: "Lora";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.5em;
  
  
}



#s-294f1f30-9dc0-45ec-8132-e179c5523ea9 {
  text-align: center;
}

#s-294f1f30-9dc0-45ec-8132-e179c5523ea9 .shg-product-sold-out {
  display: none;
  color: rgba(255, 255, 255, 1);
  font-size: 40px;
  font-weight:  700 ;
  font-family: Lora;
  font-style:  normal ;
}

#s-294f1f30-9dc0-45ec-8132-e179c5523ea9 .shg-product-price {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Lora;
  font-style:  normal ;
  font-size: 40px;
}

#s-294f1f30-9dc0-45ec-8132-e179c5523ea9 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

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

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

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

#s-6a603043-f44c-49e3-97d3-403fedfd611b {
  padding-top: 22px;
padding-left: 20px;
padding-bottom: 22px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(18, 28, 69, 1);
}
#s-6a603043-f44c-49e3-97d3-403fedfd611b:hover {background-color: rgba(233, 233, 233, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(18, 28, 69, 1) !important;}#s-6a603043-f44c-49e3-97d3-403fedfd611b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-6a603043-f44c-49e3-97d3-403fedfd611b {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6a603043-f44c-49e3-97d3-403fedfd611b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6a603043-f44c-49e3-97d3-403fedfd611b.shg-btn {
  color: rgba(18, 28, 69, 1);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}

#s-6a603043-f44c-49e3-97d3-403fedfd611b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-d6b6fd9e-d653-4987-bf15-20de91110185 {
  text-align: center;
}

#s-d6b6fd9e-d653-4987-bf15-20de91110185 .shg-product-sold-out {
  display: none;
  color: rgba(18, 35, 63, 1);
  font-size: 40px;
  font-weight:  700 ;
  font-family: Lora;
  font-style:  normal ;
}

#s-d6b6fd9e-d653-4987-bf15-20de91110185 .shg-product-price {
  color: rgba(18, 35, 63, 1);
  font-weight:  700 ;
  font-family: Lora;
  font-style:  normal ;
  font-size: 40px;
}

#s-d6b6fd9e-d653-4987-bf15-20de91110185 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-f5ef3a18-ea70-48a8-83b2-6cc942525221 {
  padding-top: 22px;
padding-left: 20px;
padding-bottom: 22px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(18, 28, 69, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-f5ef3a18-ea70-48a8-83b2-6cc942525221:hover {background-color: rgba(36, 65, 106, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-f5ef3a18-ea70-48a8-83b2-6cc942525221:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-f5ef3a18-ea70-48a8-83b2-6cc942525221 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f5ef3a18-ea70-48a8-83b2-6cc942525221.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f5ef3a18-ea70-48a8-83b2-6cc942525221.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}

#s-f5ef3a18-ea70-48a8-83b2-6cc942525221.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-aab5d376-2224-480f-a72a-79967513fdbd {
  text-align: center;
}

#s-aab5d376-2224-480f-a72a-79967513fdbd .shg-product-sold-out {
  display: none;
  color: rgba(18, 35, 63, 1);
  font-size: 40px;
  font-weight:  700 ;
  font-family: Lora;
  font-style:  normal ;
}

#s-aab5d376-2224-480f-a72a-79967513fdbd .shg-product-price {
  color: rgba(18, 35, 63, 1);
  font-weight:  700 ;
  font-family: Lora;
  font-style:  normal ;
  font-size: 40px;
}

#s-aab5d376-2224-480f-a72a-79967513fdbd .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-5af2b8ba-7cf8-49e3-ab54-6dd46bf4dfb7 {
  border-style: solid;
padding-top: 22px;
padding-left: 20px;
padding-bottom: 22px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 2px;
background-color: rgba(18, 28, 69, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-5af2b8ba-7cf8-49e3-ab54-6dd46bf4dfb7:hover {background-color: rgba(36, 65, 106, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-5af2b8ba-7cf8-49e3-ab54-6dd46bf4dfb7:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-5af2b8ba-7cf8-49e3-ab54-6dd46bf4dfb7 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5af2b8ba-7cf8-49e3-ab54-6dd46bf4dfb7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5af2b8ba-7cf8-49e3-ab54-6dd46bf4dfb7.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5af2b8ba-7cf8-49e3-ab54-6dd46bf4dfb7.shg-btn.shg-product-atc-error {
  font-weight: normal;
  font-family: Montserrat;
  
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
}



#s-3ab8cffc-e226-41b4-9258-b115648d4f2a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3ab8cffc-e226-41b4-9258-b115648d4f2a .shogun-heading-component h3 {
  color: rgba(18, 35, 63, 1);
  font-weight:  700 ;
  font-family: "Lora";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.5em;
  
  
}



#s-3bff54c7-9b32-42cf-89cf-fcee56f5bf49 {
  text-align: center;
}







  #s-3bff54c7-9b32-42cf-89cf-fcee56f5bf49 img.shogun-image {
    

    
    
    
  }


#s-3bff54c7-9b32-42cf-89cf-fcee56f5bf49 .shogun-image-content {
  
    align-items: center;
  
}

#s-8a32dae2-a5ff-4685-8c12-25fadd54fb34 {
  text-align: center;
}







  #s-8a32dae2-a5ff-4685-8c12-25fadd54fb34 img.shogun-image {
    

    
    
    
  }


#s-8a32dae2-a5ff-4685-8c12-25fadd54fb34 .shogun-image-content {
  
    align-items: center;
  
}

#s-efc51245-0d2d-4935-ae58-25763cb73b0e {
  text-align: center;
}







  #s-efc51245-0d2d-4935-ae58-25763cb73b0e img.shogun-image {
    

    
    
    
  }


#s-efc51245-0d2d-4935-ae58-25763cb73b0e .shogun-image-content {
  
    align-items: center;
  
}

#s-74ec76f3-553a-4aa6-8aa7-61d6bd1d3bd6 {
  text-align: center;
}







  #s-74ec76f3-553a-4aa6-8aa7-61d6bd1d3bd6 img.shogun-image {
    

    
    
    
  }


#s-74ec76f3-553a-4aa6-8aa7-61d6bd1d3bd6 .shogun-image-content {
  
    align-items: center;
  
}

#s-a87da2e3-e864-482b-928a-23429a9171c9 {
  text-align: center;
}







  #s-a87da2e3-e864-482b-928a-23429a9171c9 img.shogun-image {
    

    
    
    
  }


#s-a87da2e3-e864-482b-928a-23429a9171c9 .shogun-image-content {
  
    align-items: center;
  
}

#s-693704d2-f4e6-499e-8260-3e675c33f42a {
  text-align: center;
}







  #s-693704d2-f4e6-499e-8260-3e675c33f42a img.shogun-image {
    

    
    
    
  }


#s-693704d2-f4e6-499e-8260-3e675c33f42a .shogun-image-content {
  
    align-items: center;
  
}

#s-84cacdff-6003-4b8a-9fa2-5bbce6d45778 {
  text-align: center;
}







  #s-84cacdff-6003-4b8a-9fa2-5bbce6d45778 img.shogun-image {
    

    
    
    
  }


#s-84cacdff-6003-4b8a-9fa2-5bbce6d45778 .shogun-image-content {
  
    align-items: center;
  
}

#s-5f84c01c-f66a-4797-91dd-3602df57a8c4 {
  text-align: center;
}







  #s-5f84c01c-f66a-4797-91dd-3602df57a8c4 img.shogun-image {
    

    
    
    
  }


#s-5f84c01c-f66a-4797-91dd-3602df57a8c4 .shogun-image-content {
  
    align-items: center;
  
}

#s-1ffd92d4-7bca-4f78-9aaf-7c77ac1cae24 {
  text-align: center;
}







  #s-1ffd92d4-7bca-4f78-9aaf-7c77ac1cae24 img.shogun-image {
    

    
    
    
  }


#s-1ffd92d4-7bca-4f78-9aaf-7c77ac1cae24 .shogun-image-content {
  
    align-items: center;
  
}

#s-fb5a058e-efff-4de6-832f-6cdf01a066f2 {
  text-align: center;
}







  #s-fb5a058e-efff-4de6-832f-6cdf01a066f2 img.shogun-image {
    

    
    
    
  }


#s-fb5a058e-efff-4de6-832f-6cdf01a066f2 .shogun-image-content {
  
    align-items: center;
  
}

#s-66e02ded-50c2-4777-b71f-6e4c6fa16fcd {
  text-align: center;
}







  #s-66e02ded-50c2-4777-b71f-6e4c6fa16fcd img.shogun-image {
    

    
    
    
  }


#s-66e02ded-50c2-4777-b71f-6e4c6fa16fcd .shogun-image-content {
  
    align-items: center;
  
}

#s-a85dd59b-61d6-4e1f-a1f8-b03da657b83d {
  text-align: center;
}







  #s-a85dd59b-61d6-4e1f-a1f8-b03da657b83d img.shogun-image {
    

    
    
    
  }


#s-a85dd59b-61d6-4e1f-a1f8-b03da657b83d .shogun-image-content {
  
    align-items: center;
  
}

#s-f65fe81c-e86e-4e85-8d21-14e9076f750b {
  text-align: center;
}







  #s-f65fe81c-e86e-4e85-8d21-14e9076f750b img.shogun-image {
    

    
    
    
  }


#s-f65fe81c-e86e-4e85-8d21-14e9076f750b .shogun-image-content {
  
    align-items: center;
  
}

#s-fb65ca9b-1f87-4ec0-bbf8-9fc330a95cf8 {
  text-align: center;
}







  #s-fb65ca9b-1f87-4ec0-bbf8-9fc330a95cf8 img.shogun-image {
    

    
    
    
  }


#s-fb65ca9b-1f87-4ec0-bbf8-9fc330a95cf8 .shogun-image-content {
  
    align-items: center;
  
}

#s-0c393fe9-2c47-4968-a531-4ecdcd314d74 {
  text-align: center;
}







  #s-0c393fe9-2c47-4968-a531-4ecdcd314d74 img.shogun-image {
    

    
    
    
  }


#s-0c393fe9-2c47-4968-a531-4ecdcd314d74 .shogun-image-content {
  
    align-items: center;
  
}

#s-15058c2e-3c01-4d5d-a0f7-cf8e00e71929 {
  text-align: center;
}







  #s-15058c2e-3c01-4d5d-a0f7-cf8e00e71929 img.shogun-image {
    

    
    
    
  }


#s-15058c2e-3c01-4d5d-a0f7-cf8e00e71929 .shogun-image-content {
  
    align-items: center;
  
}

#s-c4c86afc-3c80-49ce-bcee-e4a1af12adc3 {
  text-align: center;
}







  #s-c4c86afc-3c80-49ce-bcee-e4a1af12adc3 img.shogun-image {
    

    
    
    
  }


#s-c4c86afc-3c80-49ce-bcee-e4a1af12adc3 .shogun-image-content {
  
    align-items: center;
  
}

#s-f4711a9c-dc77-4f1c-a89b-a1b8f334747a {
  text-align: center;
}







  #s-f4711a9c-dc77-4f1c-a89b-a1b8f334747a img.shogun-image {
    

    
    
    
  }


#s-f4711a9c-dc77-4f1c-a89b-a1b8f334747a .shogun-image-content {
  
    align-items: center;
  
}

#s-f5557a8b-4425-4c59-a5ef-e0a0de4d92fd {
  text-align: center;
}







  #s-f5557a8b-4425-4c59-a5ef-e0a0de4d92fd img.shogun-image {
    

    
    
    
  }


#s-f5557a8b-4425-4c59-a5ef-e0a0de4d92fd .shogun-image-content {
  
    align-items: center;
  
}

#s-15315515-a881-44f3-a92a-7cc63fe3fdbd {
  text-align: center;
}







  #s-15315515-a881-44f3-a92a-7cc63fe3fdbd img.shogun-image {
    

    
    
    
  }


#s-15315515-a881-44f3-a92a-7cc63fe3fdbd .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-9537ee16-a742-488a-a7f3-cd6251548487 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-9537ee16-a742-488a-a7f3-cd6251548487 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-9537ee16-a742-488a-a7f3-cd6251548487 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-9537ee16-a742-488a-a7f3-cd6251548487 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-9537ee16-a742-488a-a7f3-cd6251548487 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-9537ee16-a742-488a-a7f3-cd6251548487 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-efdaaf72-b987-4618-82aa-b0cbbaf8ca4d {
  padding-left: 1%;
padding-right: 1%;
}

#s-f9fcab1b-0141-4f44-b260-6d16c56e8059 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-f9fcab1b-0141-4f44-b260-6d16c56e8059 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-f9fcab1b-0141-4f44-b260-6d16c56e8059 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-f9fcab1b-0141-4f44-b260-6d16c56e8059 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-f9fcab1b-0141-4f44-b260-6d16c56e8059 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-f9fcab1b-0141-4f44-b260-6d16c56e8059 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-523e064a-fe48-4e19-9d23-339d6c019f71 {
  padding-left: 1%;
padding-right: 1%;
}

#s-7869f8f1-0110-4e89-9932-655d7ccce3e6 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-7869f8f1-0110-4e89-9932-655d7ccce3e6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-7869f8f1-0110-4e89-9932-655d7ccce3e6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-7869f8f1-0110-4e89-9932-655d7ccce3e6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-7869f8f1-0110-4e89-9932-655d7ccce3e6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-7869f8f1-0110-4e89-9932-655d7ccce3e6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-c4df011d-ed41-4273-8ad2-53224d7d10c1 {
  padding-left: 1%;
padding-right: 1%;
}

#s-b47df686-52e3-4803-955f-59b3bd774966 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-b47df686-52e3-4803-955f-59b3bd774966 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-b47df686-52e3-4803-955f-59b3bd774966 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-b47df686-52e3-4803-955f-59b3bd774966 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-b47df686-52e3-4803-955f-59b3bd774966 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-b47df686-52e3-4803-955f-59b3bd774966 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-09306434-0cc3-4932-a2f2-9eceb82b92b5 {
  padding-left: 1%;
padding-right: 1%;
}

#s-3709dede-94d8-4b48-9f38-8ce9b04d9351 {
  padding-left: 0px;
}

#s-3709dede-94d8-4b48-9f38-8ce9b04d9351 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-3709dede-94d8-4b48-9f38-8ce9b04d9351 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-3709dede-94d8-4b48-9f38-8ce9b04d9351 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-3709dede-94d8-4b48-9f38-8ce9b04d9351 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-3709dede-94d8-4b48-9f38-8ce9b04d9351 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-3709dede-94d8-4b48-9f38-8ce9b04d9351 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-6be2b3fc-c61c-4db4-8627-35c404afef93 {
  padding-left: 1%;
padding-right: 1%;
}

#s-57d303ff-f4dd-4062-8ed5-a1db811934a5 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-57d303ff-f4dd-4062-8ed5-a1db811934a5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-57d303ff-f4dd-4062-8ed5-a1db811934a5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-57d303ff-f4dd-4062-8ed5-a1db811934a5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-57d303ff-f4dd-4062-8ed5-a1db811934a5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-57d303ff-f4dd-4062-8ed5-a1db811934a5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-5dde1ed2-63a2-4b02-a580-680fcb8a889d {
  padding-left: 1%;
padding-right: 1%;
}

#s-d6a68a90-78f5-4444-8087-0354a1befaf9 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-d6a68a90-78f5-4444-8087-0354a1befaf9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-d6a68a90-78f5-4444-8087-0354a1befaf9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-d6a68a90-78f5-4444-8087-0354a1befaf9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-d6a68a90-78f5-4444-8087-0354a1befaf9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-d6a68a90-78f5-4444-8087-0354a1befaf9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-227d9e02-73ff-418b-bed2-e7ff221ee276 {
  padding-left: 1%;
padding-right: 1%;
}

#s-90cb8833-4d03-4af7-b1f9-89cfa337f612 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-90cb8833-4d03-4af7-b1f9-89cfa337f612 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-90cb8833-4d03-4af7-b1f9-89cfa337f612 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-90cb8833-4d03-4af7-b1f9-89cfa337f612 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-90cb8833-4d03-4af7-b1f9-89cfa337f612 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-90cb8833-4d03-4af7-b1f9-89cfa337f612 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-a5bdb6eb-2ae0-4b41-b995-25d18532cda7 {
  padding-left: 1%;
padding-right: 1%;
}

#s-f0c3f76c-b9e1-4ff1-97bd-21487d2f85ae > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-f0c3f76c-b9e1-4ff1-97bd-21487d2f85ae > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-f0c3f76c-b9e1-4ff1-97bd-21487d2f85ae > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-f0c3f76c-b9e1-4ff1-97bd-21487d2f85ae > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-f0c3f76c-b9e1-4ff1-97bd-21487d2f85ae > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-f0c3f76c-b9e1-4ff1-97bd-21487d2f85ae > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-05e2afaf-9156-4d8c-aa50-0588f03e1af3 {
  padding-left: 1%;
padding-right: 1%;
}

#s-b5e5b4f6-a009-4fed-b31b-78ca9ddb624d {
  text-align: center;
}







  #s-b5e5b4f6-a009-4fed-b31b-78ca9ddb624d img.shogun-image {
    

    
    
    
  }


#s-b5e5b4f6-a009-4fed-b31b-78ca9ddb624d .shogun-image-content {
  
    align-items: center;
  
}

#s-30a04619-58b5-4a01-84c1-1a08d58d9999 {
  text-align: center;
}







  #s-30a04619-58b5-4a01-84c1-1a08d58d9999 img.shogun-image {
    

    
    
    
  }


#s-30a04619-58b5-4a01-84c1-1a08d58d9999 .shogun-image-content {
  
    align-items: center;
  
}

#s-3e00e090-2838-4a90-8386-ac268292d6da {
  text-align: center;
}







  #s-3e00e090-2838-4a90-8386-ac268292d6da img.shogun-image {
    

    
    
    
  }


#s-3e00e090-2838-4a90-8386-ac268292d6da .shogun-image-content {
  
    align-items: center;
  
}

#s-dfc34b33-d502-4253-a40d-7cc160ac5357 {
  text-align: center;
}







  #s-dfc34b33-d502-4253-a40d-7cc160ac5357 img.shogun-image {
    

    
    
    
  }


#s-dfc34b33-d502-4253-a40d-7cc160ac5357 .shogun-image-content {
  
    align-items: center;
  
}

#s-5302a3c0-834a-4b60-99e1-9f20c82c31ea {
  text-align: center;
}







  #s-5302a3c0-834a-4b60-99e1-9f20c82c31ea img.shogun-image {
    

    
    
    
  }


#s-5302a3c0-834a-4b60-99e1-9f20c82c31ea .shogun-image-content {
  
    align-items: center;
  
}

#s-8c8fe95a-6564-4705-8dc2-cfebb5d14d48 {
  text-align: center;
}







  #s-8c8fe95a-6564-4705-8dc2-cfebb5d14d48 img.shogun-image {
    

    
    
    
  }


#s-8c8fe95a-6564-4705-8dc2-cfebb5d14d48 .shogun-image-content {
  
    align-items: center;
  
}

#s-d2fcbe6c-816e-4679-b48c-05bad0d0223b {
  text-align: center;
}







  #s-d2fcbe6c-816e-4679-b48c-05bad0d0223b img.shogun-image {
    

    
    
    
  }


#s-d2fcbe6c-816e-4679-b48c-05bad0d0223b .shogun-image-content {
  
    align-items: center;
  
}

#s-fbb34a4f-12a7-4e2c-a0ca-23f64f534b71 {
  text-align: center;
}







  #s-fbb34a4f-12a7-4e2c-a0ca-23f64f534b71 img.shogun-image {
    

    
    
    
  }


#s-fbb34a4f-12a7-4e2c-a0ca-23f64f534b71 .shogun-image-content {
  
    align-items: center;
  
}

#s-09df8f87-d889-445a-a84e-5e70787359f5 {
  text-align: center;
}







  #s-09df8f87-d889-445a-a84e-5e70787359f5 img.shogun-image {
    

    
    
    
  }


#s-09df8f87-d889-445a-a84e-5e70787359f5 .shogun-image-content {
  
    align-items: center;
  
}

#s-eabc9e11-7b64-438b-be21-946f01008a9d {
  text-align: center;
}







  #s-eabc9e11-7b64-438b-be21-946f01008a9d img.shogun-image {
    

    
    
    
  }


#s-eabc9e11-7b64-438b-be21-946f01008a9d .shogun-image-content {
  
    align-items: center;
  
}

#s-40405a76-8e83-47d8-aa4b-a3254f02b836 {
  text-align: center;
}







  #s-40405a76-8e83-47d8-aa4b-a3254f02b836 img.shogun-image {
    

    
    
    
  }


#s-40405a76-8e83-47d8-aa4b-a3254f02b836 .shogun-image-content {
  
    align-items: center;
  
}

#s-13195377-c51b-4fa9-8a4c-ff658b0b8f86 {
  text-align: center;
}







  #s-13195377-c51b-4fa9-8a4c-ff658b0b8f86 img.shogun-image {
    

    
    
    
  }


#s-13195377-c51b-4fa9-8a4c-ff658b0b8f86 .shogun-image-content {
  
    align-items: center;
  
}

#s-b8e0fc75-01f7-4b34-8bc2-7b813839c5a3 {
  text-align: center;
}







  #s-b8e0fc75-01f7-4b34-8bc2-7b813839c5a3 img.shogun-image {
    

    
    
    
  }


#s-b8e0fc75-01f7-4b34-8bc2-7b813839c5a3 .shogun-image-content {
  
    align-items: center;
  
}

#s-745bcf09-8811-4b46-b00c-558b820e8bdc {
  text-align: center;
}







  #s-745bcf09-8811-4b46-b00c-558b820e8bdc img.shogun-image {
    

    
    
    
  }


#s-745bcf09-8811-4b46-b00c-558b820e8bdc .shogun-image-content {
  
    align-items: center;
  
}

#s-09919c2d-61c5-4592-abe0-05f91bb9dc83 {
  text-align: center;
}







  #s-09919c2d-61c5-4592-abe0-05f91bb9dc83 img.shogun-image {
    

    
    
    
  }


#s-09919c2d-61c5-4592-abe0-05f91bb9dc83 .shogun-image-content {
  
    align-items: center;
  
}

#s-70fef13e-4af1-4cf7-9ade-9352be71bd39 {
  text-align: center;
}







  #s-70fef13e-4af1-4cf7-9ade-9352be71bd39 img.shogun-image {
    

    
    
    
  }


#s-70fef13e-4af1-4cf7-9ade-9352be71bd39 .shogun-image-content {
  
    align-items: center;
  
}

#s-73df090c-c781-4e08-b97d-fd3c2f39b422 {
  text-align: center;
}







  #s-73df090c-c781-4e08-b97d-fd3c2f39b422 img.shogun-image {
    

    
    
    
  }


#s-73df090c-c781-4e08-b97d-fd3c2f39b422 .shogun-image-content {
  
    align-items: center;
  
}

#s-49d867b5-aa98-4ae3-bdca-8d68b38efceb {
  text-align: center;
}







  #s-49d867b5-aa98-4ae3-bdca-8d68b38efceb img.shogun-image {
    

    
    
    
  }


#s-49d867b5-aa98-4ae3-bdca-8d68b38efceb .shogun-image-content {
  
    align-items: center;
  
}

#s-5961fef5-7bf7-4936-b1c6-586b7b1706a1 {
  text-align: center;
}







  #s-5961fef5-7bf7-4936-b1c6-586b7b1706a1 img.shogun-image {
    

    
    
    
  }


#s-5961fef5-7bf7-4936-b1c6-586b7b1706a1 .shogun-image-content {
  
    align-items: center;
  
}

#s-dae416f3-475a-43c5-90fb-0452c4ea07f4 {
  text-align: center;
}







  #s-dae416f3-475a-43c5-90fb-0452c4ea07f4 img.shogun-image {
    

    
    
    
  }


#s-dae416f3-475a-43c5-90fb-0452c4ea07f4 .shogun-image-content {
  
    align-items: center;
  
}

#s-1e00e84c-adac-4804-917b-f5333a5b2234 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-1e00e84c-adac-4804-917b-f5333a5b2234 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-1e00e84c-adac-4804-917b-f5333a5b2234 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-1e00e84c-adac-4804-917b-f5333a5b2234 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-1e00e84c-adac-4804-917b-f5333a5b2234 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-1e00e84c-adac-4804-917b-f5333a5b2234 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-e2b897bc-9f98-4b08-b357-eb4643c38459 {
  padding-left: 0px;
}

#s-db7fed52-7238-4b1a-903a-0764e8d19f18 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-db7fed52-7238-4b1a-903a-0764e8d19f18 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-db7fed52-7238-4b1a-903a-0764e8d19f18 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-db7fed52-7238-4b1a-903a-0764e8d19f18 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-db7fed52-7238-4b1a-903a-0764e8d19f18 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-db7fed52-7238-4b1a-903a-0764e8d19f18 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-5c4dad70-db77-40bb-8981-6ac9c6ee17f9 {
  padding-left: 0px;
}

#s-8d840b86-2b61-4604-bbf8-ec46f761f121 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-8d840b86-2b61-4604-bbf8-ec46f761f121 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-8d840b86-2b61-4604-bbf8-ec46f761f121 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-8d840b86-2b61-4604-bbf8-ec46f761f121 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-8d840b86-2b61-4604-bbf8-ec46f761f121 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-8d840b86-2b61-4604-bbf8-ec46f761f121 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-1417d461-b6cc-4660-9904-06193230717a {
  padding-left: 0px;
}

#s-d85d7e91-1345-482f-95a3-5ed86dccc788 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-d85d7e91-1345-482f-95a3-5ed86dccc788 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-d85d7e91-1345-482f-95a3-5ed86dccc788 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-d85d7e91-1345-482f-95a3-5ed86dccc788 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-d85d7e91-1345-482f-95a3-5ed86dccc788 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-d85d7e91-1345-482f-95a3-5ed86dccc788 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-202d4035-bddf-4611-a58a-cced240057e9 {
  padding-left: 0px;
}

#s-111f4293-7018-4dbb-83b2-a3089ab339d7 {
  padding-left: 0px;
}

#s-111f4293-7018-4dbb-83b2-a3089ab339d7 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-111f4293-7018-4dbb-83b2-a3089ab339d7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-111f4293-7018-4dbb-83b2-a3089ab339d7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-111f4293-7018-4dbb-83b2-a3089ab339d7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-111f4293-7018-4dbb-83b2-a3089ab339d7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-111f4293-7018-4dbb-83b2-a3089ab339d7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-257acd01-9aa3-4be5-a35d-7a35457949d8 {
  padding-left: 0px;
}

#s-3d7be959-06de-4920-9e25-ccd5066f0a1d > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-3d7be959-06de-4920-9e25-ccd5066f0a1d > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-3d7be959-06de-4920-9e25-ccd5066f0a1d > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-3d7be959-06de-4920-9e25-ccd5066f0a1d > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-3d7be959-06de-4920-9e25-ccd5066f0a1d > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-3d7be959-06de-4920-9e25-ccd5066f0a1d > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-1edfdc2a-548e-4669-942f-708fb48512c6 {
  padding-left: 0px;
}
@media (max-width: 767px){#s-1edfdc2a-548e-4669-942f-708fb48512c6 {
  padding-right: 35px;
}
}
#s-d409be6e-0da3-47eb-9e0e-6b21cb7e34b9 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-d409be6e-0da3-47eb-9e0e-6b21cb7e34b9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-d409be6e-0da3-47eb-9e0e-6b21cb7e34b9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-d409be6e-0da3-47eb-9e0e-6b21cb7e34b9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-d409be6e-0da3-47eb-9e0e-6b21cb7e34b9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-d409be6e-0da3-47eb-9e0e-6b21cb7e34b9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-f7572e43-e45a-460e-9649-8efbcb5d6749 {
  padding-left: 0px;
}

#s-0bf976c7-d53d-4162-93ba-7abd7b2402cd > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-0bf976c7-d53d-4162-93ba-7abd7b2402cd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-0bf976c7-d53d-4162-93ba-7abd7b2402cd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-0bf976c7-d53d-4162-93ba-7abd7b2402cd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-0bf976c7-d53d-4162-93ba-7abd7b2402cd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-0bf976c7-d53d-4162-93ba-7abd7b2402cd > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-d26ac3eb-c993-4ba0-9407-50afdedf7c63 {
  padding-left: 0px;
padding-right: 0px;
}

#s-9172efb3-d630-4109-84da-026d96c3a099 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 0);
}

#s-9172efb3-d630-4109-84da-026d96c3a099 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 0);
  padding: 5px;
}

#s-9172efb3-d630-4109-84da-026d96c3a099 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(18, 35, 63, 1);
}

#s-9172efb3-d630-4109-84da-026d96c3a099 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-9172efb3-d630-4109-84da-026d96c3a099 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(18, 35, 63, 1);
  text-align: left;
  font-family: Lora;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-9172efb3-d630-4109-84da-026d96c3a099 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 14px;
}
#s-c15893a0-0697-43b9-b2d5-6f75fba3034b {
  padding-left: 0px;
}

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

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

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

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

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

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

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

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

#s-da0780da-64ac-428c-aae7-b2c1f8e49152 {
  margin-left: auto;
margin-right: auto;
border-radius: 2px;
background-color: rgba(227, 28, 61, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-da0780da-64ac-428c-aae7-b2c1f8e49152:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-da0780da-64ac-428c-aae7-b2c1f8e49152:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-da0780da-64ac-428c-aae7-b2c1f8e49152-root {
    text-align: center;
  }


#s-da0780da-64ac-428c-aae7-b2c1f8e49152.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-da0780da-64ac-428c-aae7-b2c1f8e49152-root {
    text-align: center;
  }


#s-da0780da-64ac-428c-aae7-b2c1f8e49152.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-da0780da-64ac-428c-aae7-b2c1f8e49152-root {
    text-align: center;
  }


#s-da0780da-64ac-428c-aae7-b2c1f8e49152.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-da0780da-64ac-428c-aae7-b2c1f8e49152-root {
    text-align: center;
  }


#s-da0780da-64ac-428c-aae7-b2c1f8e49152.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-da0780da-64ac-428c-aae7-b2c1f8e49152-root {
    text-align: center;
  }


#s-da0780da-64ac-428c-aae7-b2c1f8e49152.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}
}
  #s-da0780da-64ac-428c-aae7-b2c1f8e49152-root {
    text-align: center;
  }


#s-da0780da-64ac-428c-aae7-b2c1f8e49152.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}

#s-de7f7525-e30f-4021-aa7a-1e0774ef10f6 {
  margin-left: auto;
margin-right: auto;
border-radius: 2px;
background-color: rgba(227, 28, 61, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-de7f7525-e30f-4021-aa7a-1e0774ef10f6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-de7f7525-e30f-4021-aa7a-1e0774ef10f6:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-de7f7525-e30f-4021-aa7a-1e0774ef10f6-root {
    text-align: center;
  }


#s-de7f7525-e30f-4021-aa7a-1e0774ef10f6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-de7f7525-e30f-4021-aa7a-1e0774ef10f6-root {
    text-align: center;
  }


#s-de7f7525-e30f-4021-aa7a-1e0774ef10f6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-de7f7525-e30f-4021-aa7a-1e0774ef10f6-root {
    text-align: center;
  }


#s-de7f7525-e30f-4021-aa7a-1e0774ef10f6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-de7f7525-e30f-4021-aa7a-1e0774ef10f6-root {
    text-align: center;
  }


#s-de7f7525-e30f-4021-aa7a-1e0774ef10f6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-de7f7525-e30f-4021-aa7a-1e0774ef10f6-root {
    text-align: center;
  }


#s-de7f7525-e30f-4021-aa7a-1e0774ef10f6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}
}
  #s-de7f7525-e30f-4021-aa7a-1e0774ef10f6-root {
    text-align: center;
  }


#s-de7f7525-e30f-4021-aa7a-1e0774ef10f6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}

#s-699d6a85-9fa8-4ece-91e0-d46ccd7b7fcb {
  margin-left: auto;
margin-right: auto;
border-radius: 2px;
background-color: rgba(227, 28, 61, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-699d6a85-9fa8-4ece-91e0-d46ccd7b7fcb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-699d6a85-9fa8-4ece-91e0-d46ccd7b7fcb:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-699d6a85-9fa8-4ece-91e0-d46ccd7b7fcb-root {
    text-align: center;
  }


#s-699d6a85-9fa8-4ece-91e0-d46ccd7b7fcb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-699d6a85-9fa8-4ece-91e0-d46ccd7b7fcb-root {
    text-align: center;
  }


#s-699d6a85-9fa8-4ece-91e0-d46ccd7b7fcb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-699d6a85-9fa8-4ece-91e0-d46ccd7b7fcb-root {
    text-align: center;
  }


#s-699d6a85-9fa8-4ece-91e0-d46ccd7b7fcb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-699d6a85-9fa8-4ece-91e0-d46ccd7b7fcb-root {
    text-align: center;
  }


#s-699d6a85-9fa8-4ece-91e0-d46ccd7b7fcb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-699d6a85-9fa8-4ece-91e0-d46ccd7b7fcb-root {
    text-align: center;
  }


#s-699d6a85-9fa8-4ece-91e0-d46ccd7b7fcb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}
}
  #s-699d6a85-9fa8-4ece-91e0-d46ccd7b7fcb-root {
    text-align: center;
  }


#s-699d6a85-9fa8-4ece-91e0-d46ccd7b7fcb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}

.textLeftImgRight {
    margin-top: 45px;
    margin-bottom: 75px;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 3%;
}

.textLeftImgRight--title {
    margin-top: 0;
    margin-bottom: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 40px;
    color: #12233f;
    text-align: center;
    line-height: 1.275em;
}

@media (min-width: 801px) {
    
    .textLeftImgRight {
        margin-top: 60px;
        margin-bottom: 150px;
        padding: 0;
    }
    
    .textLeftImgRight--flex {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    .textLeftImgRight-flex--left {
        margin-right: 6px;
        width: 55%;
    }
    
    .textLeftImgRight-flex--right {
        width: 45%;
        margin-left: 15px;
        order: 1;
    }
}

.textLeftImgRight--subtitle {
    font-family: 'Lora';
    font-size: 30px;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #12233f;
    line-height: 1.275em;
}

.textLeftImgRight--lg .textLeftImgRight--subtitle {
    margin-bottom: 20px;
    font-size: 40px;
}

.textLeftImgRight--button-container{
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.button-leaf--secondary {
    display: inline-block;
    margin: 0 35px;
    padding: 22px 40px;
    color: #e31c3d;
    font-size: 16px;
    font-family: Montserrat;
    text-align: center;
    text-decoration: none;
    line-height: 1em;
    border: 2px solid #e31c3d;
    border-radius: 0 30px 0 30px;
    background-color: #fff;
    transition: all .15s ease-out;
}

.button-leaf--secondary:hover, .button-leaf--secondary:focus {
    color: #fff;
    background-color: #e31c3d;
}

.textLeftImgRight--img {
    text-align: center;
}

.textLeftImgRight--img img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.14);
}

.textLeftImgRight--lg .textLeftImgRight--img img {
    width: 100%;
    max-width: 605px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.14);
    border-radius: 10px;
}
#s-159c0b94-0ef9-4385-b371-a8da352d97d4 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-159c0b94-0ef9-4385-b371-a8da352d97d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0.6;
}#s-159c0b94-0ef9-4385-b371-a8da352d97d4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.customSlider {
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    z-index: 2;
}

.customSlider::before, .customSlider::after {
    display: none;
}

.customSlider-header{
    width: 100%;
    text-align: center;
    margin: 15px 0;
}

.customSlider-header__heading{
    font-family: 'Lora';
    font-size: 40px;
    line-height: 1.2em;
    color: #12233F;
    font-weight: 700;
}

.customSlider .shg-sld-nav-button{
    border-radius: 50%;
    background-color: rgba(18, 35, 63, 0.7);
    top: 40%;
    width: 60px;
    height: 60px;
    transition: all 0.4s;
}

.customSlider .shg-sld-nav-button:hover,
.customSlider .shg-sld-nav-button:focus{
    background-color: #488bfa;
}

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


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

.customSlider .shg-sld-nav-button.shg-sld-left svg {
    padding-right: 5px;
}

.customSlider .shg-sld-nav-button.shg-sld-right svg {
    padding-left: 5px;
}

.customSlider .shg-sld-nav-button svg{
    fill: #fff;
    transform: scale(0.6);
}

.customSlider .shg-sld-dots{
    margin: 30px auto;
    display: flex;
    justify-content: space-between;
    max-width: 590px;
    
}

.customSlider .shg-sld-dot{
    background-color: #9A9494 !important;
    height: 4px;
    width: 90px;
    border-radius: unset !important;
}

.customSlider .shg-sld-dot:hover,
.customSlider .shg-sld-dot:focus{
    background-color: #524947 !important;
}

.customSlider .shg-sld-dot.shg-sld-active{
    background-color: #488bfa !important;
}

.customSlider--container{
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 20px;
}

@media(min-width: 801px){
    .customSlider {
        margin: 0;
        padding: 80px 0;
    }
    
    
    
    .customSlider-header{
        margin: 15px 0;
    }
    
    .customSlider .shg-sld-nav-button.shg-sld-left{
        left: -20px;
    }
    
    .customSlider .shg-sld-nav-button.shg-sld-right{
        right: -20px;
    }
}

@media(min-width: 1160px) {
    .customSlider .shg-sld-nav-button.shg-sld-left{
        left: -60px;
    }
    
    .customSlider .shg-sld-nav-button.shg-sld-right{
        right: -60px;
    }
    
    .customSlider::before {
        content: "";
        display: block;
        background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMzAiIGhlaWdodD0iMjYwIiB2aWV3Qm94PSIwIDAgMjMwIDI2MCI+CiAgPHBhdGggZD0iTTAsMEgxMDBBMTAwLDEwMCwwLDAsMSwyMDAsMTAwVjIwMGEwLDAsMCwwLDEsMCwwSDEwMEExMDAsMTAwLDAsMCwxLDAsMTAwVjBBMCwwLDAsMCwxLDAsMFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMwKSIgZmlsbD0iI2RkZTBlNCIgb3BhY2l0eT0iMC45Ii8+CiAgPHBhdGggZD0iTTYwLDBoNjBhMCwwLDAsMCwxLDAsMFY2MGE2MCw2MCwwLDAsMS02MCw2MEgwYTAsMCwwLDAsMSwwLDBWNjBBNjAsNjAsMCwwLDEsNjAsMFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMTQwKSIgZmlsbD0iI2UzMWMzZCIvPgo8L3N2Zz4K');
        background-repeat: no-repeat;
        position: absolute;
        top: -150px;
        right: 240px;
        min-width: 231px;
        min-height: 260px;
        
        
    }
}
#s-79f804ab-8ede-4b89-a09e-8f864a90d94c {
  opacity: 1;
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-aa924da8-af9b-496b-ad72-027971daefc5 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 760px;
}

#s-aa924da8-af9b-496b-ad72-027971daefc5 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-aa924da8-af9b-496b-ad72-027971daefc5 .shg-sld-nav-button.shg-sld-left,
#s-aa924da8-af9b-496b-ad72-027971daefc5 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

.customSlide{
    border-radius: 40px;
    padding-top: 70px;
    padding-bottom: 50px;
    box-shadow: 2px 2px 24px #eeeeee;
    background-color: #fff;
    max-width: 95%;
    margin: 0 auto;
}

.customSlide::before {
    content: "";
    position: absolute;
    left: 22%;
    top: -10px;
    width: 70px;
    height: 30px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='70' height='30' viewBox='0 0 70 30'><g id='Open_Quote' data-name='Open Quote' transform='translate(0 7)'><path id='Rectangle_49' data-name='Rectangle 49' d='M15,0H30a0,0,0,0,1,0,0V15A15,15,0,0,1,15,30H0a0,0,0,0,1,0,0V15A15,15,0,0,1,15,0Z' transform='translate(0 -7)' fill='%23488BFA'/><path id='Rectangle_50' data-name='Rectangle 50' d='M15,0H30a0,0,0,0,1,0,0V15A15,15,0,0,1,15,30H0a0,0,0,0,1,0,0V15A15,15,0,0,1,15,0Z' transform='translate(40 -7)' fill='%23488BFA'/></g></svg>");
}

.customSlide::after {
    content: "";
    position: absolute;
    right: 20%;
    bottom: -10px;
    width: 70px;
    height: 30px;
    background: url("data:image/svg+xml;utf8,<svg id='End_Quote' data-name='End Quote' xmlns='http://www.w3.org/2000/svg' width='70' height='30' viewBox='0 0 70 30'><path id='Rectangle_52' data-name='Rectangle 52' d='M0,0H15A15,15,0,0,1,30,15V30a0,0,0,0,1,0,0H15A15,15,0,0,1,0,15V0A0,0,0,0,1,0,0Z' transform='translate(40)' fill='%23488BFA'/><path id='Rectangle_51' data-name='Rectangle 51' d='M0,0H15A15,15,0,0,1,30,15V30a0,0,0,0,1,0,0H15A15,15,0,0,1,0,15V0A0,0,0,0,1,0,0Z' fill='%23488BFA'/></svg>");
}

.customSlide--text {
     text-align: center;
     color: #12233f;
     font-family: "Montserrat", sans-serif;
     font-weight: 500;
     font-size: 18px;
     margin-bottom: 30px;
     line-height: 32px;
     max-width: 95%;
     margin-left: auto;
     margin-right: auto;
     
}

.customSlide--author {
    color: #12233f;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
}

.blue-banner{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    font-family: Lora,Arial,Helvetica,sans-serif;
    padding: 25px 0;
}

.blue-banner-container{
    max-width: 1119px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.blue-banner-links{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.blue-banner-content__heading{
    width: 100%;
    font-weight: 700;
    font-size: 40px; 
    line-height: 1.3em;
    color: #ffffff;
    text-align: center;
}

.blue-banner-content__subheading{
    width: 100%;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.67em;
    color: #ffffff;
    text-align: center;
}

.blue-banner__links{
    margin-bottom: 0;
    padding: 14px;
    text-align: center;
}

.blue-banner__links .button{
    padding: 20px 39px;
}

.button--primary{
    line-height: 1.5em;
}

@media(min-width: 992px){
    .blue-banner{
        flex-wrap: nowrap;
        padding: 100px 25px;
    }
    
    .blue-banner-content,
    .blue-banner-links{
        width: 50%;
    }
    
    .blue-banner-links{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    
    .blue-banner-content{
        padding: 0 0 0 0;
    }
    
    .blue-banner-content__heading,
    .blue-banner-content__subheading{
        text-align: left;
    }
    
    
    .blue-banner__links{
        text-align: center;
        width: 100%;
    }
}

@media(min-width: 1200px){
    .blue-banner{
        padding: 100px 0;
    }
    
}
#s-3a810188-19c4-42d5-a378-b59720422e6e {
  padding-bottom: 0px;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
