.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-ff786c34-9b96-4ad9-8b6c-9da2b4093e6d {
  margin-bottom: 0px;
padding-bottom: 120px;
min-height: 50px;
}
@media (max-width: 767px){#s-ff786c34-9b96-4ad9-8b6c-9da2b4093e6d {
  margin-left: 7%;
margin-right: 7%;
padding-bottom: 50px;
}
}







#s-ff786c34-9b96-4ad9-8b6c-9da2b4093e6d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ff786c34-9b96-4ad9-8b6c-9da2b4093e6d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-a0a1afca-31d1-47e7-936f-d6b0e36daa10 {
  margin-top: 1%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-a0a1afca-31d1-47e7-936f-d6b0e36daa10"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a0a1afca-31d1-47e7-936f-d6b0e36daa10"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 100.0px);
}

[id="s-a0a1afca-31d1-47e7-936f-d6b0e36daa10"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 100.0px);
}

}

@media (min-width: 992px) {
[id="s-a0a1afca-31d1-47e7-936f-d6b0e36daa10"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 100.0px);
}

[id="s-a0a1afca-31d1-47e7-936f-d6b0e36daa10"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 100.0px);
}

}

@media (min-width: 1200px) {
[id="s-a0a1afca-31d1-47e7-936f-d6b0e36daa10"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 100.0px);
}

[id="s-a0a1afca-31d1-47e7-936f-d6b0e36daa10"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 100.0px);
}

}

@media (max-width: 767px) {
  [id="s-a0a1afca-31d1-47e7-936f-d6b0e36daa10"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-bf82b6e7-ee81-4c37-ac7b-ee509ae732c7 {
  margin-top: 40px;
min-height: 50px;
}
@media (max-width: 767px){#s-bf82b6e7-ee81-4c37-ac7b-ee509ae732c7 {
  margin-top: 0px;
padding-top: 10px;
padding-bottom: 0px;
}
}







#s-bf82b6e7-ee81-4c37-ac7b-ee509ae732c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bf82b6e7-ee81-4c37-ac7b-ee509ae732c7.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-a503a2f9-6890-4c23-aaee-60f10e90a8e3 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-a503a2f9-6890-4c23-aaee-60f10e90a8e3 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Bold";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: left;
}


@media (max-width: 767px){#s-a503a2f9-6890-4c23-aaee-60f10e90a8e3 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Bold";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: left;
}


}
#s-ceda3fa7-37e6-4db4-bbab-c3f14106fb55 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-ceda3fa7-37e6-4db4-bbab-c3f14106fb55 .shogun-heading-component h1 {
  color: rgba(80, 44, 30, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti-Ultra-Thin";
  font-style:  normal ;
  font-size: 80px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: left;
}


@media (min-width: 1200px){#s-ceda3fa7-37e6-4db4-bbab-c3f14106fb55 .shogun-heading-component h1 {
  color: rgba(80, 44, 30, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti-Ultra-Thin";
  font-style:  normal ;
  font-size: 80px;
  line-height: 1em;
  letter-spacing: 0.25px;
  text-align: left;
}


}@media (max-width: 767px){#s-ceda3fa7-37e6-4db4-bbab-c3f14106fb55 .shogun-heading-component h1 {
  color: rgba(80, 44, 30, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti-Ultra-Thin";
  font-style:  normal ;
  font-size: 50px;
  line-height: 1em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
#s-f92bbbd2-b683-49e1-8ec9-5b18d8490f4f {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-f92bbbd2-b683-49e1-8ec9-5b18d8490f4f .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-f92bbbd2-b683-49e1-8ec9-5b18d8490f4f .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
@media (max-width: 767px){#s-76aa3a87-af1e-4fb0-988d-e797b012ee6d {
  display: none;
}
#s-76aa3a87-af1e-4fb0-988d-e797b012ee6d, #wrap-s-76aa3a87-af1e-4fb0-988d-e797b012ee6d { display:none !important; }}
.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-2d9087e2-45f7-463c-89e2-40d7016da055 {
  border-radius: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-2d9087e2-45f7-463c-89e2-40d7016da055 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2d9087e2-45f7-463c-89e2-40d7016da055 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2d9087e2-45f7-463c-89e2-40d7016da055 {
  
}
}@media (max-width: 767px){#s-2d9087e2-45f7-463c-89e2-40d7016da055 {
  margin-top: 45px;
margin-left: -20%;
margin-right: 0px;
display: none;
}
#s-2d9087e2-45f7-463c-89e2-40d7016da055, #wrap-s-2d9087e2-45f7-463c-89e2-40d7016da055 { display:none !important; }}






  #s-2d9087e2-45f7-463c-89e2-40d7016da055 img.shogun-image {
    

    
    
    
  }


#s-2d9087e2-45f7-463c-89e2-40d7016da055 .shogun-image-content {
  
    align-items: center;
  
}

#s-4a58a436-7bb0-45ca-a1f5-d7f9ba60a4d4 {
  margin-top: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-4a58a436-7bb0-45ca-a1f5-d7f9ba60a4d4 {
  display: none;
}
#s-4a58a436-7bb0-45ca-a1f5-d7f9ba60a4d4, #wrap-s-4a58a436-7bb0-45ca-a1f5-d7f9ba60a4d4 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4a58a436-7bb0-45ca-a1f5-d7f9ba60a4d4 {
  display: none;
}
#s-4a58a436-7bb0-45ca-a1f5-d7f9ba60a4d4, #wrap-s-4a58a436-7bb0-45ca-a1f5-d7f9ba60a4d4 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4a58a436-7bb0-45ca-a1f5-d7f9ba60a4d4 {
  display: none;
}
#s-4a58a436-7bb0-45ca-a1f5-d7f9ba60a4d4, #wrap-s-4a58a436-7bb0-45ca-a1f5-d7f9ba60a4d4 { display:none !important; }}






  #s-4a58a436-7bb0-45ca-a1f5-d7f9ba60a4d4 img.shogun-image {
    

    
    
    
  }


#s-4a58a436-7bb0-45ca-a1f5-d7f9ba60a4d4 .shogun-image-content {
  
    align-items: center;
  
}

#s-25faa421-8442-4ef3-af14-d13860cbf5c1 {
  margin-top: 0%;
padding-top: 75px;
padding-bottom: 75px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
min-height: 300px;
background-color: rgba(249, 247, 242, 1);
}
@media (max-width: 767px){#s-25faa421-8442-4ef3-af14-d13860cbf5c1 {
  padding-left: 4%;
padding-right: 4%;
}
}







#s-25faa421-8442-4ef3-af14-d13860cbf5c1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-25faa421-8442-4ef3-af14-d13860cbf5c1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6e38dea0-1a4c-46a6-bd50-e0d088b353a1 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-6e38dea0-1a4c-46a6-bd50-e0d088b353a1 .shogun-heading-component h1 {
  color: rgba(80, 44, 30, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti-Ultra-Thin";
  font-style:  normal ;
  font-size: 48px;
  line-height: 1em;
  letter-spacing: 0.25px;
  text-align: center;
}


@media (max-width: 767px){#s-6e38dea0-1a4c-46a6-bd50-e0d088b353a1 .shogun-heading-component h1 {
  color: rgba(80, 44, 30, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti-Ultra-Thin";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1em;
  letter-spacing: 0.25px;
  text-align: center;
}


}
#s-d0919d5b-5e9a-41c0-9566-8fbf5e0e3cd2 {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-d0919d5b-5e9a-41c0-9566-8fbf5e0e3cd2 {
  margin-top: 5%;
}
}
#s-d0919d5b-5e9a-41c0-9566-8fbf5e0e3cd2 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: center;
}


@media (max-width: 767px){#s-d0919d5b-5e9a-41c0-9566-8fbf5e0e3cd2 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: center;
}


}
#s-9c899746-f236-4ae2-83f4-d6b20d3353bc {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}








#s-9c899746-f236-4ae2-83f4-d6b20d3353bc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9c899746-f236-4ae2-83f4-d6b20d3353bc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-abb249a9-a187-4fa4-adc7-dca9ff1fb1c7 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-abb249a9-a187-4fa4-adc7-dca9ff1fb1c7 .shg-sld-dot {
  background-color: rgba(206, 165, 155, 1);
}

#s-abb249a9-a187-4fa4-adc7-dca9ff1fb1c7 .shg-sld-nav-button.shg-sld-left,
#s-abb249a9-a187-4fa4-adc7-dca9ff1fb1c7 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(206, 165, 155, 1);
}

#s-5fbe234c-3dd9-4c06-a40c-ab1fd560e7cd {
  background-repeat: no-repeat;
background-size: cover;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
min-height: 135px;
background-color: rgba(255, 255, 255, 1);
background-position: center center;
}








#s-5fbe234c-3dd9-4c06-a40c-ab1fd560e7cd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5fbe234c-3dd9-4c06-a40c-ab1fd560e7cd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-16a45226-dcf2-46b7-9963-161bcf17f0c1 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-16a45226-dcf2-46b7-9963-161bcf17f0c1 {
  padding-top: 0%;
padding-bottom: 0%;
background-color: rgba(249, 247, 242, 1);
}
}
@media (min-width: 0px) {
[id="s-16a45226-dcf2-46b7-9963-161bcf17f0c1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-16a45226-dcf2-46b7-9963-161bcf17f0c1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 40.0px);
}

}

@media (min-width: 992px) {
[id="s-16a45226-dcf2-46b7-9963-161bcf17f0c1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 40.0px);
}

}

@media (min-width: 1200px) {
[id="s-16a45226-dcf2-46b7-9963-161bcf17f0c1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 40.0px);
}

}

#s-9d34f4b5-144a-47ce-8c0f-17cfbbf62219 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-9d34f4b5-144a-47ce-8c0f-17cfbbf62219 {
  display: none;
}
#s-9d34f4b5-144a-47ce-8c0f-17cfbbf62219, #wrap-s-9d34f4b5-144a-47ce-8c0f-17cfbbf62219 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9d34f4b5-144a-47ce-8c0f-17cfbbf62219 {
  display: none;
}
#s-9d34f4b5-144a-47ce-8c0f-17cfbbf62219, #wrap-s-9d34f4b5-144a-47ce-8c0f-17cfbbf62219 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9d34f4b5-144a-47ce-8c0f-17cfbbf62219 {
  display: none;
}
#s-9d34f4b5-144a-47ce-8c0f-17cfbbf62219, #wrap-s-9d34f4b5-144a-47ce-8c0f-17cfbbf62219 { display:none !important; }}
#s-9d34f4b5-144a-47ce-8c0f-17cfbbf62219 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 45px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-9d34f4b5-144a-47ce-8c0f-17cfbbf62219 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}


}
#s-314cb80c-e9d0-4e45-a3f8-8285a6d8e011 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-314cb80c-e9d0-4e45-a3f8-8285a6d8e011 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti-Ultra-Thin";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-e44be29d-00cd-487d-9f86-e8c391318367 {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-e44be29d-00cd-487d-9f86-e8c391318367 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-e44be29d-00cd-487d-9f86-e8c391318367 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
#s-d90c31d3-4d33-40a5-b71f-b32bf0daddaf {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
text-align: center;
}
@media (max-width: 767px){#s-d90c31d3-4d33-40a5-b71f-b32bf0daddaf {
  margin-top: 30px;
margin-bottom: 30px;
}
}






  #s-d90c31d3-4d33-40a5-b71f-b32bf0daddaf img.shogun-image {
    

    
    
    
  }


