.shg-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  /**
   * 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: flex;
  width: 100%;
}

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  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 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

#s-5aea5dd1-b6b8-4356-91d9-01c6e059f739 {
  min-height: 50px;
}
@media (max-width: 767px){#s-5aea5dd1-b6b8-4356-91d9-01c6e059f739 {
  display: none;
}
#s-5aea5dd1-b6b8-4356-91d9-01c6e059f739, #wrap-s-5aea5dd1-b6b8-4356-91d9-01c6e059f739 { display:none !important; }}







#s-5aea5dd1-b6b8-4356-91d9-01c6e059f739 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5aea5dd1-b6b8-4356-91d9-01c6e059f739.shg-box.shg-c {
  justify-content: center;
}

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

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

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

.shg-sld-nav-button {
  cursor: pointer;

  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  height: 100%;

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

.shg-sld-nav-button.shg-sld-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEyMDMgNTQ0cTAgMTMtMTAgMjNsLTM5MyAzOTMgMzkzIDM5M3ExMCAxMCAxMCAyM3QtMTAgMjNsLTUwIDUwcS0xMCAxMC0yMyAxMHQtMjMtMTBsLTQ2Ni00NjZxLTEwLTEwLTEwLTIzdDEwLTIzbDQ2Ni00NjZxMTAtMTAgMjMtMTB0MjMgMTBsNTAgNTBxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExNzEgOTYwcTAgMTMtMTAgMjNsLTQ2NiA0NjZxLTEwIDEwLTIzIDEwdC0yMy0xMGwtNTAtNTBxLTEwLTEwLTEwLTIzdDEwLTIzbDM5My0zOTMtMzkzLTM5M3EtMTAtMTAtMTAtMjN0MTAtMjNsNTAtNTBxMTAtMTAgMjMtMTB0MjMgMTBsNDY2IDQ2NnExMCAxMCAxMCAyM3oiLz48L3N2Zz4=);
}

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

.shg-sld-dot {
  cursor: pointer;
  display: inline-block;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  background-color: #bbbbbb;
}

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

.shg-sld-dot.shg-sld-active {
  background-color: #717171;
}

.shg-sld-fade {
  -webkit-animation-name: shg-sld-fade;
          animation-name: shg-sld-fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

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

  to {
    opacity: 1;
  }
}

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

  to {
    opacity: 1;
  }
}

#s-239140f3-47e6-4196-801a-f51d42c703e3 {
  min-height: 680px;
}
@media (min-width: 768px) and (max-width: 991px){#s-239140f3-47e6-4196-801a-f51d42c703e3 {
  display: none;
}
#s-239140f3-47e6-4196-801a-f51d42c703e3, #wrap-s-239140f3-47e6-4196-801a-f51d42c703e3 { display:none !important; }}@media (max-width: 767px){#s-239140f3-47e6-4196-801a-f51d42c703e3 {
  display: none;
}
#s-239140f3-47e6-4196-801a-f51d42c703e3, #wrap-s-239140f3-47e6-4196-801a-f51d42c703e3 { 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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  -o-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;
}
#s-a76330de-70b7-406d-995a-60ca6869b624 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-a76330de-70b7-406d-995a-60ca6869b624 {
  
}
}



  #s-a76330de-70b7-406d-995a-60ca6869b624 img.shogun-image {
    
    width: px;
  }


#s-a76330de-70b7-406d-995a-60ca6869b624 .shogun-image-content {
  
    align-items: center;
  
}

#s-b7aba280-9ef1-48ff-9d11-2a314f51c1a3 {
  background-image: url(https://i.shgcdn.com/7cfa3457-3817-4bc7-83de-2fb598395c30/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
min-height: 680px;
background-position: center center;
}








#s-b7aba280-9ef1-48ff-9d11-2a314f51c1a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b7aba280-9ef1-48ff-9d11-2a314f51c1a3.shg-box.shg-c {
  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: #000;
  text-transform: none;
  font-weight: normal;
  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-c2389f3a-eae9-45a2-b564-0a826dec15f2 {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 975px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
background-color: rgba(255, 221, 0, 1);
}
@media (min-width: 1200px){#s-c2389f3a-eae9-45a2-b564-0a826dec15f2 {
  margin-right: 1150px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c2389f3a-eae9-45a2-b564-0a826dec15f2 {
  margin-right: 1175px;
}
}
#s-c2389f3a-eae9-45a2-b564-0a826dec15f2 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 40px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}


#s-c2389f3a-eae9-45a2-b564-0a826dec15f2 .shogun-heading-component h1 a {
  color: rgba(0, 0, 0, 1);
}


#s-40324520-a0d9-4d46-8a92-4e18898f6e69 {
  margin-left: 20px;
margin-bottom: 400px;
margin-right: 1050px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
background-color: rgba(255, 221, 0, 1);
}
@media (min-width: 1200px){#s-40324520-a0d9-4d46-8a92-4e18898f6e69 {
  margin-right: 1250px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-40324520-a0d9-4d46-8a92-4e18898f6e69 {
  margin-right: 1250px;
}
}
#s-40324520-a0d9-4d46-8a92-4e18898f6e69 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}


#s-40324520-a0d9-4d46-8a92-4e18898f6e69 .shogun-heading-component h1 a {
  color: rgba(0, 0, 0, 1);
}


#s-97649cbd-f72b-4990-9487-272032fcf141 {
  margin-left: 20px;
margin-right: 1300px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
background-color: rgba(255, 221, 0, 1);
}
@media (min-width: 1200px){#s-97649cbd-f72b-4990-9487-272032fcf141 {
  margin-right: 1500px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-97649cbd-f72b-4990-9487-272032fcf141 {
  margin-right: 1500px;
}
}
#s-97649cbd-f72b-4990-9487-272032fcf141 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}


#s-97649cbd-f72b-4990-9487-272032fcf141 .shogun-heading-component h1 a {
  color: rgba(0, 0, 0, 1);
}


#s-6a1bfb50-e995-4299-b60d-d2fd114a3b2b {
  background-image: url(https://i.shgcdn.com/2b0ebf41-f646-4ab9-b308-35ad8239d163/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
min-height: 680px;
background-position: center center;
}








#s-6a1bfb50-e995-4299-b60d-d2fd114a3b2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6a1bfb50-e995-4299-b60d-d2fd114a3b2b {
  cursor: pointer;
}#s-6a1bfb50-e995-4299-b60d-d2fd114a3b2b.shg-box.shg-c {
  justify-content: center;
}

#s-bf2be5de-bbc8-410e-b3bb-03f7adc8403e {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: right;
}
@media (max-width: 767px){#s-bf2be5de-bbc8-410e-b3bb-03f7adc8403e {
  display: none;
}
#s-bf2be5de-bbc8-410e-b3bb-03f7adc8403e, #wrap-s-bf2be5de-bbc8-410e-b3bb-03f7adc8403e { display:none !important; }}
#s-bf2be5de-bbc8-410e-b3bb-03f7adc8403e .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 40px;
  line-height: ;
  letter-spacing: ;
  text-align: right;
}



#s-e2608a0b-54df-4bee-82da-68cd0c30f81d {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: right;
}
@media (max-width: 767px){#s-e2608a0b-54df-4bee-82da-68cd0c30f81d {
  display: none;
}
#s-e2608a0b-54df-4bee-82da-68cd0c30f81d, #wrap-s-e2608a0b-54df-4bee-82da-68cd0c30f81d { display:none !important; }}
#s-e2608a0b-54df-4bee-82da-68cd0c30f81d .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: right;
}



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

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

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

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

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

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

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

#s-688ee8b9-e6a1-4006-a0b5-c7dcc5b4af50 {
  background-image: url(none);
background-repeat: no-repeat;
margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: right;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-688ee8b9-e6a1-4006-a0b5-c7dcc5b4af50:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-688ee8b9-e6a1-4006-a0b5-c7dcc5b4af50:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-688ee8b9-e6a1-4006-a0b5-c7dcc5b4af50 {
  display: none;
}
#s-688ee8b9-e6a1-4006-a0b5-c7dcc5b4af50, #wrap-s-688ee8b9-e6a1-4006-a0b5-c7dcc5b4af50 { display:none !important; }}


#s-688ee8b9-e6a1-4006-a0b5-c7dcc5b4af50.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-0154c349-3588-433e-b50b-18d33f8ab9c2 {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-0154c349-3588-433e-b50b-18d33f8ab9c2 {
  
}
}@media (max-width: 767px){#s-0154c349-3588-433e-b50b-18d33f8ab9c2 {
  display: none;
}
#s-0154c349-3588-433e-b50b-18d33f8ab9c2, #wrap-s-0154c349-3588-433e-b50b-18d33f8ab9c2 { display:none !important; }}



  #s-0154c349-3588-433e-b50b-18d33f8ab9c2 img.shogun-image {
    
    width: px;
  }


#s-0154c349-3588-433e-b50b-18d33f8ab9c2 .shogun-image-content {
  
    align-items: center;
  
}

#s-106cbe08-7395-48eb-a004-9a1eb6db851f {
  min-height: 680px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-106cbe08-7395-48eb-a004-9a1eb6db851f {
  display: none;
}
#s-106cbe08-7395-48eb-a004-9a1eb6db851f, #wrap-s-106cbe08-7395-48eb-a004-9a1eb6db851f { display:none !important; }}@media (max-width: 767px){#s-106cbe08-7395-48eb-a004-9a1eb6db851f {
  display: none;
}
#s-106cbe08-7395-48eb-a004-9a1eb6db851f, #wrap-s-106cbe08-7395-48eb-a004-9a1eb6db851f { display:none !important; }}



  #s-106cbe08-7395-48eb-a004-9a1eb6db851f img.shogun-image {
    
    width: px;
  }


#s-106cbe08-7395-48eb-a004-9a1eb6db851f .shogun-image-content {
  
    align-items: center;
  
}

#s-058c8d74-197f-42b4-b40c-189a634cd425 {
  text-align: center;
}




  #s-058c8d74-197f-42b4-b40c-189a634cd425 img.shogun-image {
    
    width: px;
  }


#s-058c8d74-197f-42b4-b40c-189a634cd425 .shogun-image-content {
  
    align-items: center;
  
}

#s-51e48ace-445d-4752-b34b-7ae595092702 {
  text-align: center;
}




  #s-51e48ace-445d-4752-b34b-7ae595092702 img.shogun-image {
    
    width: px;
  }


#s-51e48ace-445d-4752-b34b-7ae595092702 .shogun-image-content {
  
    align-items: center;
  
}

#s-a225d1d0-58b5-44d1-b717-92c67a7e5032 {
  text-align: center;
}




  #s-a225d1d0-58b5-44d1-b717-92c67a7e5032 img.shogun-image {
    
    width: px;
  }


#s-a225d1d0-58b5-44d1-b717-92c67a7e5032 .shogun-image-content {
  
    align-items: center;
  
}

#s-e8daeea8-0e37-4714-b1bd-3b691a72b2e0 {
  text-align: center;
}




  #s-e8daeea8-0e37-4714-b1bd-3b691a72b2e0 img.shogun-image {
    
    width: px;
  }


#s-e8daeea8-0e37-4714-b1bd-3b691a72b2e0 .shogun-image-content {
  
    align-items: center;
  
}

#s-578abc03-29bb-48ae-80c9-42742c87b850 {
  text-align: center;
}




  #s-578abc03-29bb-48ae-80c9-42742c87b850 img.shogun-image {
    
    width: px;
  }


#s-578abc03-29bb-48ae-80c9-42742c87b850 .shogun-image-content {
  
    align-items: center;
  
}

#s-045ab2a2-7b4c-4f75-95ce-f760773b0b5d {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-045ab2a2-7b4c-4f75-95ce-f760773b0b5d {
  display: none;
}
#s-045ab2a2-7b4c-4f75-95ce-f760773b0b5d, #wrap-s-045ab2a2-7b4c-4f75-95ce-f760773b0b5d { display:none !important; }}@media (max-width: 767px){#s-045ab2a2-7b4c-4f75-95ce-f760773b0b5d {
  display: none;
}
#s-045ab2a2-7b4c-4f75-95ce-f760773b0b5d, #wrap-s-045ab2a2-7b4c-4f75-95ce-f760773b0b5d { display:none !important; }}



  #s-045ab2a2-7b4c-4f75-95ce-f760773b0b5d img.shogun-image {
    
    width: px;
  }


#s-045ab2a2-7b4c-4f75-95ce-f760773b0b5d .shogun-image-content {
  
    align-items: center;
  
}

#s-8c02bd92-3da7-4f8d-bf05-4958220f63dd {
  background-image: url(https://i.shgcdn.com/af57dbb3-ca53-40a7-a674-63ddc84b5db6/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
min-height: 680px;
background-position: center center;
}
@media (max-width: 767px){#s-8c02bd92-3da7-4f8d-bf05-4958220f63dd {
  display: none;
}
#s-8c02bd92-3da7-4f8d-bf05-4958220f63dd, #wrap-s-8c02bd92-3da7-4f8d-bf05-4958220f63dd { display:none !important; }}







#s-8c02bd92-3da7-4f8d-bf05-4958220f63dd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c02bd92-3da7-4f8d-bf05-4958220f63dd {
  cursor: pointer;
}#s-8c02bd92-3da7-4f8d-bf05-4958220f63dd.shg-box.shg-c {
  justify-content: center;
}

#s-e901ce7e-722d-4cd5-9e6f-5f88d159ac50 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-e901ce7e-722d-4cd5-9e6f-5f88d159ac50 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 40px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-f54ff1e6-6022-414f-a200-e2fedc1980e4 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f54ff1e6-6022-414f-a200-e2fedc1980e4 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-b83d8e62-a920-4a92-9044-e81f3b5cc223 {
  background-image: url(none);
background-repeat: no-repeat;
margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: left;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-b83d8e62-a920-4a92-9044-e81f3b5cc223:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b83d8e62-a920-4a92-9044-e81f3b5cc223:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b83d8e62-a920-4a92-9044-e81f3b5cc223-btn-wrapper {
    text-align: left;
  }


#s-b83d8e62-a920-4a92-9044-e81f3b5cc223.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5852bbd5-6ac9-473f-a21a-800c5b8ec9d5 {
  background-image: url(https://i.shgcdn.com/85052672-7ffa-4d0d-a936-7bc4407bdf7b/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
min-height: 680px;
background-position: center center;
}








#s-5852bbd5-6ac9-473f-a21a-800c5b8ec9d5 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-5852bbd5-6ac9-473f-a21a-800c5b8ec9d5 {
  cursor: pointer;
}#s-5852bbd5-6ac9-473f-a21a-800c5b8ec9d5.shg-box.shg-c {
  justify-content: center;
}

#s-2e5c6171-0abb-459c-a239-6baf5a3f0d3d {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-2e5c6171-0abb-459c-a239-6baf5a3f0d3d {
  display: none;
}
#s-2e5c6171-0abb-459c-a239-6baf5a3f0d3d, #wrap-s-2e5c6171-0abb-459c-a239-6baf5a3f0d3d { display:none !important; }}@media (max-width: 767px){#s-2e5c6171-0abb-459c-a239-6baf5a3f0d3d {
  display: none;
}
#s-2e5c6171-0abb-459c-a239-6baf5a3f0d3d, #wrap-s-2e5c6171-0abb-459c-a239-6baf5a3f0d3d { display:none !important; }}







#s-2e5c6171-0abb-459c-a239-6baf5a3f0d3d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2e5c6171-0abb-459c-a239-6baf5a3f0d3d {
  cursor: pointer;
}#s-2e5c6171-0abb-459c-a239-6baf5a3f0d3d.shg-box.shg-c {
  justify-content: center;
}

#s-170b9149-b856-4e55-a5cf-118b2f3837a5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(12, 12, 12, 0);
}

#s-170b9149-b856-4e55-a5cf-118b2f3837a5 .shogun-heading-component h1 {
  color: rgba(121, 121, 121, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 40px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-f3a4aa8b-58d3-46b5-880f-7a55c10835e3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-f3a4aa8b-58d3-46b5-880f-7a55c10835e3 {
  display: none;
}
#s-f3a4aa8b-58d3-46b5-880f-7a55c10835e3, #wrap-s-f3a4aa8b-58d3-46b5-880f-7a55c10835e3 { display:none !important; }}@media (max-width: 767px){#s-f3a4aa8b-58d3-46b5-880f-7a55c10835e3 {
  display: none;
}
#s-f3a4aa8b-58d3-46b5-880f-7a55c10835e3, #wrap-s-f3a4aa8b-58d3-46b5-880f-7a55c10835e3 { display:none !important; }}
#s-f3a4aa8b-58d3-46b5-880f-7a55c10835e3 .shogun-heading-component h1 {
  color: rgba(121, 121, 121, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-6565f95c-f5f4-4c8f-81ea-21823f103d2b {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-6565f95c-f5f4-4c8f-81ea-21823f103d2b {
  display: none;
}
#s-6565f95c-f5f4-4c8f-81ea-21823f103d2b, #wrap-s-6565f95c-f5f4-4c8f-81ea-21823f103d2b { display:none !important; }}@media (max-width: 767px){#s-6565f95c-f5f4-4c8f-81ea-21823f103d2b {
  display: none;
}
#s-6565f95c-f5f4-4c8f-81ea-21823f103d2b, #wrap-s-6565f95c-f5f4-4c8f-81ea-21823f103d2b { display:none !important; }}







#s-6565f95c-f5f4-4c8f-81ea-21823f103d2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6565f95c-f5f4-4c8f-81ea-21823f103d2b {
  cursor: pointer;
}#s-6565f95c-f5f4-4c8f-81ea-21823f103d2b.shg-box.shg-c {
  justify-content: center;
}

#s-1852f881-a433-4141-968b-2ca812deed88 {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-1852f881-a433-4141-968b-2ca812deed88:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
hover-type: color !important;}#s-1852f881-a433-4141-968b-2ca812deed88:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-1852f881-a433-4141-968b-2ca812deed88 {
  display: none;
}
#s-1852f881-a433-4141-968b-2ca812deed88, #wrap-s-1852f881-a433-4141-968b-2ca812deed88 { display:none !important; }}@media (max-width: 767px){#s-1852f881-a433-4141-968b-2ca812deed88 {
  display: none;
}
#s-1852f881-a433-4141-968b-2ca812deed88, #wrap-s-1852f881-a433-4141-968b-2ca812deed88 { display:none !important; }}


#s-1852f881-a433-4141-968b-2ca812deed88.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-737cd3e8-172e-4e36-9003-58e4da06dc1d {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-737cd3e8-172e-4e36-9003-58e4da06dc1d {
  display: none;
}
#s-737cd3e8-172e-4e36-9003-58e4da06dc1d, #wrap-s-737cd3e8-172e-4e36-9003-58e4da06dc1d { display:none !important; }}@media (max-width: 767px){#s-737cd3e8-172e-4e36-9003-58e4da06dc1d {
  display: none;
}
#s-737cd3e8-172e-4e36-9003-58e4da06dc1d, #wrap-s-737cd3e8-172e-4e36-9003-58e4da06dc1d { display:none !important; }}







#s-737cd3e8-172e-4e36-9003-58e4da06dc1d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-737cd3e8-172e-4e36-9003-58e4da06dc1d.shg-box.shg-c {
  justify-content: center;
}

#s-9a3a4ce4-72f7-46bd-b2e5-494e1d632b61 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9a3a4ce4-72f7-46bd-b2e5-494e1d632b61 {
  display: none;
}
#s-9a3a4ce4-72f7-46bd-b2e5-494e1d632b61, #wrap-s-9a3a4ce4-72f7-46bd-b2e5-494e1d632b61 { display:none !important; }}@media (max-width: 767px){#s-9a3a4ce4-72f7-46bd-b2e5-494e1d632b61 {
  display: none;
}
#s-9a3a4ce4-72f7-46bd-b2e5-494e1d632b61, #wrap-s-9a3a4ce4-72f7-46bd-b2e5-494e1d632b61 { display:none !important; }}







#s-9a3a4ce4-72f7-46bd-b2e5-494e1d632b61 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9a3a4ce4-72f7-46bd-b2e5-494e1d632b61.shg-box.shg-c {
  justify-content: center;
}

#s-4c25faa8-a432-415b-8004-4f33185eb7be {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-4c25faa8-a432-415b-8004-4f33185eb7be {
  display: none;
}
#s-4c25faa8-a432-415b-8004-4f33185eb7be, #wrap-s-4c25faa8-a432-415b-8004-4f33185eb7be { display:none !important; }}@media (max-width: 767px){#s-4c25faa8-a432-415b-8004-4f33185eb7be {
  display: none;
}
#s-4c25faa8-a432-415b-8004-4f33185eb7be, #wrap-s-4c25faa8-a432-415b-8004-4f33185eb7be { display:none !important; }}







#s-4c25faa8-a432-415b-8004-4f33185eb7be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4c25faa8-a432-415b-8004-4f33185eb7be.shg-box.shg-c {
  justify-content: center;
}

#s-6c9a3910-a316-4a9a-ad8f-9081dcc703df {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-6c9a3910-a316-4a9a-ad8f-9081dcc703df {
  display: none;
}
#s-6c9a3910-a316-4a9a-ad8f-9081dcc703df, #wrap-s-6c9a3910-a316-4a9a-ad8f-9081dcc703df { display:none !important; }}@media (max-width: 767px){#s-6c9a3910-a316-4a9a-ad8f-9081dcc703df {
  display: none;
}
#s-6c9a3910-a316-4a9a-ad8f-9081dcc703df, #wrap-s-6c9a3910-a316-4a9a-ad8f-9081dcc703df { display:none !important; }}







#s-6c9a3910-a316-4a9a-ad8f-9081dcc703df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6c9a3910-a316-4a9a-ad8f-9081dcc703df.shg-box.shg-c {
  justify-content: center;
}

#s-6c3102c6-0ace-4c97-8105-14fa1a8cc678 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-6c3102c6-0ace-4c97-8105-14fa1a8cc678 {
  display: none;
}
#s-6c3102c6-0ace-4c97-8105-14fa1a8cc678, #wrap-s-6c3102c6-0ace-4c97-8105-14fa1a8cc678 { display:none !important; }}@media (max-width: 767px){#s-6c3102c6-0ace-4c97-8105-14fa1a8cc678 {
  display: none;
}
#s-6c3102c6-0ace-4c97-8105-14fa1a8cc678, #wrap-s-6c3102c6-0ace-4c97-8105-14fa1a8cc678 { display:none !important; }}







#s-6c3102c6-0ace-4c97-8105-14fa1a8cc678 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6c3102c6-0ace-4c97-8105-14fa1a8cc678.shg-box.shg-c {
  justify-content: center;
}

#s-b3bd15a2-dd8d-4143-b292-dc79427fe85b {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-b3bd15a2-dd8d-4143-b292-dc79427fe85b {
  display: none;
}
#s-b3bd15a2-dd8d-4143-b292-dc79427fe85b, #wrap-s-b3bd15a2-dd8d-4143-b292-dc79427fe85b { display:none !important; }}@media (max-width: 767px){#s-b3bd15a2-dd8d-4143-b292-dc79427fe85b {
  display: none;
}
#s-b3bd15a2-dd8d-4143-b292-dc79427fe85b, #wrap-s-b3bd15a2-dd8d-4143-b292-dc79427fe85b { display:none !important; }}







#s-b3bd15a2-dd8d-4143-b292-dc79427fe85b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b3bd15a2-dd8d-4143-b292-dc79427fe85b.shg-box.shg-c {
  justify-content: center;
}

#s-567512b7-79a3-4464-932f-4ef7b76926df {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-567512b7-79a3-4464-932f-4ef7b76926df {
  display: none;
}
#s-567512b7-79a3-4464-932f-4ef7b76926df, #wrap-s-567512b7-79a3-4464-932f-4ef7b76926df { display:none !important; }}@media (max-width: 767px){#s-567512b7-79a3-4464-932f-4ef7b76926df {
  display: none;
}
#s-567512b7-79a3-4464-932f-4ef7b76926df, #wrap-s-567512b7-79a3-4464-932f-4ef7b76926df { display:none !important; }}







#s-567512b7-79a3-4464-932f-4ef7b76926df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-567512b7-79a3-4464-932f-4ef7b76926df.shg-box.shg-c {
  justify-content: center;
}

#s-0908a228-b45c-423e-aab9-e91e6e85cd77 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-0908a228-b45c-423e-aab9-e91e6e85cd77 {
  display: none;
}
#s-0908a228-b45c-423e-aab9-e91e6e85cd77, #wrap-s-0908a228-b45c-423e-aab9-e91e6e85cd77 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0908a228-b45c-423e-aab9-e91e6e85cd77 {
  display: none;
}
#s-0908a228-b45c-423e-aab9-e91e6e85cd77, #wrap-s-0908a228-b45c-423e-aab9-e91e6e85cd77 { display:none !important; }}@media (max-width: 767px){#s-0908a228-b45c-423e-aab9-e91e6e85cd77 {
  display: none;
}
#s-0908a228-b45c-423e-aab9-e91e6e85cd77, #wrap-s-0908a228-b45c-423e-aab9-e91e6e85cd77 { display:none !important; }}







#s-0908a228-b45c-423e-aab9-e91e6e85cd77 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0908a228-b45c-423e-aab9-e91e6e85cd77 {
  cursor: pointer;
}#s-0908a228-b45c-423e-aab9-e91e6e85cd77.shg-box.shg-c {
  justify-content: center;
}

#s-d41b9ec0-f269-4ab6-8eca-b719a883cb8b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-d41b9ec0-f269-4ab6-8eca-b719a883cb8b {
  display: none;
}
#s-d41b9ec0-f269-4ab6-8eca-b719a883cb8b, #wrap-s-d41b9ec0-f269-4ab6-8eca-b719a883cb8b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d41b9ec0-f269-4ab6-8eca-b719a883cb8b {
  display: none;
}
#s-d41b9ec0-f269-4ab6-8eca-b719a883cb8b, #wrap-s-d41b9ec0-f269-4ab6-8eca-b719a883cb8b { display:none !important; }}@media (max-width: 767px){#s-d41b9ec0-f269-4ab6-8eca-b719a883cb8b {
  display: none;
}
#s-d41b9ec0-f269-4ab6-8eca-b719a883cb8b, #wrap-s-d41b9ec0-f269-4ab6-8eca-b719a883cb8b { display:none !important; }}
#s-d41b9ec0-f269-4ab6-8eca-b719a883cb8b .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-822d96f5-8403-4b61-88a5-a104c0107de4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-822d96f5-8403-4b61-88a5-a104c0107de4 {
  display: none;
}
#s-822d96f5-8403-4b61-88a5-a104c0107de4, #wrap-s-822d96f5-8403-4b61-88a5-a104c0107de4 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-822d96f5-8403-4b61-88a5-a104c0107de4 {
  display: none;
}
#s-822d96f5-8403-4b61-88a5-a104c0107de4, #wrap-s-822d96f5-8403-4b61-88a5-a104c0107de4 { display:none !important; }}@media (max-width: 767px){#s-822d96f5-8403-4b61-88a5-a104c0107de4 {
  display: none;
}
#s-822d96f5-8403-4b61-88a5-a104c0107de4, #wrap-s-822d96f5-8403-4b61-88a5-a104c0107de4 { display:none !important; }}
#s-822d96f5-8403-4b61-88a5-a104c0107de4 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-fc6f4be3-9d0d-4e8e-a567-2a5743f9e591 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-fc6f4be3-9d0d-4e8e-a567-2a5743f9e591 {
  display: none;
}
#s-fc6f4be3-9d0d-4e8e-a567-2a5743f9e591, #wrap-s-fc6f4be3-9d0d-4e8e-a567-2a5743f9e591 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fc6f4be3-9d0d-4e8e-a567-2a5743f9e591 {
  display: none;
}
#s-fc6f4be3-9d0d-4e8e-a567-2a5743f9e591, #wrap-s-fc6f4be3-9d0d-4e8e-a567-2a5743f9e591 { display:none !important; }}@media (max-width: 767px){#s-fc6f4be3-9d0d-4e8e-a567-2a5743f9e591 {
  display: none;
}
#s-fc6f4be3-9d0d-4e8e-a567-2a5743f9e591, #wrap-s-fc6f4be3-9d0d-4e8e-a567-2a5743f9e591 { display:none !important; }}







#s-fc6f4be3-9d0d-4e8e-a567-2a5743f9e591 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fc6f4be3-9d0d-4e8e-a567-2a5743f9e591 {
  cursor: pointer;
}#s-fc6f4be3-9d0d-4e8e-a567-2a5743f9e591.shg-box.shg-c {
  justify-content: center;
}

#s-e82ec949-0c05-4825-a2c4-c1b2a773f1a4 {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-e82ec949-0c05-4825-a2c4-c1b2a773f1a4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e82ec949-0c05-4825-a2c4-c1b2a773f1a4:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-e82ec949-0c05-4825-a2c4-c1b2a773f1a4 {
  display: none;
}
#s-e82ec949-0c05-4825-a2c4-c1b2a773f1a4, #wrap-s-e82ec949-0c05-4825-a2c4-c1b2a773f1a4 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e82ec949-0c05-4825-a2c4-c1b2a773f1a4 {
  display: none;
}
#s-e82ec949-0c05-4825-a2c4-c1b2a773f1a4, #wrap-s-e82ec949-0c05-4825-a2c4-c1b2a773f1a4 { display:none !important; }}@media (max-width: 767px){#s-e82ec949-0c05-4825-a2c4-c1b2a773f1a4 {
  display: none;
}
#s-e82ec949-0c05-4825-a2c4-c1b2a773f1a4, #wrap-s-e82ec949-0c05-4825-a2c4-c1b2a773f1a4 { display:none !important; }}


#s-e82ec949-0c05-4825-a2c4-c1b2a773f1a4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-688fa22b-c7c1-44f6-a422-5e4062a46ad4 {
  background-image: url(https://i.shgcdn.com/4157b3ad-3b89-4f66-b0f1-1c63417e338b/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
min-height: 680px;
background-position: center center;
}
@media (max-width: 767px){#s-688fa22b-c7c1-44f6-a422-5e4062a46ad4 {
  display: none;
}
#s-688fa22b-c7c1-44f6-a422-5e4062a46ad4, #wrap-s-688fa22b-c7c1-44f6-a422-5e4062a46ad4 { display:none !important; }}







#s-688fa22b-c7c1-44f6-a422-5e4062a46ad4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-688fa22b-c7c1-44f6-a422-5e4062a46ad4 {
  cursor: pointer;
}#s-688fa22b-c7c1-44f6-a422-5e4062a46ad4.shg-box.shg-c {
  justify-content: center;
}

#s-5972a646-e74d-444e-a961-61d7fe107ca5 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: right;
}
@media (min-width: 768px) and (max-width: 991px){#s-5972a646-e74d-444e-a961-61d7fe107ca5 {
  display: none;
}
#s-5972a646-e74d-444e-a961-61d7fe107ca5, #wrap-s-5972a646-e74d-444e-a961-61d7fe107ca5 { display:none !important; }}@media (max-width: 767px){#s-5972a646-e74d-444e-a961-61d7fe107ca5 {
  display: none;
}
#s-5972a646-e74d-444e-a961-61d7fe107ca5, #wrap-s-5972a646-e74d-444e-a961-61d7fe107ca5 { display:none !important; }}
#s-5972a646-e74d-444e-a961-61d7fe107ca5 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 40px;
  line-height: ;
  letter-spacing: ;
  text-align: right;
}


#s-5972a646-e74d-444e-a961-61d7fe107ca5 .shogun-heading-component h1 a {
  color: rgba(255, 255, 255, 1);
}


#s-12990470-bacf-42be-b56c-8b4a0f817731 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: right;
}
@media (min-width: 768px) and (max-width: 991px){#s-12990470-bacf-42be-b56c-8b4a0f817731 {
  display: none;
}
#s-12990470-bacf-42be-b56c-8b4a0f817731, #wrap-s-12990470-bacf-42be-b56c-8b4a0f817731 { display:none !important; }}@media (max-width: 767px){#s-12990470-bacf-42be-b56c-8b4a0f817731 {
  display: none;
}
#s-12990470-bacf-42be-b56c-8b4a0f817731, #wrap-s-12990470-bacf-42be-b56c-8b4a0f817731 { display:none !important; }}
#s-12990470-bacf-42be-b56c-8b4a0f817731 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: right;
}


#s-12990470-bacf-42be-b56c-8b4a0f817731 .shogun-heading-component h1 a {
  color: rgba(255, 255, 255, 1);
}


#s-f90cd0c1-6ade-427b-af32-3c277c980e3c {
  margin-left: 20px;
margin-right: 20px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f90cd0c1-6ade-427b-af32-3c277c980e3c {
  display: none;
}
#s-f90cd0c1-6ade-427b-af32-3c277c980e3c, #wrap-s-f90cd0c1-6ade-427b-af32-3c277c980e3c { display:none !important; }}@media (max-width: 767px){#s-f90cd0c1-6ade-427b-af32-3c277c980e3c {
  display: none;
}
#s-f90cd0c1-6ade-427b-af32-3c277c980e3c, #wrap-s-f90cd0c1-6ade-427b-af32-3c277c980e3c { display:none !important; }}







#s-f90cd0c1-6ade-427b-af32-3c277c980e3c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f90cd0c1-6ade-427b-af32-3c277c980e3c {
  cursor: pointer;
}#s-f90cd0c1-6ade-427b-af32-3c277c980e3c.shg-box.shg-c {
  justify-content: center;
}

#s-d8b10c56-70fa-47d8-b975-911f4d4d32f2 {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: right;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-d8b10c56-70fa-47d8-b975-911f4d4d32f2:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
hover-type: color !important;}#s-d8b10c56-70fa-47d8-b975-911f4d4d32f2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d8b10c56-70fa-47d8-b975-911f4d4d32f2-btn-wrapper {
    text-align: right;
  }


#s-d8b10c56-70fa-47d8-b975-911f4d4d32f2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-8e05983f-942e-4e1c-948b-bedec3544aae {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-8e05983f-942e-4e1c-948b-bedec3544aae {
  display: none;
}
#s-8e05983f-942e-4e1c-948b-bedec3544aae, #wrap-s-8e05983f-942e-4e1c-948b-bedec3544aae { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8e05983f-942e-4e1c-948b-bedec3544aae {
  display: none;
}
#s-8e05983f-942e-4e1c-948b-bedec3544aae, #wrap-s-8e05983f-942e-4e1c-948b-bedec3544aae { display:none !important; }}@media (max-width: 767px){#s-8e05983f-942e-4e1c-948b-bedec3544aae {
  display: none;
}
#s-8e05983f-942e-4e1c-948b-bedec3544aae, #wrap-s-8e05983f-942e-4e1c-948b-bedec3544aae { display:none !important; }}
#s-8e05983f-942e-4e1c-948b-bedec3544aae .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-3f443cb4-12e7-49a7-978a-5e148697341f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-3f443cb4-12e7-49a7-978a-5e148697341f {
  display: none;
}
#s-3f443cb4-12e7-49a7-978a-5e148697341f, #wrap-s-3f443cb4-12e7-49a7-978a-5e148697341f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3f443cb4-12e7-49a7-978a-5e148697341f {
  display: none;
}
#s-3f443cb4-12e7-49a7-978a-5e148697341f, #wrap-s-3f443cb4-12e7-49a7-978a-5e148697341f { display:none !important; }}@media (max-width: 767px){#s-3f443cb4-12e7-49a7-978a-5e148697341f {
  display: none;
}
#s-3f443cb4-12e7-49a7-978a-5e148697341f, #wrap-s-3f443cb4-12e7-49a7-978a-5e148697341f { display:none !important; }}
#s-3f443cb4-12e7-49a7-978a-5e148697341f .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


#s-3f443cb4-12e7-49a7-978a-5e148697341f .shogun-heading-component h1 a {
  color: rgba(255, 255, 255, 1);
}


#s-29d23305-3da8-42cf-8b45-8c6458113c7d {
  min-height: 50px;
}
@media (min-width: 1200px){#s-29d23305-3da8-42cf-8b45-8c6458113c7d {
  display: none;
}
#s-29d23305-3da8-42cf-8b45-8c6458113c7d, #wrap-s-29d23305-3da8-42cf-8b45-8c6458113c7d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-29d23305-3da8-42cf-8b45-8c6458113c7d {
  display: none;
}
#s-29d23305-3da8-42cf-8b45-8c6458113c7d, #wrap-s-29d23305-3da8-42cf-8b45-8c6458113c7d { display:none !important; }}@media (max-width: 767px){#s-29d23305-3da8-42cf-8b45-8c6458113c7d {
  display: none;
}
#s-29d23305-3da8-42cf-8b45-8c6458113c7d, #wrap-s-29d23305-3da8-42cf-8b45-8c6458113c7d { display:none !important; }}







#s-29d23305-3da8-42cf-8b45-8c6458113c7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-29d23305-3da8-42cf-8b45-8c6458113c7d {
  cursor: pointer;
}#s-29d23305-3da8-42cf-8b45-8c6458113c7d.shg-box.shg-c {
  justify-content: center;
}

#s-22f9d921-eebc-4677-a50e-a6014936cd12 {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-22f9d921-eebc-4677-a50e-a6014936cd12:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-22f9d921-eebc-4677-a50e-a6014936cd12:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-22f9d921-eebc-4677-a50e-a6014936cd12 {
  display: none;
}
#s-22f9d921-eebc-4677-a50e-a6014936cd12, #wrap-s-22f9d921-eebc-4677-a50e-a6014936cd12 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-22f9d921-eebc-4677-a50e-a6014936cd12 {
  display: none;
}
#s-22f9d921-eebc-4677-a50e-a6014936cd12, #wrap-s-22f9d921-eebc-4677-a50e-a6014936cd12 { display:none !important; }}@media (max-width: 767px){#s-22f9d921-eebc-4677-a50e-a6014936cd12 {
  display: none;
}
#s-22f9d921-eebc-4677-a50e-a6014936cd12, #wrap-s-22f9d921-eebc-4677-a50e-a6014936cd12 { display:none !important; }}


#s-22f9d921-eebc-4677-a50e-a6014936cd12.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-6316b4b1-e4fc-42ec-ab2e-87fb28a1a769 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-6316b4b1-e4fc-42ec-ab2e-87fb28a1a769 {
  display: none;
}
#s-6316b4b1-e4fc-42ec-ab2e-87fb28a1a769, #wrap-s-6316b4b1-e4fc-42ec-ab2e-87fb28a1a769 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6316b4b1-e4fc-42ec-ab2e-87fb28a1a769 {
  display: none;
}
#s-6316b4b1-e4fc-42ec-ab2e-87fb28a1a769, #wrap-s-6316b4b1-e4fc-42ec-ab2e-87fb28a1a769 { display:none !important; }}@media (max-width: 767px){#s-6316b4b1-e4fc-42ec-ab2e-87fb28a1a769 {
  display: none;
}
#s-6316b4b1-e4fc-42ec-ab2e-87fb28a1a769, #wrap-s-6316b4b1-e4fc-42ec-ab2e-87fb28a1a769 { display:none !important; }}







#s-6316b4b1-e4fc-42ec-ab2e-87fb28a1a769 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6316b4b1-e4fc-42ec-ab2e-87fb28a1a769.shg-box.shg-c {
  justify-content: center;
}

#s-eeda4209-2955-4e8a-a0b4-f79061c7f117 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-eeda4209-2955-4e8a-a0b4-f79061c7f117 {
  display: none;
}
#s-eeda4209-2955-4e8a-a0b4-f79061c7f117, #wrap-s-eeda4209-2955-4e8a-a0b4-f79061c7f117 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-eeda4209-2955-4e8a-a0b4-f79061c7f117 {
  display: none;
}
#s-eeda4209-2955-4e8a-a0b4-f79061c7f117, #wrap-s-eeda4209-2955-4e8a-a0b4-f79061c7f117 { display:none !important; }}@media (max-width: 767px){#s-eeda4209-2955-4e8a-a0b4-f79061c7f117 {
  display: none;
}
#s-eeda4209-2955-4e8a-a0b4-f79061c7f117, #wrap-s-eeda4209-2955-4e8a-a0b4-f79061c7f117 { display:none !important; }}







#s-eeda4209-2955-4e8a-a0b4-f79061c7f117 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eeda4209-2955-4e8a-a0b4-f79061c7f117.shg-box.shg-c {
  justify-content: center;
}

#s-68462800-0860-4328-b362-a860c486784b {
  min-height: 50px;
}
@media (min-width: 1200px){#s-68462800-0860-4328-b362-a860c486784b {
  display: none;
}
#s-68462800-0860-4328-b362-a860c486784b, #wrap-s-68462800-0860-4328-b362-a860c486784b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-68462800-0860-4328-b362-a860c486784b {
  display: none;
}
#s-68462800-0860-4328-b362-a860c486784b, #wrap-s-68462800-0860-4328-b362-a860c486784b { display:none !important; }}@media (max-width: 767px){#s-68462800-0860-4328-b362-a860c486784b {
  display: none;
}
#s-68462800-0860-4328-b362-a860c486784b, #wrap-s-68462800-0860-4328-b362-a860c486784b { display:none !important; }}







#s-68462800-0860-4328-b362-a860c486784b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-68462800-0860-4328-b362-a860c486784b.shg-box.shg-c {
  justify-content: center;
}

#s-43101541-df5c-479a-a4a7-aec8aaf43893 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-43101541-df5c-479a-a4a7-aec8aaf43893 {
  display: none;
}
#s-43101541-df5c-479a-a4a7-aec8aaf43893, #wrap-s-43101541-df5c-479a-a4a7-aec8aaf43893 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-43101541-df5c-479a-a4a7-aec8aaf43893 {
  display: none;
}
#s-43101541-df5c-479a-a4a7-aec8aaf43893, #wrap-s-43101541-df5c-479a-a4a7-aec8aaf43893 { display:none !important; }}@media (max-width: 767px){#s-43101541-df5c-479a-a4a7-aec8aaf43893 {
  display: none;
}
#s-43101541-df5c-479a-a4a7-aec8aaf43893, #wrap-s-43101541-df5c-479a-a4a7-aec8aaf43893 { display:none !important; }}







#s-43101541-df5c-479a-a4a7-aec8aaf43893 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43101541-df5c-479a-a4a7-aec8aaf43893.shg-box.shg-c {
  justify-content: center;
}

#s-02e5a24d-a9dc-44cb-9247-e7dde8b9dc5a {
  background-image: url(https://i.shgcdn.com/5cfb5099-0a60-47ca-94be-97ebfa399fae/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
min-height: 680px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-02e5a24d-a9dc-44cb-9247-e7dde8b9dc5a {
  
}
}@media (max-width: 767px){#s-02e5a24d-a9dc-44cb-9247-e7dde8b9dc5a {
  display: none;
}
#s-02e5a24d-a9dc-44cb-9247-e7dde8b9dc5a, #wrap-s-02e5a24d-a9dc-44cb-9247-e7dde8b9dc5a { display:none !important; }}







#s-02e5a24d-a9dc-44cb-9247-e7dde8b9dc5a > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.2;
}#s-02e5a24d-a9dc-44cb-9247-e7dde8b9dc5a {
  cursor: pointer;
}#s-02e5a24d-a9dc-44cb-9247-e7dde8b9dc5a.shg-box.shg-c {
  justify-content: center;
}

#s-502314de-f8c9-48ea-83c8-4b81f1f5fb9e {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-502314de-f8c9-48ea-83c8-4b81f1f5fb9e {
  display: none;
}
#s-502314de-f8c9-48ea-83c8-4b81f1f5fb9e, #wrap-s-502314de-f8c9-48ea-83c8-4b81f1f5fb9e { display:none !important; }}@media (max-width: 767px){#s-502314de-f8c9-48ea-83c8-4b81f1f5fb9e {
  display: none;
}
#s-502314de-f8c9-48ea-83c8-4b81f1f5fb9e, #wrap-s-502314de-f8c9-48ea-83c8-4b81f1f5fb9e { display:none !important; }}







#s-502314de-f8c9-48ea-83c8-4b81f1f5fb9e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-502314de-f8c9-48ea-83c8-4b81f1f5fb9e.shg-box.shg-c {
  justify-content: center;
}

#s-cedec39d-929f-4f75-a8cd-be3067b7ff8b {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-cedec39d-929f-4f75-a8cd-be3067b7ff8b .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 40px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}


#s-cedec39d-929f-4f75-a8cd-be3067b7ff8b .shogun-heading-component h1 a {
  color: rgba(255, 255, 255, 1);
}


#s-f174d04a-b90d-40ec-8868-fffabc76c1fc {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-f174d04a-b90d-40ec-8868-fffabc76c1fc {
  display: none;
}
#s-f174d04a-b90d-40ec-8868-fffabc76c1fc, #wrap-s-f174d04a-b90d-40ec-8868-fffabc76c1fc { display:none !important; }}@media (max-width: 767px){#s-f174d04a-b90d-40ec-8868-fffabc76c1fc {
  display: none;
}
#s-f174d04a-b90d-40ec-8868-fffabc76c1fc, #wrap-s-f174d04a-b90d-40ec-8868-fffabc76c1fc { display:none !important; }}
#s-f174d04a-b90d-40ec-8868-fffabc76c1fc .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}


#s-f174d04a-b90d-40ec-8868-fffabc76c1fc .shogun-heading-component h1 a {
  color: rgba(255, 255, 255, 1);
}


#s-0adf2a37-a69e-4ebd-86c6-c8001fe0965e {
  min-height: 50px;
}
@media (min-width: 1200px){#s-0adf2a37-a69e-4ebd-86c6-c8001fe0965e {
  display: none;
}
#s-0adf2a37-a69e-4ebd-86c6-c8001fe0965e, #wrap-s-0adf2a37-a69e-4ebd-86c6-c8001fe0965e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0adf2a37-a69e-4ebd-86c6-c8001fe0965e {
  display: none;
}
#s-0adf2a37-a69e-4ebd-86c6-c8001fe0965e, #wrap-s-0adf2a37-a69e-4ebd-86c6-c8001fe0965e { display:none !important; }}@media (max-width: 767px){#s-0adf2a37-a69e-4ebd-86c6-c8001fe0965e {
  display: none;
}
#s-0adf2a37-a69e-4ebd-86c6-c8001fe0965e, #wrap-s-0adf2a37-a69e-4ebd-86c6-c8001fe0965e { display:none !important; }}







#s-0adf2a37-a69e-4ebd-86c6-c8001fe0965e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0adf2a37-a69e-4ebd-86c6-c8001fe0965e {
  cursor: pointer;
}#s-0adf2a37-a69e-4ebd-86c6-c8001fe0965e.shg-box.shg-c {
  justify-content: center;
}

#s-af7c5aef-7633-4c29-a4c0-ef113bc6c837 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-af7c5aef-7633-4c29-a4c0-ef113bc6c837 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-f1a11490-ba58-47a9-864d-d74685871e8f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-f1a11490-ba58-47a9-864d-d74685871e8f {
  display: none;
}
#s-f1a11490-ba58-47a9-864d-d74685871e8f, #wrap-s-f1a11490-ba58-47a9-864d-d74685871e8f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f1a11490-ba58-47a9-864d-d74685871e8f {
  display: none;
}
#s-f1a11490-ba58-47a9-864d-d74685871e8f, #wrap-s-f1a11490-ba58-47a9-864d-d74685871e8f { display:none !important; }}@media (max-width: 767px){#s-f1a11490-ba58-47a9-864d-d74685871e8f {
  display: none;
}
#s-f1a11490-ba58-47a9-864d-d74685871e8f, #wrap-s-f1a11490-ba58-47a9-864d-d74685871e8f { display:none !important; }}
#s-f1a11490-ba58-47a9-864d-d74685871e8f .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


#s-f1a11490-ba58-47a9-864d-d74685871e8f .shogun-heading-component h1 a {
  color: rgba(255, 255, 255, 1);
}


#s-704f5e7e-7d58-4692-a4b7-0380efa03579 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-704f5e7e-7d58-4692-a4b7-0380efa03579 {
  display: none;
}
#s-704f5e7e-7d58-4692-a4b7-0380efa03579, #wrap-s-704f5e7e-7d58-4692-a4b7-0380efa03579 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-704f5e7e-7d58-4692-a4b7-0380efa03579 {
  display: none;
}
#s-704f5e7e-7d58-4692-a4b7-0380efa03579, #wrap-s-704f5e7e-7d58-4692-a4b7-0380efa03579 { display:none !important; }}@media (max-width: 767px){#s-704f5e7e-7d58-4692-a4b7-0380efa03579 {
  display: none;
}
#s-704f5e7e-7d58-4692-a4b7-0380efa03579, #wrap-s-704f5e7e-7d58-4692-a4b7-0380efa03579 { display:none !important; }}







#s-704f5e7e-7d58-4692-a4b7-0380efa03579 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-704f5e7e-7d58-4692-a4b7-0380efa03579 {
  cursor: pointer;
}#s-704f5e7e-7d58-4692-a4b7-0380efa03579.shg-box.shg-c {
  justify-content: center;
}

#s-4e5cbe3e-05ff-4210-9fd3-8585c6da6846 {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-4e5cbe3e-05ff-4210-9fd3-8585c6da6846:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-4e5cbe3e-05ff-4210-9fd3-8585c6da6846:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-4e5cbe3e-05ff-4210-9fd3-8585c6da6846.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-269a2b2d-0772-4787-b8b2-5d8d376d1f01 {
  min-height: 50px;
}








#s-269a2b2d-0772-4787-b8b2-5d8d376d1f01 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-269a2b2d-0772-4787-b8b2-5d8d376d1f01 {
  cursor: pointer;
}#s-269a2b2d-0772-4787-b8b2-5d8d376d1f01.shg-box.shg-c {
  justify-content: center;
}

#s-d2c86628-05da-4196-9808-48d0228676e8 {
  background-image: url(none);
background-repeat: no-repeat;
margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: left;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-d2c86628-05da-4196-9808-48d0228676e8:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-d2c86628-05da-4196-9808-48d0228676e8:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-d2c86628-05da-4196-9808-48d0228676e8 {
  display: none;
}
#s-d2c86628-05da-4196-9808-48d0228676e8, #wrap-s-d2c86628-05da-4196-9808-48d0228676e8 { display:none !important; }}@media (max-width: 767px){#s-d2c86628-05da-4196-9808-48d0228676e8 {
  display: none;
}
#s-d2c86628-05da-4196-9808-48d0228676e8, #wrap-s-d2c86628-05da-4196-9808-48d0228676e8 { display:none !important; }}

  #s-d2c86628-05da-4196-9808-48d0228676e8-btn-wrapper {
    text-align: left;
  }


#s-d2c86628-05da-4196-9808-48d0228676e8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-5b5b5375-86e4-4eca-bc7c-444014ab8a22 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-5b5b5375-86e4-4eca-bc7c-444014ab8a22 {
  display: none;
}
#s-5b5b5375-86e4-4eca-bc7c-444014ab8a22, #wrap-s-5b5b5375-86e4-4eca-bc7c-444014ab8a22 { display:none !important; }}@media (max-width: 767px){#s-5b5b5375-86e4-4eca-bc7c-444014ab8a22 {
  display: none;
}
#s-5b5b5375-86e4-4eca-bc7c-444014ab8a22, #wrap-s-5b5b5375-86e4-4eca-bc7c-444014ab8a22 { display:none !important; }}







#s-5b5b5375-86e4-4eca-bc7c-444014ab8a22 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b5b5375-86e4-4eca-bc7c-444014ab8a22.shg-box.shg-c {
  justify-content: center;
}

#s-9f2c3228-60e7-4cee-9cde-af0e082daf5e {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-9f2c3228-60e7-4cee-9cde-af0e082daf5e {
  display: none;
}
#s-9f2c3228-60e7-4cee-9cde-af0e082daf5e, #wrap-s-9f2c3228-60e7-4cee-9cde-af0e082daf5e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9f2c3228-60e7-4cee-9cde-af0e082daf5e {
  display: none;
}
#s-9f2c3228-60e7-4cee-9cde-af0e082daf5e, #wrap-s-9f2c3228-60e7-4cee-9cde-af0e082daf5e { display:none !important; }}@media (max-width: 767px){#s-9f2c3228-60e7-4cee-9cde-af0e082daf5e {
  display: none;
}
#s-9f2c3228-60e7-4cee-9cde-af0e082daf5e, #wrap-s-9f2c3228-60e7-4cee-9cde-af0e082daf5e { display:none !important; }}
#s-43998906-b20e-414a-9110-58c8bd4b62ba {
  text-align: center;
}




  #s-43998906-b20e-414a-9110-58c8bd4b62ba img.shogun-image {
    
    width: px;
  }


#s-43998906-b20e-414a-9110-58c8bd4b62ba .shogun-image-content {
  
    align-items: center;
  
}

#s-05dce727-1241-4ebd-84fd-94f3f6d67f1e {
  text-align: center;
}
@media (min-width: 1200px){#s-05dce727-1241-4ebd-84fd-94f3f6d67f1e {
  display: none;
}
#s-05dce727-1241-4ebd-84fd-94f3f6d67f1e, #wrap-s-05dce727-1241-4ebd-84fd-94f3f6d67f1e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-05dce727-1241-4ebd-84fd-94f3f6d67f1e {
  display: none;
}
#s-05dce727-1241-4ebd-84fd-94f3f6d67f1e, #wrap-s-05dce727-1241-4ebd-84fd-94f3f6d67f1e { display:none !important; }}@media (max-width: 767px){#s-05dce727-1241-4ebd-84fd-94f3f6d67f1e {
  display: none;
}
#s-05dce727-1241-4ebd-84fd-94f3f6d67f1e, #wrap-s-05dce727-1241-4ebd-84fd-94f3f6d67f1e { display:none !important; }}



  #s-05dce727-1241-4ebd-84fd-94f3f6d67f1e img.shogun-image {
    
    width: px;
  }


#s-05dce727-1241-4ebd-84fd-94f3f6d67f1e .shogun-image-content {
  
    align-items: center;
  
}

#s-5839c6d3-7f13-45e0-9d82-cb59275a73d5 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-5839c6d3-7f13-45e0-9d82-cb59275a73d5 {
  display: none;
}
#s-5839c6d3-7f13-45e0-9d82-cb59275a73d5, #wrap-s-5839c6d3-7f13-45e0-9d82-cb59275a73d5 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5839c6d3-7f13-45e0-9d82-cb59275a73d5 {
  display: none;
}
#s-5839c6d3-7f13-45e0-9d82-cb59275a73d5, #wrap-s-5839c6d3-7f13-45e0-9d82-cb59275a73d5 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5839c6d3-7f13-45e0-9d82-cb59275a73d5 {
  display: none;
}
#s-5839c6d3-7f13-45e0-9d82-cb59275a73d5, #wrap-s-5839c6d3-7f13-45e0-9d82-cb59275a73d5 { display:none !important; }}







#s-5839c6d3-7f13-45e0-9d82-cb59275a73d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5839c6d3-7f13-45e0-9d82-cb59275a73d5.shg-box.shg-c {
  justify-content: center;
}

#s-9a82fb07-8b66-4a35-be3d-03dd4f17c72a {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-9a82fb07-8b66-4a35-be3d-03dd4f17c72a {
  display: none;
}
#s-9a82fb07-8b66-4a35-be3d-03dd4f17c72a, #wrap-s-9a82fb07-8b66-4a35-be3d-03dd4f17c72a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9a82fb07-8b66-4a35-be3d-03dd4f17c72a {
  display: none;
}
#s-9a82fb07-8b66-4a35-be3d-03dd4f17c72a, #wrap-s-9a82fb07-8b66-4a35-be3d-03dd4f17c72a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9a82fb07-8b66-4a35-be3d-03dd4f17c72a {
  display: none;
}
#s-9a82fb07-8b66-4a35-be3d-03dd4f17c72a, #wrap-s-9a82fb07-8b66-4a35-be3d-03dd4f17c72a { display:none !important; }}
#s-474fc2f3-3319-4988-b995-3708918f6de0 {
  text-align: center;
}




  #s-474fc2f3-3319-4988-b995-3708918f6de0 img.shogun-image {
    
    width: px;
  }


#s-474fc2f3-3319-4988-b995-3708918f6de0 .shogun-image-content {
  
    align-items: center;
  
}

#s-6cf3c22c-4582-4e50-a250-f4a7705911b7 {
  background-image: url(https://i.shgcdn.com/7cfa3457-3817-4bc7-83de-2fb598395c30/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
min-height: 680px;
background-position: center center;
}








#s-6cf3c22c-4582-4e50-a250-f4a7705911b7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6cf3c22c-4582-4e50-a250-f4a7705911b7 {
  cursor: pointer;
}#s-6cf3c22c-4582-4e50-a250-f4a7705911b7.shg-box.shg-c {
  justify-content: center;
}

#s-ffd0410f-064b-496a-a2e6-830d4346ac82 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ffd0410f-064b-496a-a2e6-830d4346ac82 .shogun-heading-component h1 {
  color: #000;
  font-weight:  600 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


#s-ffd0410f-064b-496a-a2e6-830d4346ac82 .shogun-heading-component h1 a {
  color: #000;
}


#s-fcfa468c-b78b-4fa3-b3ee-4205944e58c9 {
  background-image: url(https://i.shgcdn.com/2b0ebf41-f646-4ab9-b308-35ad8239d163/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
min-height: 680px;
background-position: center center;
}








#s-fcfa468c-b78b-4fa3-b3ee-4205944e58c9 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.3;
}#s-fcfa468c-b78b-4fa3-b3ee-4205944e58c9 {
  cursor: pointer;
}#s-fcfa468c-b78b-4fa3-b3ee-4205944e58c9.shg-box.shg-c {
  justify-content: center;
}

#s-d3c0a34e-597d-4eb3-9dd3-81c8b964ec1b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-d3c0a34e-597d-4eb3-9dd3-81c8b964ec1b {
  display: none;
}
#s-d3c0a34e-597d-4eb3-9dd3-81c8b964ec1b, #wrap-s-d3c0a34e-597d-4eb3-9dd3-81c8b964ec1b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d3c0a34e-597d-4eb3-9dd3-81c8b964ec1b {
  display: none;
}
#s-d3c0a34e-597d-4eb3-9dd3-81c8b964ec1b, #wrap-s-d3c0a34e-597d-4eb3-9dd3-81c8b964ec1b { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d3c0a34e-597d-4eb3-9dd3-81c8b964ec1b {
  display: none;
}
#s-d3c0a34e-597d-4eb3-9dd3-81c8b964ec1b, #wrap-s-d3c0a34e-597d-4eb3-9dd3-81c8b964ec1b { display:none !important; }}
#s-d3c0a34e-597d-4eb3-9dd3-81c8b964ec1b .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-3dada56b-c5a4-4724-a0d1-cf8026ddf6f6 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-3dada56b-c5a4-4724-a0d1-cf8026ddf6f6 {
  display: none;
}
#s-3dada56b-c5a4-4724-a0d1-cf8026ddf6f6, #wrap-s-3dada56b-c5a4-4724-a0d1-cf8026ddf6f6 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3dada56b-c5a4-4724-a0d1-cf8026ddf6f6 {
  display: none;
}
#s-3dada56b-c5a4-4724-a0d1-cf8026ddf6f6, #wrap-s-3dada56b-c5a4-4724-a0d1-cf8026ddf6f6 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3dada56b-c5a4-4724-a0d1-cf8026ddf6f6 {
  display: none;
}
#s-3dada56b-c5a4-4724-a0d1-cf8026ddf6f6, #wrap-s-3dada56b-c5a4-4724-a0d1-cf8026ddf6f6 { display:none !important; }}
#s-3dada56b-c5a4-4724-a0d1-cf8026ddf6f6 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-e309ddec-2f8d-4273-aad6-a9d7b336a506 {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
hover-type: color;
}
#s-e309ddec-2f8d-4273-aad6-a9d7b336a506:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e309ddec-2f8d-4273-aad6-a9d7b336a506:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-e309ddec-2f8d-4273-aad6-a9d7b336a506 {
  display: none;
}
#s-e309ddec-2f8d-4273-aad6-a9d7b336a506, #wrap-s-e309ddec-2f8d-4273-aad6-a9d7b336a506 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e309ddec-2f8d-4273-aad6-a9d7b336a506 {
  display: none;
}
#s-e309ddec-2f8d-4273-aad6-a9d7b336a506, #wrap-s-e309ddec-2f8d-4273-aad6-a9d7b336a506 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e309ddec-2f8d-4273-aad6-a9d7b336a506 {
  display: none;
}
#s-e309ddec-2f8d-4273-aad6-a9d7b336a506, #wrap-s-e309ddec-2f8d-4273-aad6-a9d7b336a506 { display:none !important; }}


#s-e309ddec-2f8d-4273-aad6-a9d7b336a506.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-903afb61-389f-4c00-b939-f563d4569353 {
  text-align: center;
}
@media (min-width: 1200px){#s-903afb61-389f-4c00-b939-f563d4569353 {
  display: none;
}
#s-903afb61-389f-4c00-b939-f563d4569353, #wrap-s-903afb61-389f-4c00-b939-f563d4569353 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-903afb61-389f-4c00-b939-f563d4569353 {
  display: none;
}
#s-903afb61-389f-4c00-b939-f563d4569353, #wrap-s-903afb61-389f-4c00-b939-f563d4569353 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-903afb61-389f-4c00-b939-f563d4569353 {
  display: none;
}
#s-903afb61-389f-4c00-b939-f563d4569353, #wrap-s-903afb61-389f-4c00-b939-f563d4569353 { display:none !important; }}



  #s-903afb61-389f-4c00-b939-f563d4569353 img.shogun-image {
    
    width: px;
  }


#s-903afb61-389f-4c00-b939-f563d4569353 .shogun-image-content {
  
    align-items: center;
  
}

#s-15c1ca95-8938-4bee-ab5c-736378da1826 {
  text-align: center;
}




  #s-15c1ca95-8938-4bee-ab5c-736378da1826 img.shogun-image {
    
    width: px;
  }


#s-15c1ca95-8938-4bee-ab5c-736378da1826 .shogun-image-content {
  
    align-items: center;
  
}

#s-b2b18c5d-3f08-4b36-a8a6-f51d5f3fb0a6 {
  text-align: center;
}




  #s-b2b18c5d-3f08-4b36-a8a6-f51d5f3fb0a6 img.shogun-image {
    
    width: px;
  }


#s-b2b18c5d-3f08-4b36-a8a6-f51d5f3fb0a6 .shogun-image-content {
  
    align-items: center;
  
}

#s-9e2d3c59-500a-4f80-b207-838b1ef491c7 {
  text-align: center;
}




  #s-9e2d3c59-500a-4f80-b207-838b1ef491c7 img.shogun-image {
    
    width: px;
  }


#s-9e2d3c59-500a-4f80-b207-838b1ef491c7 .shogun-image-content {
  
    align-items: center;
  
}

#s-95f039df-df02-4fff-b029-84837347a594 {
  text-align: center;
}
@media (min-width: 1200px){#s-95f039df-df02-4fff-b029-84837347a594 {
  display: none;
}
#s-95f039df-df02-4fff-b029-84837347a594, #wrap-s-95f039df-df02-4fff-b029-84837347a594 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-95f039df-df02-4fff-b029-84837347a594 {
  display: none;
}
#s-95f039df-df02-4fff-b029-84837347a594, #wrap-s-95f039df-df02-4fff-b029-84837347a594 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-95f039df-df02-4fff-b029-84837347a594 {
  display: none;
}
#s-95f039df-df02-4fff-b029-84837347a594, #wrap-s-95f039df-df02-4fff-b029-84837347a594 { display:none !important; }}



  #s-95f039df-df02-4fff-b029-84837347a594 img.shogun-image {
    
    width: px;
  }


#s-95f039df-df02-4fff-b029-84837347a594 .shogun-image-content {
  
    align-items: center;
  
}

#s-0bf6a6bb-d4a7-4ac3-8b21-e13a9b49b7ee {
  text-align: center;
}
@media (min-width: 1200px){#s-0bf6a6bb-d4a7-4ac3-8b21-e13a9b49b7ee {
  display: none;
}
#s-0bf6a6bb-d4a7-4ac3-8b21-e13a9b49b7ee, #wrap-s-0bf6a6bb-d4a7-4ac3-8b21-e13a9b49b7ee { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0bf6a6bb-d4a7-4ac3-8b21-e13a9b49b7ee {
  display: none;
}
#s-0bf6a6bb-d4a7-4ac3-8b21-e13a9b49b7ee, #wrap-s-0bf6a6bb-d4a7-4ac3-8b21-e13a9b49b7ee { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0bf6a6bb-d4a7-4ac3-8b21-e13a9b49b7ee {
  display: none;
}
#s-0bf6a6bb-d4a7-4ac3-8b21-e13a9b49b7ee, #wrap-s-0bf6a6bb-d4a7-4ac3-8b21-e13a9b49b7ee { display:none !important; }}



  #s-0bf6a6bb-d4a7-4ac3-8b21-e13a9b49b7ee img.shogun-image {
    
    width: px;
  }


#s-0bf6a6bb-d4a7-4ac3-8b21-e13a9b49b7ee .shogun-image-content {
  
    align-items: center;
  
}

#s-12304012-ab51-4a33-be5c-b93a113aa6ec {
  text-align: center;
}
@media (min-width: 1200px){#s-12304012-ab51-4a33-be5c-b93a113aa6ec {
  display: none;
}
#s-12304012-ab51-4a33-be5c-b93a113aa6ec, #wrap-s-12304012-ab51-4a33-be5c-b93a113aa6ec { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-12304012-ab51-4a33-be5c-b93a113aa6ec {
  display: none;
}
#s-12304012-ab51-4a33-be5c-b93a113aa6ec, #wrap-s-12304012-ab51-4a33-be5c-b93a113aa6ec { display:none !important; }}



  #s-12304012-ab51-4a33-be5c-b93a113aa6ec img.shogun-image {
    
    width: px;
  }


#s-12304012-ab51-4a33-be5c-b93a113aa6ec .shogun-image-content {
  
    align-items: center;
  
}

#s-469f298f-6aa6-4caf-8772-cc9d8058cf08 {
  background-image: url(https://i.shgcdn.com/8b146f23-2766-4bd4-98fa-e38b60eebebc/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
min-height: 680px;
background-position: center center;
}








#s-469f298f-6aa6-4caf-8772-cc9d8058cf08 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.2;
}#s-469f298f-6aa6-4caf-8772-cc9d8058cf08 {
  cursor: pointer;
}#s-469f298f-6aa6-4caf-8772-cc9d8058cf08.shg-box.shg-c {
  justify-content: center;
}

#s-aa5bc4b2-f690-4cc5-a856-dcccb887fb1a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-aa5bc4b2-f690-4cc5-a856-dcccb887fb1a {
  display: none;
}
#s-aa5bc4b2-f690-4cc5-a856-dcccb887fb1a, #wrap-s-aa5bc4b2-f690-4cc5-a856-dcccb887fb1a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-aa5bc4b2-f690-4cc5-a856-dcccb887fb1a {
  display: none;
}
#s-aa5bc4b2-f690-4cc5-a856-dcccb887fb1a, #wrap-s-aa5bc4b2-f690-4cc5-a856-dcccb887fb1a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-aa5bc4b2-f690-4cc5-a856-dcccb887fb1a {
  display: none;
}
#s-aa5bc4b2-f690-4cc5-a856-dcccb887fb1a, #wrap-s-aa5bc4b2-f690-4cc5-a856-dcccb887fb1a { display:none !important; }}
#s-aa5bc4b2-f690-4cc5-a856-dcccb887fb1a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-f8851b72-d9bb-4b8e-b97d-4a9899cf7c26 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-f8851b72-d9bb-4b8e-b97d-4a9899cf7c26 {
  display: none;
}
#s-f8851b72-d9bb-4b8e-b97d-4a9899cf7c26, #wrap-s-f8851b72-d9bb-4b8e-b97d-4a9899cf7c26 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f8851b72-d9bb-4b8e-b97d-4a9899cf7c26 {
  display: none;
}
#s-f8851b72-d9bb-4b8e-b97d-4a9899cf7c26, #wrap-s-f8851b72-d9bb-4b8e-b97d-4a9899cf7c26 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f8851b72-d9bb-4b8e-b97d-4a9899cf7c26 {
  display: none;
}
#s-f8851b72-d9bb-4b8e-b97d-4a9899cf7c26, #wrap-s-f8851b72-d9bb-4b8e-b97d-4a9899cf7c26 { display:none !important; }}
#s-f8851b72-d9bb-4b8e-b97d-4a9899cf7c26 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-69907ce5-937c-4412-8aed-ce03a32ab268 {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-69907ce5-937c-4412-8aed-ce03a32ab268:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-69907ce5-937c-4412-8aed-ce03a32ab268:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-69907ce5-937c-4412-8aed-ce03a32ab268 {
  display: none;
}
#s-69907ce5-937c-4412-8aed-ce03a32ab268, #wrap-s-69907ce5-937c-4412-8aed-ce03a32ab268 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-69907ce5-937c-4412-8aed-ce03a32ab268 {
  display: none;
}
#s-69907ce5-937c-4412-8aed-ce03a32ab268, #wrap-s-69907ce5-937c-4412-8aed-ce03a32ab268 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-69907ce5-937c-4412-8aed-ce03a32ab268 {
  display: none;
}
#s-69907ce5-937c-4412-8aed-ce03a32ab268, #wrap-s-69907ce5-937c-4412-8aed-ce03a32ab268 { display:none !important; }}


#s-69907ce5-937c-4412-8aed-ce03a32ab268.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-e9946e29-2cad-4397-ac2b-c5168f1e894d {
  background-image: url(https://i.shgcdn.com/e433f84b-5bf4-4dfb-aff1-08ab4341bf08/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
min-height: 680px;
background-position: center center;
}
@media (min-width: 1200px){#s-e9946e29-2cad-4397-ac2b-c5168f1e894d {
  display: none;
}
#s-e9946e29-2cad-4397-ac2b-c5168f1e894d, #wrap-s-e9946e29-2cad-4397-ac2b-c5168f1e894d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e9946e29-2cad-4397-ac2b-c5168f1e894d {
  display: none;
}
#s-e9946e29-2cad-4397-ac2b-c5168f1e894d, #wrap-s-e9946e29-2cad-4397-ac2b-c5168f1e894d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e9946e29-2cad-4397-ac2b-c5168f1e894d {
  display: none;
}
#s-e9946e29-2cad-4397-ac2b-c5168f1e894d, #wrap-s-e9946e29-2cad-4397-ac2b-c5168f1e894d { display:none !important; }}







#s-e9946e29-2cad-4397-ac2b-c5168f1e894d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e9946e29-2cad-4397-ac2b-c5168f1e894d {
  cursor: pointer;
}#s-e9946e29-2cad-4397-ac2b-c5168f1e894d.shg-box.shg-c {
  justify-content: center;
}

#s-0549ec3d-718f-4028-a930-1ec121dbc9a3 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-0549ec3d-718f-4028-a930-1ec121dbc9a3 {
  display: none;
}
#s-0549ec3d-718f-4028-a930-1ec121dbc9a3, #wrap-s-0549ec3d-718f-4028-a930-1ec121dbc9a3 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0549ec3d-718f-4028-a930-1ec121dbc9a3 {
  display: none;
}
#s-0549ec3d-718f-4028-a930-1ec121dbc9a3, #wrap-s-0549ec3d-718f-4028-a930-1ec121dbc9a3 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0549ec3d-718f-4028-a930-1ec121dbc9a3 {
  display: none;
}
#s-0549ec3d-718f-4028-a930-1ec121dbc9a3, #wrap-s-0549ec3d-718f-4028-a930-1ec121dbc9a3 { display:none !important; }}







#s-0549ec3d-718f-4028-a930-1ec121dbc9a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0549ec3d-718f-4028-a930-1ec121dbc9a3 {
  cursor: pointer;
}#s-0549ec3d-718f-4028-a930-1ec121dbc9a3.shg-box.shg-c {
  justify-content: center;
}

#s-432ddd1b-a423-4dec-bb36-0cd664f645af {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-432ddd1b-a423-4dec-bb36-0cd664f645af {
  display: none;
}
#s-432ddd1b-a423-4dec-bb36-0cd664f645af, #wrap-s-432ddd1b-a423-4dec-bb36-0cd664f645af { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-432ddd1b-a423-4dec-bb36-0cd664f645af {
  display: none;
}
#s-432ddd1b-a423-4dec-bb36-0cd664f645af, #wrap-s-432ddd1b-a423-4dec-bb36-0cd664f645af { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-432ddd1b-a423-4dec-bb36-0cd664f645af {
  display: none;
}
#s-432ddd1b-a423-4dec-bb36-0cd664f645af, #wrap-s-432ddd1b-a423-4dec-bb36-0cd664f645af { display:none !important; }}
#s-432ddd1b-a423-4dec-bb36-0cd664f645af .shogun-heading-component h1 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-ff5a4431-c9f5-49d3-a3cd-6e4b8f7597bf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-ff5a4431-c9f5-49d3-a3cd-6e4b8f7597bf {
  display: none;
}
#s-ff5a4431-c9f5-49d3-a3cd-6e4b8f7597bf, #wrap-s-ff5a4431-c9f5-49d3-a3cd-6e4b8f7597bf { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ff5a4431-c9f5-49d3-a3cd-6e4b8f7597bf {
  display: none;
}
#s-ff5a4431-c9f5-49d3-a3cd-6e4b8f7597bf, #wrap-s-ff5a4431-c9f5-49d3-a3cd-6e4b8f7597bf { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ff5a4431-c9f5-49d3-a3cd-6e4b8f7597bf {
  display: none;
}
#s-ff5a4431-c9f5-49d3-a3cd-6e4b8f7597bf, #wrap-s-ff5a4431-c9f5-49d3-a3cd-6e4b8f7597bf { display:none !important; }}
#s-ff5a4431-c9f5-49d3-a3cd-6e4b8f7597bf .shogun-heading-component h1 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-3c1f884e-d3fd-42d0-b56b-10a6f80cab7c {
  min-height: 50px;
}
@media (min-width: 1200px){#s-3c1f884e-d3fd-42d0-b56b-10a6f80cab7c {
  display: none;
}
#s-3c1f884e-d3fd-42d0-b56b-10a6f80cab7c, #wrap-s-3c1f884e-d3fd-42d0-b56b-10a6f80cab7c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3c1f884e-d3fd-42d0-b56b-10a6f80cab7c {
  display: none;
}
#s-3c1f884e-d3fd-42d0-b56b-10a6f80cab7c, #wrap-s-3c1f884e-d3fd-42d0-b56b-10a6f80cab7c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3c1f884e-d3fd-42d0-b56b-10a6f80cab7c {
  display: none;
}
#s-3c1f884e-d3fd-42d0-b56b-10a6f80cab7c, #wrap-s-3c1f884e-d3fd-42d0-b56b-10a6f80cab7c { display:none !important; }}







#s-3c1f884e-d3fd-42d0-b56b-10a6f80cab7c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c1f884e-d3fd-42d0-b56b-10a6f80cab7c {
  cursor: pointer;
}#s-3c1f884e-d3fd-42d0-b56b-10a6f80cab7c.shg-box.shg-c {
  justify-content: center;
}

#s-57fb4264-0598-40e2-a0c6-200efc68a06d {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-57fb4264-0598-40e2-a0c6-200efc68a06d:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
hover-type: color !important;}#s-57fb4264-0598-40e2-a0c6-200efc68a06d:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-57fb4264-0598-40e2-a0c6-200efc68a06d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-cd7f4091-5c27-4427-8131-40055274dd32 {
  background-image: url(https://i.shgcdn.com/537deb76-ec98-4fa6-b7f8-ac10be1f6c9f/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
min-height: 680px;
background-position: center center;
}
@media (min-width: 1200px){#s-cd7f4091-5c27-4427-8131-40055274dd32 {
  display: none;
}
#s-cd7f4091-5c27-4427-8131-40055274dd32, #wrap-s-cd7f4091-5c27-4427-8131-40055274dd32 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cd7f4091-5c27-4427-8131-40055274dd32 {
  display: none;
}
#s-cd7f4091-5c27-4427-8131-40055274dd32, #wrap-s-cd7f4091-5c27-4427-8131-40055274dd32 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-cd7f4091-5c27-4427-8131-40055274dd32 {
  display: none;
}
#s-cd7f4091-5c27-4427-8131-40055274dd32, #wrap-s-cd7f4091-5c27-4427-8131-40055274dd32 { display:none !important; }}







#s-cd7f4091-5c27-4427-8131-40055274dd32 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cd7f4091-5c27-4427-8131-40055274dd32 {
  cursor: pointer;
}#s-cd7f4091-5c27-4427-8131-40055274dd32.shg-box.shg-c {
  justify-content: center;
}

#s-c04170ef-836e-4bf6-afd2-a20f7d15f024 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-c04170ef-836e-4bf6-afd2-a20f7d15f024 {
  display: none;
}
#s-c04170ef-836e-4bf6-afd2-a20f7d15f024, #wrap-s-c04170ef-836e-4bf6-afd2-a20f7d15f024 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c04170ef-836e-4bf6-afd2-a20f7d15f024 {
  display: none;
}
#s-c04170ef-836e-4bf6-afd2-a20f7d15f024, #wrap-s-c04170ef-836e-4bf6-afd2-a20f7d15f024 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c04170ef-836e-4bf6-afd2-a20f7d15f024 {
  display: none;
}
#s-c04170ef-836e-4bf6-afd2-a20f7d15f024, #wrap-s-c04170ef-836e-4bf6-afd2-a20f7d15f024 { display:none !important; }}







#s-c04170ef-836e-4bf6-afd2-a20f7d15f024 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c04170ef-836e-4bf6-afd2-a20f7d15f024 {
  cursor: pointer;
}#s-c04170ef-836e-4bf6-afd2-a20f7d15f024.shg-box.shg-c {
  justify-content: center;
}

#s-d835f5a6-acf4-44fd-af85-b170f230b28e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-d835f5a6-acf4-44fd-af85-b170f230b28e {
  display: none;
}
#s-d835f5a6-acf4-44fd-af85-b170f230b28e, #wrap-s-d835f5a6-acf4-44fd-af85-b170f230b28e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d835f5a6-acf4-44fd-af85-b170f230b28e {
  display: none;
}
#s-d835f5a6-acf4-44fd-af85-b170f230b28e, #wrap-s-d835f5a6-acf4-44fd-af85-b170f230b28e { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d835f5a6-acf4-44fd-af85-b170f230b28e {
  display: none;
}
#s-d835f5a6-acf4-44fd-af85-b170f230b28e, #wrap-s-d835f5a6-acf4-44fd-af85-b170f230b28e { display:none !important; }}
#s-d835f5a6-acf4-44fd-af85-b170f230b28e .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-110acf03-9ef6-4252-bcb4-222e1c93ae86 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-110acf03-9ef6-4252-bcb4-222e1c93ae86 {
  display: none;
}
#s-110acf03-9ef6-4252-bcb4-222e1c93ae86, #wrap-s-110acf03-9ef6-4252-bcb4-222e1c93ae86 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-110acf03-9ef6-4252-bcb4-222e1c93ae86 {
  display: none;
}
#s-110acf03-9ef6-4252-bcb4-222e1c93ae86, #wrap-s-110acf03-9ef6-4252-bcb4-222e1c93ae86 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-110acf03-9ef6-4252-bcb4-222e1c93ae86 {
  display: none;
}
#s-110acf03-9ef6-4252-bcb4-222e1c93ae86, #wrap-s-110acf03-9ef6-4252-bcb4-222e1c93ae86 { display:none !important; }}
#s-110acf03-9ef6-4252-bcb4-222e1c93ae86 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-4c9ce828-e171-46ab-95dc-acbc871ae794 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-4c9ce828-e171-46ab-95dc-acbc871ae794 {
  display: none;
}
#s-4c9ce828-e171-46ab-95dc-acbc871ae794, #wrap-s-4c9ce828-e171-46ab-95dc-acbc871ae794 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4c9ce828-e171-46ab-95dc-acbc871ae794 {
  display: none;
}
#s-4c9ce828-e171-46ab-95dc-acbc871ae794, #wrap-s-4c9ce828-e171-46ab-95dc-acbc871ae794 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4c9ce828-e171-46ab-95dc-acbc871ae794 {
  display: none;
}
#s-4c9ce828-e171-46ab-95dc-acbc871ae794, #wrap-s-4c9ce828-e171-46ab-95dc-acbc871ae794 { display:none !important; }}







#s-4c9ce828-e171-46ab-95dc-acbc871ae794 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4c9ce828-e171-46ab-95dc-acbc871ae794 {
  cursor: pointer;
}#s-4c9ce828-e171-46ab-95dc-acbc871ae794.shg-box.shg-c {
  justify-content: center;
}

#s-f8d919ae-a7bb-46ad-92ff-42265d5ae2f5 {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-f8d919ae-a7bb-46ad-92ff-42265d5ae2f5:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
hover-type: color !important;}#s-f8d919ae-a7bb-46ad-92ff-42265d5ae2f5:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-f8d919ae-a7bb-46ad-92ff-42265d5ae2f5 {
  display: none;
}
#s-f8d919ae-a7bb-46ad-92ff-42265d5ae2f5, #wrap-s-f8d919ae-a7bb-46ad-92ff-42265d5ae2f5 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f8d919ae-a7bb-46ad-92ff-42265d5ae2f5 {
  display: none;
}
#s-f8d919ae-a7bb-46ad-92ff-42265d5ae2f5, #wrap-s-f8d919ae-a7bb-46ad-92ff-42265d5ae2f5 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f8d919ae-a7bb-46ad-92ff-42265d5ae2f5 {
  display: none;
}
#s-f8d919ae-a7bb-46ad-92ff-42265d5ae2f5, #wrap-s-f8d919ae-a7bb-46ad-92ff-42265d5ae2f5 { display:none !important; }}


#s-f8d919ae-a7bb-46ad-92ff-42265d5ae2f5.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-51e252cf-bf19-4501-afe0-cedbc8eff99c {
  min-height: 50px;
}
@media (min-width: 1200px){#s-51e252cf-bf19-4501-afe0-cedbc8eff99c {
  display: none;
}
#s-51e252cf-bf19-4501-afe0-cedbc8eff99c, #wrap-s-51e252cf-bf19-4501-afe0-cedbc8eff99c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-51e252cf-bf19-4501-afe0-cedbc8eff99c {
  display: none;
}
#s-51e252cf-bf19-4501-afe0-cedbc8eff99c, #wrap-s-51e252cf-bf19-4501-afe0-cedbc8eff99c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-51e252cf-bf19-4501-afe0-cedbc8eff99c {
  display: none;
}
#s-51e252cf-bf19-4501-afe0-cedbc8eff99c, #wrap-s-51e252cf-bf19-4501-afe0-cedbc8eff99c { display:none !important; }}







#s-51e252cf-bf19-4501-afe0-cedbc8eff99c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-51e252cf-bf19-4501-afe0-cedbc8eff99c.shg-box.shg-c {
  justify-content: center;
}

#s-93235e7b-0a9f-4a05-aa31-4b04d623c4be {
  min-height: 50px;
}
@media (min-width: 1200px){#s-93235e7b-0a9f-4a05-aa31-4b04d623c4be {
  display: none;
}
#s-93235e7b-0a9f-4a05-aa31-4b04d623c4be, #wrap-s-93235e7b-0a9f-4a05-aa31-4b04d623c4be { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-93235e7b-0a9f-4a05-aa31-4b04d623c4be {
  display: none;
}
#s-93235e7b-0a9f-4a05-aa31-4b04d623c4be, #wrap-s-93235e7b-0a9f-4a05-aa31-4b04d623c4be { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-93235e7b-0a9f-4a05-aa31-4b04d623c4be {
  display: none;
}
#s-93235e7b-0a9f-4a05-aa31-4b04d623c4be, #wrap-s-93235e7b-0a9f-4a05-aa31-4b04d623c4be { display:none !important; }}







#s-93235e7b-0a9f-4a05-aa31-4b04d623c4be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-93235e7b-0a9f-4a05-aa31-4b04d623c4be.shg-box.shg-c {
  justify-content: center;
}

#s-04df4587-38dd-4e08-af6c-95f788be4487 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-04df4587-38dd-4e08-af6c-95f788be4487 {
  display: none;
}
#s-04df4587-38dd-4e08-af6c-95f788be4487, #wrap-s-04df4587-38dd-4e08-af6c-95f788be4487 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-04df4587-38dd-4e08-af6c-95f788be4487 {
  display: none;
}
#s-04df4587-38dd-4e08-af6c-95f788be4487, #wrap-s-04df4587-38dd-4e08-af6c-95f788be4487 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-04df4587-38dd-4e08-af6c-95f788be4487 {
  display: none;
}
#s-04df4587-38dd-4e08-af6c-95f788be4487, #wrap-s-04df4587-38dd-4e08-af6c-95f788be4487 { display:none !important; }}







#s-04df4587-38dd-4e08-af6c-95f788be4487 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-04df4587-38dd-4e08-af6c-95f788be4487.shg-box.shg-c {
  justify-content: center;
}

#s-cdb65a0c-1e9f-49c3-9b89-67dc9afa3c37 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-cdb65a0c-1e9f-49c3-9b89-67dc9afa3c37 {
  display: none;
}
#s-cdb65a0c-1e9f-49c3-9b89-67dc9afa3c37, #wrap-s-cdb65a0c-1e9f-49c3-9b89-67dc9afa3c37 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cdb65a0c-1e9f-49c3-9b89-67dc9afa3c37 {
  display: none;
}
#s-cdb65a0c-1e9f-49c3-9b89-67dc9afa3c37, #wrap-s-cdb65a0c-1e9f-49c3-9b89-67dc9afa3c37 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-cdb65a0c-1e9f-49c3-9b89-67dc9afa3c37 {
  display: none;
}
#s-cdb65a0c-1e9f-49c3-9b89-67dc9afa3c37, #wrap-s-cdb65a0c-1e9f-49c3-9b89-67dc9afa3c37 { display:none !important; }}







#s-cdb65a0c-1e9f-49c3-9b89-67dc9afa3c37 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cdb65a0c-1e9f-49c3-9b89-67dc9afa3c37.shg-box.shg-c {
  justify-content: center;
}

#s-c8488164-f231-4af6-b024-30e3873aaabf {
  background-image: url(https://i.shgcdn.com/25824f88-f9e0-48d4-accb-beabc1874998/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
min-height: 680px;
background-position: center center;
}
@media (min-width: 1200px){#s-c8488164-f231-4af6-b024-30e3873aaabf {
  display: none;
}
#s-c8488164-f231-4af6-b024-30e3873aaabf, #wrap-s-c8488164-f231-4af6-b024-30e3873aaabf { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c8488164-f231-4af6-b024-30e3873aaabf {
  display: none;
}
#s-c8488164-f231-4af6-b024-30e3873aaabf, #wrap-s-c8488164-f231-4af6-b024-30e3873aaabf { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c8488164-f231-4af6-b024-30e3873aaabf {
  display: none;
}
#s-c8488164-f231-4af6-b024-30e3873aaabf, #wrap-s-c8488164-f231-4af6-b024-30e3873aaabf { display:none !important; }}







#s-c8488164-f231-4af6-b024-30e3873aaabf > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.3;
}#s-c8488164-f231-4af6-b024-30e3873aaabf {
  cursor: pointer;
}#s-c8488164-f231-4af6-b024-30e3873aaabf.shg-box.shg-c {
  justify-content: center;
}

#s-3957e9a8-9a9c-4100-838e-86fb6eeb2cab {
  min-height: 50px;
}
@media (min-width: 1200px){#s-3957e9a8-9a9c-4100-838e-86fb6eeb2cab {
  display: none;
}
#s-3957e9a8-9a9c-4100-838e-86fb6eeb2cab, #wrap-s-3957e9a8-9a9c-4100-838e-86fb6eeb2cab { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3957e9a8-9a9c-4100-838e-86fb6eeb2cab {
  display: none;
}
#s-3957e9a8-9a9c-4100-838e-86fb6eeb2cab, #wrap-s-3957e9a8-9a9c-4100-838e-86fb6eeb2cab { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3957e9a8-9a9c-4100-838e-86fb6eeb2cab {
  display: none;
}
#s-3957e9a8-9a9c-4100-838e-86fb6eeb2cab, #wrap-s-3957e9a8-9a9c-4100-838e-86fb6eeb2cab { display:none !important; }}







#s-3957e9a8-9a9c-4100-838e-86fb6eeb2cab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3957e9a8-9a9c-4100-838e-86fb6eeb2cab {
  cursor: pointer;
}#s-3957e9a8-9a9c-4100-838e-86fb6eeb2cab.shg-box.shg-c {
  justify-content: center;
}

#s-4ae16bf6-9b44-411b-a5a4-27d8da2b49d5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-4ae16bf6-9b44-411b-a5a4-27d8da2b49d5 {
  display: none;
}
#s-4ae16bf6-9b44-411b-a5a4-27d8da2b49d5, #wrap-s-4ae16bf6-9b44-411b-a5a4-27d8da2b49d5 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4ae16bf6-9b44-411b-a5a4-27d8da2b49d5 {
  display: none;
}
#s-4ae16bf6-9b44-411b-a5a4-27d8da2b49d5, #wrap-s-4ae16bf6-9b44-411b-a5a4-27d8da2b49d5 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4ae16bf6-9b44-411b-a5a4-27d8da2b49d5 {
  display: none;
}
#s-4ae16bf6-9b44-411b-a5a4-27d8da2b49d5, #wrap-s-4ae16bf6-9b44-411b-a5a4-27d8da2b49d5 { display:none !important; }}
#s-4ae16bf6-9b44-411b-a5a4-27d8da2b49d5 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


#s-4ae16bf6-9b44-411b-a5a4-27d8da2b49d5 .shogun-heading-component h1 a {
  color: rgba(255, 255, 255, 1);
}


#s-c1f2c48e-1cc7-448e-9bc7-649915872ca1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-c1f2c48e-1cc7-448e-9bc7-649915872ca1 {
  display: none;
}
#s-c1f2c48e-1cc7-448e-9bc7-649915872ca1, #wrap-s-c1f2c48e-1cc7-448e-9bc7-649915872ca1 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c1f2c48e-1cc7-448e-9bc7-649915872ca1 {
  display: none;
}
#s-c1f2c48e-1cc7-448e-9bc7-649915872ca1, #wrap-s-c1f2c48e-1cc7-448e-9bc7-649915872ca1 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c1f2c48e-1cc7-448e-9bc7-649915872ca1 {
  display: none;
}
#s-c1f2c48e-1cc7-448e-9bc7-649915872ca1, #wrap-s-c1f2c48e-1cc7-448e-9bc7-649915872ca1 { display:none !important; }}
#s-c1f2c48e-1cc7-448e-9bc7-649915872ca1 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


#s-c1f2c48e-1cc7-448e-9bc7-649915872ca1 .shogun-heading-component h1 a {
  color: rgba(255, 255, 255, 1);
}


#s-3cd6fa07-ab81-40e3-9f8c-311a48348f1d {
  min-height: 50px;
}
@media (min-width: 1200px){#s-3cd6fa07-ab81-40e3-9f8c-311a48348f1d {
  display: none;
}
#s-3cd6fa07-ab81-40e3-9f8c-311a48348f1d, #wrap-s-3cd6fa07-ab81-40e3-9f8c-311a48348f1d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3cd6fa07-ab81-40e3-9f8c-311a48348f1d {
  display: none;
}
#s-3cd6fa07-ab81-40e3-9f8c-311a48348f1d, #wrap-s-3cd6fa07-ab81-40e3-9f8c-311a48348f1d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3cd6fa07-ab81-40e3-9f8c-311a48348f1d {
  display: none;
}
#s-3cd6fa07-ab81-40e3-9f8c-311a48348f1d, #wrap-s-3cd6fa07-ab81-40e3-9f8c-311a48348f1d { display:none !important; }}







#s-3cd6fa07-ab81-40e3-9f8c-311a48348f1d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3cd6fa07-ab81-40e3-9f8c-311a48348f1d {
  cursor: pointer;
}#s-3cd6fa07-ab81-40e3-9f8c-311a48348f1d.shg-box.shg-c {
  justify-content: center;
}

#s-f7687845-9b26-4af2-bf16-e5ab1165a76c {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-f7687845-9b26-4af2-bf16-e5ab1165a76c:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-f7687845-9b26-4af2-bf16-e5ab1165a76c:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-f7687845-9b26-4af2-bf16-e5ab1165a76c {
  display: none;
}
#s-f7687845-9b26-4af2-bf16-e5ab1165a76c, #wrap-s-f7687845-9b26-4af2-bf16-e5ab1165a76c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f7687845-9b26-4af2-bf16-e5ab1165a76c {
  display: none;
}
#s-f7687845-9b26-4af2-bf16-e5ab1165a76c, #wrap-s-f7687845-9b26-4af2-bf16-e5ab1165a76c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f7687845-9b26-4af2-bf16-e5ab1165a76c {
  display: none;
}
#s-f7687845-9b26-4af2-bf16-e5ab1165a76c, #wrap-s-f7687845-9b26-4af2-bf16-e5ab1165a76c { display:none !important; }}


#s-f7687845-9b26-4af2-bf16-e5ab1165a76c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-79d465a3-44f7-4358-8658-27cb85fe73a2 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-79d465a3-44f7-4358-8658-27cb85fe73a2 {
  display: none;
}
#s-79d465a3-44f7-4358-8658-27cb85fe73a2, #wrap-s-79d465a3-44f7-4358-8658-27cb85fe73a2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-79d465a3-44f7-4358-8658-27cb85fe73a2 {
  display: none;
}
#s-79d465a3-44f7-4358-8658-27cb85fe73a2, #wrap-s-79d465a3-44f7-4358-8658-27cb85fe73a2 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-79d465a3-44f7-4358-8658-27cb85fe73a2 {
  display: none;
}
#s-79d465a3-44f7-4358-8658-27cb85fe73a2, #wrap-s-79d465a3-44f7-4358-8658-27cb85fe73a2 { display:none !important; }}







#s-79d465a3-44f7-4358-8658-27cb85fe73a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-79d465a3-44f7-4358-8658-27cb85fe73a2.shg-box.shg-c {
  justify-content: center;
}

#s-6d8630c0-4be4-4dcd-ad9d-78e0828112db hr {
  border: 0;
  width: 100%;
  border-top: 2px solid rgba(242, 242, 242, 0);
}

#s-3a6af0df-e770-46b4-8115-811f9179846d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3a6af0df-e770-46b4-8115-811f9179846d .shogun-heading-component h1 {
  color: #000;
  font-weight:   ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
justify-content: space-between;
}

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

.shg-c-xs-1,
.shg-c-xs-2,
.shg-c-xs-3,
.shg-c-xs-4,
.shg-c-xs-5,
.shg-c-xs-6,
.shg-c-xs-7,
.shg-c-xs-8,
.shg-c-xs-9,
.shg-c-xs-10,
.shg-c-xs-11,
.shg-c-xs-12,
.shg-c-sm-1,
.shg-c-sm-2,
.shg-c-sm-3,
.shg-c-sm-4,
.shg-c-sm-5,
.shg-c-sm-6,
.shg-c-sm-7,
.shg-c-sm-8,
.shg-c-sm-9,
.shg-c-sm-10,
.shg-c-sm-11,
.shg-c-sm-12,
.shg-c-md-1,
.shg-c-md-2,
.shg-c-md-3,
.shg-c-md-4,
.shg-c-md-5,
.shg-c-md-6,
.shg-c-md-7,
.shg-c-md-8,
.shg-c-md-9,
.shg-c-md-10,
.shg-c-md-11,
.shg-c-md-12,
.shg-c-lg-1,
.shg-c-lg-2,
.shg-c-lg-3,
.shg-c-lg-4,
.shg-c-lg-5,
.shg-c-lg-6,
.shg-c-lg-7,
.shg-c-lg-8,
.shg-c-lg-9,
.shg-c-lg-10,
.shg-c-lg-11,
.shg-c-lg-12 {
  position: relative;
}

@media (min-width: 0px) {
[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-932254dc-9612-4fba-bafa-e0ca043301dc"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 22.5px);
}

}

#s-265bafd4-e377-4fb2-a54d-5550a7f7083f {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-image-wrapper img.shogun-image {
  width: 100%;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
}

.shg-product-image-wrapper {
  display: none;
  position: relative;
  width: 100%;
}

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-42a1d7b0-807b-4a15-a725-b374badfee20 {
  text-align: left;
}


.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 {
  max-width: 100%;
}

.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 .shg-image-zoom,
.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 {
  max-width: 100%;
}

.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 .shg-image-zoom,
.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 {
  max-width: 100%;
}

.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 .shg-image-zoom,
.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 {
  max-width: 100%;
}

.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 .shg-image-zoom,
.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 {
  max-width: 100%;
}

.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 .shg-image-zoom,
.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-42a1d7b0-807b-4a15-a725-b374badfee20 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
.shg-product-title-component h1,
.shg-product-title-component h2,
.shg-product-title-component h3,
.shg-product-title-component h4,
.shg-product-title-component h5,
.shg-product-title-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #000;
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-27e75512-a7d4-4ba5-8640-478e7db150cc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-27e75512-a7d4-4ba5-8640-478e7db150cc .shg-product-title-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
}

#s-ed1161e4-c99a-42ed-981e-78600f4c0a77 {
  text-align: center;
}

#s-ed1161e4-c99a-42ed-981e-78600f4c0a77 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-ed1161e4-c99a-42ed-981e-78600f4c0a77 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 18px;
}

#s-ed1161e4-c99a-42ed-981e-78600f4c0a77 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

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

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

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

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

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

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

#s-0f04115e-83fc-4f2c-aae6-0972da063485 {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
cursor: pointer;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-0f04115e-83fc-4f2c-aae6-0972da063485:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-0f04115e-83fc-4f2c-aae6-0972da063485:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-0f04115e-83fc-4f2c-aae6-0972da063485 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0f04115e-83fc-4f2c-aae6-0972da063485.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0f04115e-83fc-4f2c-aae6-0972da063485.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-0f04115e-83fc-4f2c-aae6-0972da063485.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-3cac0bbc-d4a3-4178-8ca5-29cbcf1786a1 {
  display: none;
}
#s-3a19b347-9839-4517-8c65-d5394c335ce4 {
  text-align: left;
}


.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 {
  max-width: 100%;
}

.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 .shg-image-zoom,
.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 {
  max-width: 100%;
}

.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 .shg-image-zoom,
.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 {
  max-width: 100%;
}

.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 .shg-image-zoom,
.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 {
  max-width: 100%;
}

.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 .shg-image-zoom,
.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 {
  max-width: 100%;
}

.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 .shg-image-zoom,
.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3a19b347-9839-4517-8c65-d5394c335ce4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-b1e78f1b-b5f3-45ce-8fd7-de1e10e60435 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b1e78f1b-b5f3-45ce-8fd7-de1e10e60435 .shg-product-title-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
}

#s-633c2e52-f140-449e-bf8f-1bbbbaec34de {
  text-align: center;
}

#s-633c2e52-f140-449e-bf8f-1bbbbaec34de .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-633c2e52-f140-449e-bf8f-1bbbbaec34de .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 18px;
}

#s-633c2e52-f140-449e-bf8f-1bbbbaec34de .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-de014f60-9789-4d10-8256-bbf3bb3c1be2 {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
cursor: pointer;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-de014f60-9789-4d10-8256-bbf3bb3c1be2:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-de014f60-9789-4d10-8256-bbf3bb3c1be2:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-de014f60-9789-4d10-8256-bbf3bb3c1be2 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-de014f60-9789-4d10-8256-bbf3bb3c1be2.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-de014f60-9789-4d10-8256-bbf3bb3c1be2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-de014f60-9789-4d10-8256-bbf3bb3c1be2.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-8d996d19-032e-403e-97dc-333932484606 {
  display: none;
}
#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 {
  text-align: left;
}


.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 {
  max-width: 100%;
}

.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 .shg-image-zoom,
.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 {
  max-width: 100%;
}

.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 .shg-image-zoom,
.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 {
  max-width: 100%;
}

.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 .shg-image-zoom,
.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 {
  max-width: 100%;
}

.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 .shg-image-zoom,
.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 {
  max-width: 100%;
}

.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 .shg-image-zoom,
.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8577341a-e607-43ea-8fbb-fd303ca55fc8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-f19a08a4-cf5f-4496-b63a-23d669635be3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f19a08a4-cf5f-4496-b63a-23d669635be3 .shg-product-title-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
}

#s-e6fc53db-ca24-4058-b829-c390eae7a6a0 {
  text-align: center;
}

#s-e6fc53db-ca24-4058-b829-c390eae7a6a0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-e6fc53db-ca24-4058-b829-c390eae7a6a0 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 18px;
}

#s-e6fc53db-ca24-4058-b829-c390eae7a6a0 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-0cb01da4-f3d0-4428-95d0-46447891a2e7 {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
cursor: pointer;
color: rgba(0, 0, 0, 1);
hover-type: color;
}
#s-0cb01da4-f3d0-4428-95d0-46447891a2e7:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-0cb01da4-f3d0-4428-95d0-46447891a2e7:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-0cb01da4-f3d0-4428-95d0-46447891a2e7 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0cb01da4-f3d0-4428-95d0-46447891a2e7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0cb01da4-f3d0-4428-95d0-46447891a2e7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  font-family: Montserrat;
  display:  inline-block ;
}

#s-0cb01da4-f3d0-4428-95d0-46447891a2e7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-b6bc261a-cd9a-4b0c-b9f2-388d573e04a8 {
  display: none;
}
#s-bfdfe949-1d86-45a8-b0e8-a8024951359a {
  text-align: left;
}


.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a {
  max-width: 100%;
}

.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a .shg-image-zoom,
.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a {
  max-width: 100%;
}

.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a .shg-image-zoom,
.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a {
  max-width: 100%;
}

.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a .shg-image-zoom,
.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a {
  max-width: 100%;
}

.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a .shg-image-zoom,
.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a {
  max-width: 100%;
}

.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a .shg-image-zoom,
.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bfdfe949-1d86-45a8-b0e8-a8024951359a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-2da4dc8f-3d05-451f-9ac9-c66f4fe4ae11 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2da4dc8f-3d05-451f-9ac9-c66f4fe4ae11 .shg-product-title-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
}

#s-11fe465f-34d2-46f3-bf89-588efc7f9969 {
  text-align: center;
}

#s-11fe465f-34d2-46f3-bf89-588efc7f9969 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
}

#s-11fe465f-34d2-46f3-bf89-588efc7f9969 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Montserrat;
  font-style:  normal ;
  font-size: 18px;
}

#s-11fe465f-34d2-46f3-bf89-588efc7f9969 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-2433d444-3cb1-4d28-984b-e15d9c97ae16 {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
cursor: pointer;
color: rgba(0, 0, 0, 1);
hover-type: color;
}
#s-2433d444-3cb1-4d28-984b-e15d9c97ae16:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-2433d444-3cb1-4d28-984b-e15d9c97ae16:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-2433d444-3cb1-4d28-984b-e15d9c97ae16 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2433d444-3cb1-4d28-984b-e15d9c97ae16.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2433d444-3cb1-4d28-984b-e15d9c97ae16.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-2433d444-3cb1-4d28-984b-e15d9c97ae16.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c0ea9cf1-6b8b-4eae-8459-9209a861edb5 hr {
  border: 0;
  width: 100%;
  border-top: 2px solid rgba(242, 242, 242, 0);
}

@media (max-width: 767px){#s-99ce944b-3b09-4cd3-ad41-247d4b483d5a {
  
}
}
@media (min-width: 0px) {
[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-99ce944b-3b09-4cd3-ad41-247d4b483d5a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-0e862304-053e-40cc-ae50-c6b494106458 {
  min-height: 50px;
}
@media (max-width: 767px){#s-0e862304-053e-40cc-ae50-c6b494106458 {
  display: none;
}
#s-0e862304-053e-40cc-ae50-c6b494106458, #wrap-s-0e862304-053e-40cc-ae50-c6b494106458 { display:none !important; }}







#s-0e862304-053e-40cc-ae50-c6b494106458 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0e862304-053e-40cc-ae50-c6b494106458.shg-box.shg-c {
  justify-content: center;
}

#s-cf39a03b-3d56-4db8-b4bf-b93e3113a039 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-cf39a03b-3d56-4db8-b4bf-b93e3113a039 {
  display: none;
}
#s-cf39a03b-3d56-4db8-b4bf-b93e3113a039, #wrap-s-cf39a03b-3d56-4db8-b4bf-b93e3113a039 { display:none !important; }}@media (max-width: 767px){#s-cf39a03b-3d56-4db8-b4bf-b93e3113a039 {
  display: none;
}
#s-cf39a03b-3d56-4db8-b4bf-b93e3113a039, #wrap-s-cf39a03b-3d56-4db8-b4bf-b93e3113a039 { display:none !important; }}







#s-cf39a03b-3d56-4db8-b4bf-b93e3113a039 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cf39a03b-3d56-4db8-b4bf-b93e3113a039.shg-box.shg-c {
  justify-content: center;
}

#s-82aa6a9c-5221-4fe3-80e6-0a3b76bb58fe {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-82aa6a9c-5221-4fe3-80e6-0a3b76bb58fe .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-f4eff1f0-4716-48a7-ab16-1b8dad08674f {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f4eff1f0-4716-48a7-ab16-1b8dad08674f .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-a78de365-c7cf-48f1-a11b-93a73946e1fe {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a78de365-c7cf-48f1-a11b-93a73946e1fe .shogun-heading-component h3 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-736c2135-d6b6-4456-a83e-474d258a1549 {
  background-image: url(none);
background-repeat: no-repeat;
margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-736c2135-d6b6-4456-a83e-474d258a1549:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-736c2135-d6b6-4456-a83e-474d258a1549:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-736c2135-d6b6-4456-a83e-474d258a1549.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-4bd9a11d-cb89-45f6-82d6-12045fca0d54 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 500px;
background-position: center center;
}








#s-4bd9a11d-cb89-45f6-82d6-12045fca0d54 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4bd9a11d-cb89-45f6-82d6-12045fca0d54 {
  cursor: pointer;
}#s-4bd9a11d-cb89-45f6-82d6-12045fca0d54.shg-box.shg-c {
  justify-content: center;
}

#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d {
  padding-top: 30px;
padding-left: 5%;
padding-bottom: 30px;
padding-right: 5%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d {
  display: none;
}
#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d, #wrap-s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d {
  display: none;
}
#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d, #wrap-s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d {
  display: none;
}
#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d, #wrap-s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d { display:none !important; }}@media (max-width: 767px){#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d {
  padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
display: none;
}
#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d, #wrap-s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d { display:none !important; }}







#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-a51232cd-4524-4992-8887-4a58918a4bda {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(255, 221, 0, 1);
}
@media (max-width: 767px){#s-a51232cd-4524-4992-8887-4a58918a4bda {
  margin-bottom: 20px;
}
}







#s-a51232cd-4524-4992-8887-4a58918a4bda > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a51232cd-4524-4992-8887-4a58918a4bda {
  cursor: pointer;
}#s-a51232cd-4524-4992-8887-4a58918a4bda.shg-box.shg-c {
  justify-content: center;
}

#s-377e2542-589b-4005-b909-ddf273f5e651 .shogun-icon-wrapper {
  text-align: center;
}


#s-377e2542-589b-4005-b909-ddf273f5e651 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 64px !important;
  color: rgba(0, 0, 0, 1);
}

#s-4faadd68-42df-4330-9fa4-b5013b616632 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-4faadd68-42df-4330-9fa4-b5013b616632 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: Montserrat;
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


#s-4faadd68-42df-4330-9fa4-b5013b616632 .shogun-heading-component h2 a {
  color: rgba(0, 0, 0, 1);
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-f5eeb016-484c-4649-9b24-d5d08ec6693b {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(255, 221, 0, 1);
}
@media (max-width: 767px){#s-f5eeb016-484c-4649-9b24-d5d08ec6693b {
  margin-bottom: 20px;
}
}







#s-f5eeb016-484c-4649-9b24-d5d08ec6693b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f5eeb016-484c-4649-9b24-d5d08ec6693b {
  cursor: pointer;
}#s-f5eeb016-484c-4649-9b24-d5d08ec6693b.shg-box.shg-c {
  justify-content: center;
}

#s-b86d8f7f-d9cf-41d3-b1a1-959f3ec798c0 .shogun-icon-wrapper {
  text-align: center;
}


#s-b86d8f7f-d9cf-41d3-b1a1-959f3ec798c0 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 64px !important;
  color: rgba(0, 0, 0, 1);
}

#s-2acad8fd-f0f7-4117-a02f-a007f1887854 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-2acad8fd-f0f7-4117-a02f-a007f1887854 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: Montserrat;
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


#s-2acad8fd-f0f7-4117-a02f-a007f1887854 .shogun-heading-component h2 a {
  color: rgba(0, 0, 0, 1);
}


#s-412e6abf-484f-4e3f-9ce7-610a7a14a4fb {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(255, 221, 0, 1);
}








#s-412e6abf-484f-4e3f-9ce7-610a7a14a4fb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-412e6abf-484f-4e3f-9ce7-610a7a14a4fb {
  cursor: pointer;
}#s-412e6abf-484f-4e3f-9ce7-610a7a14a4fb.shg-box.shg-c {
  justify-content: center;
}

#s-ad60cd7e-ceec-417f-9e52-e809bb46986c .shogun-icon-wrapper {
  text-align: center;
}


#s-ad60cd7e-ceec-417f-9e52-e809bb46986c .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 64px !important;
  color: rgba(0, 0, 0, 1);
}

#s-5655c907-48f5-4106-b15b-2b37601f5500 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5655c907-48f5-4106-b15b-2b37601f5500 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: Montserrat;
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


#s-5655c907-48f5-4106-b15b-2b37601f5500 .shogun-heading-component h2 a {
  color: rgba(0, 0, 0, 1);
}


#s-f29aafa6-66b1-40b8-afcd-c919f6ded582 hr {
  border: 0;
  width: 100%;
  border-top: 2px solid rgba(242, 242, 242, 0);
}

#s-c19ae273-1797-41ff-b4c9-9fc082259da8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c19ae273-1797-41ff-b4c9-9fc082259da8 .shogun-heading-component h2 {
  color: #000;
  font-weight:  600 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 30px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-3c9c030b-b655-4610-b614-8676e1f5e4d2 {
  background-size: cover;
border-style: solid;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 40px;
background-color: rgba(255, 255, 255, 0.22);
background-position: center center;
}








#s-3c9c030b-b655-4610-b614-8676e1f5e4d2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c9c030b-b655-4610-b614-8676e1f5e4d2.shg-box.shg-c {
  justify-content: center;
}

#s-94c8b126-a793-4126-b181-f4cfbf38b5dd {
  background-color: rgba(255, 221, 0, 0);
}

@media (min-width: 0px) {
[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-94c8b126-a793-4126-b181-f4cfbf38b5dd"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-09961f15-bb17-46aa-ac64-881a97337d65 .shogun-icon-wrapper {
  text-align: center;
}


#s-09961f15-bb17-46aa-ac64-881a97337d65 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 64px !important;
  color: rgba(0, 0, 0, 1);
}

#s-d6a3aded-43be-4250-aa0b-7642c6c08713 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d6a3aded-43be-4250-aa0b-7642c6c08713 .shogun-heading-component h4 {
  color: #000;
  font-weight:   ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-49a1bbb1-12a2-4f43-af22-cf1390c0d242 .shogun-icon-wrapper {
  text-align: center;
}


#s-49a1bbb1-12a2-4f43-af22-cf1390c0d242 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 64px !important;
  color: rgba(0, 0, 0, 1);
}

#s-0527868d-6e79-474e-b405-56faac197207 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0527868d-6e79-474e-b405-56faac197207 .shogun-heading-component h4 {
  color: #000;
  font-weight:   ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-81df2b5e-eb02-4de2-9e36-638616faa985 .shogun-icon-wrapper {
  text-align: center;
}


#s-81df2b5e-eb02-4de2-9e36-638616faa985 .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 64px !important;
  color: rgba(0, 0, 0, 1);
}

#s-80082feb-bf74-42f7-b92d-11543abec72a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-80082feb-bf74-42f7-b92d-11543abec72a .shogun-heading-component h4 {
  color: #000;
  font-weight:   ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-e6707201-c8b7-4237-92cc-6c4d7de26303 hr {
  border: 0;
  width: 100%;
  border-top: 2px solid rgba(221, 221, 221, 0);
}

#s-0e5cc33c-d42e-439a-85ae-63c963f6761c {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-0e5cc33c-d42e-439a-85ae-63c963f6761c:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;
hover-type: color !important;}#s-0e5cc33c-d42e-439a-85ae-63c963f6761c:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-0e5cc33c-d42e-439a-85ae-63c963f6761c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 25px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-b8cf601a-1b0f-429a-a4f3-e92866af9e46 hr {
  border: 0;
  width: 100%;
  border-top: 2px solid rgba(221, 221, 221, 0);
}

@media (min-width: 0px) {
[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-349ea33d-7eb6-4c73-864d-148fac737487"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-11edd0ee-da74-4acf-bef3-a979b3f66611 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 500px;
background-position: center center;
}








#s-11edd0ee-da74-4acf-bef3-a979b3f66611 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-11edd0ee-da74-4acf-bef3-a979b3f66611 {
  cursor: pointer;
}#s-11edd0ee-da74-4acf-bef3-a979b3f66611.shg-box.shg-c {
  justify-content: center;
}

#s-a42c8f65-aa44-406b-9c7e-f223f4b06ad8 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-a42c8f65-aa44-406b-9c7e-f223f4b06ad8 {
  
}
}@media (max-width: 767px){#s-a42c8f65-aa44-406b-9c7e-f223f4b06ad8 {
  display: none;
}
#s-a42c8f65-aa44-406b-9c7e-f223f4b06ad8, #wrap-s-a42c8f65-aa44-406b-9c7e-f223f4b06ad8 { display:none !important; }}







#s-a42c8f65-aa44-406b-9c7e-f223f4b06ad8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a42c8f65-aa44-406b-9c7e-f223f4b06ad8.shg-box.shg-c {
  justify-content: center;
}

#s-cce5e390-d53f-4b42-9bf9-cd207578cb4e {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-cce5e390-d53f-4b42-9bf9-cd207578cb4e {
  display: none;
}
#s-cce5e390-d53f-4b42-9bf9-cd207578cb4e, #wrap-s-cce5e390-d53f-4b42-9bf9-cd207578cb4e { display:none !important; }}@media (max-width: 767px){#s-cce5e390-d53f-4b42-9bf9-cd207578cb4e {
  display: none;
}
#s-cce5e390-d53f-4b42-9bf9-cd207578cb4e, #wrap-s-cce5e390-d53f-4b42-9bf9-cd207578cb4e { display:none !important; }}







#s-cce5e390-d53f-4b42-9bf9-cd207578cb4e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cce5e390-d53f-4b42-9bf9-cd207578cb4e.shg-box.shg-c {
  justify-content: center;
}

#s-f8606cc1-566e-4416-a6eb-0983799761bd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f8606cc1-566e-4416-a6eb-0983799761bd .shogun-heading-component h2 {
  color: #000;
  font-weight:  600 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-121a8f79-fb04-4d89-a33f-f375946b8885 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-121a8f79-fb04-4d89-a33f-f375946b8885 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-071560bd-68db-4b60-94f7-cbf082d00ca1 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-071560bd-68db-4b60-94f7-cbf082d00ca1 .shogun-heading-component h3 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-2614bba6-c47c-4e5d-8555-fb266279931e {
  background-image: url(none);
background-repeat: no-repeat;
margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-2614bba6-c47c-4e5d-8555-fb266279931e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2614bba6-c47c-4e5d-8555-fb266279931e:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-2614bba6-c47c-4e5d-8555-fb266279931e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-caa4a57f-f3bf-4d90-8934-63ba043e852e hr {
  border: 0;
  width: 100%;
  border-top: 2px solid rgba(242, 242, 242, 0);
}

#s-0ab49dad-adba-4e25-b498-ff3437f7d531 {
  min-height: 50px;
}








#s-0ab49dad-adba-4e25-b498-ff3437f7d531 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0ab49dad-adba-4e25-b498-ff3437f7d531.shg-box.shg-c {
  justify-content: center;
}

#s-6eab43cf-3f79-4476-89fd-7be983ec92dd {
  padding-top: 75px;
padding-left: 10%;
padding-bottom: 50px;
padding-right: 10%;
background-color: rgba(242, 242, 242, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-6eab43cf-3f79-4476-89fd-7be983ec92dd {
  padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-6eab43cf-3f79-4476-89fd-7be983ec92dd {
  padding-left: 20px;
padding-right: 20px;
}
}







#s-6eab43cf-3f79-4476-89fd-7be983ec92dd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6eab43cf-3f79-4476-89fd-7be983ec92dd {
  cursor: pointer;
}#s-6eab43cf-3f79-4476-89fd-7be983ec92dd.shg-box.shg-c {
  justify-content: center;
}

#s-60b7bee5-ba01-4fa6-8510-83b54cfd69ed {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-60b7bee5-ba01-4fa6-8510-83b54cfd69ed .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: 2px;
  text-align: center;
}


#s-60b7bee5-ba01-4fa6-8510-83b54cfd69ed .shogun-heading-component h2 a {
  color: #000;
}


#s-7537b6ef-7db5-4a88-af71-015e3f4e27c6 {
  margin-bottom: 30px;
}

#s-91d5ded0-8ff0-4a45-96e2-20665fd72c34 {
  min-height: 50px;
}








#s-91d5ded0-8ff0-4a45-96e2-20665fd72c34 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-91d5ded0-8ff0-4a45-96e2-20665fd72c34.shg-box.shg-c {
  justify-content: center;
}

#s-a2494d55-5647-452e-b94c-6a5f5bdc522e {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 221, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-a2494d55-5647-452e-b94c-6a5f5bdc522e:hover {background-color: #424242 !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;}#s-a2494d55-5647-452e-b94c-6a5f5bdc522e:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a2494d55-5647-452e-b94c-6a5f5bdc522e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: ;
  
  
  font-family: Montserrat;
  display:  inline-block ;
}

#s-3b2fd697-6035-4092-8c13-5f957a765a3d {
  min-height: 50px;
}








#s-3b2fd697-6035-4092-8c13-5f957a765a3d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3b2fd697-6035-4092-8c13-5f957a765a3d.shg-box.shg-c {
  justify-content: center;
}

#s-8d7f2d4d-89b2-4a54-9a6a-428ccbee21f5 hr {
  border: 0;
  width: 100%;
  border-top: 2px solid rgba(242, 242, 242, 0);
}

#s-4688e1e0-ad61-4b08-990b-00316facf315 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4688e1e0-ad61-4b08-990b-00316facf315 .shogun-heading-component h1 {
  color: #000;
  font-weight:   ;
  font-family: Montserrat;
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


#s-4688e1e0-ad61-4b08-990b-00316facf315 .shogun-heading-component h1 a {
  color: #000;
}


#s-73ccb404-ff77-4d37-b4ea-36258d33a9e7 {
  min-height: 50px;
}








#s-73ccb404-ff77-4d37-b4ea-36258d33a9e7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-73ccb404-ff77-4d37-b4ea-36258d33a9e7.shg-box.shg-c {
  justify-content: center;
}

.shg-ig-x {
  overflow-x: hidden;
}

.shg-ig-posts-container {
  display: flex;
  flex-wrap: wrap;
}

.shg-ig-posts {
  box-sizing: border-box;
  height: 100%;
}

.shg-ig-posts-link {
  text-decoration: none;
}

.shg-ig-posts-image {
  max-height: 100%;
  width: 100%;
  display: block;
}

.shg-ig-posts-caption {
  width: 100%;
  font-size: 12px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  text-align: left;
}

.shg-ig-details-container {
  padding-top: 9px;
  border-top: 1px solid #ddd;
}

.shg-ig-user-details {
  display: flex;
  flex-direction: row;
}

.shg-ig-user-image {
  max-width: 30px;
  max-height: 30px;
  margin-right: 10px;
}

.shg-ig-username-container {
  display: flex;
  flex-direction: column;
}

.shg-ig-user-full-name {
  margin-bottom: 3px !important;
  font-family: Arial;
  color: #b3b3b3;
  font-size: 12px;
}

.shg-ig-user-createdat {
  margin-bottom: 0 !important;
  font-family: Arial;
  color: #b3b3b3;
  font-size: 12px;
}

@media (min-width: 768px) {
  [id="s-c88276e7-745b-49a4-8add-b19a638080c0"] .shg-ig-posts-container > .shg-ig-posts {
    width: 33.333333333333336%;
    padding-right: 30px;
  }

  .shg-ig-posts-container {
    width: calc(100% + 30px) !important;
  }
}

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

#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;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          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;
}