#s-d90c31d3-4d33-40a5-b71f-b32bf0daddaf .shogun-image-content {
  
    align-items: center;
  
}

#s-8c55bfc9-a97d-4099-b123-52ce6df01021 {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-8c55bfc9-a97d-4099-b123-52ce6df01021 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-8c55bfc9-a97d-4099-b123-52ce6df01021 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
#s-5a8d1661-ab50-40e6-810b-83db7ea5978c {
  min-height: 50px;
}








#s-5a8d1661-ab50-40e6-810b-83db7ea5978c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5a8d1661-ab50-40e6-810b-83db7ea5978c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bdd94715-314d-43ca-95bd-f0a93a191b51 {
  background-repeat: no-repeat;
background-size: contain;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
min-height: 135px;
background-color: rgba(255, 255, 255, 1);
background-position: left center;
}








#s-bdd94715-314d-43ca-95bd-f0a93a191b51 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bdd94715-314d-43ca-95bd-f0a93a191b51.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-254cc41e-b6d1-4c95-85e0-b922b5a99d97 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
}
@media (max-width: 767px){#s-254cc41e-b6d1-4c95-85e0-b922b5a99d97 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(249, 247, 242, 1);
}
}
@media (min-width: 0px) {
[id="s-254cc41e-b6d1-4c95-85e0-b922b5a99d97"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-254cc41e-b6d1-4c95-85e0-b922b5a99d97"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 45.0px);
}

}

@media (min-width: 992px) {
[id="s-254cc41e-b6d1-4c95-85e0-b922b5a99d97"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 45.0px);
}

}

@media (min-width: 1200px) {
[id="s-254cc41e-b6d1-4c95-85e0-b922b5a99d97"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 45.0px);
}

}

#s-7e5cdd8b-4b00-40f7-86bc-af32fd344000 {
  margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-7e5cdd8b-4b00-40f7-86bc-af32fd344000 {
  display: none;
}
#s-7e5cdd8b-4b00-40f7-86bc-af32fd344000, #wrap-s-7e5cdd8b-4b00-40f7-86bc-af32fd344000 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7e5cdd8b-4b00-40f7-86bc-af32fd344000 {
  display: none;
}
#s-7e5cdd8b-4b00-40f7-86bc-af32fd344000, #wrap-s-7e5cdd8b-4b00-40f7-86bc-af32fd344000 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7e5cdd8b-4b00-40f7-86bc-af32fd344000 {
  display: none;
}
#s-7e5cdd8b-4b00-40f7-86bc-af32fd344000, #wrap-s-7e5cdd8b-4b00-40f7-86bc-af32fd344000 { display:none !important; }}






  #s-7e5cdd8b-4b00-40f7-86bc-af32fd344000 img.shogun-image {
    

    
    
    
  }


#s-7e5cdd8b-4b00-40f7-86bc-af32fd344000 .shogun-image-content {
  
    align-items: center;
  
}

#s-e5bddbca-8df6-46e9-ac3b-748d5b241f44 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-e5bddbca-8df6-46e9-ac3b-748d5b241f44 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti-Ultra-Thin";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-a0eb9f9a-4877-415d-bbc7-531110117c15 {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-a0eb9f9a-4877-415d-bbc7-531110117c15 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-a0eb9f9a-4877-415d-bbc7-531110117c15 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
#s-d0fe9e49-8a3d-40df-b4db-c4e87d316a74 {
  min-height: 50px;
}








#s-d0fe9e49-8a3d-40df-b4db-c4e87d316a74 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d0fe9e49-8a3d-40df-b4db-c4e87d316a74.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-31cfdec7-5490-42e8-8648-d5c5470d2906 {
  background-repeat: no-repeat;
background-size: contain;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
min-height: 135px;
background-color: rgba(255, 255, 255, 1);
background-position: left center;
}








#s-31cfdec7-5490-42e8-8648-d5c5470d2906 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-31cfdec7-5490-42e8-8648-d5c5470d2906.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-401508e1-2aa7-456c-8766-62372e4f6e2a {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
}
@media (max-width: 767px){#s-401508e1-2aa7-456c-8766-62372e4f6e2a {
  padding-top: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(249, 247, 242, 1);
}
}
@media (min-width: 0px) {
[id="s-401508e1-2aa7-456c-8766-62372e4f6e2a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-401508e1-2aa7-456c-8766-62372e4f6e2a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 45.0px);
}

}

@media (min-width: 992px) {
[id="s-401508e1-2aa7-456c-8766-62372e4f6e2a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 45.0px);
}

}

@media (min-width: 1200px) {
[id="s-401508e1-2aa7-456c-8766-62372e4f6e2a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 45.0px);
}

}

#s-fe7ae11d-0d23-4e3a-afb0-3e58a2320108 {
  margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-fe7ae11d-0d23-4e3a-afb0-3e58a2320108 {
  display: none;
}
#s-fe7ae11d-0d23-4e3a-afb0-3e58a2320108, #wrap-s-fe7ae11d-0d23-4e3a-afb0-3e58a2320108 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fe7ae11d-0d23-4e3a-afb0-3e58a2320108 {
  display: none;
}
#s-fe7ae11d-0d23-4e3a-afb0-3e58a2320108, #wrap-s-fe7ae11d-0d23-4e3a-afb0-3e58a2320108 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fe7ae11d-0d23-4e3a-afb0-3e58a2320108 {
  display: none;
}
#s-fe7ae11d-0d23-4e3a-afb0-3e58a2320108, #wrap-s-fe7ae11d-0d23-4e3a-afb0-3e58a2320108 { display:none !important; }}






  #s-fe7ae11d-0d23-4e3a-afb0-3e58a2320108 img.shogun-image {
    

    
    
    
  }


#s-fe7ae11d-0d23-4e3a-afb0-3e58a2320108 .shogun-image-content {
  
    align-items: center;
  
}

#s-9d013459-d61a-4bad-b292-ae407d226316 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-9d013459-d61a-4bad-b292-ae407d226316 {
  display: none;
}
#s-9d013459-d61a-4bad-b292-ae407d226316, #wrap-s-9d013459-d61a-4bad-b292-ae407d226316 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9d013459-d61a-4bad-b292-ae407d226316 {
  display: none;
}
#s-9d013459-d61a-4bad-b292-ae407d226316, #wrap-s-9d013459-d61a-4bad-b292-ae407d226316 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9d013459-d61a-4bad-b292-ae407d226316 {
  display: none;
}
#s-9d013459-d61a-4bad-b292-ae407d226316, #wrap-s-9d013459-d61a-4bad-b292-ae407d226316 { display:none !important; }}
#s-9d013459-d61a-4bad-b292-ae407d226316 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 45px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-9d013459-d61a-4bad-b292-ae407d226316 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}


}
#s-cae13e76-0213-467e-b42b-236dc207a202 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-cae13e76-0213-467e-b42b-236dc207a202 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti-Ultra-Thin";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-90148779-be50-4f4b-89a3-bdf597a5eba5 {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-90148779-be50-4f4b-89a3-bdf597a5eba5 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-90148779-be50-4f4b-89a3-bdf597a5eba5 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
#s-aaf2be15-0160-4796-aa9a-6930875eace2 {
  min-height: 50px;
}








#s-aaf2be15-0160-4796-aa9a-6930875eace2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aaf2be15-0160-4796-aa9a-6930875eace2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7a51bcd9-aa5f-4467-a2dc-e65dcd9253b4 {
  background-repeat: no-repeat;
background-size: contain;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
min-height: 135px;
background-color: rgba(255, 255, 255, 1);
background-position: left center;
}








#s-7a51bcd9-aa5f-4467-a2dc-e65dcd9253b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7a51bcd9-aa5f-4467-a2dc-e65dcd9253b4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a3a4f43c-99e1-4574-858f-c210cda051f5 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
}
@media (max-width: 767px){#s-a3a4f43c-99e1-4574-858f-c210cda051f5 {
  padding-top: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(249, 247, 242, 1);
}
}
@media (min-width: 0px) {
[id="s-a3a4f43c-99e1-4574-858f-c210cda051f5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a3a4f43c-99e1-4574-858f-c210cda051f5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 45.0px);
}

}

@media (min-width: 992px) {
[id="s-a3a4f43c-99e1-4574-858f-c210cda051f5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 45.0px);
}

}

@media (min-width: 1200px) {
[id="s-a3a4f43c-99e1-4574-858f-c210cda051f5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 45.0px);
}

}

#s-d44ab01b-51cf-4398-b2d4-6f7c0c3bf14a {
  margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-d44ab01b-51cf-4398-b2d4-6f7c0c3bf14a {
  display: none;
}
#s-d44ab01b-51cf-4398-b2d4-6f7c0c3bf14a, #wrap-s-d44ab01b-51cf-4398-b2d4-6f7c0c3bf14a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d44ab01b-51cf-4398-b2d4-6f7c0c3bf14a {
  display: none;
}
#s-d44ab01b-51cf-4398-b2d4-6f7c0c3bf14a, #wrap-s-d44ab01b-51cf-4398-b2d4-6f7c0c3bf14a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d44ab01b-51cf-4398-b2d4-6f7c0c3bf14a {
  display: none;
}
#s-d44ab01b-51cf-4398-b2d4-6f7c0c3bf14a, #wrap-s-d44ab01b-51cf-4398-b2d4-6f7c0c3bf14a { display:none !important; }}






  #s-d44ab01b-51cf-4398-b2d4-6f7c0c3bf14a img.shogun-image {
    

    
    
    
  }


#s-d44ab01b-51cf-4398-b2d4-6f7c0c3bf14a .shogun-image-content {
  
    align-items: center;
  
}

#s-925d405b-02d8-445c-89c5-0423f46e307e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-925d405b-02d8-445c-89c5-0423f46e307e {
  display: none;
}
#s-925d405b-02d8-445c-89c5-0423f46e307e, #wrap-s-925d405b-02d8-445c-89c5-0423f46e307e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-925d405b-02d8-445c-89c5-0423f46e307e {
  display: none;
}
#s-925d405b-02d8-445c-89c5-0423f46e307e, #wrap-s-925d405b-02d8-445c-89c5-0423f46e307e { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-925d405b-02d8-445c-89c5-0423f46e307e {
  display: none;
}
#s-925d405b-02d8-445c-89c5-0423f46e307e, #wrap-s-925d405b-02d8-445c-89c5-0423f46e307e { display:none !important; }}
#s-925d405b-02d8-445c-89c5-0423f46e307e .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 45px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-925d405b-02d8-445c-89c5-0423f46e307e .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}


}
#s-f7479862-bb94-49fa-9bdf-00756c65ba13 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-f7479862-bb94-49fa-9bdf-00756c65ba13 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti-Ultra-Thin";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-a7d7a43f-d57e-488c-a882-0d000b25613f {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-a7d7a43f-d57e-488c-a882-0d000b25613f .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-a7d7a43f-d57e-488c-a882-0d000b25613f .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
#s-5da63333-d31d-492b-b8db-283f97fd0703 {
  background-repeat: no-repeat;
background-size: cover;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
min-height: 135px;
background-color: rgba(255, 255, 255, 1);
background-position: center center;
}








#s-5da63333-d31d-492b-b8db-283f97fd0703 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5da63333-d31d-492b-b8db-283f97fd0703.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b9029584-9ed6-4de7-9c32-1fc34f5abc0a {
  background-repeat: no-repeat;
background-size: contain;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
min-height: 135px;
background-color: rgba(255, 255, 255, 1);
background-position: left center;
}








#s-b9029584-9ed6-4de7-9c32-1fc34f5abc0a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b9029584-9ed6-4de7-9c32-1fc34f5abc0a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4520bf55-76c0-48b4-92b0-8c35f316dcd9 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
}
@media (max-width: 767px){#s-4520bf55-76c0-48b4-92b0-8c35f316dcd9 {
  padding-top: 0%;
padding-bottom: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(249, 247, 242, 1);
}
}
@media (min-width: 0px) {
[id="s-4520bf55-76c0-48b4-92b0-8c35f316dcd9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4520bf55-76c0-48b4-92b0-8c35f316dcd9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 45.0px);
}

}

@media (min-width: 992px) {
[id="s-4520bf55-76c0-48b4-92b0-8c35f316dcd9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 45.0px);
}

}

@media (min-width: 1200px) {
[id="s-4520bf55-76c0-48b4-92b0-8c35f316dcd9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 45.0px);
}

}

#s-3a870fdd-c340-464a-b961-75414ec3c670 {
  margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-3a870fdd-c340-464a-b961-75414ec3c670 {
  display: none;
}
#s-3a870fdd-c340-464a-b961-75414ec3c670, #wrap-s-3a870fdd-c340-464a-b961-75414ec3c670 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3a870fdd-c340-464a-b961-75414ec3c670 {
  display: none;
}
#s-3a870fdd-c340-464a-b961-75414ec3c670, #wrap-s-3a870fdd-c340-464a-b961-75414ec3c670 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3a870fdd-c340-464a-b961-75414ec3c670 {
  display: none;
}
#s-3a870fdd-c340-464a-b961-75414ec3c670, #wrap-s-3a870fdd-c340-464a-b961-75414ec3c670 { display:none !important; }}






  #s-3a870fdd-c340-464a-b961-75414ec3c670 img.shogun-image {
    

    
    
    
  }


#s-3a870fdd-c340-464a-b961-75414ec3c670 .shogun-image-content {
  
    align-items: center;
  
}

#s-663b1d12-80c5-408e-a7c7-bdfa4712098a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-663b1d12-80c5-408e-a7c7-bdfa4712098a {
  display: none;
}
#s-663b1d12-80c5-408e-a7c7-bdfa4712098a, #wrap-s-663b1d12-80c5-408e-a7c7-bdfa4712098a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-663b1d12-80c5-408e-a7c7-bdfa4712098a {
  display: none;
}
#s-663b1d12-80c5-408e-a7c7-bdfa4712098a, #wrap-s-663b1d12-80c5-408e-a7c7-bdfa4712098a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-663b1d12-80c5-408e-a7c7-bdfa4712098a {
  display: none;
}
#s-663b1d12-80c5-408e-a7c7-bdfa4712098a, #wrap-s-663b1d12-80c5-408e-a7c7-bdfa4712098a { display:none !important; }}
#s-663b1d12-80c5-408e-a7c7-bdfa4712098a .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 45px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-663b1d12-80c5-408e-a7c7-bdfa4712098a .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 25px;
  
  
  text-align: left;
}


}
#s-6edbc279-7a52-4405-82cd-2aee14dfcc4a {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-6edbc279-7a52-4405-82cd-2aee14dfcc4a .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (min-width: 1200px){#s-6edbc279-7a52-4405-82cd-2aee14dfcc4a .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: left;
}


}@media (max-width: 767px){#s-6edbc279-7a52-4405-82cd-2aee14dfcc4a .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: left;
}


}
#s-4df2f35c-b80b-40ec-a8df-70a18fe4128e {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-4df2f35c-b80b-40ec-a8df-70a18fe4128e .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-4df2f35c-b80b-40ec-a8df-70a18fe4128e .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
#s-e8ab0133-3765-4658-9841-dbf7d77589f2 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 120px;
padding-left: 5%;
padding-bottom: 120px;
padding-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-e8ab0133-3765-4658-9841-dbf7d77589f2 {
  padding-top: 50px;
padding-left: 10%;
padding-bottom: 50px;
padding-right: 10%;
}
}







#s-e8ab0133-3765-4658-9841-dbf7d77589f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e8ab0133-3765-4658-9841-dbf7d77589f2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-057fc725-16fd-4c61-8dce-70e47a602402 {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-057fc725-16fd-4c61-8dce-70e47a602402 .shogun-heading-component h1 {
  color: rgba(80, 44, 30, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti-Ultra-Thin";
  font-style:  normal ;
  font-size: 48px;
  line-height: 1em;
  letter-spacing: 0.25px;
  text-align: center;
}


@media (max-width: 767px){#s-057fc725-16fd-4c61-8dce-70e47a602402 .shogun-heading-component h1 {
  color: rgba(80, 44, 30, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti-Ultra-Thin";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1em;
  letter-spacing: 0.25px;
  text-align: center;
}


}
#s-c3375a34-e895-43ce-b468-c56ef8d2ece6 {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-c3375a34-e895-43ce-b468-c56ef8d2ece6 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: center;
}


@media (max-width: 767px){#s-c3375a34-e895-43ce-b468-c56ef8d2ece6 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
#s-27b35089-fcd0-42a4-bba7-2cbe22e6804a {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1300px;
}








#s-27b35089-fcd0-42a4-bba7-2cbe22e6804a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27b35089-fcd0-42a4-bba7-2cbe22e6804a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-719845a4-36ec-42d6-8e21-e9449598de83"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-719845a4-36ec-42d6-8e21-e9449598de83"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 992px) {
[id="s-719845a4-36ec-42d6-8e21-e9449598de83"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 1200px) {
[id="s-719845a4-36ec-42d6-8e21-e9449598de83"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 0px) {
[id="s-72e7ce40-a76c-4548-a760-81938d1b3020"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-72e7ce40-a76c-4548-a760-81938d1b3020"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-72e7ce40-a76c-4548-a760-81938d1b3020"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-72e7ce40-a76c-4548-a760-81938d1b3020"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-72e7ce40-a76c-4548-a760-81938d1b3020"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-72e7ce40-a76c-4548-a760-81938d1b3020"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-72e7ce40-a76c-4548-a760-81938d1b3020"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-62850053-d2eb-47a6-94c6-e47f6bb9ee4c {
  margin-top: 0px;
margin-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-62850053-d2eb-47a6-94c6-e47f6bb9ee4c {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-62850053-d2eb-47a6-94c6-e47f6bb9ee4c {
  display: none;
}
#s-62850053-d2eb-47a6-94c6-e47f6bb9ee4c, #wrap-s-62850053-d2eb-47a6-94c6-e47f6bb9ee4c { display:none !important; }}







#s-62850053-d2eb-47a6-94c6-e47f6bb9ee4c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-62850053-d2eb-47a6-94c6-e47f6bb9ee4c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2f9c6bef-dc5c-40df-b26e-640f9e0a5c61 {
  margin-left: auto;
margin-right: auto;
max-width: 65px;
text-align: right;
}







  #s-2f9c6bef-dc5c-40df-b26e-640f9e0a5c61 img.shogun-image {
    

    
    
    
  }


#s-2f9c6bef-dc5c-40df-b26e-640f9e0a5c61 .shogun-image-content {
  
    align-items: center;
  
}

#s-897ae64e-be0b-4420-8065-f982bf131943 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-897ae64e-be0b-4420-8065-f982bf131943 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-244cf521-a636-4d64-bb86-4f966f0fde6b {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-244cf521-a636-4d64-bb86-4f966f0fde6b .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-244cf521-a636-4d64-bb86-4f966f0fde6b .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
@media (min-width: 0px) {
[id="s-7f68ae20-3ee1-4100-aa4b-2b3cd7fa0aa9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7f68ae20-3ee1-4100-aa4b-2b3cd7fa0aa9"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7f68ae20-3ee1-4100-aa4b-2b3cd7fa0aa9"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7f68ae20-3ee1-4100-aa4b-2b3cd7fa0aa9"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7f68ae20-3ee1-4100-aa4b-2b3cd7fa0aa9"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7f68ae20-3ee1-4100-aa4b-2b3cd7fa0aa9"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7f68ae20-3ee1-4100-aa4b-2b3cd7fa0aa9"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-42401db8-a339-452d-8ccf-75c2edd7a90a {
  margin-top: 0px;
margin-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-42401db8-a339-452d-8ccf-75c2edd7a90a {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-42401db8-a339-452d-8ccf-75c2edd7a90a {
  display: none;
}
#s-42401db8-a339-452d-8ccf-75c2edd7a90a, #wrap-s-42401db8-a339-452d-8ccf-75c2edd7a90a { display:none !important; }}







#s-42401db8-a339-452d-8ccf-75c2edd7a90a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-42401db8-a339-452d-8ccf-75c2edd7a90a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5b093457-20bd-4730-bc8a-975b4d2eb509 {
  margin-left: auto;
margin-right: auto;
max-width: 65px;
text-align: right;
}







  #s-5b093457-20bd-4730-bc8a-975b4d2eb509 img.shogun-image {
    

    
    
    
  }


#s-5b093457-20bd-4730-bc8a-975b4d2eb509 .shogun-image-content {
  
    align-items: center;
  
}

#s-322ef398-8978-4649-86e3-73e15b2e1e34 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-322ef398-8978-4649-86e3-73e15b2e1e34 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-4d2bd77d-1695-46bc-b50f-6e37f5271acc {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-4d2bd77d-1695-46bc-b50f-6e37f5271acc .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-4d2bd77d-1695-46bc-b50f-6e37f5271acc .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
@media (min-width: 0px) {
[id="s-c86b0c5f-c701-4078-8278-dd345314442c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c86b0c5f-c701-4078-8278-dd345314442c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 992px) {
[id="s-c86b0c5f-c701-4078-8278-dd345314442c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 1200px) {
[id="s-c86b0c5f-c701-4078-8278-dd345314442c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 0px) {
[id="s-a2b38779-6ae9-40f5-9975-b2d30f4ec808"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a2b38779-6ae9-40f5-9975-b2d30f4ec808"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a2b38779-6ae9-40f5-9975-b2d30f4ec808"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a2b38779-6ae9-40f5-9975-b2d30f4ec808"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a2b38779-6ae9-40f5-9975-b2d30f4ec808"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a2b38779-6ae9-40f5-9975-b2d30f4ec808"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a2b38779-6ae9-40f5-9975-b2d30f4ec808"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-d5101133-878f-4cc2-964e-6b22d117bfba {
  margin-top: 0px;
margin-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-d5101133-878f-4cc2-964e-6b22d117bfba {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-d5101133-878f-4cc2-964e-6b22d117bfba {
  display: none;
}
#s-d5101133-878f-4cc2-964e-6b22d117bfba, #wrap-s-d5101133-878f-4cc2-964e-6b22d117bfba { display:none !important; }}







#s-d5101133-878f-4cc2-964e-6b22d117bfba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d5101133-878f-4cc2-964e-6b22d117bfba.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-68dbfa7f-1f10-4f2d-9acb-cfaa46eb3aa2 {
  margin-left: auto;
margin-right: auto;
max-width: 65px;
text-align: right;
}







  #s-68dbfa7f-1f10-4f2d-9acb-cfaa46eb3aa2 img.shogun-image {
    

    
    
    
  }


#s-68dbfa7f-1f10-4f2d-9acb-cfaa46eb3aa2 .shogun-image-content {
  
    align-items: center;
  
}

#s-28806552-34a3-44d2-a3a0-1b6cfa1ccab4 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-28806552-34a3-44d2-a3a0-1b6cfa1ccab4 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-1af6514d-a664-43e1-a957-8ada8fa4efde {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-1af6514d-a664-43e1-a957-8ada8fa4efde .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-1af6514d-a664-43e1-a957-8ada8fa4efde .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
@media (min-width: 0px) {
[id="s-1e12bcc3-2bcd-42e2-a127-7d0cc846bce1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1e12bcc3-2bcd-42e2-a127-7d0cc846bce1"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1e12bcc3-2bcd-42e2-a127-7d0cc846bce1"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1e12bcc3-2bcd-42e2-a127-7d0cc846bce1"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1e12bcc3-2bcd-42e2-a127-7d0cc846bce1"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1e12bcc3-2bcd-42e2-a127-7d0cc846bce1"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1e12bcc3-2bcd-42e2-a127-7d0cc846bce1"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-bf095617-dab2-4ccf-b643-c029e334f8ab {
  margin-top: 0px;
margin-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-bf095617-dab2-4ccf-b643-c029e334f8ab {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-bf095617-dab2-4ccf-b643-c029e334f8ab {
  display: none;
}
#s-bf095617-dab2-4ccf-b643-c029e334f8ab, #wrap-s-bf095617-dab2-4ccf-b643-c029e334f8ab { display:none !important; }}







#s-bf095617-dab2-4ccf-b643-c029e334f8ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bf095617-dab2-4ccf-b643-c029e334f8ab.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-87801438-0256-43e6-bcdc-bc169a420392 {
  margin-left: auto;
margin-right: auto;
max-width: 65px;
text-align: right;
}







  #s-87801438-0256-43e6-bcdc-bc169a420392 img.shogun-image {
    

    
    
    
  }


#s-87801438-0256-43e6-bcdc-bc169a420392 .shogun-image-content {
  
    align-items: center;
  
}

#s-2ed92e98-e4ce-485b-9096-2cc69151446f {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-2ed92e98-e4ce-485b-9096-2cc69151446f .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-8ce2a3bc-e9de-4b57-8625-a9636546bc42 {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-8ce2a3bc-e9de-4b57-8625-a9636546bc42 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-8ce2a3bc-e9de-4b57-8625-a9636546bc42 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
@media (min-width: 0px) {
[id="s-7e6adfcc-a7cd-4a63-bc8a-29a980da9965"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7e6adfcc-a7cd-4a63-bc8a-29a980da9965"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 992px) {
[id="s-7e6adfcc-a7cd-4a63-bc8a-29a980da9965"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 1200px) {
[id="s-7e6adfcc-a7cd-4a63-bc8a-29a980da9965"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 0px) {
[id="s-487ab297-9c80-4c9f-b2b5-7995149a8bb2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-487ab297-9c80-4c9f-b2b5-7995149a8bb2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-487ab297-9c80-4c9f-b2b5-7995149a8bb2"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-487ab297-9c80-4c9f-b2b5-7995149a8bb2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-487ab297-9c80-4c9f-b2b5-7995149a8bb2"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-487ab297-9c80-4c9f-b2b5-7995149a8bb2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-487ab297-9c80-4c9f-b2b5-7995149a8bb2"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-2e88cf5a-803a-4f41-87d7-19b6f2f47333 {
  margin-top: 0px;
margin-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-2e88cf5a-803a-4f41-87d7-19b6f2f47333 {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-2e88cf5a-803a-4f41-87d7-19b6f2f47333 {
  display: none;
}
#s-2e88cf5a-803a-4f41-87d7-19b6f2f47333, #wrap-s-2e88cf5a-803a-4f41-87d7-19b6f2f47333 { display:none !important; }}







#s-2e88cf5a-803a-4f41-87d7-19b6f2f47333 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2e88cf5a-803a-4f41-87d7-19b6f2f47333.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bc7260bb-4f88-4f59-88ca-c29fd35fa5ac {
  margin-left: auto;
margin-right: auto;
max-width: 65px;
text-align: right;
}







  #s-bc7260bb-4f88-4f59-88ca-c29fd35fa5ac img.shogun-image {
    

    
    
    
  }


#s-bc7260bb-4f88-4f59-88ca-c29fd35fa5ac .shogun-image-content {
  
    align-items: center;
  
}

#s-f8f25ed5-da94-4a03-94e1-2e19fc4b81d6 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-f8f25ed5-da94-4a03-94e1-2e19fc4b81d6 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-7b20e144-66da-46f8-a9ee-214979b1737f {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-7b20e144-66da-46f8-a9ee-214979b1737f .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-7b20e144-66da-46f8-a9ee-214979b1737f .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: center;
}


}
@media (min-width: 0px) {
[id="s-cc7c6e9e-7935-4b9e-9c5a-e3a1cb8c6927"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc7c6e9e-7935-4b9e-9c5a-e3a1cb8c6927"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cc7c6e9e-7935-4b9e-9c5a-e3a1cb8c6927"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cc7c6e9e-7935-4b9e-9c5a-e3a1cb8c6927"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cc7c6e9e-7935-4b9e-9c5a-e3a1cb8c6927"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc7c6e9e-7935-4b9e-9c5a-e3a1cb8c6927"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cc7c6e9e-7935-4b9e-9c5a-e3a1cb8c6927"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-b076daa6-5446-4e8f-9553-427464eddd1c {
  margin-top: 0px;
margin-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-b076daa6-5446-4e8f-9553-427464eddd1c {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-b076daa6-5446-4e8f-9553-427464eddd1c {
  display: none;
}
#s-b076daa6-5446-4e8f-9553-427464eddd1c, #wrap-s-b076daa6-5446-4e8f-9553-427464eddd1c { display:none !important; }}







#s-b076daa6-5446-4e8f-9553-427464eddd1c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b076daa6-5446-4e8f-9553-427464eddd1c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3e9cf7f3-ac7f-4a76-b07e-da7393f88b79 {
  margin-left: auto;
margin-right: auto;
max-width: 65px;
text-align: right;
}







  #s-3e9cf7f3-ac7f-4a76-b07e-da7393f88b79 img.shogun-image {
    

    
    
    
  }


#s-3e9cf7f3-ac7f-4a76-b07e-da7393f88b79 .shogun-image-content {
  
    align-items: center;
  
}

#s-0ddc9638-893b-4dd7-858c-6201b3d540bf {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-0ddc9638-893b-4dd7-858c-6201b3d540bf .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-fccfdb68-da5f-46ac-8c18-acb1c24f3959 {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-fccfdb68-da5f-46ac-8c18-acb1c24f3959 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-fccfdb68-da5f-46ac-8c18-acb1c24f3959 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
@media (min-width: 0px) {
[id="s-d8b5eaf9-6c07-429a-b2a5-98bf81c7c7f0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d8b5eaf9-6c07-429a-b2a5-98bf81c7c7f0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 992px) {
[id="s-d8b5eaf9-6c07-429a-b2a5-98bf81c7c7f0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 1200px) {
[id="s-d8b5eaf9-6c07-429a-b2a5-98bf81c7c7f0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 0px) {
[id="s-b0ef7897-7ad2-4471-9d72-9cf6bfcec4f3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b0ef7897-7ad2-4471-9d72-9cf6bfcec4f3"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-b0ef7897-7ad2-4471-9d72-9cf6bfcec4f3"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b0ef7897-7ad2-4471-9d72-9cf6bfcec4f3"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-b0ef7897-7ad2-4471-9d72-9cf6bfcec4f3"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b0ef7897-7ad2-4471-9d72-9cf6bfcec4f3"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-b0ef7897-7ad2-4471-9d72-9cf6bfcec4f3"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-abc8e2c2-0212-414c-9563-b080158596a5 {
  margin-top: 0px;
margin-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-abc8e2c2-0212-414c-9563-b080158596a5 {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-abc8e2c2-0212-414c-9563-b080158596a5 {
  display: none;
}
#s-abc8e2c2-0212-414c-9563-b080158596a5, #wrap-s-abc8e2c2-0212-414c-9563-b080158596a5 { display:none !important; }}







#s-abc8e2c2-0212-414c-9563-b080158596a5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-abc8e2c2-0212-414c-9563-b080158596a5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cceae69b-c8c4-43b7-8122-9f948c164af6 {
  margin-left: auto;
margin-right: auto;
max-width: 65px;
text-align: right;
}







  #s-cceae69b-c8c4-43b7-8122-9f948c164af6 img.shogun-image {
    

    
    
    
  }


#s-cceae69b-c8c4-43b7-8122-9f948c164af6 .shogun-image-content {
  
    align-items: center;
  
}

#s-afb9b304-fe58-4fc9-9e4d-305b5c3fb691 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-afb9b304-fe58-4fc9-9e4d-305b5c3fb691 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-4e0803cb-784d-4b9e-b718-22a70bf4fe3c {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-4e0803cb-784d-4b9e-b718-22a70bf4fe3c .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-4e0803cb-784d-4b9e-b718-22a70bf4fe3c .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
@media (min-width: 0px) {
[id="s-3ac5cd27-a73a-4076-838c-850ae419f5fa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3ac5cd27-a73a-4076-838c-850ae419f5fa"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3ac5cd27-a73a-4076-838c-850ae419f5fa"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3ac5cd27-a73a-4076-838c-850ae419f5fa"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3ac5cd27-a73a-4076-838c-850ae419f5fa"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3ac5cd27-a73a-4076-838c-850ae419f5fa"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3ac5cd27-a73a-4076-838c-850ae419f5fa"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-533876de-2eee-405c-a7a0-22a262900500 {
  margin-top: 0px;
margin-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-533876de-2eee-405c-a7a0-22a262900500 {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-533876de-2eee-405c-a7a0-22a262900500 {
  display: none;
}
#s-533876de-2eee-405c-a7a0-22a262900500, #wrap-s-533876de-2eee-405c-a7a0-22a262900500 { display:none !important; }}







#s-533876de-2eee-405c-a7a0-22a262900500 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-533876de-2eee-405c-a7a0-22a262900500.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a815521e-f8ab-497c-97d8-b095dc2e2bca {
  margin-left: auto;
margin-right: auto;
max-width: 65px;
text-align: right;
}







  #s-a815521e-f8ab-497c-97d8-b095dc2e2bca img.shogun-image {
    

    
    
    
  }


#s-a815521e-f8ab-497c-97d8-b095dc2e2bca .shogun-image-content {
  
    align-items: center;
  
}

#s-8d4f957d-57d4-40f1-b752-de7d58ecd151 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-8d4f957d-57d4-40f1-b752-de7d58ecd151 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-c5589e02-20ee-4775-ace5-83f4b178562c {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-c5589e02-20ee-4775-ace5-83f4b178562c .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-c5589e02-20ee-4775-ace5-83f4b178562c .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
@media (min-width: 0px) {
[id="s-55bf1373-4cd7-45d7-88eb-bb680cac810d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-55bf1373-4cd7-45d7-88eb-bb680cac810d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 992px) {
[id="s-55bf1373-4cd7-45d7-88eb-bb680cac810d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 1200px) {
[id="s-55bf1373-4cd7-45d7-88eb-bb680cac810d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 0px) {
[id="s-098f4fe2-1e26-455a-b04b-ac128e55d79a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-098f4fe2-1e26-455a-b04b-ac128e55d79a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-098f4fe2-1e26-455a-b04b-ac128e55d79a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-098f4fe2-1e26-455a-b04b-ac128e55d79a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-098f4fe2-1e26-455a-b04b-ac128e55d79a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-098f4fe2-1e26-455a-b04b-ac128e55d79a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-098f4fe2-1e26-455a-b04b-ac128e55d79a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-cd649dac-527a-4450-b995-1471ce8dd880 {
  margin-top: 0px;
margin-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-cd649dac-527a-4450-b995-1471ce8dd880 {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-cd649dac-527a-4450-b995-1471ce8dd880 {
  display: none;
}
#s-cd649dac-527a-4450-b995-1471ce8dd880, #wrap-s-cd649dac-527a-4450-b995-1471ce8dd880 { display:none !important; }}







#s-cd649dac-527a-4450-b995-1471ce8dd880 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cd649dac-527a-4450-b995-1471ce8dd880.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0088158c-eb53-4268-8a69-cfb5acb2e68c {
  margin-left: auto;
margin-right: auto;
max-width: 65px;
text-align: right;
}







  #s-0088158c-eb53-4268-8a69-cfb5acb2e68c img.shogun-image {
    

    
    
    
  }


#s-0088158c-eb53-4268-8a69-cfb5acb2e68c .shogun-image-content {
  
    align-items: center;
  
}

#s-ddc04a38-1d79-4f54-9045-684e7a75642a {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-ddc04a38-1d79-4f54-9045-684e7a75642a .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-3da8236c-cb82-49e7-95e6-c3b2e2ea09b1 {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-3da8236c-cb82-49e7-95e6-c3b2e2ea09b1 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-3da8236c-cb82-49e7-95e6-c3b2e2ea09b1 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
@media (min-width: 0px) {
[id="s-dfc66fe9-cb8b-443d-a070-aa1170f800c7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dfc66fe9-cb8b-443d-a070-aa1170f800c7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dfc66fe9-cb8b-443d-a070-aa1170f800c7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-dfc66fe9-cb8b-443d-a070-aa1170f800c7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dfc66fe9-cb8b-443d-a070-aa1170f800c7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-dfc66fe9-cb8b-443d-a070-aa1170f800c7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dfc66fe9-cb8b-443d-a070-aa1170f800c7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-06eecf56-bf8d-4a23-97c3-94fd5ca4ac2b {
  margin-top: 0px;
margin-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-06eecf56-bf8d-4a23-97c3-94fd5ca4ac2b {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-06eecf56-bf8d-4a23-97c3-94fd5ca4ac2b {
  display: none;
}
#s-06eecf56-bf8d-4a23-97c3-94fd5ca4ac2b, #wrap-s-06eecf56-bf8d-4a23-97c3-94fd5ca4ac2b { display:none !important; }}







#s-06eecf56-bf8d-4a23-97c3-94fd5ca4ac2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-06eecf56-bf8d-4a23-97c3-94fd5ca4ac2b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c941c0dc-e997-4c94-bcbf-567e77abae28 {
  margin-left: auto;
margin-right: auto;
max-width: 65px;
text-align: right;
}







  #s-c941c0dc-e997-4c94-bcbf-567e77abae28 img.shogun-image {
    

    
    
    
  }


#s-c941c0dc-e997-4c94-bcbf-567e77abae28 .shogun-image-content {
  
    align-items: center;
  
}

#s-735e83e1-86bb-43b5-b2c6-4eeee69988cd {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-735e83e1-86bb-43b5-b2c6-4eeee69988cd .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-0e4585be-8cd3-40e1-96a3-94040f49b9c8 {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-0e4585be-8cd3-40e1-96a3-94040f49b9c8 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-0e4585be-8cd3-40e1-96a3-94040f49b9c8 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
@media (min-width: 0px) {
[id="s-7a50fcc4-895f-4d08-ab21-f51e3ce1253f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7a50fcc4-895f-4d08-ab21-f51e3ce1253f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 992px) {
[id="s-7a50fcc4-895f-4d08-ab21-f51e3ce1253f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 1200px) {
[id="s-7a50fcc4-895f-4d08-ab21-f51e3ce1253f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 0px) {
[id="s-25130911-834d-4740-8312-521da9a8f9d9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-25130911-834d-4740-8312-521da9a8f9d9"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-25130911-834d-4740-8312-521da9a8f9d9"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-25130911-834d-4740-8312-521da9a8f9d9"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-25130911-834d-4740-8312-521da9a8f9d9"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-25130911-834d-4740-8312-521da9a8f9d9"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-25130911-834d-4740-8312-521da9a8f9d9"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-9c4ed8e7-cb84-49be-ac3f-11a60ae2ea13 {
  margin-top: 0px;
margin-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-9c4ed8e7-cb84-49be-ac3f-11a60ae2ea13 {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-9c4ed8e7-cb84-49be-ac3f-11a60ae2ea13 {
  display: none;
}
#s-9c4ed8e7-cb84-49be-ac3f-11a60ae2ea13, #wrap-s-9c4ed8e7-cb84-49be-ac3f-11a60ae2ea13 { display:none !important; }}







#s-9c4ed8e7-cb84-49be-ac3f-11a60ae2ea13 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9c4ed8e7-cb84-49be-ac3f-11a60ae2ea13.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3217c1f1-489a-44c2-bd49-32034d2256c1 {
  margin-left: auto;
margin-right: auto;
max-width: 65px;
text-align: right;
}







  #s-3217c1f1-489a-44c2-bd49-32034d2256c1 img.shogun-image {
    

    
    
    
  }


#s-3217c1f1-489a-44c2-bd49-32034d2256c1 .shogun-image-content {
  
    align-items: center;
  
}

#s-6912ea1b-7472-4e17-9edd-671cb5afdead {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-6912ea1b-7472-4e17-9edd-671cb5afdead .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-9c5d9812-97cb-4cbd-b1a3-cee29bfd1df3 {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-9c5d9812-97cb-4cbd-b1a3-cee29bfd1df3 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-9c5d9812-97cb-4cbd-b1a3-cee29bfd1df3 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
@media (min-width: 0px) {
[id="s-1e4dc534-a87a-4701-be81-40fa7b2cc200"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1e4dc534-a87a-4701-be81-40fa7b2cc200"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1e4dc534-a87a-4701-be81-40fa7b2cc200"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1e4dc534-a87a-4701-be81-40fa7b2cc200"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1e4dc534-a87a-4701-be81-40fa7b2cc200"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1e4dc534-a87a-4701-be81-40fa7b2cc200"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1e4dc534-a87a-4701-be81-40fa7b2cc200"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-debdb105-add3-4cf4-afe4-d30f4d0039a4 {
  margin-top: 0px;
margin-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-debdb105-add3-4cf4-afe4-d30f4d0039a4 {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-debdb105-add3-4cf4-afe4-d30f4d0039a4 {
  display: none;
}
#s-debdb105-add3-4cf4-afe4-d30f4d0039a4, #wrap-s-debdb105-add3-4cf4-afe4-d30f4d0039a4 { display:none !important; }}







#s-debdb105-add3-4cf4-afe4-d30f4d0039a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-debdb105-add3-4cf4-afe4-d30f4d0039a4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ee26817f-e8ab-4a51-a7eb-34a73ac51079 {
  margin-left: auto;
margin-right: auto;
max-width: 65px;
text-align: right;
}







  #s-ee26817f-e8ab-4a51-a7eb-34a73ac51079 img.shogun-image {
    

    
    
    
  }


#s-ee26817f-e8ab-4a51-a7eb-34a73ac51079 .shogun-image-content {
  
    align-items: center;
  
}

#s-58221a1e-5cbe-4391-a113-fc20d29e2600 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-58221a1e-5cbe-4391-a113-fc20d29e2600 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-ba40816a-93ac-4034-81d3-0ae09fdedb7e {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-ba40816a-93ac-4034-81d3-0ae09fdedb7e .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-ba40816a-93ac-4034-81d3-0ae09fdedb7e .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
@media (min-width: 0px) {
[id="s-8653ffa9-25d7-4384-8b6b-e0872a1cd926"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8653ffa9-25d7-4384-8b6b-e0872a1cd926"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 992px) {
[id="s-8653ffa9-25d7-4384-8b6b-e0872a1cd926"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 1200px) {
[id="s-8653ffa9-25d7-4384-8b6b-e0872a1cd926"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 0px) {
[id="s-fd2a343c-2d15-4fa7-a6b9-a32772b79aff"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fd2a343c-2d15-4fa7-a6b9-a32772b79aff"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fd2a343c-2d15-4fa7-a6b9-a32772b79aff"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fd2a343c-2d15-4fa7-a6b9-a32772b79aff"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fd2a343c-2d15-4fa7-a6b9-a32772b79aff"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fd2a343c-2d15-4fa7-a6b9-a32772b79aff"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fd2a343c-2d15-4fa7-a6b9-a32772b79aff"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-28816bac-02a3-4131-a8ff-6b8492eca068 {
  margin-top: 0px;
margin-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-28816bac-02a3-4131-a8ff-6b8492eca068 {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-28816bac-02a3-4131-a8ff-6b8492eca068 {
  display: none;
}
#s-28816bac-02a3-4131-a8ff-6b8492eca068, #wrap-s-28816bac-02a3-4131-a8ff-6b8492eca068 { display:none !important; }}







#s-28816bac-02a3-4131-a8ff-6b8492eca068 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-28816bac-02a3-4131-a8ff-6b8492eca068.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5585d2d9-105b-4f57-84f1-22db2dc9e126 {
  margin-left: auto;
margin-right: auto;
max-width: 65px;
text-align: right;
}







  #s-5585d2d9-105b-4f57-84f1-22db2dc9e126 img.shogun-image {
    

    
    
    
  }


#s-5585d2d9-105b-4f57-84f1-22db2dc9e126 .shogun-image-content {
  
    align-items: center;
  
}

#s-a9772631-4d1c-4f4d-bcb2-f845f77c213f {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-a9772631-4d1c-4f4d-bcb2-f845f77c213f .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-03e624cd-b98f-40cc-9fc1-034f942520a8 {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-03e624cd-b98f-40cc-9fc1-034f942520a8 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-03e624cd-b98f-40cc-9fc1-034f942520a8 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
@media (min-width: 0px) {
[id="s-49c307b2-743f-4780-9a34-ed6efae87452"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-49c307b2-743f-4780-9a34-ed6efae87452"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-49c307b2-743f-4780-9a34-ed6efae87452"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-49c307b2-743f-4780-9a34-ed6efae87452"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-49c307b2-743f-4780-9a34-ed6efae87452"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-49c307b2-743f-4780-9a34-ed6efae87452"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-49c307b2-743f-4780-9a34-ed6efae87452"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-377ee332-7311-4063-927d-9b6c674b40a7 {
  margin-top: 0px;
margin-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-377ee332-7311-4063-927d-9b6c674b40a7 {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-377ee332-7311-4063-927d-9b6c674b40a7 {
  display: none;
}
#s-377ee332-7311-4063-927d-9b6c674b40a7, #wrap-s-377ee332-7311-4063-927d-9b6c674b40a7 { display:none !important; }}







#s-377ee332-7311-4063-927d-9b6c674b40a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-377ee332-7311-4063-927d-9b6c674b40a7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-382f2e37-cd3b-450b-9c87-33d28a461712 {
  margin-left: auto;
margin-right: auto;
max-width: 65px;
text-align: right;
}







  #s-382f2e37-cd3b-450b-9c87-33d28a461712 img.shogun-image {
    

    
    
    
  }


#s-382f2e37-cd3b-450b-9c87-33d28a461712 .shogun-image-content {
  
    align-items: center;
  
}

#s-81bc3b02-43ec-4a27-b070-fa7cd96e5a76 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-81bc3b02-43ec-4a27-b070-fa7cd96e5a76 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-4ca897f7-f523-446a-9c68-171b4865223a {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-4ca897f7-f523-446a-9c68-171b4865223a .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-4ca897f7-f523-446a-9c68-171b4865223a .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
@media (min-width: 0px) {
[id="s-52f11d96-3401-4006-90e2-1a27d7afde28"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-52f11d96-3401-4006-90e2-1a27d7afde28"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 992px) {
[id="s-52f11d96-3401-4006-90e2-1a27d7afde28"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 1200px) {
[id="s-52f11d96-3401-4006-90e2-1a27d7afde28"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 27.5px);
}

}

@media (min-width: 0px) {
[id="s-422e6df9-caa6-48a7-8a52-ad38a3a5110f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-422e6df9-caa6-48a7-8a52-ad38a3a5110f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-422e6df9-caa6-48a7-8a52-ad38a3a5110f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-422e6df9-caa6-48a7-8a52-ad38a3a5110f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-422e6df9-caa6-48a7-8a52-ad38a3a5110f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-422e6df9-caa6-48a7-8a52-ad38a3a5110f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-422e6df9-caa6-48a7-8a52-ad38a3a5110f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-e141de78-33e0-4ea2-ba41-e2c96121cf61 {
  margin-top: 0px;
margin-bottom: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-e141de78-33e0-4ea2-ba41-e2c96121cf61 {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-e141de78-33e0-4ea2-ba41-e2c96121cf61 {
  display: none;
}
#s-e141de78-33e0-4ea2-ba41-e2c96121cf61, #wrap-s-e141de78-33e0-4ea2-ba41-e2c96121cf61 { display:none !important; }}







#s-e141de78-33e0-4ea2-ba41-e2c96121cf61 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e141de78-33e0-4ea2-ba41-e2c96121cf61.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5b516f39-2fd2-4d2d-a337-614e9316253b {
  margin-left: auto;
margin-right: auto;
max-width: 65px;
text-align: right;
}







  #s-5b516f39-2fd2-4d2d-a337-614e9316253b img.shogun-image {
    

    
    
    
  }


#s-5b516f39-2fd2-4d2d-a337-614e9316253b .shogun-image-content {
  
    align-items: center;
  
}

#s-1afbecdd-867d-4671-bae2-261cb4e0a888 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-1afbecdd-867d-4671-bae2-261cb4e0a888 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-3f6da828-f321-45b2-ad0e-a331081d5cc5 {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-3f6da828-f321-45b2-ad0e-a331081d5cc5 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-3f6da828-f321-45b2-ad0e-a331081d5cc5 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
#s-36181daa-2ca1-487d-ac12-c4fe96485ca7 {
  margin-top: 0%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-top: 120px;
padding-bottom: 120px;
min-height: 50px;
max-width: 1200px;
}
@media (min-width: 1200px){#s-36181daa-2ca1-487d-ac12-c4fe96485ca7 {
  display: none;
}
#s-36181daa-2ca1-487d-ac12-c4fe96485ca7, #wrap-s-36181daa-2ca1-487d-ac12-c4fe96485ca7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-36181daa-2ca1-487d-ac12-c4fe96485ca7 {
  display: none;
}
#s-36181daa-2ca1-487d-ac12-c4fe96485ca7, #wrap-s-36181daa-2ca1-487d-ac12-c4fe96485ca7 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-36181daa-2ca1-487d-ac12-c4fe96485ca7 {
  display: none;
}
#s-36181daa-2ca1-487d-ac12-c4fe96485ca7, #wrap-s-36181daa-2ca1-487d-ac12-c4fe96485ca7 { display:none !important; }}@media (max-width: 767px){#s-36181daa-2ca1-487d-ac12-c4fe96485ca7 {
  padding-top: 50px;
padding-left: 7%;
padding-bottom: 50px;
padding-right: 7%;
display: none;
}
#s-36181daa-2ca1-487d-ac12-c4fe96485ca7, #wrap-s-36181daa-2ca1-487d-ac12-c4fe96485ca7 { display:none !important; }}







#s-36181daa-2ca1-487d-ac12-c4fe96485ca7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-36181daa-2ca1-487d-ac12-c4fe96485ca7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3cbb1450-622e-4a25-ac12-a020aded1464 {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1000px;
text-align: center;
}
@media (min-width: 1200px){#s-3cbb1450-622e-4a25-ac12-a020aded1464 {
  margin-bottom: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3cbb1450-622e-4a25-ac12-a020aded1464 {
  margin-bottom: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-3cbb1450-622e-4a25-ac12-a020aded1464 {
  margin-bottom: 30px;
}
}@media (max-width: 767px){#s-3cbb1450-622e-4a25-ac12-a020aded1464 {
  margin-bottom: 30px;
}
}
#s-3cbb1450-622e-4a25-ac12-a020aded1464 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 38px;
  line-height: 0.85em;
  
  text-align: center;
}


@media (min-width: 1200px){#s-3cbb1450-622e-4a25-ac12-a020aded1464 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 90px;
  line-height: 0.85em;
  
  text-align: center;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-3cbb1450-622e-4a25-ac12-a020aded1464 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 80px;
  line-height: 0.85em;
  
  text-align: center;
}


}@media (max-width: 767px){#s-3cbb1450-622e-4a25-ac12-a020aded1464 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 45px;
  line-height: 1em;
  
  text-align: center;
}


}
@media (max-width: 767px){#s-9290e87e-9cfb-42a3-865e-2f68954f40c7 {
  display: none;
}
#s-9290e87e-9cfb-42a3-865e-2f68954f40c7, #wrap-s-9290e87e-9cfb-42a3-865e-2f68954f40c7 { display:none !important; }}
#s-f6088ccb-1623-498c-bde1-94bb7be06acc {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 650px;
text-align: center;
}
@media (max-width: 767px){#s-f6088ccb-1623-498c-bde1-94bb7be06acc {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-f6088ccb-1623-498c-bde1-94bb7be06acc .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: center;
}


@media (max-width: 767px){#s-f6088ccb-1623-498c-bde1-94bb7be06acc .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: center;
}


}
#s-a9beef56-9bf9-49d2-a215-a6333ba9e914 {
  margin-top: 0%;
}

@media (min-width: 0px) {
[id="s-a9beef56-9bf9-49d2-a215-a6333ba9e914"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a9beef56-9bf9-49d2-a215-a6333ba9e914"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a9beef56-9bf9-49d2-a215-a6333ba9e914"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a9beef56-9bf9-49d2-a215-a6333ba9e914"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a9beef56-9bf9-49d2-a215-a6333ba9e914"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a9beef56-9bf9-49d2-a215-a6333ba9e914"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a9beef56-9bf9-49d2-a215-a6333ba9e914"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-ce6972ae-0c63-47c5-a9fb-e4eada10e842 {
  margin-top: 15px;
min-height: 50px;
}
@media (max-width: 767px){#s-ce6972ae-0c63-47c5-a9fb-e4eada10e842 {
  display: none;
}
#s-ce6972ae-0c63-47c5-a9fb-e4eada10e842, #wrap-s-ce6972ae-0c63-47c5-a9fb-e4eada10e842 { display:none !important; }}







#s-ce6972ae-0c63-47c5-a9fb-e4eada10e842 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ce6972ae-0c63-47c5-a9fb-e4eada10e842.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c2d68cf7-7d67-46dd-b590-8802158d17bd {
  margin-left: auto;
margin-right: auto;
max-width: 50px;
text-align: center;
}







  #s-c2d68cf7-7d67-46dd-b590-8802158d17bd img.shogun-image {
    

    
    
    
  }


#s-c2d68cf7-7d67-46dd-b590-8802158d17bd .shogun-image-content {
  
    align-items: center;
  
}

#s-e4371b8d-5e5a-4c29-8992-a904876f9fae {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1000px;
text-align: left;
}
@media (min-width: 1200px){#s-e4371b8d-5e5a-4c29-8992-a904876f9fae {
  margin-left: 0px;
margin-right: 0px;
}
}
#s-e4371b8d-5e5a-4c29-8992-a904876f9fae .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (max-width: 767px){#s-e4371b8d-5e5a-4c29-8992-a904876f9fae .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-42ab5f02-4f11-4d16-a1da-cb590c3236ca {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1000px;
text-align: left;
}
@media (min-width: 1200px){#s-42ab5f02-4f11-4d16-a1da-cb590c3236ca {
  margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-42ab5f02-4f11-4d16-a1da-cb590c3236ca {
  margin-bottom: 0px;
}
}
#s-42ab5f02-4f11-4d16-a1da-cb590c3236ca .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-42ab5f02-4f11-4d16-a1da-cb590c3236ca .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}@media (max-width: 767px){#s-42ab5f02-4f11-4d16-a1da-cb590c3236ca .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-56b71a3e-8b8f-42d2-b6b9-2cd41c57bd29 {
  margin-top: 0%;
}

@media (min-width: 0px) {
[id="s-56b71a3e-8b8f-42d2-b6b9-2cd41c57bd29"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-56b71a3e-8b8f-42d2-b6b9-2cd41c57bd29"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-56b71a3e-8b8f-42d2-b6b9-2cd41c57bd29"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-56b71a3e-8b8f-42d2-b6b9-2cd41c57bd29"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-56b71a3e-8b8f-42d2-b6b9-2cd41c57bd29"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-56b71a3e-8b8f-42d2-b6b9-2cd41c57bd29"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-56b71a3e-8b8f-42d2-b6b9-2cd41c57bd29"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-f8d4c214-2234-4d39-ad6b-7434dd9fad32 {
  margin-top: 15px;
min-height: 50px;
}
@media (max-width: 767px){#s-f8d4c214-2234-4d39-ad6b-7434dd9fad32 {
  display: none;
}
#s-f8d4c214-2234-4d39-ad6b-7434dd9fad32, #wrap-s-f8d4c214-2234-4d39-ad6b-7434dd9fad32 { display:none !important; }}







#s-f8d4c214-2234-4d39-ad6b-7434dd9fad32 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f8d4c214-2234-4d39-ad6b-7434dd9fad32.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-86a4c507-2a48-4321-89c4-853fbd695ba2 {
  margin-left: auto;
margin-right: auto;
max-width: 50px;
text-align: center;
}







  #s-86a4c507-2a48-4321-89c4-853fbd695ba2 img.shogun-image {
    

    
    
    
  }


#s-86a4c507-2a48-4321-89c4-853fbd695ba2 .shogun-image-content {
  
    align-items: center;
  
}

#s-1af71ff7-c05f-45e0-bfb1-6bd1c67d7e0c {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1000px;
text-align: left;
}
@media (min-width: 1200px){#s-1af71ff7-c05f-45e0-bfb1-6bd1c67d7e0c {
  margin-left: 0px;
margin-right: 0px;
}
}
#s-1af71ff7-c05f-45e0-bfb1-6bd1c67d7e0c .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (max-width: 767px){#s-1af71ff7-c05f-45e0-bfb1-6bd1c67d7e0c .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-ee745d36-f69c-4dc6-bc66-5bef18c56dfa {
  margin-bottom: 50px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1000px;
text-align: left;
}
@media (max-width: 767px){#s-ee745d36-f69c-4dc6-bc66-5bef18c56dfa {
  margin-bottom: 20px;
}
}
#s-ee745d36-f69c-4dc6-bc66-5bef18c56dfa .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (max-width: 767px){#s-ee745d36-f69c-4dc6-bc66-5bef18c56dfa .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-c410d339-0621-4bb9-9bf7-6cb2b7b46e1e {
  margin-top: 0%;
}

@media (min-width: 0px) {
[id="s-c410d339-0621-4bb9-9bf7-6cb2b7b46e1e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c410d339-0621-4bb9-9bf7-6cb2b7b46e1e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-c410d339-0621-4bb9-9bf7-6cb2b7b46e1e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c410d339-0621-4bb9-9bf7-6cb2b7b46e1e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-c410d339-0621-4bb9-9bf7-6cb2b7b46e1e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c410d339-0621-4bb9-9bf7-6cb2b7b46e1e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-c410d339-0621-4bb9-9bf7-6cb2b7b46e1e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-089d9a6c-db65-4262-b53e-a8d0e6017611 {
  margin-top: 15px;
min-height: 50px;
}
@media (max-width: 767px){#s-089d9a6c-db65-4262-b53e-a8d0e6017611 {
  display: none;
}
#s-089d9a6c-db65-4262-b53e-a8d0e6017611, #wrap-s-089d9a6c-db65-4262-b53e-a8d0e6017611 { display:none !important; }}







#s-089d9a6c-db65-4262-b53e-a8d0e6017611 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-089d9a6c-db65-4262-b53e-a8d0e6017611.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d0f78006-dc17-4ae9-8249-032df25a273a {
  margin-left: auto;
margin-right: auto;
max-width: 50px;
text-align: center;
}







  #s-d0f78006-dc17-4ae9-8249-032df25a273a img.shogun-image {
    

    
    
    
  }


#s-d0f78006-dc17-4ae9-8249-032df25a273a .shogun-image-content {
  
    align-items: center;
  
}

#s-10dc0ffc-aec2-42a7-a924-7eb3edbce3d5 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1000px;
text-align: left;
}
@media (min-width: 1200px){#s-10dc0ffc-aec2-42a7-a924-7eb3edbce3d5 {
  margin-left: 0px;
margin-right: 0px;
}
}
#s-10dc0ffc-aec2-42a7-a924-7eb3edbce3d5 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (max-width: 767px){#s-10dc0ffc-aec2-42a7-a924-7eb3edbce3d5 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-5fa11b6a-8081-4f73-bcfd-65b03efd0778 {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1000px;
text-align: left;
}
@media (min-width: 1200px){#s-5fa11b6a-8081-4f73-bcfd-65b03efd0778 {
  margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-5fa11b6a-8081-4f73-bcfd-65b03efd0778 {
  margin-bottom: 20px;
}
}
#s-5fa11b6a-8081-4f73-bcfd-65b03efd0778 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-5fa11b6a-8081-4f73-bcfd-65b03efd0778 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}@media (max-width: 767px){#s-5fa11b6a-8081-4f73-bcfd-65b03efd0778 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-f2802c35-cda8-40fa-85d2-3e7dd6b8e86d {
  margin-top: 0%;
}

@media (min-width: 0px) {
[id="s-f2802c35-cda8-40fa-85d2-3e7dd6b8e86d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f2802c35-cda8-40fa-85d2-3e7dd6b8e86d"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f2802c35-cda8-40fa-85d2-3e7dd6b8e86d"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f2802c35-cda8-40fa-85d2-3e7dd6b8e86d"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f2802c35-cda8-40fa-85d2-3e7dd6b8e86d"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f2802c35-cda8-40fa-85d2-3e7dd6b8e86d"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f2802c35-cda8-40fa-85d2-3e7dd6b8e86d"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-a4bba077-9f8e-4a16-944f-b8f29320fb20 {
  margin-top: 15px;
min-height: 50px;
}
@media (max-width: 767px){#s-a4bba077-9f8e-4a16-944f-b8f29320fb20 {
  display: none;
}
#s-a4bba077-9f8e-4a16-944f-b8f29320fb20, #wrap-s-a4bba077-9f8e-4a16-944f-b8f29320fb20 { display:none !important; }}







#s-a4bba077-9f8e-4a16-944f-b8f29320fb20 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a4bba077-9f8e-4a16-944f-b8f29320fb20.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d2baec8e-443c-491f-9049-3bff107d33ac {
  margin-left: auto;
margin-right: auto;
max-width: 50px;
text-align: center;
}







  #s-d2baec8e-443c-491f-9049-3bff107d33ac img.shogun-image {
    

    
    
    
  }


#s-d2baec8e-443c-491f-9049-3bff107d33ac .shogun-image-content {
  
    align-items: center;
  
}

#s-f4502da6-5e1e-49b1-bf7a-42caa9791100 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1000px;
text-align: left;
}
@media (min-width: 1200px){#s-f4502da6-5e1e-49b1-bf7a-42caa9791100 {
  margin-left: 0px;
margin-right: 0px;
}
}
#s-f4502da6-5e1e-49b1-bf7a-42caa9791100 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (max-width: 767px){#s-f4502da6-5e1e-49b1-bf7a-42caa9791100 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-f999b579-5717-4e0f-a632-46eb15d58160 {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1000px;
text-align: left;
}
@media (min-width: 1200px){#s-f999b579-5717-4e0f-a632-46eb15d58160 {
  margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-f999b579-5717-4e0f-a632-46eb15d58160 {
  margin-bottom: 20px;
}
}
#s-f999b579-5717-4e0f-a632-46eb15d58160 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (min-width: 1200px){#s-f999b579-5717-4e0f-a632-46eb15d58160 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-fbe535c5-9fdc-47a7-a321-3999416b4788 {
  margin-top: 0%;
}

@media (min-width: 0px) {
[id="s-fbe535c5-9fdc-47a7-a321-3999416b4788"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fbe535c5-9fdc-47a7-a321-3999416b4788"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-fbe535c5-9fdc-47a7-a321-3999416b4788"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fbe535c5-9fdc-47a7-a321-3999416b4788"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-fbe535c5-9fdc-47a7-a321-3999416b4788"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fbe535c5-9fdc-47a7-a321-3999416b4788"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-fbe535c5-9fdc-47a7-a321-3999416b4788"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-7711a332-7807-4994-a97a-40c59d567179 {
  margin-top: 15px;
min-height: 50px;
}
@media (max-width: 767px){#s-7711a332-7807-4994-a97a-40c59d567179 {
  display: none;
}
#s-7711a332-7807-4994-a97a-40c59d567179, #wrap-s-7711a332-7807-4994-a97a-40c59d567179 { display:none !important; }}







#s-7711a332-7807-4994-a97a-40c59d567179 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7711a332-7807-4994-a97a-40c59d567179.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5b95c3da-f58f-47a4-b5ed-ae7c369ca7a4 {
  margin-left: auto;
margin-right: auto;
max-width: 50px;
text-align: center;
}







  #s-5b95c3da-f58f-47a4-b5ed-ae7c369ca7a4 img.shogun-image {
    

    
    
    
  }


#s-5b95c3da-f58f-47a4-b5ed-ae7c369ca7a4 .shogun-image-content {
  
    align-items: center;
  
}

#s-86759668-831b-4dc2-91ae-0d27b3afd6f5 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1000px;
text-align: left;
}
@media (min-width: 1200px){#s-86759668-831b-4dc2-91ae-0d27b3afd6f5 {
  margin-left: 0px;
margin-right: 0px;
}
}
#s-86759668-831b-4dc2-91ae-0d27b3afd6f5 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (max-width: 767px){#s-86759668-831b-4dc2-91ae-0d27b3afd6f5 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-32303edd-d3bd-4416-bf29-26a2e99bc209 {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1000px;
text-align: left;
}
@media (min-width: 1200px){#s-32303edd-d3bd-4416-bf29-26a2e99bc209 {
  margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-32303edd-d3bd-4416-bf29-26a2e99bc209 {
  margin-bottom: 20px;
}
}
#s-32303edd-d3bd-4416-bf29-26a2e99bc209 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (min-width: 1200px){#s-32303edd-d3bd-4416-bf29-26a2e99bc209 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-9e0f6b3a-be03-43dc-bfdd-bf1e03398fc4 {
  margin-top: 0%;
}

@media (min-width: 0px) {
[id="s-9e0f6b3a-be03-43dc-bfdd-bf1e03398fc4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9e0f6b3a-be03-43dc-bfdd-bf1e03398fc4"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-9e0f6b3a-be03-43dc-bfdd-bf1e03398fc4"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9e0f6b3a-be03-43dc-bfdd-bf1e03398fc4"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-9e0f6b3a-be03-43dc-bfdd-bf1e03398fc4"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9e0f6b3a-be03-43dc-bfdd-bf1e03398fc4"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-9e0f6b3a-be03-43dc-bfdd-bf1e03398fc4"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-42a45511-228a-417b-ab10-adbd6aedc5dd {
  margin-top: 15px;
min-height: 50px;
}
@media (max-width: 767px){#s-42a45511-228a-417b-ab10-adbd6aedc5dd {
  display: none;
}
#s-42a45511-228a-417b-ab10-adbd6aedc5dd, #wrap-s-42a45511-228a-417b-ab10-adbd6aedc5dd { display:none !important; }}







#s-42a45511-228a-417b-ab10-adbd6aedc5dd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-42a45511-228a-417b-ab10-adbd6aedc5dd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d11872db-4f50-4945-8250-666eb14fb83a {
  margin-left: auto;
margin-right: auto;
max-width: 50px;
text-align: center;
}







  #s-d11872db-4f50-4945-8250-666eb14fb83a img.shogun-image {
    

    
    
    
  }


#s-d11872db-4f50-4945-8250-666eb14fb83a .shogun-image-content {
  
    align-items: center;
  
}

#s-2f8dad39-f88f-483b-a3ed-1f7bdefc24f2 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1000px;
text-align: left;
}
@media (min-width: 1200px){#s-2f8dad39-f88f-483b-a3ed-1f7bdefc24f2 {
  margin-left: 0px;
margin-right: 0px;
}
}
#s-2f8dad39-f88f-483b-a3ed-1f7bdefc24f2 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (max-width: 767px){#s-2f8dad39-f88f-483b-a3ed-1f7bdefc24f2 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-f1be610c-7c1e-40be-ae3e-08ce3c239b0e {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1000px;
text-align: left;
}
@media (min-width: 1200px){#s-f1be610c-7c1e-40be-ae3e-08ce3c239b0e {
  margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-f1be610c-7c1e-40be-ae3e-08ce3c239b0e {
  margin-bottom: 20px;
}
}
#s-f1be610c-7c1e-40be-ae3e-08ce3c239b0e .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (min-width: 1200px){#s-f1be610c-7c1e-40be-ae3e-08ce3c239b0e .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-6df883cb-c522-4071-897f-ed028a707b4b {
  margin-top: 0%;
}

@media (min-width: 0px) {
[id="s-6df883cb-c522-4071-897f-ed028a707b4b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6df883cb-c522-4071-897f-ed028a707b4b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-6df883cb-c522-4071-897f-ed028a707b4b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6df883cb-c522-4071-897f-ed028a707b4b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-6df883cb-c522-4071-897f-ed028a707b4b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6df883cb-c522-4071-897f-ed028a707b4b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-6df883cb-c522-4071-897f-ed028a707b4b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-fc72b46a-b093-4b73-887f-794e8396347d {
  margin-top: 15px;
min-height: 50px;
}
@media (max-width: 767px){#s-fc72b46a-b093-4b73-887f-794e8396347d {
  display: none;
}
#s-fc72b46a-b093-4b73-887f-794e8396347d, #wrap-s-fc72b46a-b093-4b73-887f-794e8396347d { display:none !important; }}







#s-fc72b46a-b093-4b73-887f-794e8396347d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fc72b46a-b093-4b73-887f-794e8396347d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1839b97a-59d7-4538-9ab4-e53be09cdc24 {
  margin-left: auto;
margin-right: auto;
max-width: 50px;
text-align: center;
}







  #s-1839b97a-59d7-4538-9ab4-e53be09cdc24 img.shogun-image {
    

    
    
    
  }


#s-1839b97a-59d7-4538-9ab4-e53be09cdc24 .shogun-image-content {
  
    align-items: center;
  
}

#s-fe55f166-a050-40f0-b78d-a84f7b24ba34 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1000px;
text-align: left;
}
@media (min-width: 1200px){#s-fe55f166-a050-40f0-b78d-a84f7b24ba34 {
  margin-left: 0px;
margin-right: 0px;
}
}
#s-fe55f166-a050-40f0-b78d-a84f7b24ba34 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (max-width: 767px){#s-fe55f166-a050-40f0-b78d-a84f7b24ba34 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-4c858e8f-974b-4530-a511-bbd1baa768ba {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1000px;
text-align: left;
}
@media (min-width: 1200px){#s-4c858e8f-974b-4530-a511-bbd1baa768ba {
  margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-4c858e8f-974b-4530-a511-bbd1baa768ba {
  margin-bottom: 20px;
}
}
#s-4c858e8f-974b-4530-a511-bbd1baa768ba .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (min-width: 1200px){#s-4c858e8f-974b-4530-a511-bbd1baa768ba .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-3e3d1bfe-fd7b-4210-a7cf-fc762a7320a5 {
  margin-top: 0%;
}

@media (min-width: 0px) {
[id="s-3e3d1bfe-fd7b-4210-a7cf-fc762a7320a5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3e3d1bfe-fd7b-4210-a7cf-fc762a7320a5"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-3e3d1bfe-fd7b-4210-a7cf-fc762a7320a5"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3e3d1bfe-fd7b-4210-a7cf-fc762a7320a5"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-3e3d1bfe-fd7b-4210-a7cf-fc762a7320a5"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3e3d1bfe-fd7b-4210-a7cf-fc762a7320a5"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-3e3d1bfe-fd7b-4210-a7cf-fc762a7320a5"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

}

#s-97ce60ec-bb2a-44e0-868c-cf09d7bad082 {
  margin-top: 15px;
min-height: 50px;
}
@media (max-width: 767px){#s-97ce60ec-bb2a-44e0-868c-cf09d7bad082 {
  display: none;
}
#s-97ce60ec-bb2a-44e0-868c-cf09d7bad082, #wrap-s-97ce60ec-bb2a-44e0-868c-cf09d7bad082 { display:none !important; }}







#s-97ce60ec-bb2a-44e0-868c-cf09d7bad082 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-97ce60ec-bb2a-44e0-868c-cf09d7bad082.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-60cacc06-c847-4fd2-9b14-5a59342850de {
  margin-left: auto;
margin-right: auto;
max-width: 50px;
text-align: center;
}







  #s-60cacc06-c847-4fd2-9b14-5a59342850de img.shogun-image {
    

    
    
    
  }


#s-60cacc06-c847-4fd2-9b14-5a59342850de .shogun-image-content {
  
    align-items: center;
  
}

#s-4e0cad5d-c35f-4b2d-90c4-92eb91015bbe {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1000px;
text-align: left;
}
@media (min-width: 1200px){#s-4e0cad5d-c35f-4b2d-90c4-92eb91015bbe {
  margin-left: 0px;
margin-right: 0px;
}
}
#s-4e0cad5d-c35f-4b2d-90c4-92eb91015bbe .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (max-width: 767px){#s-4e0cad5d-c35f-4b2d-90c4-92eb91015bbe .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Medium";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-3edbdd0d-3a2c-4457-b171-6cbe3924fad9 {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1000px;
text-align: left;
}
@media (min-width: 1200px){#s-3edbdd0d-3a2c-4457-b171-6cbe3924fad9 {
  margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-3edbdd0d-3a2c-4457-b171-6cbe3924fad9 {
  margin-bottom: 0px;
}
}
#s-3edbdd0d-3a2c-4457-b171-6cbe3924fad9 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-3edbdd0d-3a2c-4457-b171-6cbe3924fad9 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}@media (max-width: 767px){#s-3edbdd0d-3a2c-4457-b171-6cbe3924fad9 .shogun-heading-component h1 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "Futura-PT-Light";
  font-style:  normal ;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 1px;
  text-align: left;
}


}
#s-0e80fdff-8e84-49cd-88d6-471a0eaeffe9 {
  margin-bottom: 120px;
padding-top: 120px;
padding-bottom: 120px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
min-height: 50px;
background-color: rgba(249, 247, 241, 1);
}
@media (max-width: 767px){#s-0e80fdff-8e84-49cd-88d6-471a0eaeffe9 {
  padding-left: 9%;
padding-right: 9%;
display: none;
}
#s-0e80fdff-8e84-49cd-88d6-471a0eaeffe9, #wrap-s-0e80fdff-8e84-49cd-88d6-471a0eaeffe9 { display:none !important; }}







#s-0e80fdff-8e84-49cd-88d6-471a0eaeffe9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0e80fdff-8e84-49cd-88d6-471a0eaeffe9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8ae5dbd5-027b-449e-acf7-f5f26f5d95f0 {
  margin-top: 1%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-8ae5dbd5-027b-449e-acf7-f5f26f5d95f0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8ae5dbd5-027b-449e-acf7-f5f26f5d95f0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 60.0px);
}

}

@media (min-width: 992px) {
[id="s-8ae5dbd5-027b-449e-acf7-f5f26f5d95f0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 60.0px);
}

}

@media (min-width: 1200px) {
[id="s-8ae5dbd5-027b-449e-acf7-f5f26f5d95f0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 60.0px);
}

}

#s-481a1d31-a8fa-4eb8-afaf-5a6010746b4e {
  border-radius: 30px;
text-align: center;
}
@media (max-width: 767px){#s-481a1d31-a8fa-4eb8-afaf-5a6010746b4e {
  margin-top: 45px;
margin-left: -20%;
margin-right: 0px;
}
}






  #s-481a1d31-a8fa-4eb8-afaf-5a6010746b4e img.shogun-image {
    

    
    
    
  }


#s-481a1d31-a8fa-4eb8-afaf-5a6010746b4e .shogun-image-content {
  
    align-items: center;
  
}

#s-ca48112c-3126-4176-b2c0-50d9746438f9 {
  margin-top: 50px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-ca48112c-3126-4176-b2c0-50d9746438f9 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-28fc7ee2-bfdc-4d9e-a9e0-2bd6652177eb {
  margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-28fc7ee2-bfdc-4d9e-a9e0-2bd6652177eb .shogun-heading-component h1 {
  color: rgba(80, 44, 30, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti-Ultra-Thin";
  font-style:  normal ;
  font-size: 48px;
  line-height: 1em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-28fc7ee2-bfdc-4d9e-a9e0-2bd6652177eb .shogun-heading-component h1 {
  color: rgba(80, 44, 30, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti-Ultra-Thin";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
#s-c8ad7c42-4d10-4bdc-8264-58830f499bc8 {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-c8ad7c42-4d10-4bdc-8264-58830f499bc8 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-c8ad7c42-4d10-4bdc-8264-58830f499bc8 .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: center;
}


}
#s-55c6be94-b245-4874-9eb7-b98718d7e304 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
padding-top: 0px;
padding-bottom: 0px;
min-height: 650px;
background-position: center center;
}
@media (min-width: 1200px){#s-55c6be94-b245-4874-9eb7-b98718d7e304 {
  display: none;
}
#s-55c6be94-b245-4874-9eb7-b98718d7e304, #wrap-s-55c6be94-b245-4874-9eb7-b98718d7e304 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-55c6be94-b245-4874-9eb7-b98718d7e304 {
  display: none;
}
#s-55c6be94-b245-4874-9eb7-b98718d7e304, #wrap-s-55c6be94-b245-4874-9eb7-b98718d7e304 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-55c6be94-b245-4874-9eb7-b98718d7e304 {
  display: none;
}
#s-55c6be94-b245-4874-9eb7-b98718d7e304, #wrap-s-55c6be94-b245-4874-9eb7-b98718d7e304 { display:none !important; }}@media (max-width: 767px){#s-55c6be94-b245-4874-9eb7-b98718d7e304 {
  min-height: 0px;
}
}







#s-55c6be94-b245-4874-9eb7-b98718d7e304 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-55c6be94-b245-4874-9eb7-b98718d7e304.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-b5e72169-4085-41d0-a59b-9bf8df280806 {
  margin-top: -30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(24, 23, 23, 1);
border-style: solid;
border-radius: 30px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-b5e72169-4085-41d0-a59b-9bf8df280806 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b5e72169-4085-41d0-a59b-9bf8df280806.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-d2d1989f-bf59-4145-932c-92f6add42034 {
  margin-top: 100px;
margin-left: auto;
margin-bottom: 100px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
max-width: 1200px;
}
@media (max-width: 767px){#s-d2d1989f-bf59-4145-932c-92f6add42034 {
  padding-left: 45px;
padding-right: 45px;
}
}







#s-d2d1989f-bf59-4145-932c-92f6add42034 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d2d1989f-bf59-4145-932c-92f6add42034.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3cb0ec85-7d4a-45bc-a558-50f1b10de614 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
max-width: 75%;
text-align: left;
}
@media (max-width: 767px){#s-3cb0ec85-7d4a-45bc-a558-50f1b10de614 {
  margin-bottom: 20px;
}
}
#s-3cb0ec85-7d4a-45bc-a558-50f1b10de614 .shogun-heading-component h1 {
  color: rgba(168, 130, 117, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.2em;
  letter-spacing: 0.48px;
  text-align: left;
}



#s-ae14cefa-54f9-4f21-8e08-7c0f1f4e5608 {
  margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 575px;
text-align: left;
}
@media (max-width: 767px){#s-ae14cefa-54f9-4f21-8e08-7c0f1f4e5608 {
  padding-top: 0px;
padding-bottom: 0px;
max-width: 250px;
}
}
#s-ae14cefa-54f9-4f21-8e08-7c0f1f4e5608 .shogun-heading-component h2 {
  color: rgba(34, 34, 34, 1);
  font-weight:  normal ;
  font-family: "GT-Eesti";
  font-style:  normal ;
  font-size: 45px;
  line-height: 1em;
  
  text-align: left;
}



#s-856d5c5d-a502-4951-b4bf-45aaabe8264f {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-856d5c5d-a502-4951-b4bf-45aaabe8264f .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


@media (max-width: 767px){#s-856d5c5d-a502-4951-b4bf-45aaabe8264f .shogun-heading-component h1 {
  color: rgba(48, 38, 29, 1);
  font-weight:  normal ;
  font-family: "Futura PT Book";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0.25px;
  text-align: left;
}


}
#s-88c78608-df0b-4bc2-9422-2a579a34e982 {
  margin-top: 0px;
margin-bottom: -30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 30px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-88c78608-df0b-4bc2-9422-2a579a34e982 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-88c78608-df0b-4bc2-9422-2a579a34e982.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-ec1ce42c-2288-4fe9-a2be-9603aef5aa09 {
  text-align: left;
}

/*
  $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}
