.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

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

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

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

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

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

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

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

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

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

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

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

#s-8debcf0e-20ac-44bd-a4e4-c745f30c9589 {
  min-height: 50px;
}








#s-8debcf0e-20ac-44bd-a4e4-c745f30c9589 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8debcf0e-20ac-44bd-a4e4-c745f30c9589.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

@media (min-width: 1200px){#s-b93112da-da98-4bdb-86b6-121027154137 {
  display: none;
}
#s-b93112da-da98-4bdb-86b6-121027154137, #wrap-s-b93112da-da98-4bdb-86b6-121027154137 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b93112da-da98-4bdb-86b6-121027154137 {
  display: none;
}
#s-b93112da-da98-4bdb-86b6-121027154137, #wrap-s-b93112da-da98-4bdb-86b6-121027154137 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b93112da-da98-4bdb-86b6-121027154137 {
  display: none;
}
#s-b93112da-da98-4bdb-86b6-121027154137, #wrap-s-b93112da-da98-4bdb-86b6-121027154137 { display:none !important; }}
#s-b93112da-da98-4bdb-86b6-121027154137 hr {
  border-top: 10px solid rgba(255, 255, 255, 1);
}

.shogun-image-container {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-1e36bc36-d678-4cdd-b95a-0cb2ffd61284 {
  text-align: center;
}
@media (min-width: 1200px){#s-1e36bc36-d678-4cdd-b95a-0cb2ffd61284 {
  display: none;
}
#s-1e36bc36-d678-4cdd-b95a-0cb2ffd61284, #wrap-s-1e36bc36-d678-4cdd-b95a-0cb2ffd61284 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1e36bc36-d678-4cdd-b95a-0cb2ffd61284 {
  display: none;
}
#s-1e36bc36-d678-4cdd-b95a-0cb2ffd61284, #wrap-s-1e36bc36-d678-4cdd-b95a-0cb2ffd61284 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1e36bc36-d678-4cdd-b95a-0cb2ffd61284 {
  display: none;
}
#s-1e36bc36-d678-4cdd-b95a-0cb2ffd61284, #wrap-s-1e36bc36-d678-4cdd-b95a-0cb2ffd61284 { display:none !important; }}@media (max-width: 767px){#s-1e36bc36-d678-4cdd-b95a-0cb2ffd61284 {
  
}
}






  #s-1e36bc36-d678-4cdd-b95a-0cb2ffd61284 img.shogun-image {
    

    
    
    
  }


#s-1e36bc36-d678-4cdd-b95a-0cb2ffd61284 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-185b5783-29d6-42e6-8680-97c027b075bf {
  margin-top: 0px;
margin-left: 8%;
margin-bottom: 0px;
margin-right: 8%;
}
@media (min-width: 768px) and (max-width: 991px){#s-185b5783-29d6-42e6-8680-97c027b075bf {
  display: none;
}
#s-185b5783-29d6-42e6-8680-97c027b075bf, #wrap-s-185b5783-29d6-42e6-8680-97c027b075bf { display:none !important; }}@media (max-width: 767px){#s-185b5783-29d6-42e6-8680-97c027b075bf {
  display: none;
}
#s-185b5783-29d6-42e6-8680-97c027b075bf, #wrap-s-185b5783-29d6-42e6-8680-97c027b075bf { display:none !important; }}
#s-85d6207f-10ed-496c-84f8-a0c8ea78a88e {
  margin-left: 3%;
margin-right: 3%;
}
@media (min-width: 1200px){#s-85d6207f-10ed-496c-84f8-a0c8ea78a88e {
  display: none;
}
#s-85d6207f-10ed-496c-84f8-a0c8ea78a88e, #wrap-s-85d6207f-10ed-496c-84f8-a0c8ea78a88e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-85d6207f-10ed-496c-84f8-a0c8ea78a88e {
  display: none;
}
#s-85d6207f-10ed-496c-84f8-a0c8ea78a88e, #wrap-s-85d6207f-10ed-496c-84f8-a0c8ea78a88e { display:none !important; }}@media (max-width: 767px){#s-85d6207f-10ed-496c-84f8-a0c8ea78a88e {
  display: none;
}
#s-85d6207f-10ed-496c-84f8-a0c8ea78a88e, #wrap-s-85d6207f-10ed-496c-84f8-a0c8ea78a88e { display:none !important; }}
#s-2cf094eb-4f3c-49f6-9af0-add502f9a9ff {
  margin-left: 9%;
margin-right: 9%;
}
@media (min-width: 1200px){#s-2cf094eb-4f3c-49f6-9af0-add502f9a9ff {
  display: none;
}
#s-2cf094eb-4f3c-49f6-9af0-add502f9a9ff, #wrap-s-2cf094eb-4f3c-49f6-9af0-add502f9a9ff { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2cf094eb-4f3c-49f6-9af0-add502f9a9ff {
  display: none;
}
#s-2cf094eb-4f3c-49f6-9af0-add502f9a9ff, #wrap-s-2cf094eb-4f3c-49f6-9af0-add502f9a9ff { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2cf094eb-4f3c-49f6-9af0-add502f9a9ff {
  display: none;
}
#s-2cf094eb-4f3c-49f6-9af0-add502f9a9ff, #wrap-s-2cf094eb-4f3c-49f6-9af0-add502f9a9ff { display:none !important; }}
#s-0171e9ac-00af-46f8-9bca-5660e286534b {
  text-align: center;
}
@media (max-width: 767px){#s-0171e9ac-00af-46f8-9bca-5660e286534b {
  display: none;
}
#s-0171e9ac-00af-46f8-9bca-5660e286534b, #wrap-s-0171e9ac-00af-46f8-9bca-5660e286534b { display:none !important; }}







#s-0171e9ac-00af-46f8-9bca-5660e286534b .shogun-image-content {
  
    align-items: center;
  
}

#s-a33b4893-340f-4f1c-83a4-c052d8b626b0 {
  text-align: left;
}

#s-484c4e2b-52b6-402d-a6e8-ef445e790ed0 {
  margin-left: 7%;
margin-right: 7%;
padding-top: 25px;
padding-bottom: 25px;
}

#s-32f30ea1-c251-4073-9024-80ddce54a7f2 {
  min-height: 50px;
}








#s-32f30ea1-c251-4073-9024-80ddce54a7f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-32f30ea1-c251-4073-9024-80ddce54a7f2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

@media (min-width: 1200px){#s-72ee87c6-611b-4a38-9d0f-3407da7baea4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-72ee87c6-611b-4a38-9d0f-3407da7baea4 {
  display: none;
}
#s-72ee87c6-611b-4a38-9d0f-3407da7baea4, #wrap-s-72ee87c6-611b-4a38-9d0f-3407da7baea4 { display:none !important; }}@media (max-width: 767px){#s-72ee87c6-611b-4a38-9d0f-3407da7baea4 {
  display: none;
}
#s-72ee87c6-611b-4a38-9d0f-3407da7baea4, #wrap-s-72ee87c6-611b-4a38-9d0f-3407da7baea4 { display:none !important; }}
@media (min-width: 0px) {
[id="s-72ee87c6-611b-4a38-9d0f-3407da7baea4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-72ee87c6-611b-4a38-9d0f-3407da7baea4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-72ee87c6-611b-4a38-9d0f-3407da7baea4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-72ee87c6-611b-4a38-9d0f-3407da7baea4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-4dd438bd-1f81-4509-a306-561156c6a83b {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-4dd438bd-1f81-4509-a306-561156c6a83b .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-4dd438bd-1f81-4509-a306-561156c6a83b .shg-sld-nav-button.shg-sld-left,
#s-4dd438bd-1f81-4509-a306-561156c6a83b .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-8511fdb4-cb32-406d-b2f3-1d03480b2782 {
  max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-8511fdb4-cb32-406d-b2f3-1d03480b2782 img.shogun-image,
  #s-8511fdb4-cb32-406d-b2f3-1d03480b2782 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8511fdb4-cb32-406d-b2f3-1d03480b2782 {
    width: 100%;
    height: auto;
  }



  img.s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shogun-image {
    
    
  }


.s-8511fdb4-cb32-406d-b2f3-1d03480b2782 .shogun-image-content {
  
    align-items: center;
  
}

.s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shg-align-container {
  text-align: center
}

.s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-8511fdb4-cb32-406d-b2f3-1d03480b2782 img.shogun-image,
  #s-8511fdb4-cb32-406d-b2f3-1d03480b2782 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8511fdb4-cb32-406d-b2f3-1d03480b2782 {
    width: 100%;
    height: auto;
  }



  img.s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shogun-image {
    
    
  }


.s-8511fdb4-cb32-406d-b2f3-1d03480b2782 .shogun-image-content {
  
    align-items: center;
  
}

.s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shg-align-container {
  text-align: center
}

.s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shogun-image {
  box-sizing: border-box;
}


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



  #s-8511fdb4-cb32-406d-b2f3-1d03480b2782 img.shogun-image,
  #s-8511fdb4-cb32-406d-b2f3-1d03480b2782 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8511fdb4-cb32-406d-b2f3-1d03480b2782 {
    width: 100%;
    height: auto;
  }



  img.s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shogun-image {
    
    
  }


.s-8511fdb4-cb32-406d-b2f3-1d03480b2782 .shogun-image-content {
  
    align-items: center;
  
}

.s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shg-align-container {
  text-align: center
}

.s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shogun-image {
  box-sizing: border-box;
}


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



  #s-8511fdb4-cb32-406d-b2f3-1d03480b2782 img.shogun-image,
  #s-8511fdb4-cb32-406d-b2f3-1d03480b2782 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8511fdb4-cb32-406d-b2f3-1d03480b2782 {
    width: 100%;
    height: auto;
  }



  img.s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shogun-image {
    
    
  }


.s-8511fdb4-cb32-406d-b2f3-1d03480b2782 .shogun-image-content {
  
    align-items: center;
  
}

.s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shg-align-container {
  text-align: center
}

.s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shogun-image {
  box-sizing: border-box;
}


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



  #s-8511fdb4-cb32-406d-b2f3-1d03480b2782 img.shogun-image,
  #s-8511fdb4-cb32-406d-b2f3-1d03480b2782 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8511fdb4-cb32-406d-b2f3-1d03480b2782 {
    width: 100%;
    height: auto;
  }



  img.s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shogun-image {
    
    
  }


.s-8511fdb4-cb32-406d-b2f3-1d03480b2782 .shogun-image-content {
  
    align-items: center;
  
}

.s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shg-align-container {
  text-align: center
}

.s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8511fdb4-cb32-406d-b2f3-1d03480b2782.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-0556cc19-f06b-4624-921d-015e1839e0ba {
  
}
}@media (max-width: 767px){#s-0556cc19-f06b-4624-921d-015e1839e0ba {
  display: none;
}
#s-0556cc19-f06b-4624-921d-015e1839e0ba, #wrap-s-0556cc19-f06b-4624-921d-015e1839e0ba { display:none !important; }}
#s-a7727724-a876-4be8-afb9-8a8fbb01a23f {
  max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-a7727724-a876-4be8-afb9-8a8fbb01a23f img.shogun-image,
  #s-a7727724-a876-4be8-afb9-8a8fbb01a23f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7727724-a876-4be8-afb9-8a8fbb01a23f {
    width: 100%;
    height: auto;
  }



  img.s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shogun-image {
    
    
  }


.s-a7727724-a876-4be8-afb9-8a8fbb01a23f .shogun-image-content {
  
    align-items: center;
  
}

.s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shg-align-container {
  text-align: center
}

.s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-a7727724-a876-4be8-afb9-8a8fbb01a23f img.shogun-image,
  #s-a7727724-a876-4be8-afb9-8a8fbb01a23f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7727724-a876-4be8-afb9-8a8fbb01a23f {
    width: 100%;
    height: auto;
  }



  img.s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shogun-image {
    
    
  }


.s-a7727724-a876-4be8-afb9-8a8fbb01a23f .shogun-image-content {
  
    align-items: center;
  
}

.s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shg-align-container {
  text-align: center
}

.s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shogun-image {
  box-sizing: border-box;
}


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



  #s-a7727724-a876-4be8-afb9-8a8fbb01a23f img.shogun-image,
  #s-a7727724-a876-4be8-afb9-8a8fbb01a23f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7727724-a876-4be8-afb9-8a8fbb01a23f {
    width: 100%;
    height: auto;
  }



  img.s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shogun-image {
    
    
  }


.s-a7727724-a876-4be8-afb9-8a8fbb01a23f .shogun-image-content {
  
    align-items: center;
  
}

.s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shg-align-container {
  text-align: center
}

.s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shogun-image {
  box-sizing: border-box;
}


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



  #s-a7727724-a876-4be8-afb9-8a8fbb01a23f img.shogun-image,
  #s-a7727724-a876-4be8-afb9-8a8fbb01a23f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7727724-a876-4be8-afb9-8a8fbb01a23f {
    width: 100%;
    height: auto;
  }



  img.s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shogun-image {
    
    
  }


.s-a7727724-a876-4be8-afb9-8a8fbb01a23f .shogun-image-content {
  
    align-items: center;
  
}

.s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shg-align-container {
  text-align: center
}

.s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shogun-image {
  box-sizing: border-box;
}


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



  #s-a7727724-a876-4be8-afb9-8a8fbb01a23f img.shogun-image,
  #s-a7727724-a876-4be8-afb9-8a8fbb01a23f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7727724-a876-4be8-afb9-8a8fbb01a23f {
    width: 100%;
    height: auto;
  }



  img.s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shogun-image {
    
    
  }


.s-a7727724-a876-4be8-afb9-8a8fbb01a23f .shogun-image-content {
  
    align-items: center;
  
}

.s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shg-align-container {
  text-align: center
}

.s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7727724-a876-4be8-afb9-8a8fbb01a23f.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-96f9a49d-426a-4817-a98b-5192e0391b9f {
  
}
}@media (max-width: 767px){#s-96f9a49d-426a-4817-a98b-5192e0391b9f {
  display: none;
}
#s-96f9a49d-426a-4817-a98b-5192e0391b9f, #wrap-s-96f9a49d-426a-4817-a98b-5192e0391b9f { display:none !important; }}
@media (min-width: 1200px){#s-e30b4321-fbf2-4102-85a8-c71e06d95192 {
  display: none;
}
#s-e30b4321-fbf2-4102-85a8-c71e06d95192, #wrap-s-e30b4321-fbf2-4102-85a8-c71e06d95192 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e30b4321-fbf2-4102-85a8-c71e06d95192 {
  display: none;
}
#s-e30b4321-fbf2-4102-85a8-c71e06d95192, #wrap-s-e30b4321-fbf2-4102-85a8-c71e06d95192 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e30b4321-fbf2-4102-85a8-c71e06d95192 {
  display: none;
}
#s-e30b4321-fbf2-4102-85a8-c71e06d95192, #wrap-s-e30b4321-fbf2-4102-85a8-c71e06d95192 { display:none !important; }}@media (max-width: 767px){#s-e30b4321-fbf2-4102-85a8-c71e06d95192 {
  display: none;
}
#s-e30b4321-fbf2-4102-85a8-c71e06d95192, #wrap-s-e30b4321-fbf2-4102-85a8-c71e06d95192 { display:none !important; }}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

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

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

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

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

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

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

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

#s-0794e827-c5b6-4194-9d70-e8a8baff8b3c {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-0794e827-c5b6-4194-9d70-e8a8baff8b3c:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-0794e827-c5b6-4194-9d70-e8a8baff8b3c:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-0794e827-c5b6-4194-9d70-e8a8baff8b3c-root {
    text-align: center;
  }


#s-0794e827-c5b6-4194-9d70-e8a8baff8b3c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0794e827-c5b6-4194-9d70-e8a8baff8b3c-root {
    text-align: center;
  }


#s-0794e827-c5b6-4194-9d70-e8a8baff8b3c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0794e827-c5b6-4194-9d70-e8a8baff8b3c-root {
    text-align: center;
  }


#s-0794e827-c5b6-4194-9d70-e8a8baff8b3c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0794e827-c5b6-4194-9d70-e8a8baff8b3c-root {
    text-align: center;
  }


#s-0794e827-c5b6-4194-9d70-e8a8baff8b3c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0794e827-c5b6-4194-9d70-e8a8baff8b3c-root {
    text-align: center;
  }


#s-0794e827-c5b6-4194-9d70-e8a8baff8b3c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-6e5172c9-d120-493a-9b4a-8f68640352bc {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-6e5172c9-d120-493a-9b4a-8f68640352bc .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-6e5172c9-d120-493a-9b4a-8f68640352bc .shg-sld-nav-button.shg-sld-left,
#s-6e5172c9-d120-493a-9b4a-8f68640352bc .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-ba320b25-468d-4563-bc6b-8c3fa284d26c {
  text-align: center;
}







  img.s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shogun-image {
    
    
  }


.s-ba320b25-468d-4563-bc6b-8c3fa284d26c .shogun-image-content {
  
    align-items: center;
  
}

.s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shg-align-container {
  text-align: center
}

.s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shogun-image {
    
    
  }


.s-ba320b25-468d-4563-bc6b-8c3fa284d26c .shogun-image-content {
  
    align-items: center;
  
}

.s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shg-align-container {
  text-align: center
}

.s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shogun-image {
    
    
  }


.s-ba320b25-468d-4563-bc6b-8c3fa284d26c .shogun-image-content {
  
    align-items: center;
  
}

.s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shg-align-container {
  text-align: center
}

.s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shogun-image {
    
    
  }


.s-ba320b25-468d-4563-bc6b-8c3fa284d26c .shogun-image-content {
  
    align-items: center;
  
}

.s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shg-align-container {
  text-align: center
}

.s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shogun-image {
    
    
  }


.s-ba320b25-468d-4563-bc6b-8c3fa284d26c .shogun-image-content {
  
    align-items: center;
  
}

.s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shg-align-container {
  text-align: center
}

.s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ba320b25-468d-4563-bc6b-8c3fa284d26c.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-f7877bde-ffb8-4437-8ecd-15c0e746cabc {
  
}
}@media (max-width: 767px){#s-f7877bde-ffb8-4437-8ecd-15c0e746cabc {
  display: none;
}
#s-f7877bde-ffb8-4437-8ecd-15c0e746cabc, #wrap-s-f7877bde-ffb8-4437-8ecd-15c0e746cabc { display:none !important; }}
#s-d85b6458-1e48-44c4-8941-23c43b0c910e {
  text-align: center;
}







  img.s-d85b6458-1e48-44c4-8941-23c43b0c910e.shogun-image {
    
    
  }


.s-d85b6458-1e48-44c4-8941-23c43b0c910e .shogun-image-content {
  
    align-items: center;
  
}

.s-d85b6458-1e48-44c4-8941-23c43b0c910e.shg-align-container {
  text-align: center
}

.s-d85b6458-1e48-44c4-8941-23c43b0c910e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d85b6458-1e48-44c4-8941-23c43b0c910e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-d85b6458-1e48-44c4-8941-23c43b0c910e.shogun-image {
    
    
  }


.s-d85b6458-1e48-44c4-8941-23c43b0c910e .shogun-image-content {
  
    align-items: center;
  
}

.s-d85b6458-1e48-44c4-8941-23c43b0c910e.shg-align-container {
  text-align: center
}

.s-d85b6458-1e48-44c4-8941-23c43b0c910e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d85b6458-1e48-44c4-8941-23c43b0c910e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d85b6458-1e48-44c4-8941-23c43b0c910e.shogun-image {
    
    
  }


.s-d85b6458-1e48-44c4-8941-23c43b0c910e .shogun-image-content {
  
    align-items: center;
  
}

.s-d85b6458-1e48-44c4-8941-23c43b0c910e.shg-align-container {
  text-align: center
}

.s-d85b6458-1e48-44c4-8941-23c43b0c910e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d85b6458-1e48-44c4-8941-23c43b0c910e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d85b6458-1e48-44c4-8941-23c43b0c910e.shogun-image {
    
    
  }


.s-d85b6458-1e48-44c4-8941-23c43b0c910e .shogun-image-content {
  
    align-items: center;
  
}

.s-d85b6458-1e48-44c4-8941-23c43b0c910e.shg-align-container {
  text-align: center
}

.s-d85b6458-1e48-44c4-8941-23c43b0c910e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d85b6458-1e48-44c4-8941-23c43b0c910e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d85b6458-1e48-44c4-8941-23c43b0c910e.shogun-image {
    
    
  }


.s-d85b6458-1e48-44c4-8941-23c43b0c910e .shogun-image-content {
  
    align-items: center;
  
}

.s-d85b6458-1e48-44c4-8941-23c43b0c910e.shg-align-container {
  text-align: center
}

.s-d85b6458-1e48-44c4-8941-23c43b0c910e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d85b6458-1e48-44c4-8941-23c43b0c910e.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-f43eee8c-79ae-4856-8fe7-79a065e68751 {
  
}
}@media (max-width: 767px){#s-f43eee8c-79ae-4856-8fe7-79a065e68751 {
  display: none;
}
#s-f43eee8c-79ae-4856-8fe7-79a065e68751, #wrap-s-f43eee8c-79ae-4856-8fe7-79a065e68751 { display:none !important; }}
@media (min-width: 1200px){#s-094afbb7-2ab3-41bb-8174-33adc5f0182c {
  display: none;
}
#s-094afbb7-2ab3-41bb-8174-33adc5f0182c, #wrap-s-094afbb7-2ab3-41bb-8174-33adc5f0182c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-094afbb7-2ab3-41bb-8174-33adc5f0182c {
  display: none;
}
#s-094afbb7-2ab3-41bb-8174-33adc5f0182c, #wrap-s-094afbb7-2ab3-41bb-8174-33adc5f0182c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-094afbb7-2ab3-41bb-8174-33adc5f0182c {
  display: none;
}
#s-094afbb7-2ab3-41bb-8174-33adc5f0182c, #wrap-s-094afbb7-2ab3-41bb-8174-33adc5f0182c { display:none !important; }}@media (max-width: 767px){#s-094afbb7-2ab3-41bb-8174-33adc5f0182c {
  display: none;
}
#s-094afbb7-2ab3-41bb-8174-33adc5f0182c, #wrap-s-094afbb7-2ab3-41bb-8174-33adc5f0182c { display:none !important; }}
#s-24b9d97a-4d67-45e1-86a6-b07869bad11b {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-24b9d97a-4d67-45e1-86a6-b07869bad11b:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-24b9d97a-4d67-45e1-86a6-b07869bad11b:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-24b9d97a-4d67-45e1-86a6-b07869bad11b-root {
    text-align: center;
  }


#s-24b9d97a-4d67-45e1-86a6-b07869bad11b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-24b9d97a-4d67-45e1-86a6-b07869bad11b-root {
    text-align: center;
  }


#s-24b9d97a-4d67-45e1-86a6-b07869bad11b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-24b9d97a-4d67-45e1-86a6-b07869bad11b-root {
    text-align: center;
  }


#s-24b9d97a-4d67-45e1-86a6-b07869bad11b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-24b9d97a-4d67-45e1-86a6-b07869bad11b-root {
    text-align: center;
  }


#s-24b9d97a-4d67-45e1-86a6-b07869bad11b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-24b9d97a-4d67-45e1-86a6-b07869bad11b-root {
    text-align: center;
  }


#s-24b9d97a-4d67-45e1-86a6-b07869bad11b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-d25ef9c1-ee44-4323-8b7b-1d9e9e6a9630 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-d25ef9c1-ee44-4323-8b7b-1d9e9e6a9630 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-d25ef9c1-ee44-4323-8b7b-1d9e9e6a9630 .shg-sld-nav-button.shg-sld-left,
#s-d25ef9c1-ee44-4323-8b7b-1d9e9e6a9630 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42 {
  text-align: center;
}







  img.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shogun-image {
    
    
  }


.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42 .shogun-image-content {
  
    align-items: center;
  
}

.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shg-align-container {
  text-align: center
}

.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shogun-image {
    
    
  }


.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42 .shogun-image-content {
  
    align-items: center;
  
}

.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shg-align-container {
  text-align: center
}

.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shogun-image {
    
    
  }


.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42 .shogun-image-content {
  
    align-items: center;
  
}

.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shg-align-container {
  text-align: center
}

.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shogun-image {
    
    
  }


.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42 .shogun-image-content {
  
    align-items: center;
  
}

.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shg-align-container {
  text-align: center
}

.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shogun-image {
    
    
  }


.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42 .shogun-image-content {
  
    align-items: center;
  
}

.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shg-align-container {
  text-align: center
}

.s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3092c7f3-bac0-4498-82fc-e7d6b92f9f42.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-21f32f5a-3454-4ae8-919d-26aa8b1c73b3 {
  display: none;
}
#s-21f32f5a-3454-4ae8-919d-26aa8b1c73b3, #wrap-s-21f32f5a-3454-4ae8-919d-26aa8b1c73b3 { display:none !important; }}@media (max-width: 767px){#s-21f32f5a-3454-4ae8-919d-26aa8b1c73b3 {
  display: none;
}
#s-21f32f5a-3454-4ae8-919d-26aa8b1c73b3, #wrap-s-21f32f5a-3454-4ae8-919d-26aa8b1c73b3 { display:none !important; }}
#s-11357fec-a824-429f-8c68-2eef4db0fe4e {
  text-align: center;
}







  img.s-11357fec-a824-429f-8c68-2eef4db0fe4e.shogun-image {
    
    
  }


.s-11357fec-a824-429f-8c68-2eef4db0fe4e .shogun-image-content {
  
    align-items: center;
  
}

.s-11357fec-a824-429f-8c68-2eef4db0fe4e.shg-align-container {
  text-align: center
}

.s-11357fec-a824-429f-8c68-2eef4db0fe4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11357fec-a824-429f-8c68-2eef4db0fe4e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-11357fec-a824-429f-8c68-2eef4db0fe4e.shogun-image {
    
    
  }


.s-11357fec-a824-429f-8c68-2eef4db0fe4e .shogun-image-content {
  
    align-items: center;
  
}

.s-11357fec-a824-429f-8c68-2eef4db0fe4e.shg-align-container {
  text-align: center
}

.s-11357fec-a824-429f-8c68-2eef4db0fe4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11357fec-a824-429f-8c68-2eef4db0fe4e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-11357fec-a824-429f-8c68-2eef4db0fe4e.shogun-image {
    
    
  }


.s-11357fec-a824-429f-8c68-2eef4db0fe4e .shogun-image-content {
  
    align-items: center;
  
}

.s-11357fec-a824-429f-8c68-2eef4db0fe4e.shg-align-container {
  text-align: center
}

.s-11357fec-a824-429f-8c68-2eef4db0fe4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11357fec-a824-429f-8c68-2eef4db0fe4e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-11357fec-a824-429f-8c68-2eef4db0fe4e.shogun-image {
    
    
  }


.s-11357fec-a824-429f-8c68-2eef4db0fe4e .shogun-image-content {
  
    align-items: center;
  
}

.s-11357fec-a824-429f-8c68-2eef4db0fe4e.shg-align-container {
  text-align: center
}

.s-11357fec-a824-429f-8c68-2eef4db0fe4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11357fec-a824-429f-8c68-2eef4db0fe4e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-11357fec-a824-429f-8c68-2eef4db0fe4e.shogun-image {
    
    
  }


.s-11357fec-a824-429f-8c68-2eef4db0fe4e .shogun-image-content {
  
    align-items: center;
  
}

.s-11357fec-a824-429f-8c68-2eef4db0fe4e.shg-align-container {
  text-align: center
}

.s-11357fec-a824-429f-8c68-2eef4db0fe4e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-11357fec-a824-429f-8c68-2eef4db0fe4e.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-9ea6a7c7-b37a-4ead-bf5b-ed792fe0b0d9 {
  display: none;
}
#s-9ea6a7c7-b37a-4ead-bf5b-ed792fe0b0d9, #wrap-s-9ea6a7c7-b37a-4ead-bf5b-ed792fe0b0d9 { display:none !important; }}@media (max-width: 767px){#s-9ea6a7c7-b37a-4ead-bf5b-ed792fe0b0d9 {
  display: none;
}
#s-9ea6a7c7-b37a-4ead-bf5b-ed792fe0b0d9, #wrap-s-9ea6a7c7-b37a-4ead-bf5b-ed792fe0b0d9 { display:none !important; }}
@media (min-width: 1200px){#s-6ae965e0-1616-40f8-b32f-b8b2f8e7ea3d {
  display: none;
}
#s-6ae965e0-1616-40f8-b32f-b8b2f8e7ea3d, #wrap-s-6ae965e0-1616-40f8-b32f-b8b2f8e7ea3d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6ae965e0-1616-40f8-b32f-b8b2f8e7ea3d {
  display: none;
}
#s-6ae965e0-1616-40f8-b32f-b8b2f8e7ea3d, #wrap-s-6ae965e0-1616-40f8-b32f-b8b2f8e7ea3d { display:none !important; }}@media (max-width: 767px){#s-6ae965e0-1616-40f8-b32f-b8b2f8e7ea3d {
  display: none;
}
#s-6ae965e0-1616-40f8-b32f-b8b2f8e7ea3d, #wrap-s-6ae965e0-1616-40f8-b32f-b8b2f8e7ea3d { display:none !important; }}
#s-74434d3f-0c20-44c9-a960-65ee687d4517 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-74434d3f-0c20-44c9-a960-65ee687d4517:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-74434d3f-0c20-44c9-a960-65ee687d4517:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-74434d3f-0c20-44c9-a960-65ee687d4517-root {
    text-align: center;
  }


#s-74434d3f-0c20-44c9-a960-65ee687d4517.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-74434d3f-0c20-44c9-a960-65ee687d4517-root {
    text-align: center;
  }


#s-74434d3f-0c20-44c9-a960-65ee687d4517.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-74434d3f-0c20-44c9-a960-65ee687d4517-root {
    text-align: center;
  }


#s-74434d3f-0c20-44c9-a960-65ee687d4517.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-74434d3f-0c20-44c9-a960-65ee687d4517-root {
    text-align: center;
  }


#s-74434d3f-0c20-44c9-a960-65ee687d4517.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-74434d3f-0c20-44c9-a960-65ee687d4517-root {
    text-align: center;
  }


#s-74434d3f-0c20-44c9-a960-65ee687d4517.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-4f9c467b-cd5e-4115-b216-1f693ab319fc {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-4f9c467b-cd5e-4115-b216-1f693ab319fc {
  display: none;
}
#s-4f9c467b-cd5e-4115-b216-1f693ab319fc, #wrap-s-4f9c467b-cd5e-4115-b216-1f693ab319fc { display:none !important; }}@media (max-width: 767px){#s-4f9c467b-cd5e-4115-b216-1f693ab319fc {
  display: none;
}
#s-4f9c467b-cd5e-4115-b216-1f693ab319fc, #wrap-s-4f9c467b-cd5e-4115-b216-1f693ab319fc { display:none !important; }}
@media (min-width: 0px) {
[id="s-4f9c467b-cd5e-4115-b216-1f693ab319fc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4f9c467b-cd5e-4115-b216-1f693ab319fc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-4f9c467b-cd5e-4115-b216-1f693ab319fc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-4f9c467b-cd5e-4115-b216-1f693ab319fc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-a59627fb-d09f-4fe5-9e4b-9a6186f83a00 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-a59627fb-d09f-4fe5-9e4b-9a6186f83a00 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-a59627fb-d09f-4fe5-9e4b-9a6186f83a00 .shg-sld-nav-button.shg-sld-left,
#s-a59627fb-d09f-4fe5-9e4b-9a6186f83a00 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-f7535817-0855-431a-a447-ce396f8eb9ba {
  text-align: center;
}







  img.s-f7535817-0855-431a-a447-ce396f8eb9ba.shogun-image {
    
    
  }


.s-f7535817-0855-431a-a447-ce396f8eb9ba .shogun-image-content {
  
    align-items: center;
  
}

.s-f7535817-0855-431a-a447-ce396f8eb9ba.shg-align-container {
  text-align: center
}

.s-f7535817-0855-431a-a447-ce396f8eb9ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7535817-0855-431a-a447-ce396f8eb9ba.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-f7535817-0855-431a-a447-ce396f8eb9ba.shogun-image {
    
    
  }


.s-f7535817-0855-431a-a447-ce396f8eb9ba .shogun-image-content {
  
    align-items: center;
  
}

.s-f7535817-0855-431a-a447-ce396f8eb9ba.shg-align-container {
  text-align: center
}

.s-f7535817-0855-431a-a447-ce396f8eb9ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7535817-0855-431a-a447-ce396f8eb9ba.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f7535817-0855-431a-a447-ce396f8eb9ba.shogun-image {
    
    
  }


.s-f7535817-0855-431a-a447-ce396f8eb9ba .shogun-image-content {
  
    align-items: center;
  
}

.s-f7535817-0855-431a-a447-ce396f8eb9ba.shg-align-container {
  text-align: center
}

.s-f7535817-0855-431a-a447-ce396f8eb9ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7535817-0855-431a-a447-ce396f8eb9ba.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f7535817-0855-431a-a447-ce396f8eb9ba.shogun-image {
    
    
  }


.s-f7535817-0855-431a-a447-ce396f8eb9ba .shogun-image-content {
  
    align-items: center;
  
}

.s-f7535817-0855-431a-a447-ce396f8eb9ba.shg-align-container {
  text-align: center
}

.s-f7535817-0855-431a-a447-ce396f8eb9ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7535817-0855-431a-a447-ce396f8eb9ba.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f7535817-0855-431a-a447-ce396f8eb9ba.shogun-image {
    
    
  }


.s-f7535817-0855-431a-a447-ce396f8eb9ba .shogun-image-content {
  
    align-items: center;
  
}

.s-f7535817-0855-431a-a447-ce396f8eb9ba.shg-align-container {
  text-align: center
}

.s-f7535817-0855-431a-a447-ce396f8eb9ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7535817-0855-431a-a447-ce396f8eb9ba.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-d792431f-2e15-4509-9af0-1e5431b9e92a {
  display: none;
}
#s-d792431f-2e15-4509-9af0-1e5431b9e92a, #wrap-s-d792431f-2e15-4509-9af0-1e5431b9e92a { display:none !important; }}@media (max-width: 767px){#s-d792431f-2e15-4509-9af0-1e5431b9e92a {
  display: none;
}
#s-d792431f-2e15-4509-9af0-1e5431b9e92a, #wrap-s-d792431f-2e15-4509-9af0-1e5431b9e92a { display:none !important; }}
#s-f1e93836-c942-49bb-bd37-ba6547ad9019 {
  text-align: center;
}







  img.s-f1e93836-c942-49bb-bd37-ba6547ad9019.shogun-image {
    
    
  }


.s-f1e93836-c942-49bb-bd37-ba6547ad9019 .shogun-image-content {
  
    align-items: center;
  
}

.s-f1e93836-c942-49bb-bd37-ba6547ad9019.shg-align-container {
  text-align: center
}

.s-f1e93836-c942-49bb-bd37-ba6547ad9019.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1e93836-c942-49bb-bd37-ba6547ad9019.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-f1e93836-c942-49bb-bd37-ba6547ad9019.shogun-image {
    
    
  }


.s-f1e93836-c942-49bb-bd37-ba6547ad9019 .shogun-image-content {
  
    align-items: center;
  
}

.s-f1e93836-c942-49bb-bd37-ba6547ad9019.shg-align-container {
  text-align: center
}

.s-f1e93836-c942-49bb-bd37-ba6547ad9019.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1e93836-c942-49bb-bd37-ba6547ad9019.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f1e93836-c942-49bb-bd37-ba6547ad9019.shogun-image {
    
    
  }


.s-f1e93836-c942-49bb-bd37-ba6547ad9019 .shogun-image-content {
  
    align-items: center;
  
}

.s-f1e93836-c942-49bb-bd37-ba6547ad9019.shg-align-container {
  text-align: center
}

.s-f1e93836-c942-49bb-bd37-ba6547ad9019.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1e93836-c942-49bb-bd37-ba6547ad9019.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f1e93836-c942-49bb-bd37-ba6547ad9019.shogun-image {
    
    
  }


.s-f1e93836-c942-49bb-bd37-ba6547ad9019 .shogun-image-content {
  
    align-items: center;
  
}

.s-f1e93836-c942-49bb-bd37-ba6547ad9019.shg-align-container {
  text-align: center
}

.s-f1e93836-c942-49bb-bd37-ba6547ad9019.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1e93836-c942-49bb-bd37-ba6547ad9019.shogun-image {
  box-sizing: border-box;
}


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





  img.s-f1e93836-c942-49bb-bd37-ba6547ad9019.shogun-image {
    
    
  }


.s-f1e93836-c942-49bb-bd37-ba6547ad9019 .shogun-image-content {
  
    align-items: center;
  
}

.s-f1e93836-c942-49bb-bd37-ba6547ad9019.shg-align-container {
  text-align: center
}

.s-f1e93836-c942-49bb-bd37-ba6547ad9019.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f1e93836-c942-49bb-bd37-ba6547ad9019.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-b5b31b6d-4939-4dc6-b501-b74a55db46eb {
  display: none;
}
#s-b5b31b6d-4939-4dc6-b501-b74a55db46eb, #wrap-s-b5b31b6d-4939-4dc6-b501-b74a55db46eb { display:none !important; }}@media (max-width: 767px){#s-b5b31b6d-4939-4dc6-b501-b74a55db46eb {
  display: none;
}
#s-b5b31b6d-4939-4dc6-b501-b74a55db46eb, #wrap-s-b5b31b6d-4939-4dc6-b501-b74a55db46eb { display:none !important; }}
@media (min-width: 1200px){#s-00786948-f3e8-414a-8056-2a3cd081d330 {
  display: none;
}
#s-00786948-f3e8-414a-8056-2a3cd081d330, #wrap-s-00786948-f3e8-414a-8056-2a3cd081d330 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-00786948-f3e8-414a-8056-2a3cd081d330 {
  display: none;
}
#s-00786948-f3e8-414a-8056-2a3cd081d330, #wrap-s-00786948-f3e8-414a-8056-2a3cd081d330 { display:none !important; }}@media (max-width: 767px){#s-00786948-f3e8-414a-8056-2a3cd081d330 {
  display: none;
}
#s-00786948-f3e8-414a-8056-2a3cd081d330, #wrap-s-00786948-f3e8-414a-8056-2a3cd081d330 { display:none !important; }}
#s-e489717b-df3c-4a0c-b4fe-05798f1164d6 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-e489717b-df3c-4a0c-b4fe-05798f1164d6:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-e489717b-df3c-4a0c-b4fe-05798f1164d6:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-e489717b-df3c-4a0c-b4fe-05798f1164d6-root {
    text-align: center;
  }


#s-e489717b-df3c-4a0c-b4fe-05798f1164d6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e489717b-df3c-4a0c-b4fe-05798f1164d6-root {
    text-align: center;
  }


#s-e489717b-df3c-4a0c-b4fe-05798f1164d6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e489717b-df3c-4a0c-b4fe-05798f1164d6-root {
    text-align: center;
  }


#s-e489717b-df3c-4a0c-b4fe-05798f1164d6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e489717b-df3c-4a0c-b4fe-05798f1164d6-root {
    text-align: center;
  }


#s-e489717b-df3c-4a0c-b4fe-05798f1164d6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e489717b-df3c-4a0c-b4fe-05798f1164d6-root {
    text-align: center;
  }


#s-e489717b-df3c-4a0c-b4fe-05798f1164d6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-1f40cd08-2747-47f6-8074-1e8f0ef140eb {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-1f40cd08-2747-47f6-8074-1e8f0ef140eb .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-1f40cd08-2747-47f6-8074-1e8f0ef140eb .shg-sld-nav-button.shg-sld-left,
#s-1f40cd08-2747-47f6-8074-1e8f0ef140eb .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-100d0696-b08a-4f9f-a09d-950ef3e30a87 {
  text-align: center;
}







  img.s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shogun-image {
    
    
  }


.s-100d0696-b08a-4f9f-a09d-950ef3e30a87 .shogun-image-content {
  
    align-items: center;
  
}

.s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shg-align-container {
  text-align: center
}

.s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shogun-image {
    
    
  }


.s-100d0696-b08a-4f9f-a09d-950ef3e30a87 .shogun-image-content {
  
    align-items: center;
  
}

.s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shg-align-container {
  text-align: center
}

.s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shogun-image {
  box-sizing: border-box;
}


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





  img.s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shogun-image {
    
    
  }


.s-100d0696-b08a-4f9f-a09d-950ef3e30a87 .shogun-image-content {
  
    align-items: center;
  
}

.s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shg-align-container {
  text-align: center
}

.s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shogun-image {
  box-sizing: border-box;
}


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





  img.s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shogun-image {
    
    
  }


.s-100d0696-b08a-4f9f-a09d-950ef3e30a87 .shogun-image-content {
  
    align-items: center;
  
}

.s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shg-align-container {
  text-align: center
}

.s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shogun-image {
  box-sizing: border-box;
}


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





  img.s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shogun-image {
    
    
  }


.s-100d0696-b08a-4f9f-a09d-950ef3e30a87 .shogun-image-content {
  
    align-items: center;
  
}

.s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shg-align-container {
  text-align: center
}

.s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-100d0696-b08a-4f9f-a09d-950ef3e30a87.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-623ba41f-7fa9-4870-898c-582ff39dd25f {
  display: none;
}
#s-623ba41f-7fa9-4870-898c-582ff39dd25f, #wrap-s-623ba41f-7fa9-4870-898c-582ff39dd25f { display:none !important; }}@media (max-width: 767px){#s-623ba41f-7fa9-4870-898c-582ff39dd25f {
  display: none;
}
#s-623ba41f-7fa9-4870-898c-582ff39dd25f, #wrap-s-623ba41f-7fa9-4870-898c-582ff39dd25f { display:none !important; }}
#s-2f007058-9118-45f3-af10-91354e3713b4 {
  text-align: center;
}







  img.s-2f007058-9118-45f3-af10-91354e3713b4.shogun-image {
    
    
  }


.s-2f007058-9118-45f3-af10-91354e3713b4 .shogun-image-content {
  
    align-items: center;
  
}

.s-2f007058-9118-45f3-af10-91354e3713b4.shg-align-container {
  text-align: center
}

.s-2f007058-9118-45f3-af10-91354e3713b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f007058-9118-45f3-af10-91354e3713b4.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-2f007058-9118-45f3-af10-91354e3713b4.shogun-image {
    
    
  }


.s-2f007058-9118-45f3-af10-91354e3713b4 .shogun-image-content {
  
    align-items: center;
  
}

.s-2f007058-9118-45f3-af10-91354e3713b4.shg-align-container {
  text-align: center
}

.s-2f007058-9118-45f3-af10-91354e3713b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f007058-9118-45f3-af10-91354e3713b4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2f007058-9118-45f3-af10-91354e3713b4.shogun-image {
    
    
  }


.s-2f007058-9118-45f3-af10-91354e3713b4 .shogun-image-content {
  
    align-items: center;
  
}

.s-2f007058-9118-45f3-af10-91354e3713b4.shg-align-container {
  text-align: center
}

.s-2f007058-9118-45f3-af10-91354e3713b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f007058-9118-45f3-af10-91354e3713b4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2f007058-9118-45f3-af10-91354e3713b4.shogun-image {
    
    
  }


.s-2f007058-9118-45f3-af10-91354e3713b4 .shogun-image-content {
  
    align-items: center;
  
}

.s-2f007058-9118-45f3-af10-91354e3713b4.shg-align-container {
  text-align: center
}

.s-2f007058-9118-45f3-af10-91354e3713b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f007058-9118-45f3-af10-91354e3713b4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2f007058-9118-45f3-af10-91354e3713b4.shogun-image {
    
    
  }


.s-2f007058-9118-45f3-af10-91354e3713b4 .shogun-image-content {
  
    align-items: center;
  
}

.s-2f007058-9118-45f3-af10-91354e3713b4.shg-align-container {
  text-align: center
}

.s-2f007058-9118-45f3-af10-91354e3713b4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2f007058-9118-45f3-af10-91354e3713b4.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-1e2a7c94-840c-4a79-8039-d682d98a2bc8 {
  display: none;
}
#s-1e2a7c94-840c-4a79-8039-d682d98a2bc8, #wrap-s-1e2a7c94-840c-4a79-8039-d682d98a2bc8 { display:none !important; }}@media (max-width: 767px){#s-1e2a7c94-840c-4a79-8039-d682d98a2bc8 {
  display: none;
}
#s-1e2a7c94-840c-4a79-8039-d682d98a2bc8, #wrap-s-1e2a7c94-840c-4a79-8039-d682d98a2bc8 { display:none !important; }}
@media (min-width: 1200px){#s-491ca772-10be-49b5-9fcf-2129234881b7 {
  display: none;
}
#s-491ca772-10be-49b5-9fcf-2129234881b7, #wrap-s-491ca772-10be-49b5-9fcf-2129234881b7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-491ca772-10be-49b5-9fcf-2129234881b7 {
  display: none;
}
#s-491ca772-10be-49b5-9fcf-2129234881b7, #wrap-s-491ca772-10be-49b5-9fcf-2129234881b7 { display:none !important; }}@media (max-width: 767px){#s-491ca772-10be-49b5-9fcf-2129234881b7 {
  display: none;
}
#s-491ca772-10be-49b5-9fcf-2129234881b7, #wrap-s-491ca772-10be-49b5-9fcf-2129234881b7 { display:none !important; }}
#s-36c03fe1-ed3a-4cc2-a5bf-1cb11e4564e6 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-36c03fe1-ed3a-4cc2-a5bf-1cb11e4564e6:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-36c03fe1-ed3a-4cc2-a5bf-1cb11e4564e6:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-36c03fe1-ed3a-4cc2-a5bf-1cb11e4564e6-root {
    text-align: center;
  }


#s-36c03fe1-ed3a-4cc2-a5bf-1cb11e4564e6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-36c03fe1-ed3a-4cc2-a5bf-1cb11e4564e6-root {
    text-align: center;
  }


#s-36c03fe1-ed3a-4cc2-a5bf-1cb11e4564e6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-36c03fe1-ed3a-4cc2-a5bf-1cb11e4564e6-root {
    text-align: center;
  }


#s-36c03fe1-ed3a-4cc2-a5bf-1cb11e4564e6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-36c03fe1-ed3a-4cc2-a5bf-1cb11e4564e6-root {
    text-align: center;
  }


#s-36c03fe1-ed3a-4cc2-a5bf-1cb11e4564e6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-36c03fe1-ed3a-4cc2-a5bf-1cb11e4564e6-root {
    text-align: center;
  }


#s-36c03fe1-ed3a-4cc2-a5bf-1cb11e4564e6.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-8eeef475-5f5d-45f7-85d4-5676dfd336f0 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-8eeef475-5f5d-45f7-85d4-5676dfd336f0 .shg-sld-dot {
  background-color: rgba(251, 246, 246, 1);
}

#s-8eeef475-5f5d-45f7-85d4-5676dfd336f0 .shg-sld-nav-button.shg-sld-left,
#s-8eeef475-5f5d-45f7-85d4-5676dfd336f0 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(251, 246, 246, 1);
}

#s-6d6c335b-9419-4555-8ae0-f9cbcfad1591 {
  text-align: center;
}







  img.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shogun-image {
    
    
  }


.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591 .shogun-image-content {
  
    align-items: center;
  
}

.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shg-align-container {
  text-align: center
}

.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shogun-image {
    
    
  }


.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591 .shogun-image-content {
  
    align-items: center;
  
}

.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shg-align-container {
  text-align: center
}

.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shogun-image {
    
    
  }


.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591 .shogun-image-content {
  
    align-items: center;
  
}

.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shg-align-container {
  text-align: center
}

.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shogun-image {
    
    
  }


.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591 .shogun-image-content {
  
    align-items: center;
  
}

.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shg-align-container {
  text-align: center
}

.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shogun-image {
  box-sizing: border-box;
}


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





  img.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shogun-image {
    
    
  }


.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591 .shogun-image-content {
  
    align-items: center;
  
}

.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shg-align-container {
  text-align: center
}

.s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d6c335b-9419-4555-8ae0-f9cbcfad1591.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-329b9807-39e0-4471-b517-3fced2d793d8 {
  display: none;
}
#s-329b9807-39e0-4471-b517-3fced2d793d8, #wrap-s-329b9807-39e0-4471-b517-3fced2d793d8 { display:none !important; }}@media (max-width: 767px){#s-329b9807-39e0-4471-b517-3fced2d793d8 {
  display: none;
}
#s-329b9807-39e0-4471-b517-3fced2d793d8, #wrap-s-329b9807-39e0-4471-b517-3fced2d793d8 { display:none !important; }}
#s-8708f237-2d2c-49e0-9917-d9079c1adf59 {
  text-align: center;
}







  img.s-8708f237-2d2c-49e0-9917-d9079c1adf59.shogun-image {
    
    
  }


.s-8708f237-2d2c-49e0-9917-d9079c1adf59 .shogun-image-content {
  
    align-items: center;
  
}

.s-8708f237-2d2c-49e0-9917-d9079c1adf59.shg-align-container {
  text-align: center
}

.s-8708f237-2d2c-49e0-9917-d9079c1adf59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8708f237-2d2c-49e0-9917-d9079c1adf59.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-8708f237-2d2c-49e0-9917-d9079c1adf59.shogun-image {
    
    
  }


.s-8708f237-2d2c-49e0-9917-d9079c1adf59 .shogun-image-content {
  
    align-items: center;
  
}

.s-8708f237-2d2c-49e0-9917-d9079c1adf59.shg-align-container {
  text-align: center
}

.s-8708f237-2d2c-49e0-9917-d9079c1adf59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8708f237-2d2c-49e0-9917-d9079c1adf59.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8708f237-2d2c-49e0-9917-d9079c1adf59.shogun-image {
    
    
  }


.s-8708f237-2d2c-49e0-9917-d9079c1adf59 .shogun-image-content {
  
    align-items: center;
  
}

.s-8708f237-2d2c-49e0-9917-d9079c1adf59.shg-align-container {
  text-align: center
}

.s-8708f237-2d2c-49e0-9917-d9079c1adf59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8708f237-2d2c-49e0-9917-d9079c1adf59.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8708f237-2d2c-49e0-9917-d9079c1adf59.shogun-image {
    
    
  }


.s-8708f237-2d2c-49e0-9917-d9079c1adf59 .shogun-image-content {
  
    align-items: center;
  
}

.s-8708f237-2d2c-49e0-9917-d9079c1adf59.shg-align-container {
  text-align: center
}

.s-8708f237-2d2c-49e0-9917-d9079c1adf59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8708f237-2d2c-49e0-9917-d9079c1adf59.shogun-image {
  box-sizing: border-box;
}


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





  img.s-8708f237-2d2c-49e0-9917-d9079c1adf59.shogun-image {
    
    
  }


.s-8708f237-2d2c-49e0-9917-d9079c1adf59 .shogun-image-content {
  
    align-items: center;
  
}

.s-8708f237-2d2c-49e0-9917-d9079c1adf59.shg-align-container {
  text-align: center
}

.s-8708f237-2d2c-49e0-9917-d9079c1adf59.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8708f237-2d2c-49e0-9917-d9079c1adf59.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-14fcfd0d-b1e0-46fa-9e00-43555c7541d4 {
  display: none;
}
#s-14fcfd0d-b1e0-46fa-9e00-43555c7541d4, #wrap-s-14fcfd0d-b1e0-46fa-9e00-43555c7541d4 { display:none !important; }}@media (max-width: 767px){#s-14fcfd0d-b1e0-46fa-9e00-43555c7541d4 {
  display: none;
}
#s-14fcfd0d-b1e0-46fa-9e00-43555c7541d4, #wrap-s-14fcfd0d-b1e0-46fa-9e00-43555c7541d4 { display:none !important; }}
@media (min-width: 1200px){#s-0678c0ac-bff0-45ea-a184-e27b0a7e7380 {
  display: none;
}
#s-0678c0ac-bff0-45ea-a184-e27b0a7e7380, #wrap-s-0678c0ac-bff0-45ea-a184-e27b0a7e7380 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0678c0ac-bff0-45ea-a184-e27b0a7e7380 {
  display: none;
}
#s-0678c0ac-bff0-45ea-a184-e27b0a7e7380, #wrap-s-0678c0ac-bff0-45ea-a184-e27b0a7e7380 { display:none !important; }}@media (max-width: 767px){#s-0678c0ac-bff0-45ea-a184-e27b0a7e7380 {
  display: none;
}
#s-0678c0ac-bff0-45ea-a184-e27b0a7e7380, #wrap-s-0678c0ac-bff0-45ea-a184-e27b0a7e7380 { display:none !important; }}
#s-836b6f2c-462e-4427-b1f3-0c342135b185 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-836b6f2c-462e-4427-b1f3-0c342135b185:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-836b6f2c-462e-4427-b1f3-0c342135b185:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-836b6f2c-462e-4427-b1f3-0c342135b185-root {
    text-align: center;
  }


#s-836b6f2c-462e-4427-b1f3-0c342135b185.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-836b6f2c-462e-4427-b1f3-0c342135b185-root {
    text-align: center;
  }


#s-836b6f2c-462e-4427-b1f3-0c342135b185.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-836b6f2c-462e-4427-b1f3-0c342135b185-root {
    text-align: center;
  }


#s-836b6f2c-462e-4427-b1f3-0c342135b185.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-836b6f2c-462e-4427-b1f3-0c342135b185-root {
    text-align: center;
  }


#s-836b6f2c-462e-4427-b1f3-0c342135b185.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-836b6f2c-462e-4427-b1f3-0c342135b185-root {
    text-align: center;
  }


#s-836b6f2c-462e-4427-b1f3-0c342135b185.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-6272b6e6-c2e6-4c5f-8568-daac7003576d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-6272b6e6-c2e6-4c5f-8568-daac7003576d {
  display: none;
}
#s-6272b6e6-c2e6-4c5f-8568-daac7003576d, #wrap-s-6272b6e6-c2e6-4c5f-8568-daac7003576d { display:none !important; }}@media (max-width: 767px){#s-6272b6e6-c2e6-4c5f-8568-daac7003576d {
  display: none;
}
#s-6272b6e6-c2e6-4c5f-8568-daac7003576d, #wrap-s-6272b6e6-c2e6-4c5f-8568-daac7003576d { display:none !important; }}
@media (min-width: 0px) {
[id="s-6272b6e6-c2e6-4c5f-8568-daac7003576d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6272b6e6-c2e6-4c5f-8568-daac7003576d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6272b6e6-c2e6-4c5f-8568-daac7003576d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6272b6e6-c2e6-4c5f-8568-daac7003576d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-a8484f6a-33c4-454e-9230-42f5de70af57 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-a8484f6a-33c4-454e-9230-42f5de70af57 .shg-sld-dot {
  background-color: rgba(251, 246, 246, 1);
}

#s-a8484f6a-33c4-454e-9230-42f5de70af57 .shg-sld-nav-button.shg-sld-left,
#s-a8484f6a-33c4-454e-9230-42f5de70af57 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(251, 246, 246, 1);
}

#s-800316e4-deaa-4aeb-957f-f19e7eac449a {
  text-align: center;
}







  img.s-800316e4-deaa-4aeb-957f-f19e7eac449a.shogun-image {
    
    
  }


.s-800316e4-deaa-4aeb-957f-f19e7eac449a .shogun-image-content {
  
    align-items: center;
  
}

.s-800316e4-deaa-4aeb-957f-f19e7eac449a.shg-align-container {
  text-align: center
}

.s-800316e4-deaa-4aeb-957f-f19e7eac449a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-800316e4-deaa-4aeb-957f-f19e7eac449a.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-800316e4-deaa-4aeb-957f-f19e7eac449a.shogun-image {
    
    
  }


.s-800316e4-deaa-4aeb-957f-f19e7eac449a .shogun-image-content {
  
    align-items: center;
  
}

.s-800316e4-deaa-4aeb-957f-f19e7eac449a.shg-align-container {
  text-align: center
}

.s-800316e4-deaa-4aeb-957f-f19e7eac449a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-800316e4-deaa-4aeb-957f-f19e7eac449a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-800316e4-deaa-4aeb-957f-f19e7eac449a.shogun-image {
    
    
  }


.s-800316e4-deaa-4aeb-957f-f19e7eac449a .shogun-image-content {
  
    align-items: center;
  
}

.s-800316e4-deaa-4aeb-957f-f19e7eac449a.shg-align-container {
  text-align: center
}

.s-800316e4-deaa-4aeb-957f-f19e7eac449a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-800316e4-deaa-4aeb-957f-f19e7eac449a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-800316e4-deaa-4aeb-957f-f19e7eac449a.shogun-image {
    
    
  }


.s-800316e4-deaa-4aeb-957f-f19e7eac449a .shogun-image-content {
  
    align-items: center;
  
}

.s-800316e4-deaa-4aeb-957f-f19e7eac449a.shg-align-container {
  text-align: center
}

.s-800316e4-deaa-4aeb-957f-f19e7eac449a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-800316e4-deaa-4aeb-957f-f19e7eac449a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-800316e4-deaa-4aeb-957f-f19e7eac449a.shogun-image {
    
    
  }


.s-800316e4-deaa-4aeb-957f-f19e7eac449a .shogun-image-content {
  
    align-items: center;
  
}

.s-800316e4-deaa-4aeb-957f-f19e7eac449a.shg-align-container {
  text-align: center
}

.s-800316e4-deaa-4aeb-957f-f19e7eac449a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-800316e4-deaa-4aeb-957f-f19e7eac449a.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-794344e0-9971-434d-9956-59416435e51a {
  display: none;
}
#s-794344e0-9971-434d-9956-59416435e51a, #wrap-s-794344e0-9971-434d-9956-59416435e51a { display:none !important; }}@media (max-width: 767px){#s-794344e0-9971-434d-9956-59416435e51a {
  display: none;
}
#s-794344e0-9971-434d-9956-59416435e51a, #wrap-s-794344e0-9971-434d-9956-59416435e51a { display:none !important; }}
#s-8bd8bfa5-d8e0-48c4-941b-85ede503b562 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-8bd8bfa5-d8e0-48c4-941b-85ede503b562:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-8bd8bfa5-d8e0-48c4-941b-85ede503b562:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-8bd8bfa5-d8e0-48c4-941b-85ede503b562-root {
    text-align: center;
  }


#s-8bd8bfa5-d8e0-48c4-941b-85ede503b562.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8bd8bfa5-d8e0-48c4-941b-85ede503b562-root {
    text-align: center;
  }


#s-8bd8bfa5-d8e0-48c4-941b-85ede503b562.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8bd8bfa5-d8e0-48c4-941b-85ede503b562-root {
    text-align: center;
  }


#s-8bd8bfa5-d8e0-48c4-941b-85ede503b562.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8bd8bfa5-d8e0-48c4-941b-85ede503b562-root {
    text-align: center;
  }


#s-8bd8bfa5-d8e0-48c4-941b-85ede503b562.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8bd8bfa5-d8e0-48c4-941b-85ede503b562-root {
    text-align: center;
  }


#s-8bd8bfa5-d8e0-48c4-941b-85ede503b562.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-0c29e867-4696-449f-8ca5-1c2c633fbd3a {
  text-align: center;
}







  img.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shogun-image {
    
    
  }


.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a .shogun-image-content {
  
    align-items: center;
  
}

.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shg-align-container {
  text-align: center
}

.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shogun-image {
    
    
  }


.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a .shogun-image-content {
  
    align-items: center;
  
}

.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shg-align-container {
  text-align: center
}

.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shogun-image {
    
    
  }


.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a .shogun-image-content {
  
    align-items: center;
  
}

.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shg-align-container {
  text-align: center
}

.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shogun-image {
    
    
  }


.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a .shogun-image-content {
  
    align-items: center;
  
}

.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shg-align-container {
  text-align: center
}

.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shogun-image {
    
    
  }


.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a .shogun-image-content {
  
    align-items: center;
  
}

.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shg-align-container {
  text-align: center
}

.s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c29e867-4696-449f-8ca5-1c2c633fbd3a.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 768px) and (max-width: 991px){#s-03292d67-5cd5-4c3a-8022-ec00ec0527de {
  display: none;
}
#s-03292d67-5cd5-4c3a-8022-ec00ec0527de, #wrap-s-03292d67-5cd5-4c3a-8022-ec00ec0527de { display:none !important; }}@media (max-width: 767px){#s-03292d67-5cd5-4c3a-8022-ec00ec0527de {
  display: none;
}
#s-03292d67-5cd5-4c3a-8022-ec00ec0527de, #wrap-s-03292d67-5cd5-4c3a-8022-ec00ec0527de { display:none !important; }}
#s-04e748fa-16d9-480f-80a2-4d4b86743dc1 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-04e748fa-16d9-480f-80a2-4d4b86743dc1 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-04e748fa-16d9-480f-80a2-4d4b86743dc1 .shg-sld-nav-button.shg-sld-left,
#s-04e748fa-16d9-480f-80a2-4d4b86743dc1 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-19892fc5-f3ad-4834-bf46-c44d39b42876 {
  text-align: center;
}







  #s-19892fc5-f3ad-4834-bf46-c44d39b42876 img.shogun-image {
    

    
    
    
  }


#s-19892fc5-f3ad-4834-bf46-c44d39b42876 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-465e7803-0154-4b74-80a7-ab0c2cdd0749 {
  display: none;
}
#s-465e7803-0154-4b74-80a7-ab0c2cdd0749, #wrap-s-465e7803-0154-4b74-80a7-ab0c2cdd0749 { display:none !important; }}@media (max-width: 767px){#s-465e7803-0154-4b74-80a7-ab0c2cdd0749 {
  display: none;
}
#s-465e7803-0154-4b74-80a7-ab0c2cdd0749, #wrap-s-465e7803-0154-4b74-80a7-ab0c2cdd0749 { display:none !important; }}
#s-520f0a29-2f37-4236-aa3e-1b990a7a53bb {
  text-align: center;
}







  #s-520f0a29-2f37-4236-aa3e-1b990a7a53bb img.shogun-image {
    

    
    
    
  }


#s-520f0a29-2f37-4236-aa3e-1b990a7a53bb .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-86a4e325-06a1-4134-b1dc-10a204186a5c {
  display: none;
}
#s-86a4e325-06a1-4134-b1dc-10a204186a5c, #wrap-s-86a4e325-06a1-4134-b1dc-10a204186a5c { display:none !important; }}@media (max-width: 767px){#s-86a4e325-06a1-4134-b1dc-10a204186a5c {
  display: none;
}
#s-86a4e325-06a1-4134-b1dc-10a204186a5c, #wrap-s-86a4e325-06a1-4134-b1dc-10a204186a5c { display:none !important; }}
#s-47ea702b-bcc5-4a82-b807-cecb694ae8d2 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-47ea702b-bcc5-4a82-b807-cecb694ae8d2:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-47ea702b-bcc5-4a82-b807-cecb694ae8d2:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-47ea702b-bcc5-4a82-b807-cecb694ae8d2-root {
    text-align: center;
  }


#s-47ea702b-bcc5-4a82-b807-cecb694ae8d2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-47ea702b-bcc5-4a82-b807-cecb694ae8d2-root {
    text-align: center;
  }


#s-47ea702b-bcc5-4a82-b807-cecb694ae8d2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-47ea702b-bcc5-4a82-b807-cecb694ae8d2-root {
    text-align: center;
  }


#s-47ea702b-bcc5-4a82-b807-cecb694ae8d2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-47ea702b-bcc5-4a82-b807-cecb694ae8d2-root {
    text-align: center;
  }


#s-47ea702b-bcc5-4a82-b807-cecb694ae8d2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-47ea702b-bcc5-4a82-b807-cecb694ae8d2-root {
    text-align: center;
  }


#s-47ea702b-bcc5-4a82-b807-cecb694ae8d2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-830bca1f-e55c-41c4-b885-88ecd28bfe75 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-830bca1f-e55c-41c4-b885-88ecd28bfe75 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-830bca1f-e55c-41c4-b885-88ecd28bfe75 .shg-sld-nav-button.shg-sld-left,
#s-830bca1f-e55c-41c4-b885-88ecd28bfe75 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-478f2309-5538-4aca-9895-ef1616935363 {
  text-align: center;
}







  #s-478f2309-5538-4aca-9895-ef1616935363 img.shogun-image {
    

    
    
    
  }


#s-478f2309-5538-4aca-9895-ef1616935363 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-31b56e94-feed-495c-8a60-42991faf7f00 {
  display: none;
}
#s-31b56e94-feed-495c-8a60-42991faf7f00, #wrap-s-31b56e94-feed-495c-8a60-42991faf7f00 { display:none !important; }}@media (max-width: 767px){#s-31b56e94-feed-495c-8a60-42991faf7f00 {
  display: none;
}
#s-31b56e94-feed-495c-8a60-42991faf7f00, #wrap-s-31b56e94-feed-495c-8a60-42991faf7f00 { display:none !important; }}
#s-036a851c-33c3-4c66-90d0-b82f71edde86 {
  text-align: center;
}







  #s-036a851c-33c3-4c66-90d0-b82f71edde86 img.shogun-image {
    

    
    
    
  }


#s-036a851c-33c3-4c66-90d0-b82f71edde86 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-9e6c5892-6867-4ab0-be42-69ecf8704ac7 {
  display: none;
}
#s-9e6c5892-6867-4ab0-be42-69ecf8704ac7, #wrap-s-9e6c5892-6867-4ab0-be42-69ecf8704ac7 { display:none !important; }}@media (max-width: 767px){#s-9e6c5892-6867-4ab0-be42-69ecf8704ac7 {
  display: none;
}
#s-9e6c5892-6867-4ab0-be42-69ecf8704ac7, #wrap-s-9e6c5892-6867-4ab0-be42-69ecf8704ac7 { display:none !important; }}
#s-6da4b7ee-744b-4df1-b8f1-dec1cc539694 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-6da4b7ee-744b-4df1-b8f1-dec1cc539694:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-6da4b7ee-744b-4df1-b8f1-dec1cc539694:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-6da4b7ee-744b-4df1-b8f1-dec1cc539694-root {
    text-align: center;
  }


#s-6da4b7ee-744b-4df1-b8f1-dec1cc539694.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6da4b7ee-744b-4df1-b8f1-dec1cc539694-root {
    text-align: center;
  }


#s-6da4b7ee-744b-4df1-b8f1-dec1cc539694.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6da4b7ee-744b-4df1-b8f1-dec1cc539694-root {
    text-align: center;
  }


#s-6da4b7ee-744b-4df1-b8f1-dec1cc539694.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6da4b7ee-744b-4df1-b8f1-dec1cc539694-root {
    text-align: center;
  }


#s-6da4b7ee-744b-4df1-b8f1-dec1cc539694.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6da4b7ee-744b-4df1-b8f1-dec1cc539694-root {
    text-align: center;
  }


#s-6da4b7ee-744b-4df1-b8f1-dec1cc539694.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-9f8ea23d-6034-4396-b7b5-6705a4a85801 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9f8ea23d-6034-4396-b7b5-6705a4a85801 {
  display: none;
}
#s-9f8ea23d-6034-4396-b7b5-6705a4a85801, #wrap-s-9f8ea23d-6034-4396-b7b5-6705a4a85801 { display:none !important; }}@media (max-width: 767px){#s-9f8ea23d-6034-4396-b7b5-6705a4a85801 {
  display: none;
}
#s-9f8ea23d-6034-4396-b7b5-6705a4a85801, #wrap-s-9f8ea23d-6034-4396-b7b5-6705a4a85801 { display:none !important; }}
@media (min-width: 0px) {
[id="s-9f8ea23d-6034-4396-b7b5-6705a4a85801"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9f8ea23d-6034-4396-b7b5-6705a4a85801"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-9f8ea23d-6034-4396-b7b5-6705a4a85801"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-9f8ea23d-6034-4396-b7b5-6705a4a85801"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-134e0fbf-1f8d-4f34-9ffc-a667891c2504 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-134e0fbf-1f8d-4f34-9ffc-a667891c2504 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-134e0fbf-1f8d-4f34-9ffc-a667891c2504 .shg-sld-nav-button.shg-sld-left,
#s-134e0fbf-1f8d-4f34-9ffc-a667891c2504 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-dd7eac4e-8abc-46f8-85f8-d6b5deeebf01 {
  text-align: center;
}







  #s-dd7eac4e-8abc-46f8-85f8-d6b5deeebf01 img.shogun-image {
    

    
    
    
  }


#s-dd7eac4e-8abc-46f8-85f8-d6b5deeebf01 .shogun-image-content {
  
    align-items: center;
  
}

#s-f807b18b-600e-4beb-a53b-1795f9cc480f {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-f807b18b-600e-4beb-a53b-1795f9cc480f {
  display: none;
}
#s-f807b18b-600e-4beb-a53b-1795f9cc480f, #wrap-s-f807b18b-600e-4beb-a53b-1795f9cc480f { display:none !important; }}@media (max-width: 767px){#s-f807b18b-600e-4beb-a53b-1795f9cc480f {
  display: none;
}
#s-f807b18b-600e-4beb-a53b-1795f9cc480f, #wrap-s-f807b18b-600e-4beb-a53b-1795f9cc480f { display:none !important; }}
#s-06b07918-50ff-4eff-ae80-af17813929be {
  text-align: center;
}







  #s-06b07918-50ff-4eff-ae80-af17813929be img.shogun-image {
    

    
    
    
  }


#s-06b07918-50ff-4eff-ae80-af17813929be .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-d75f5a5c-f260-4882-9726-dd9a6aca60b7 {
  display: none;
}
#s-d75f5a5c-f260-4882-9726-dd9a6aca60b7, #wrap-s-d75f5a5c-f260-4882-9726-dd9a6aca60b7 { display:none !important; }}@media (max-width: 767px){#s-d75f5a5c-f260-4882-9726-dd9a6aca60b7 {
  display: none;
}
#s-d75f5a5c-f260-4882-9726-dd9a6aca60b7, #wrap-s-d75f5a5c-f260-4882-9726-dd9a6aca60b7 { display:none !important; }}
#s-f64d58aa-2e20-47fa-a2c0-7757047628e4 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-f64d58aa-2e20-47fa-a2c0-7757047628e4:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-f64d58aa-2e20-47fa-a2c0-7757047628e4:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-f64d58aa-2e20-47fa-a2c0-7757047628e4-root {
    text-align: center;
  }


#s-f64d58aa-2e20-47fa-a2c0-7757047628e4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f64d58aa-2e20-47fa-a2c0-7757047628e4-root {
    text-align: center;
  }


#s-f64d58aa-2e20-47fa-a2c0-7757047628e4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f64d58aa-2e20-47fa-a2c0-7757047628e4-root {
    text-align: center;
  }


#s-f64d58aa-2e20-47fa-a2c0-7757047628e4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f64d58aa-2e20-47fa-a2c0-7757047628e4-root {
    text-align: center;
  }


#s-f64d58aa-2e20-47fa-a2c0-7757047628e4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f64d58aa-2e20-47fa-a2c0-7757047628e4-root {
    text-align: center;
  }


#s-f64d58aa-2e20-47fa-a2c0-7757047628e4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-acd98d85-597d-453e-85ef-7372d508a170 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-acd98d85-597d-453e-85ef-7372d508a170 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-acd98d85-597d-453e-85ef-7372d508a170 .shg-sld-nav-button.shg-sld-left,
#s-acd98d85-597d-453e-85ef-7372d508a170 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-355f9e62-59b5-4a05-a115-5aa266d51be6 {
  text-align: center;
}







  #s-355f9e62-59b5-4a05-a115-5aa266d51be6 img.shogun-image {
    

    
    
    
  }


#s-355f9e62-59b5-4a05-a115-5aa266d51be6 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-c435191e-a4da-40e2-8991-dc38fa35313e {
  display: none;
}
#s-c435191e-a4da-40e2-8991-dc38fa35313e, #wrap-s-c435191e-a4da-40e2-8991-dc38fa35313e { display:none !important; }}@media (max-width: 767px){#s-c435191e-a4da-40e2-8991-dc38fa35313e {
  display: none;
}
#s-c435191e-a4da-40e2-8991-dc38fa35313e, #wrap-s-c435191e-a4da-40e2-8991-dc38fa35313e { display:none !important; }}
#s-286f6df7-5471-4d66-85d8-f0dd4d525b86 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-286f6df7-5471-4d66-85d8-f0dd4d525b86"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-286f6df7-5471-4d66-85d8-f0dd4d525b86"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-286f6df7-5471-4d66-85d8-f0dd4d525b86"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-286f6df7-5471-4d66-85d8-f0dd4d525b86"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) and (max-width: 991px){#s-1c83274e-1b36-453b-aacd-f28ba2b4142a {
  display: none;
}
#s-1c83274e-1b36-453b-aacd-f28ba2b4142a, #wrap-s-1c83274e-1b36-453b-aacd-f28ba2b4142a { display:none !important; }}@media (max-width: 767px){#s-1c83274e-1b36-453b-aacd-f28ba2b4142a {
  display: none;
}
#s-1c83274e-1b36-453b-aacd-f28ba2b4142a, #wrap-s-1c83274e-1b36-453b-aacd-f28ba2b4142a { display:none !important; }}
#s-0f3b308b-2820-4d8d-83cf-897c5d444214 {
  text-align: center;
}







  #s-0f3b308b-2820-4d8d-83cf-897c5d444214 img.shogun-image {
    

    
    
    
  }


#s-0f3b308b-2820-4d8d-83cf-897c5d444214 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-3546f2ae-60dc-42f3-8517-a447165fe306 {
  display: none;
}
#s-3546f2ae-60dc-42f3-8517-a447165fe306, #wrap-s-3546f2ae-60dc-42f3-8517-a447165fe306 { display:none !important; }}@media (max-width: 767px){#s-3546f2ae-60dc-42f3-8517-a447165fe306 {
  display: none;
}
#s-3546f2ae-60dc-42f3-8517-a447165fe306, #wrap-s-3546f2ae-60dc-42f3-8517-a447165fe306 { display:none !important; }}
#s-819f32a8-ccb0-4297-8cb8-f8103add57ea {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-819f32a8-ccb0-4297-8cb8-f8103add57ea:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-819f32a8-ccb0-4297-8cb8-f8103add57ea:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-819f32a8-ccb0-4297-8cb8-f8103add57ea-root {
    text-align: center;
  }


#s-819f32a8-ccb0-4297-8cb8-f8103add57ea.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-819f32a8-ccb0-4297-8cb8-f8103add57ea-root {
    text-align: center;
  }


#s-819f32a8-ccb0-4297-8cb8-f8103add57ea.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-819f32a8-ccb0-4297-8cb8-f8103add57ea-root {
    text-align: center;
  }


#s-819f32a8-ccb0-4297-8cb8-f8103add57ea.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-819f32a8-ccb0-4297-8cb8-f8103add57ea-root {
    text-align: center;
  }


#s-819f32a8-ccb0-4297-8cb8-f8103add57ea.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-819f32a8-ccb0-4297-8cb8-f8103add57ea-root {
    text-align: center;
  }


#s-819f32a8-ccb0-4297-8cb8-f8103add57ea.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-fc9297e3-f17c-4147-bd4f-49b1f95f4a8b {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-fc9297e3-f17c-4147-bd4f-49b1f95f4a8b .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-fc9297e3-f17c-4147-bd4f-49b1f95f4a8b .shg-sld-nav-button.shg-sld-left,
#s-fc9297e3-f17c-4147-bd4f-49b1f95f4a8b .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-b73d645f-a6d8-4246-bd79-8a42af143133 {
  text-align: center;
}







  #s-b73d645f-a6d8-4246-bd79-8a42af143133 img.shogun-image {
    

    
    
    
  }


#s-b73d645f-a6d8-4246-bd79-8a42af143133 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-c134b855-d630-4f12-bb29-bfe09b2bf7dd {
  display: none;
}
#s-c134b855-d630-4f12-bb29-bfe09b2bf7dd, #wrap-s-c134b855-d630-4f12-bb29-bfe09b2bf7dd { display:none !important; }}@media (max-width: 767px){#s-c134b855-d630-4f12-bb29-bfe09b2bf7dd {
  display: none;
}
#s-c134b855-d630-4f12-bb29-bfe09b2bf7dd, #wrap-s-c134b855-d630-4f12-bb29-bfe09b2bf7dd { display:none !important; }}
#s-20c3610b-5ee4-4ec7-a211-b57a886cc423 {
  text-align: center;
}







  #s-20c3610b-5ee4-4ec7-a211-b57a886cc423 img.shogun-image {
    

    
    
    
  }


#s-20c3610b-5ee4-4ec7-a211-b57a886cc423 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-4a8a8f61-871a-431e-a025-8b190aeb91be {
  display: none;
}
#s-4a8a8f61-871a-431e-a025-8b190aeb91be, #wrap-s-4a8a8f61-871a-431e-a025-8b190aeb91be { display:none !important; }}@media (max-width: 767px){#s-4a8a8f61-871a-431e-a025-8b190aeb91be {
  display: none;
}
#s-4a8a8f61-871a-431e-a025-8b190aeb91be, #wrap-s-4a8a8f61-871a-431e-a025-8b190aeb91be { display:none !important; }}
#s-0902ac5e-9dc6-4f82-ad9a-9b922fbd8f37 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-0902ac5e-9dc6-4f82-ad9a-9b922fbd8f37:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-0902ac5e-9dc6-4f82-ad9a-9b922fbd8f37:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-0902ac5e-9dc6-4f82-ad9a-9b922fbd8f37-root {
    text-align: center;
  }


#s-0902ac5e-9dc6-4f82-ad9a-9b922fbd8f37.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0902ac5e-9dc6-4f82-ad9a-9b922fbd8f37-root {
    text-align: center;
  }


#s-0902ac5e-9dc6-4f82-ad9a-9b922fbd8f37.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0902ac5e-9dc6-4f82-ad9a-9b922fbd8f37-root {
    text-align: center;
  }


#s-0902ac5e-9dc6-4f82-ad9a-9b922fbd8f37.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0902ac5e-9dc6-4f82-ad9a-9b922fbd8f37-root {
    text-align: center;
  }


#s-0902ac5e-9dc6-4f82-ad9a-9b922fbd8f37.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0902ac5e-9dc6-4f82-ad9a-9b922fbd8f37-root {
    text-align: center;
  }


#s-0902ac5e-9dc6-4f82-ad9a-9b922fbd8f37.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-6bf581e2-d7a9-452d-9c35-f03d14040499 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-6bf581e2-d7a9-452d-9c35-f03d14040499 {
  display: none;
}
#s-6bf581e2-d7a9-452d-9c35-f03d14040499, #wrap-s-6bf581e2-d7a9-452d-9c35-f03d14040499 { display:none !important; }}@media (max-width: 767px){#s-6bf581e2-d7a9-452d-9c35-f03d14040499 {
  display: none;
}
#s-6bf581e2-d7a9-452d-9c35-f03d14040499, #wrap-s-6bf581e2-d7a9-452d-9c35-f03d14040499 { display:none !important; }}
@media (min-width: 0px) {
[id="s-6bf581e2-d7a9-452d-9c35-f03d14040499"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6bf581e2-d7a9-452d-9c35-f03d14040499"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6bf581e2-d7a9-452d-9c35-f03d14040499"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6bf581e2-d7a9-452d-9c35-f03d14040499"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-92ee9f2c-3114-4ad0-8a69-78ee2466c887 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-92ee9f2c-3114-4ad0-8a69-78ee2466c887 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-92ee9f2c-3114-4ad0-8a69-78ee2466c887 .shg-sld-nav-button.shg-sld-left,
#s-92ee9f2c-3114-4ad0-8a69-78ee2466c887 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-c741410c-517e-4cf6-be7b-8417b200a5f8 {
  text-align: center;
}







  #s-c741410c-517e-4cf6-be7b-8417b200a5f8 img.shogun-image {
    

    
    
    
  }


#s-c741410c-517e-4cf6-be7b-8417b200a5f8 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-10fa62d9-9400-4328-94d6-0106a2d52161 {
  display: none;
}
#s-10fa62d9-9400-4328-94d6-0106a2d52161, #wrap-s-10fa62d9-9400-4328-94d6-0106a2d52161 { display:none !important; }}@media (max-width: 767px){#s-10fa62d9-9400-4328-94d6-0106a2d52161 {
  display: none;
}
#s-10fa62d9-9400-4328-94d6-0106a2d52161, #wrap-s-10fa62d9-9400-4328-94d6-0106a2d52161 { display:none !important; }}
#s-3587bb67-f051-4d51-abe5-7b90004cbf16 {
  text-align: center;
}







  #s-3587bb67-f051-4d51-abe5-7b90004cbf16 img.shogun-image {
    

    
    
    
  }


#s-3587bb67-f051-4d51-abe5-7b90004cbf16 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-6ac8cd94-098a-470d-9023-1f509b41371c {
  display: none;
}
#s-6ac8cd94-098a-470d-9023-1f509b41371c, #wrap-s-6ac8cd94-098a-470d-9023-1f509b41371c { display:none !important; }}@media (max-width: 767px){#s-6ac8cd94-098a-470d-9023-1f509b41371c {
  display: none;
}
#s-6ac8cd94-098a-470d-9023-1f509b41371c, #wrap-s-6ac8cd94-098a-470d-9023-1f509b41371c { display:none !important; }}
#s-52c2bccc-01eb-42d8-ae3b-9afdba4a5f1e {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-52c2bccc-01eb-42d8-ae3b-9afdba4a5f1e:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-52c2bccc-01eb-42d8-ae3b-9afdba4a5f1e:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-52c2bccc-01eb-42d8-ae3b-9afdba4a5f1e-root {
    text-align: center;
  }


#s-52c2bccc-01eb-42d8-ae3b-9afdba4a5f1e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-52c2bccc-01eb-42d8-ae3b-9afdba4a5f1e-root {
    text-align: center;
  }


#s-52c2bccc-01eb-42d8-ae3b-9afdba4a5f1e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-52c2bccc-01eb-42d8-ae3b-9afdba4a5f1e-root {
    text-align: center;
  }


#s-52c2bccc-01eb-42d8-ae3b-9afdba4a5f1e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-52c2bccc-01eb-42d8-ae3b-9afdba4a5f1e-root {
    text-align: center;
  }


#s-52c2bccc-01eb-42d8-ae3b-9afdba4a5f1e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-52c2bccc-01eb-42d8-ae3b-9afdba4a5f1e-root {
    text-align: center;
  }


#s-52c2bccc-01eb-42d8-ae3b-9afdba4a5f1e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-9ba0bca2-a257-4732-9475-153d46de6d7e {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-9ba0bca2-a257-4732-9475-153d46de6d7e .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-9ba0bca2-a257-4732-9475-153d46de6d7e .shg-sld-nav-button.shg-sld-left,
#s-9ba0bca2-a257-4732-9475-153d46de6d7e .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-5e85c781-50b4-41c5-87a8-22e898a4345f {
  text-align: center;
}







  #s-5e85c781-50b4-41c5-87a8-22e898a4345f img.shogun-image {
    

    
    
    
  }


#s-5e85c781-50b4-41c5-87a8-22e898a4345f .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-e96ca19e-be62-4f0f-b833-e9f8db53975b {
  display: none;
}
#s-e96ca19e-be62-4f0f-b833-e9f8db53975b, #wrap-s-e96ca19e-be62-4f0f-b833-e9f8db53975b { display:none !important; }}@media (max-width: 767px){#s-e96ca19e-be62-4f0f-b833-e9f8db53975b {
  display: none;
}
#s-e96ca19e-be62-4f0f-b833-e9f8db53975b, #wrap-s-e96ca19e-be62-4f0f-b833-e9f8db53975b { display:none !important; }}
#s-f90e24b9-7cd6-43ac-981f-f7f7be52f3e1 {
  text-align: center;
}







  #s-f90e24b9-7cd6-43ac-981f-f7f7be52f3e1 img.shogun-image {
    

    
    
    
  }


#s-f90e24b9-7cd6-43ac-981f-f7f7be52f3e1 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-ccd1aa8c-ea12-4005-900c-64d3f17e7d29 {
  display: none;
}
#s-ccd1aa8c-ea12-4005-900c-64d3f17e7d29, #wrap-s-ccd1aa8c-ea12-4005-900c-64d3f17e7d29 { display:none !important; }}@media (max-width: 767px){#s-ccd1aa8c-ea12-4005-900c-64d3f17e7d29 {
  display: none;
}
#s-ccd1aa8c-ea12-4005-900c-64d3f17e7d29, #wrap-s-ccd1aa8c-ea12-4005-900c-64d3f17e7d29 { display:none !important; }}
#s-7d54e7be-3b33-4e1a-9a11-7372677811f8 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-7d54e7be-3b33-4e1a-9a11-7372677811f8:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-7d54e7be-3b33-4e1a-9a11-7372677811f8:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-7d54e7be-3b33-4e1a-9a11-7372677811f8-root {
    text-align: center;
  }


#s-7d54e7be-3b33-4e1a-9a11-7372677811f8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7d54e7be-3b33-4e1a-9a11-7372677811f8-root {
    text-align: center;
  }


#s-7d54e7be-3b33-4e1a-9a11-7372677811f8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7d54e7be-3b33-4e1a-9a11-7372677811f8-root {
    text-align: center;
  }


#s-7d54e7be-3b33-4e1a-9a11-7372677811f8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7d54e7be-3b33-4e1a-9a11-7372677811f8-root {
    text-align: center;
  }


#s-7d54e7be-3b33-4e1a-9a11-7372677811f8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7d54e7be-3b33-4e1a-9a11-7372677811f8-root {
    text-align: center;
  }


#s-7d54e7be-3b33-4e1a-9a11-7372677811f8.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-5a7038a0-a6fa-4685-94fc-c14d59c90d24 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-5a7038a0-a6fa-4685-94fc-c14d59c90d24 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-5a7038a0-a6fa-4685-94fc-c14d59c90d24 .shg-sld-nav-button.shg-sld-left,
#s-5a7038a0-a6fa-4685-94fc-c14d59c90d24 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-4c5834c0-4848-4541-8e94-afcc02851936 {
  text-align: center;
}







  #s-4c5834c0-4848-4541-8e94-afcc02851936 img.shogun-image {
    

    
    
    
  }


#s-4c5834c0-4848-4541-8e94-afcc02851936 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-d0c481e6-d216-4781-8132-00a51423cfc7 {
  display: none;
}
#s-d0c481e6-d216-4781-8132-00a51423cfc7, #wrap-s-d0c481e6-d216-4781-8132-00a51423cfc7 { display:none !important; }}@media (max-width: 767px){#s-d0c481e6-d216-4781-8132-00a51423cfc7 {
  display: none;
}
#s-d0c481e6-d216-4781-8132-00a51423cfc7, #wrap-s-d0c481e6-d216-4781-8132-00a51423cfc7 { display:none !important; }}
@media (min-width: 0px) {
[id="s-13325218-8536-40bb-98ee-aeb3080b5ea8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-13325218-8536-40bb-98ee-aeb3080b5ea8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-13325218-8536-40bb-98ee-aeb3080b5ea8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-13325218-8536-40bb-98ee-aeb3080b5ea8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) and (max-width: 991px){#s-229b3cd7-1432-4fdf-8021-a7f133af5838 {
  display: none;
}
#s-229b3cd7-1432-4fdf-8021-a7f133af5838, #wrap-s-229b3cd7-1432-4fdf-8021-a7f133af5838 { display:none !important; }}@media (max-width: 767px){#s-229b3cd7-1432-4fdf-8021-a7f133af5838 {
  display: none;
}
#s-229b3cd7-1432-4fdf-8021-a7f133af5838, #wrap-s-229b3cd7-1432-4fdf-8021-a7f133af5838 { display:none !important; }}
#s-87785ca1-1d43-48ec-998d-065a5eed451d {
  text-align: center;
}







  #s-87785ca1-1d43-48ec-998d-065a5eed451d img.shogun-image {
    

    
    
    
  }


#s-87785ca1-1d43-48ec-998d-065a5eed451d .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-11ec4242-6f95-4387-a4f2-673ddd9b2a9a {
  display: none;
}
#s-11ec4242-6f95-4387-a4f2-673ddd9b2a9a, #wrap-s-11ec4242-6f95-4387-a4f2-673ddd9b2a9a { display:none !important; }}@media (max-width: 767px){#s-11ec4242-6f95-4387-a4f2-673ddd9b2a9a {
  display: none;
}
#s-11ec4242-6f95-4387-a4f2-673ddd9b2a9a, #wrap-s-11ec4242-6f95-4387-a4f2-673ddd9b2a9a { display:none !important; }}
#s-ebcb8445-b0c0-42bd-b251-10387f9b0e38 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-ebcb8445-b0c0-42bd-b251-10387f9b0e38:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-ebcb8445-b0c0-42bd-b251-10387f9b0e38:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-ebcb8445-b0c0-42bd-b251-10387f9b0e38-root {
    text-align: center;
  }


#s-ebcb8445-b0c0-42bd-b251-10387f9b0e38.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ebcb8445-b0c0-42bd-b251-10387f9b0e38-root {
    text-align: center;
  }


#s-ebcb8445-b0c0-42bd-b251-10387f9b0e38.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ebcb8445-b0c0-42bd-b251-10387f9b0e38-root {
    text-align: center;
  }


#s-ebcb8445-b0c0-42bd-b251-10387f9b0e38.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ebcb8445-b0c0-42bd-b251-10387f9b0e38-root {
    text-align: center;
  }


#s-ebcb8445-b0c0-42bd-b251-10387f9b0e38.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ebcb8445-b0c0-42bd-b251-10387f9b0e38-root {
    text-align: center;
  }


#s-ebcb8445-b0c0-42bd-b251-10387f9b0e38.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-5bd1ce8e-d5f1-489a-b209-fa9cbe12e1c7 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-5bd1ce8e-d5f1-489a-b209-fa9cbe12e1c7 {
  display: none;
}
#s-5bd1ce8e-d5f1-489a-b209-fa9cbe12e1c7, #wrap-s-5bd1ce8e-d5f1-489a-b209-fa9cbe12e1c7 { display:none !important; }}@media (max-width: 767px){#s-5bd1ce8e-d5f1-489a-b209-fa9cbe12e1c7 {
  display: none;
}
#s-5bd1ce8e-d5f1-489a-b209-fa9cbe12e1c7, #wrap-s-5bd1ce8e-d5f1-489a-b209-fa9cbe12e1c7 { display:none !important; }}
@media (min-width: 0px) {
[id="s-5bd1ce8e-d5f1-489a-b209-fa9cbe12e1c7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5bd1ce8e-d5f1-489a-b209-fa9cbe12e1c7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-5bd1ce8e-d5f1-489a-b209-fa9cbe12e1c7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-5bd1ce8e-d5f1-489a-b209-fa9cbe12e1c7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-0f08ff62-ecab-4078-ba3e-aea3e09fedb2 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-0f08ff62-ecab-4078-ba3e-aea3e09fedb2 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-0f08ff62-ecab-4078-ba3e-aea3e09fedb2 .shg-sld-nav-button.shg-sld-left,
#s-0f08ff62-ecab-4078-ba3e-aea3e09fedb2 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-2e64aa76-22fe-4a06-ab76-31470790fb1a {
  text-align: center;
}







  #s-2e64aa76-22fe-4a06-ab76-31470790fb1a img.shogun-image {
    

    
    
    
  }


#s-2e64aa76-22fe-4a06-ab76-31470790fb1a .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-07d03937-8200-4975-8e2c-10941cb105f5 {
  display: none;
}
#s-07d03937-8200-4975-8e2c-10941cb105f5, #wrap-s-07d03937-8200-4975-8e2c-10941cb105f5 { display:none !important; }}@media (max-width: 767px){#s-07d03937-8200-4975-8e2c-10941cb105f5 {
  display: none;
}
#s-07d03937-8200-4975-8e2c-10941cb105f5, #wrap-s-07d03937-8200-4975-8e2c-10941cb105f5 { display:none !important; }}
#s-6d635583-2278-40e9-995a-f99a07a3e82b {
  text-align: center;
}







  #s-6d635583-2278-40e9-995a-f99a07a3e82b img.shogun-image {
    

    
    
    
  }


#s-6d635583-2278-40e9-995a-f99a07a3e82b .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-8c4f4f9a-a075-4be9-9f82-99afbcebebaa {
  display: none;
}
#s-8c4f4f9a-a075-4be9-9f82-99afbcebebaa, #wrap-s-8c4f4f9a-a075-4be9-9f82-99afbcebebaa { display:none !important; }}@media (max-width: 767px){#s-8c4f4f9a-a075-4be9-9f82-99afbcebebaa {
  display: none;
}
#s-8c4f4f9a-a075-4be9-9f82-99afbcebebaa, #wrap-s-8c4f4f9a-a075-4be9-9f82-99afbcebebaa { display:none !important; }}
#s-bbf0ba17-5782-4282-bfa9-8b32d945d544 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-bbf0ba17-5782-4282-bfa9-8b32d945d544:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-bbf0ba17-5782-4282-bfa9-8b32d945d544:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-bbf0ba17-5782-4282-bfa9-8b32d945d544-root {
    text-align: center;
  }


#s-bbf0ba17-5782-4282-bfa9-8b32d945d544.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-bbf0ba17-5782-4282-bfa9-8b32d945d544-root {
    text-align: center;
  }


#s-bbf0ba17-5782-4282-bfa9-8b32d945d544.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-bbf0ba17-5782-4282-bfa9-8b32d945d544-root {
    text-align: center;
  }


#s-bbf0ba17-5782-4282-bfa9-8b32d945d544.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-bbf0ba17-5782-4282-bfa9-8b32d945d544-root {
    text-align: center;
  }


#s-bbf0ba17-5782-4282-bfa9-8b32d945d544.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-bbf0ba17-5782-4282-bfa9-8b32d945d544-root {
    text-align: center;
  }


#s-bbf0ba17-5782-4282-bfa9-8b32d945d544.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-af81e8ec-25af-4a7a-986f-add82d0482fd {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-af81e8ec-25af-4a7a-986f-add82d0482fd .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-af81e8ec-25af-4a7a-986f-add82d0482fd .shg-sld-nav-button.shg-sld-left,
#s-af81e8ec-25af-4a7a-986f-add82d0482fd .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-df202ebb-fdd2-4c4d-8944-77192fa4bdfc {
  text-align: center;
}







  #s-df202ebb-fdd2-4c4d-8944-77192fa4bdfc img.shogun-image {
    

    
    
    
  }


#s-df202ebb-fdd2-4c4d-8944-77192fa4bdfc .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-8bee4ee7-8d2a-4977-bffd-7ca94906bf7d {
  display: none;
}
#s-8bee4ee7-8d2a-4977-bffd-7ca94906bf7d, #wrap-s-8bee4ee7-8d2a-4977-bffd-7ca94906bf7d { display:none !important; }}@media (max-width: 767px){#s-8bee4ee7-8d2a-4977-bffd-7ca94906bf7d {
  display: none;
}
#s-8bee4ee7-8d2a-4977-bffd-7ca94906bf7d, #wrap-s-8bee4ee7-8d2a-4977-bffd-7ca94906bf7d { display:none !important; }}
#s-2ba56d92-d860-4219-b964-041ed552efd8 {
  text-align: center;
}







  #s-2ba56d92-d860-4219-b964-041ed552efd8 img.shogun-image {
    

    
    
    
  }


#s-2ba56d92-d860-4219-b964-041ed552efd8 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-b7b3ae5e-6eb7-445e-ae7b-3802414ff1b4 {
  display: none;
}
#s-b7b3ae5e-6eb7-445e-ae7b-3802414ff1b4, #wrap-s-b7b3ae5e-6eb7-445e-ae7b-3802414ff1b4 { display:none !important; }}@media (max-width: 767px){#s-b7b3ae5e-6eb7-445e-ae7b-3802414ff1b4 {
  display: none;
}
#s-b7b3ae5e-6eb7-445e-ae7b-3802414ff1b4, #wrap-s-b7b3ae5e-6eb7-445e-ae7b-3802414ff1b4 { display:none !important; }}
#s-3bb6cde2-f84d-45c7-9192-b988695c35d7 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-3bb6cde2-f84d-45c7-9192-b988695c35d7:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-3bb6cde2-f84d-45c7-9192-b988695c35d7:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-3bb6cde2-f84d-45c7-9192-b988695c35d7-root {
    text-align: center;
  }


#s-3bb6cde2-f84d-45c7-9192-b988695c35d7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3bb6cde2-f84d-45c7-9192-b988695c35d7-root {
    text-align: center;
  }


#s-3bb6cde2-f84d-45c7-9192-b988695c35d7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3bb6cde2-f84d-45c7-9192-b988695c35d7-root {
    text-align: center;
  }


#s-3bb6cde2-f84d-45c7-9192-b988695c35d7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3bb6cde2-f84d-45c7-9192-b988695c35d7-root {
    text-align: center;
  }


#s-3bb6cde2-f84d-45c7-9192-b988695c35d7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3bb6cde2-f84d-45c7-9192-b988695c35d7-root {
    text-align: center;
  }


#s-3bb6cde2-f84d-45c7-9192-b988695c35d7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-b7546d11-1b51-40a6-8411-12482ca49966 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-b7546d11-1b51-40a6-8411-12482ca49966 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-b7546d11-1b51-40a6-8411-12482ca49966 .shg-sld-nav-button.shg-sld-left,
#s-b7546d11-1b51-40a6-8411-12482ca49966 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-6ee44bf1-aa84-420c-9fce-588dd2a8ed08 {
  text-align: center;
}







  #s-6ee44bf1-aa84-420c-9fce-588dd2a8ed08 img.shogun-image {
    

    
    
    
  }


#s-6ee44bf1-aa84-420c-9fce-588dd2a8ed08 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-32d80c8c-8292-47ea-a763-679615ab4a44 {
  display: none;
}
#s-32d80c8c-8292-47ea-a763-679615ab4a44, #wrap-s-32d80c8c-8292-47ea-a763-679615ab4a44 { display:none !important; }}@media (max-width: 767px){#s-32d80c8c-8292-47ea-a763-679615ab4a44 {
  display: none;
}
#s-32d80c8c-8292-47ea-a763-679615ab4a44, #wrap-s-32d80c8c-8292-47ea-a763-679615ab4a44 { display:none !important; }}
#s-4cf003d5-7400-4bd6-a4b2-a2103f1854a7 {
  text-align: center;
}







  #s-4cf003d5-7400-4bd6-a4b2-a2103f1854a7 img.shogun-image {
    

    
    
    
  }


#s-4cf003d5-7400-4bd6-a4b2-a2103f1854a7 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-a50b872d-202d-4c7c-96be-c6f5ca8aa328 {
  display: none;
}
#s-a50b872d-202d-4c7c-96be-c6f5ca8aa328, #wrap-s-a50b872d-202d-4c7c-96be-c6f5ca8aa328 { display:none !important; }}@media (max-width: 767px){#s-a50b872d-202d-4c7c-96be-c6f5ca8aa328 {
  display: none;
}
#s-a50b872d-202d-4c7c-96be-c6f5ca8aa328, #wrap-s-a50b872d-202d-4c7c-96be-c6f5ca8aa328 { display:none !important; }}
#s-dd699d60-6226-4af6-9646-d99802753b5d {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-dd699d60-6226-4af6-9646-d99802753b5d:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-dd699d60-6226-4af6-9646-d99802753b5d:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-dd699d60-6226-4af6-9646-d99802753b5d-root {
    text-align: center;
  }


#s-dd699d60-6226-4af6-9646-d99802753b5d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-dd699d60-6226-4af6-9646-d99802753b5d-root {
    text-align: center;
  }


#s-dd699d60-6226-4af6-9646-d99802753b5d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-dd699d60-6226-4af6-9646-d99802753b5d-root {
    text-align: center;
  }


#s-dd699d60-6226-4af6-9646-d99802753b5d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-dd699d60-6226-4af6-9646-d99802753b5d-root {
    text-align: center;
  }


#s-dd699d60-6226-4af6-9646-d99802753b5d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-dd699d60-6226-4af6-9646-d99802753b5d-root {
    text-align: center;
  }


#s-dd699d60-6226-4af6-9646-d99802753b5d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-07aae395-4d5c-4b5c-9cac-22a4d09ba6e7 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-07aae395-4d5c-4b5c-9cac-22a4d09ba6e7 {
  display: none;
}
#s-07aae395-4d5c-4b5c-9cac-22a4d09ba6e7, #wrap-s-07aae395-4d5c-4b5c-9cac-22a4d09ba6e7 { display:none !important; }}@media (max-width: 767px){#s-07aae395-4d5c-4b5c-9cac-22a4d09ba6e7 {
  display: none;
}
#s-07aae395-4d5c-4b5c-9cac-22a4d09ba6e7, #wrap-s-07aae395-4d5c-4b5c-9cac-22a4d09ba6e7 { display:none !important; }}
@media (min-width: 0px) {
[id="s-07aae395-4d5c-4b5c-9cac-22a4d09ba6e7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-07aae395-4d5c-4b5c-9cac-22a4d09ba6e7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-07aae395-4d5c-4b5c-9cac-22a4d09ba6e7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-07aae395-4d5c-4b5c-9cac-22a4d09ba6e7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-b805d5ed-c3ef-4f52-a9d5-d39a74c80828 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-b805d5ed-c3ef-4f52-a9d5-d39a74c80828 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-b805d5ed-c3ef-4f52-a9d5-d39a74c80828 .shg-sld-nav-button.shg-sld-left,
#s-b805d5ed-c3ef-4f52-a9d5-d39a74c80828 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-87194f8d-ad1c-4d72-83b3-d92267a03ee1 {
  text-align: center;
}







  #s-87194f8d-ad1c-4d72-83b3-d92267a03ee1 img.shogun-image {
    

    
    
    
  }


#s-87194f8d-ad1c-4d72-83b3-d92267a03ee1 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-19eb8c30-84ee-47d3-ac25-61d0fe7a3dae {
  display: none;
}
#s-19eb8c30-84ee-47d3-ac25-61d0fe7a3dae, #wrap-s-19eb8c30-84ee-47d3-ac25-61d0fe7a3dae { display:none !important; }}@media (max-width: 767px){#s-19eb8c30-84ee-47d3-ac25-61d0fe7a3dae {
  display: none;
}
#s-19eb8c30-84ee-47d3-ac25-61d0fe7a3dae, #wrap-s-19eb8c30-84ee-47d3-ac25-61d0fe7a3dae { display:none !important; }}
#s-7e726eb0-a411-46e6-b1c0-b3fc1726b180 {
  text-align: center;
}







  #s-7e726eb0-a411-46e6-b1c0-b3fc1726b180 img.shogun-image {
    

    
    
    
  }


#s-7e726eb0-a411-46e6-b1c0-b3fc1726b180 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-2f6557a6-e146-4e63-94d0-6cafc9585483 {
  display: none;
}
#s-2f6557a6-e146-4e63-94d0-6cafc9585483, #wrap-s-2f6557a6-e146-4e63-94d0-6cafc9585483 { display:none !important; }}@media (max-width: 767px){#s-2f6557a6-e146-4e63-94d0-6cafc9585483 {
  display: none;
}
#s-2f6557a6-e146-4e63-94d0-6cafc9585483, #wrap-s-2f6557a6-e146-4e63-94d0-6cafc9585483 { display:none !important; }}
#s-66bf049a-ad66-40db-8ad8-155fd63d796e {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-66bf049a-ad66-40db-8ad8-155fd63d796e:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-66bf049a-ad66-40db-8ad8-155fd63d796e:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-66bf049a-ad66-40db-8ad8-155fd63d796e-root {
    text-align: center;
  }


#s-66bf049a-ad66-40db-8ad8-155fd63d796e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-66bf049a-ad66-40db-8ad8-155fd63d796e-root {
    text-align: center;
  }


#s-66bf049a-ad66-40db-8ad8-155fd63d796e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-66bf049a-ad66-40db-8ad8-155fd63d796e-root {
    text-align: center;
  }


#s-66bf049a-ad66-40db-8ad8-155fd63d796e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-66bf049a-ad66-40db-8ad8-155fd63d796e-root {
    text-align: center;
  }


#s-66bf049a-ad66-40db-8ad8-155fd63d796e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-66bf049a-ad66-40db-8ad8-155fd63d796e-root {
    text-align: center;
  }


#s-66bf049a-ad66-40db-8ad8-155fd63d796e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-d3e53eb3-c947-4226-80d3-7171d56b2467 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-d3e53eb3-c947-4226-80d3-7171d56b2467 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-d3e53eb3-c947-4226-80d3-7171d56b2467 .shg-sld-nav-button.shg-sld-left,
#s-d3e53eb3-c947-4226-80d3-7171d56b2467 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-bd4ab05d-6de1-4869-81da-0c24caa42c43 {
  text-align: center;
}







  #s-bd4ab05d-6de1-4869-81da-0c24caa42c43 img.shogun-image {
    

    
    
    
  }


#s-bd4ab05d-6de1-4869-81da-0c24caa42c43 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-15e90a65-ef1f-4319-9b93-e0f5fc65cbd4 {
  display: none;
}
#s-15e90a65-ef1f-4319-9b93-e0f5fc65cbd4, #wrap-s-15e90a65-ef1f-4319-9b93-e0f5fc65cbd4 { display:none !important; }}@media (max-width: 767px){#s-15e90a65-ef1f-4319-9b93-e0f5fc65cbd4 {
  display: none;
}
#s-15e90a65-ef1f-4319-9b93-e0f5fc65cbd4, #wrap-s-15e90a65-ef1f-4319-9b93-e0f5fc65cbd4 { display:none !important; }}
#s-2b7aa5b3-fe12-4b4c-9fb5-8ec4724a66bf {
  text-align: center;
}







  #s-2b7aa5b3-fe12-4b4c-9fb5-8ec4724a66bf img.shogun-image {
    

    
    
    
  }


#s-2b7aa5b3-fe12-4b4c-9fb5-8ec4724a66bf .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-4545be3d-b442-44c4-92fd-c966eb929321 {
  display: none;
}
#s-4545be3d-b442-44c4-92fd-c966eb929321, #wrap-s-4545be3d-b442-44c4-92fd-c966eb929321 { display:none !important; }}@media (max-width: 767px){#s-4545be3d-b442-44c4-92fd-c966eb929321 {
  display: none;
}
#s-4545be3d-b442-44c4-92fd-c966eb929321, #wrap-s-4545be3d-b442-44c4-92fd-c966eb929321 { display:none !important; }}
#s-6a20b952-7507-4afa-a645-acc16f6bc674 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-6a20b952-7507-4afa-a645-acc16f6bc674:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-6a20b952-7507-4afa-a645-acc16f6bc674:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-6a20b952-7507-4afa-a645-acc16f6bc674-root {
    text-align: center;
  }


#s-6a20b952-7507-4afa-a645-acc16f6bc674.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6a20b952-7507-4afa-a645-acc16f6bc674-root {
    text-align: center;
  }


#s-6a20b952-7507-4afa-a645-acc16f6bc674.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6a20b952-7507-4afa-a645-acc16f6bc674-root {
    text-align: center;
  }


#s-6a20b952-7507-4afa-a645-acc16f6bc674.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6a20b952-7507-4afa-a645-acc16f6bc674-root {
    text-align: center;
  }


#s-6a20b952-7507-4afa-a645-acc16f6bc674.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6a20b952-7507-4afa-a645-acc16f6bc674-root {
    text-align: center;
  }


#s-6a20b952-7507-4afa-a645-acc16f6bc674.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-76a1bb17-00fb-458b-a59f-296e1ffd50c8 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-76a1bb17-00fb-458b-a59f-296e1ffd50c8 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-76a1bb17-00fb-458b-a59f-296e1ffd50c8 .shg-sld-nav-button.shg-sld-left,
#s-76a1bb17-00fb-458b-a59f-296e1ffd50c8 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-b63eef68-2695-4939-9a41-e6da75442f56 {
  text-align: center;
}







  #s-b63eef68-2695-4939-9a41-e6da75442f56 img.shogun-image {
    

    
    
    
  }


#s-b63eef68-2695-4939-9a41-e6da75442f56 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-4d276da5-69b0-44ed-919d-e949b5db87b6 {
  display: none;
}
#s-4d276da5-69b0-44ed-919d-e949b5db87b6, #wrap-s-4d276da5-69b0-44ed-919d-e949b5db87b6 { display:none !important; }}@media (max-width: 767px){#s-4d276da5-69b0-44ed-919d-e949b5db87b6 {
  display: none;
}
#s-4d276da5-69b0-44ed-919d-e949b5db87b6, #wrap-s-4d276da5-69b0-44ed-919d-e949b5db87b6 { display:none !important; }}
#s-77f3bece-b39f-4dc6-b9c1-77162fb08925 {
  text-align: center;
}







  #s-77f3bece-b39f-4dc6-b9c1-77162fb08925 img.shogun-image {
    

    
    
    
  }


#s-77f3bece-b39f-4dc6-b9c1-77162fb08925 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-54d72836-da5d-4c98-8b24-9f6e16e469b7 {
  display: none;
}
#s-54d72836-da5d-4c98-8b24-9f6e16e469b7, #wrap-s-54d72836-da5d-4c98-8b24-9f6e16e469b7 { display:none !important; }}@media (max-width: 767px){#s-54d72836-da5d-4c98-8b24-9f6e16e469b7 {
  display: none;
}
#s-54d72836-da5d-4c98-8b24-9f6e16e469b7, #wrap-s-54d72836-da5d-4c98-8b24-9f6e16e469b7 { display:none !important; }}
#s-f0beb657-9bb6-4ef7-80fc-8dfc763e8588 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-f0beb657-9bb6-4ef7-80fc-8dfc763e8588:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-f0beb657-9bb6-4ef7-80fc-8dfc763e8588:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-f0beb657-9bb6-4ef7-80fc-8dfc763e8588-root {
    text-align: center;
  }


#s-f0beb657-9bb6-4ef7-80fc-8dfc763e8588.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f0beb657-9bb6-4ef7-80fc-8dfc763e8588-root {
    text-align: center;
  }


#s-f0beb657-9bb6-4ef7-80fc-8dfc763e8588.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f0beb657-9bb6-4ef7-80fc-8dfc763e8588-root {
    text-align: center;
  }


#s-f0beb657-9bb6-4ef7-80fc-8dfc763e8588.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f0beb657-9bb6-4ef7-80fc-8dfc763e8588-root {
    text-align: center;
  }


#s-f0beb657-9bb6-4ef7-80fc-8dfc763e8588.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f0beb657-9bb6-4ef7-80fc-8dfc763e8588-root {
    text-align: center;
  }


#s-f0beb657-9bb6-4ef7-80fc-8dfc763e8588.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-ecc9633f-4532-4972-9097-37bdc6fb6f4d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ecc9633f-4532-4972-9097-37bdc6fb6f4d {
  display: none;
}
#s-ecc9633f-4532-4972-9097-37bdc6fb6f4d, #wrap-s-ecc9633f-4532-4972-9097-37bdc6fb6f4d { display:none !important; }}@media (max-width: 767px){#s-ecc9633f-4532-4972-9097-37bdc6fb6f4d {
  display: none;
}
#s-ecc9633f-4532-4972-9097-37bdc6fb6f4d, #wrap-s-ecc9633f-4532-4972-9097-37bdc6fb6f4d { display:none !important; }}
@media (min-width: 0px) {
[id="s-ecc9633f-4532-4972-9097-37bdc6fb6f4d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ecc9633f-4532-4972-9097-37bdc6fb6f4d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ecc9633f-4532-4972-9097-37bdc6fb6f4d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ecc9633f-4532-4972-9097-37bdc6fb6f4d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-4a1d704d-d252-4659-8fa0-d906b860980e {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-4a1d704d-d252-4659-8fa0-d906b860980e .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-4a1d704d-d252-4659-8fa0-d906b860980e .shg-sld-nav-button.shg-sld-left,
#s-4a1d704d-d252-4659-8fa0-d906b860980e .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-dbe92a43-106a-4700-8bf3-65485a9ad84e {
  text-align: center;
}







  #s-dbe92a43-106a-4700-8bf3-65485a9ad84e img.shogun-image {
    

    
    
    
  }


#s-dbe92a43-106a-4700-8bf3-65485a9ad84e .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-7fe340bc-b70c-43cc-9477-5c5bf34c78c6 {
  display: none;
}
#s-7fe340bc-b70c-43cc-9477-5c5bf34c78c6, #wrap-s-7fe340bc-b70c-43cc-9477-5c5bf34c78c6 { display:none !important; }}@media (max-width: 767px){#s-7fe340bc-b70c-43cc-9477-5c5bf34c78c6 {
  display: none;
}
#s-7fe340bc-b70c-43cc-9477-5c5bf34c78c6, #wrap-s-7fe340bc-b70c-43cc-9477-5c5bf34c78c6 { display:none !important; }}
#s-8dbb7cb5-b386-425f-845e-a22fb368d4db {
  text-align: center;
}







  #s-8dbb7cb5-b386-425f-845e-a22fb368d4db img.shogun-image {
    

    
    
    
  }


#s-8dbb7cb5-b386-425f-845e-a22fb368d4db .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-cc40497d-411a-472e-a4d0-fd4ae8bfa945 {
  display: none;
}
#s-cc40497d-411a-472e-a4d0-fd4ae8bfa945, #wrap-s-cc40497d-411a-472e-a4d0-fd4ae8bfa945 { display:none !important; }}@media (max-width: 767px){#s-cc40497d-411a-472e-a4d0-fd4ae8bfa945 {
  display: none;
}
#s-cc40497d-411a-472e-a4d0-fd4ae8bfa945, #wrap-s-cc40497d-411a-472e-a4d0-fd4ae8bfa945 { display:none !important; }}
#s-02fea8d7-07a2-43c4-b9f0-0144a9de585e {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-02fea8d7-07a2-43c4-b9f0-0144a9de585e:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-02fea8d7-07a2-43c4-b9f0-0144a9de585e:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-02fea8d7-07a2-43c4-b9f0-0144a9de585e-root {
    text-align: center;
  }


#s-02fea8d7-07a2-43c4-b9f0-0144a9de585e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-02fea8d7-07a2-43c4-b9f0-0144a9de585e-root {
    text-align: center;
  }


#s-02fea8d7-07a2-43c4-b9f0-0144a9de585e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-02fea8d7-07a2-43c4-b9f0-0144a9de585e-root {
    text-align: center;
  }


#s-02fea8d7-07a2-43c4-b9f0-0144a9de585e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-02fea8d7-07a2-43c4-b9f0-0144a9de585e-root {
    text-align: center;
  }


#s-02fea8d7-07a2-43c4-b9f0-0144a9de585e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-02fea8d7-07a2-43c4-b9f0-0144a9de585e-root {
    text-align: center;
  }


#s-02fea8d7-07a2-43c4-b9f0-0144a9de585e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-3e33279a-04e3-401f-b607-4a6a1acc68ce {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-3e33279a-04e3-401f-b607-4a6a1acc68ce .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-3e33279a-04e3-401f-b607-4a6a1acc68ce .shg-sld-nav-button.shg-sld-left,
#s-3e33279a-04e3-401f-b607-4a6a1acc68ce .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-deee617f-6319-4201-8a9b-ca5bdfc4c386 {
  text-align: center;
}







  #s-deee617f-6319-4201-8a9b-ca5bdfc4c386 img.shogun-image {
    

    
    
    
  }


#s-deee617f-6319-4201-8a9b-ca5bdfc4c386 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-ef4cd1e3-707d-45e2-8af5-964977cd9cb8 {
  display: none;
}
#s-ef4cd1e3-707d-45e2-8af5-964977cd9cb8, #wrap-s-ef4cd1e3-707d-45e2-8af5-964977cd9cb8 { display:none !important; }}@media (max-width: 767px){#s-ef4cd1e3-707d-45e2-8af5-964977cd9cb8 {
  display: none;
}
#s-ef4cd1e3-707d-45e2-8af5-964977cd9cb8, #wrap-s-ef4cd1e3-707d-45e2-8af5-964977cd9cb8 { display:none !important; }}
#s-09424a48-bcdf-42e1-98da-004a332c4930 {
  text-align: center;
}







  #s-09424a48-bcdf-42e1-98da-004a332c4930 img.shogun-image {
    

    
    
    
  }


#s-09424a48-bcdf-42e1-98da-004a332c4930 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-74b57ed9-167c-4d16-8aac-a5057943e342 {
  display: none;
}
#s-74b57ed9-167c-4d16-8aac-a5057943e342, #wrap-s-74b57ed9-167c-4d16-8aac-a5057943e342 { display:none !important; }}@media (max-width: 767px){#s-74b57ed9-167c-4d16-8aac-a5057943e342 {
  display: none;
}
#s-74b57ed9-167c-4d16-8aac-a5057943e342, #wrap-s-74b57ed9-167c-4d16-8aac-a5057943e342 { display:none !important; }}
#s-208767fb-2a68-4a07-93b0-10719e317995 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-208767fb-2a68-4a07-93b0-10719e317995:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-208767fb-2a68-4a07-93b0-10719e317995:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-208767fb-2a68-4a07-93b0-10719e317995-root {
    text-align: center;
  }


#s-208767fb-2a68-4a07-93b0-10719e317995.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-208767fb-2a68-4a07-93b0-10719e317995-root {
    text-align: center;
  }


#s-208767fb-2a68-4a07-93b0-10719e317995.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-208767fb-2a68-4a07-93b0-10719e317995-root {
    text-align: center;
  }


#s-208767fb-2a68-4a07-93b0-10719e317995.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-208767fb-2a68-4a07-93b0-10719e317995-root {
    text-align: center;
  }


#s-208767fb-2a68-4a07-93b0-10719e317995.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-208767fb-2a68-4a07-93b0-10719e317995-root {
    text-align: center;
  }


#s-208767fb-2a68-4a07-93b0-10719e317995.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-bb13b143-5514-47f1-b96b-92fc98da1f0f {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-bb13b143-5514-47f1-b96b-92fc98da1f0f .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-bb13b143-5514-47f1-b96b-92fc98da1f0f .shg-sld-nav-button.shg-sld-left,
#s-bb13b143-5514-47f1-b96b-92fc98da1f0f .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-6997ac48-fdf3-4ef8-8b6b-d7980f548f59 {
  text-align: center;
}







  #s-6997ac48-fdf3-4ef8-8b6b-d7980f548f59 img.shogun-image {
    

    
    
    
  }


#s-6997ac48-fdf3-4ef8-8b6b-d7980f548f59 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-3bfbb554-61aa-47ed-9c36-59a7c4b09a75 {
  display: none;
}
#s-3bfbb554-61aa-47ed-9c36-59a7c4b09a75, #wrap-s-3bfbb554-61aa-47ed-9c36-59a7c4b09a75 { display:none !important; }}@media (max-width: 767px){#s-3bfbb554-61aa-47ed-9c36-59a7c4b09a75 {
  display: none;
}
#s-3bfbb554-61aa-47ed-9c36-59a7c4b09a75, #wrap-s-3bfbb554-61aa-47ed-9c36-59a7c4b09a75 { display:none !important; }}
#s-eb922758-c5dd-42a9-9d78-65b02e7a761e {
  text-align: center;
}







  #s-eb922758-c5dd-42a9-9d78-65b02e7a761e img.shogun-image {
    

    
    
    
  }


#s-eb922758-c5dd-42a9-9d78-65b02e7a761e .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-d051aa5a-97b3-45a6-ab46-923e6ff7b85c {
  display: none;
}
#s-d051aa5a-97b3-45a6-ab46-923e6ff7b85c, #wrap-s-d051aa5a-97b3-45a6-ab46-923e6ff7b85c { display:none !important; }}@media (max-width: 767px){#s-d051aa5a-97b3-45a6-ab46-923e6ff7b85c {
  display: none;
}
#s-d051aa5a-97b3-45a6-ab46-923e6ff7b85c, #wrap-s-d051aa5a-97b3-45a6-ab46-923e6ff7b85c { display:none !important; }}
#s-5e454a56-e08e-44be-931c-04012a4c9bb7 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-5e454a56-e08e-44be-931c-04012a4c9bb7:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-5e454a56-e08e-44be-931c-04012a4c9bb7:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-5e454a56-e08e-44be-931c-04012a4c9bb7-root {
    text-align: center;
  }


#s-5e454a56-e08e-44be-931c-04012a4c9bb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5e454a56-e08e-44be-931c-04012a4c9bb7-root {
    text-align: center;
  }


#s-5e454a56-e08e-44be-931c-04012a4c9bb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5e454a56-e08e-44be-931c-04012a4c9bb7-root {
    text-align: center;
  }


#s-5e454a56-e08e-44be-931c-04012a4c9bb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5e454a56-e08e-44be-931c-04012a4c9bb7-root {
    text-align: center;
  }


#s-5e454a56-e08e-44be-931c-04012a4c9bb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5e454a56-e08e-44be-931c-04012a4c9bb7-root {
    text-align: center;
  }


#s-5e454a56-e08e-44be-931c-04012a4c9bb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-b1899fb9-97b1-42b3-9265-d5cf1ca0edba {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b1899fb9-97b1-42b3-9265-d5cf1ca0edba {
  display: none;
}
#s-b1899fb9-97b1-42b3-9265-d5cf1ca0edba, #wrap-s-b1899fb9-97b1-42b3-9265-d5cf1ca0edba { display:none !important; }}@media (max-width: 767px){#s-b1899fb9-97b1-42b3-9265-d5cf1ca0edba {
  display: none;
}
#s-b1899fb9-97b1-42b3-9265-d5cf1ca0edba, #wrap-s-b1899fb9-97b1-42b3-9265-d5cf1ca0edba { display:none !important; }}
@media (min-width: 0px) {
[id="s-b1899fb9-97b1-42b3-9265-d5cf1ca0edba"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b1899fb9-97b1-42b3-9265-d5cf1ca0edba"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-b1899fb9-97b1-42b3-9265-d5cf1ca0edba"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-b1899fb9-97b1-42b3-9265-d5cf1ca0edba"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-28d017d2-7567-4015-871c-8dde1a2cd889 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-28d017d2-7567-4015-871c-8dde1a2cd889 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-28d017d2-7567-4015-871c-8dde1a2cd889 .shg-sld-nav-button.shg-sld-left,
#s-28d017d2-7567-4015-871c-8dde1a2cd889 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-164fc7b2-b9c8-48a3-a367-2d9e566cfd38 {
  text-align: center;
}







  #s-164fc7b2-b9c8-48a3-a367-2d9e566cfd38 img.shogun-image {
    

    
    
    
  }


#s-164fc7b2-b9c8-48a3-a367-2d9e566cfd38 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-273c7db0-5225-45d3-ac06-c231fd1b1880 {
  display: none;
}
#s-273c7db0-5225-45d3-ac06-c231fd1b1880, #wrap-s-273c7db0-5225-45d3-ac06-c231fd1b1880 { display:none !important; }}@media (max-width: 767px){#s-273c7db0-5225-45d3-ac06-c231fd1b1880 {
  display: none;
}
#s-273c7db0-5225-45d3-ac06-c231fd1b1880, #wrap-s-273c7db0-5225-45d3-ac06-c231fd1b1880 { display:none !important; }}
#s-ee916349-efc8-4897-b6a8-6942791b05c9 {
  text-align: center;
}







  #s-ee916349-efc8-4897-b6a8-6942791b05c9 img.shogun-image {
    

    
    
    
  }


#s-ee916349-efc8-4897-b6a8-6942791b05c9 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-eb721a8d-bc6a-4b1e-a5b5-d22e274517b8 {
  display: none;
}
#s-eb721a8d-bc6a-4b1e-a5b5-d22e274517b8, #wrap-s-eb721a8d-bc6a-4b1e-a5b5-d22e274517b8 { display:none !important; }}@media (max-width: 767px){#s-eb721a8d-bc6a-4b1e-a5b5-d22e274517b8 {
  display: none;
}
#s-eb721a8d-bc6a-4b1e-a5b5-d22e274517b8, #wrap-s-eb721a8d-bc6a-4b1e-a5b5-d22e274517b8 { display:none !important; }}
#s-76ec7942-92ce-485c-a57c-cb0c823e4c03 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-76ec7942-92ce-485c-a57c-cb0c823e4c03:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-76ec7942-92ce-485c-a57c-cb0c823e4c03:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-76ec7942-92ce-485c-a57c-cb0c823e4c03-root {
    text-align: center;
  }


#s-76ec7942-92ce-485c-a57c-cb0c823e4c03.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-76ec7942-92ce-485c-a57c-cb0c823e4c03-root {
    text-align: center;
  }


#s-76ec7942-92ce-485c-a57c-cb0c823e4c03.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-76ec7942-92ce-485c-a57c-cb0c823e4c03-root {
    text-align: center;
  }


#s-76ec7942-92ce-485c-a57c-cb0c823e4c03.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-76ec7942-92ce-485c-a57c-cb0c823e4c03-root {
    text-align: center;
  }


#s-76ec7942-92ce-485c-a57c-cb0c823e4c03.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-76ec7942-92ce-485c-a57c-cb0c823e4c03-root {
    text-align: center;
  }


#s-76ec7942-92ce-485c-a57c-cb0c823e4c03.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-a6387ada-fed2-4ecb-aca7-e7bf2d910815 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-a6387ada-fed2-4ecb-aca7-e7bf2d910815 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-a6387ada-fed2-4ecb-aca7-e7bf2d910815 .shg-sld-nav-button.shg-sld-left,
#s-a6387ada-fed2-4ecb-aca7-e7bf2d910815 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-219c9375-42c4-4cbd-83fe-f560dec2acba {
  text-align: center;
}







  #s-219c9375-42c4-4cbd-83fe-f560dec2acba img.shogun-image {
    

    
    
    
  }


#s-219c9375-42c4-4cbd-83fe-f560dec2acba .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-401ae513-42ec-4e67-930e-db6117bd6832 {
  display: none;
}
#s-401ae513-42ec-4e67-930e-db6117bd6832, #wrap-s-401ae513-42ec-4e67-930e-db6117bd6832 { display:none !important; }}@media (max-width: 767px){#s-401ae513-42ec-4e67-930e-db6117bd6832 {
  display: none;
}
#s-401ae513-42ec-4e67-930e-db6117bd6832, #wrap-s-401ae513-42ec-4e67-930e-db6117bd6832 { display:none !important; }}
#s-e70bc3ea-833e-426d-9dc7-89c046da2571 {
  text-align: center;
}







  #s-e70bc3ea-833e-426d-9dc7-89c046da2571 img.shogun-image {
    

    
    
    
  }


#s-e70bc3ea-833e-426d-9dc7-89c046da2571 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-b7ce70ad-7ad8-46ba-b898-31f25e3a0a25 {
  display: none;
}
#s-b7ce70ad-7ad8-46ba-b898-31f25e3a0a25, #wrap-s-b7ce70ad-7ad8-46ba-b898-31f25e3a0a25 { display:none !important; }}@media (max-width: 767px){#s-b7ce70ad-7ad8-46ba-b898-31f25e3a0a25 {
  display: none;
}
#s-b7ce70ad-7ad8-46ba-b898-31f25e3a0a25, #wrap-s-b7ce70ad-7ad8-46ba-b898-31f25e3a0a25 { display:none !important; }}
#s-4be3d7d4-35bc-4104-8904-2a16861f7163 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-4be3d7d4-35bc-4104-8904-2a16861f7163:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-4be3d7d4-35bc-4104-8904-2a16861f7163:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-4be3d7d4-35bc-4104-8904-2a16861f7163-root {
    text-align: center;
  }


#s-4be3d7d4-35bc-4104-8904-2a16861f7163.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4be3d7d4-35bc-4104-8904-2a16861f7163-root {
    text-align: center;
  }


#s-4be3d7d4-35bc-4104-8904-2a16861f7163.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4be3d7d4-35bc-4104-8904-2a16861f7163-root {
    text-align: center;
  }


#s-4be3d7d4-35bc-4104-8904-2a16861f7163.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4be3d7d4-35bc-4104-8904-2a16861f7163-root {
    text-align: center;
  }


#s-4be3d7d4-35bc-4104-8904-2a16861f7163.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4be3d7d4-35bc-4104-8904-2a16861f7163-root {
    text-align: center;
  }


#s-4be3d7d4-35bc-4104-8904-2a16861f7163.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-844d9da2-6e7c-46c6-a19d-0315fe51e0dc {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-844d9da2-6e7c-46c6-a19d-0315fe51e0dc .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-844d9da2-6e7c-46c6-a19d-0315fe51e0dc .shg-sld-nav-button.shg-sld-left,
#s-844d9da2-6e7c-46c6-a19d-0315fe51e0dc .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-341749e6-8c10-46f4-863d-f14d11143a8d {
  text-align: center;
}







  #s-341749e6-8c10-46f4-863d-f14d11143a8d img.shogun-image {
    

    
    
    
  }


#s-341749e6-8c10-46f4-863d-f14d11143a8d .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-d66ed723-c9ad-4d72-99de-2b6676ceb8d4 {
  display: none;
}
#s-d66ed723-c9ad-4d72-99de-2b6676ceb8d4, #wrap-s-d66ed723-c9ad-4d72-99de-2b6676ceb8d4 { display:none !important; }}@media (max-width: 767px){#s-d66ed723-c9ad-4d72-99de-2b6676ceb8d4 {
  display: none;
}
#s-d66ed723-c9ad-4d72-99de-2b6676ceb8d4, #wrap-s-d66ed723-c9ad-4d72-99de-2b6676ceb8d4 { display:none !important; }}
#s-eed245c5-e84d-41f1-b19b-2f1c001f9f16 {
  text-align: center;
}







  #s-eed245c5-e84d-41f1-b19b-2f1c001f9f16 img.shogun-image {
    

    
    
    
  }


#s-eed245c5-e84d-41f1-b19b-2f1c001f9f16 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-8d83609a-6bad-42e4-a87c-d7bf12c6482f {
  display: none;
}
#s-8d83609a-6bad-42e4-a87c-d7bf12c6482f, #wrap-s-8d83609a-6bad-42e4-a87c-d7bf12c6482f { display:none !important; }}@media (max-width: 767px){#s-8d83609a-6bad-42e4-a87c-d7bf12c6482f {
  display: none;
}
#s-8d83609a-6bad-42e4-a87c-d7bf12c6482f, #wrap-s-8d83609a-6bad-42e4-a87c-d7bf12c6482f { display:none !important; }}
#s-e267f581-7d1e-43a3-a150-07ad3a548699 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-e267f581-7d1e-43a3-a150-07ad3a548699:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-e267f581-7d1e-43a3-a150-07ad3a548699:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-e267f581-7d1e-43a3-a150-07ad3a548699-root {
    text-align: center;
  }


#s-e267f581-7d1e-43a3-a150-07ad3a548699.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e267f581-7d1e-43a3-a150-07ad3a548699-root {
    text-align: center;
  }


#s-e267f581-7d1e-43a3-a150-07ad3a548699.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e267f581-7d1e-43a3-a150-07ad3a548699-root {
    text-align: center;
  }


#s-e267f581-7d1e-43a3-a150-07ad3a548699.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e267f581-7d1e-43a3-a150-07ad3a548699-root {
    text-align: center;
  }


#s-e267f581-7d1e-43a3-a150-07ad3a548699.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e267f581-7d1e-43a3-a150-07ad3a548699-root {
    text-align: center;
  }


#s-e267f581-7d1e-43a3-a150-07ad3a548699.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-5d161860-3520-43af-ac38-4bf1a1b56133 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-5d161860-3520-43af-ac38-4bf1a1b56133 {
  display: none;
}
#s-5d161860-3520-43af-ac38-4bf1a1b56133, #wrap-s-5d161860-3520-43af-ac38-4bf1a1b56133 { display:none !important; }}@media (max-width: 767px){#s-5d161860-3520-43af-ac38-4bf1a1b56133 {
  display: none;
}
#s-5d161860-3520-43af-ac38-4bf1a1b56133, #wrap-s-5d161860-3520-43af-ac38-4bf1a1b56133 { display:none !important; }}
@media (min-width: 0px) {
[id="s-5d161860-3520-43af-ac38-4bf1a1b56133"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5d161860-3520-43af-ac38-4bf1a1b56133"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-5d161860-3520-43af-ac38-4bf1a1b56133"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-5d161860-3520-43af-ac38-4bf1a1b56133"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-83e9b3a1-6f86-4a9d-aedd-eaeaf6bb70ed {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-83e9b3a1-6f86-4a9d-aedd-eaeaf6bb70ed .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-83e9b3a1-6f86-4a9d-aedd-eaeaf6bb70ed .shg-sld-nav-button.shg-sld-left,
#s-83e9b3a1-6f86-4a9d-aedd-eaeaf6bb70ed .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-119ba227-19f3-4081-a0fc-5f7e839cc31a {
  text-align: center;
}







  #s-119ba227-19f3-4081-a0fc-5f7e839cc31a img.shogun-image {
    

    
    
    
  }


#s-119ba227-19f3-4081-a0fc-5f7e839cc31a .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-6c64712b-4686-47cc-92d8-2338e77bfaff {
  display: none;
}
#s-6c64712b-4686-47cc-92d8-2338e77bfaff, #wrap-s-6c64712b-4686-47cc-92d8-2338e77bfaff { display:none !important; }}@media (max-width: 767px){#s-6c64712b-4686-47cc-92d8-2338e77bfaff {
  display: none;
}
#s-6c64712b-4686-47cc-92d8-2338e77bfaff, #wrap-s-6c64712b-4686-47cc-92d8-2338e77bfaff { display:none !important; }}
#s-8c9370a0-84fe-4209-86d5-517fdc450121 {
  text-align: center;
}







  #s-8c9370a0-84fe-4209-86d5-517fdc450121 img.shogun-image {
    

    
    
    
  }


#s-8c9370a0-84fe-4209-86d5-517fdc450121 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-adbd1d6a-45d0-4939-a38c-f0706d9233e2 {
  display: none;
}
#s-adbd1d6a-45d0-4939-a38c-f0706d9233e2, #wrap-s-adbd1d6a-45d0-4939-a38c-f0706d9233e2 { display:none !important; }}@media (max-width: 767px){#s-adbd1d6a-45d0-4939-a38c-f0706d9233e2 {
  display: none;
}
#s-adbd1d6a-45d0-4939-a38c-f0706d9233e2, #wrap-s-adbd1d6a-45d0-4939-a38c-f0706d9233e2 { display:none !important; }}
#s-38d41bd5-7f86-4c13-aeb0-ee462f18d598 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-38d41bd5-7f86-4c13-aeb0-ee462f18d598:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-38d41bd5-7f86-4c13-aeb0-ee462f18d598:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-38d41bd5-7f86-4c13-aeb0-ee462f18d598-root {
    text-align: center;
  }


#s-38d41bd5-7f86-4c13-aeb0-ee462f18d598.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-38d41bd5-7f86-4c13-aeb0-ee462f18d598-root {
    text-align: center;
  }


#s-38d41bd5-7f86-4c13-aeb0-ee462f18d598.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-38d41bd5-7f86-4c13-aeb0-ee462f18d598-root {
    text-align: center;
  }


#s-38d41bd5-7f86-4c13-aeb0-ee462f18d598.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-38d41bd5-7f86-4c13-aeb0-ee462f18d598-root {
    text-align: center;
  }


#s-38d41bd5-7f86-4c13-aeb0-ee462f18d598.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-38d41bd5-7f86-4c13-aeb0-ee462f18d598-root {
    text-align: center;
  }


#s-38d41bd5-7f86-4c13-aeb0-ee462f18d598.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-08c43efa-44a0-4bdd-a2a6-f1dcfbcbe0a1 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-08c43efa-44a0-4bdd-a2a6-f1dcfbcbe0a1 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-08c43efa-44a0-4bdd-a2a6-f1dcfbcbe0a1 .shg-sld-nav-button.shg-sld-left,
#s-08c43efa-44a0-4bdd-a2a6-f1dcfbcbe0a1 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-458c86e0-14ca-4857-89a1-c04d8d532b29 {
  text-align: center;
}







  #s-458c86e0-14ca-4857-89a1-c04d8d532b29 img.shogun-image {
    

    
    
    
  }


#s-458c86e0-14ca-4857-89a1-c04d8d532b29 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-665763ce-66e6-4fd2-a8a9-bade67a8be62 {
  display: none;
}
#s-665763ce-66e6-4fd2-a8a9-bade67a8be62, #wrap-s-665763ce-66e6-4fd2-a8a9-bade67a8be62 { display:none !important; }}@media (max-width: 767px){#s-665763ce-66e6-4fd2-a8a9-bade67a8be62 {
  display: none;
}
#s-665763ce-66e6-4fd2-a8a9-bade67a8be62, #wrap-s-665763ce-66e6-4fd2-a8a9-bade67a8be62 { display:none !important; }}
#s-dfe9aab8-1c76-4826-84b2-c3d67195ca1b {
  text-align: center;
}







  #s-dfe9aab8-1c76-4826-84b2-c3d67195ca1b img.shogun-image {
    

    
    
    
  }


#s-dfe9aab8-1c76-4826-84b2-c3d67195ca1b .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-73be4c50-2cb4-4a37-afc5-902198d03747 {
  display: none;
}
#s-73be4c50-2cb4-4a37-afc5-902198d03747, #wrap-s-73be4c50-2cb4-4a37-afc5-902198d03747 { display:none !important; }}@media (max-width: 767px){#s-73be4c50-2cb4-4a37-afc5-902198d03747 {
  display: none;
}
#s-73be4c50-2cb4-4a37-afc5-902198d03747, #wrap-s-73be4c50-2cb4-4a37-afc5-902198d03747 { display:none !important; }}
#s-77eaad2b-b244-4685-a697-b88d93687e16 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-77eaad2b-b244-4685-a697-b88d93687e16:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-77eaad2b-b244-4685-a697-b88d93687e16:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-77eaad2b-b244-4685-a697-b88d93687e16-root {
    text-align: center;
  }


#s-77eaad2b-b244-4685-a697-b88d93687e16.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-77eaad2b-b244-4685-a697-b88d93687e16-root {
    text-align: center;
  }


#s-77eaad2b-b244-4685-a697-b88d93687e16.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-77eaad2b-b244-4685-a697-b88d93687e16-root {
    text-align: center;
  }


#s-77eaad2b-b244-4685-a697-b88d93687e16.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-77eaad2b-b244-4685-a697-b88d93687e16-root {
    text-align: center;
  }


#s-77eaad2b-b244-4685-a697-b88d93687e16.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-77eaad2b-b244-4685-a697-b88d93687e16-root {
    text-align: center;
  }


#s-77eaad2b-b244-4685-a697-b88d93687e16.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-de47bf7d-d047-4bc3-878d-bad2e1c8a363 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-de47bf7d-d047-4bc3-878d-bad2e1c8a363 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-de47bf7d-d047-4bc3-878d-bad2e1c8a363 .shg-sld-nav-button.shg-sld-left,
#s-de47bf7d-d047-4bc3-878d-bad2e1c8a363 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-e1d00b52-84ff-4e59-bc3f-904ca35381d8 {
  text-align: center;
}







  #s-e1d00b52-84ff-4e59-bc3f-904ca35381d8 img.shogun-image {
    

    
    
    
  }


#s-e1d00b52-84ff-4e59-bc3f-904ca35381d8 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-6fadfbe5-491a-47fc-a9e6-181182d83637 {
  display: none;
}
#s-6fadfbe5-491a-47fc-a9e6-181182d83637, #wrap-s-6fadfbe5-491a-47fc-a9e6-181182d83637 { display:none !important; }}@media (max-width: 767px){#s-6fadfbe5-491a-47fc-a9e6-181182d83637 {
  display: none;
}
#s-6fadfbe5-491a-47fc-a9e6-181182d83637, #wrap-s-6fadfbe5-491a-47fc-a9e6-181182d83637 { display:none !important; }}
#s-ff54a4c0-ce7e-4711-9a2b-bb36ff2072e8 {
  text-align: center;
}







  #s-ff54a4c0-ce7e-4711-9a2b-bb36ff2072e8 img.shogun-image {
    

    
    
    
  }


#s-ff54a4c0-ce7e-4711-9a2b-bb36ff2072e8 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-2af641e6-7d39-4acb-a7bc-011e29e19dd3 {
  display: none;
}
#s-2af641e6-7d39-4acb-a7bc-011e29e19dd3, #wrap-s-2af641e6-7d39-4acb-a7bc-011e29e19dd3 { display:none !important; }}@media (max-width: 767px){#s-2af641e6-7d39-4acb-a7bc-011e29e19dd3 {
  display: none;
}
#s-2af641e6-7d39-4acb-a7bc-011e29e19dd3, #wrap-s-2af641e6-7d39-4acb-a7bc-011e29e19dd3 { display:none !important; }}
#s-1b5399de-b155-4ffb-bcaf-70725a77c5e0 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-1b5399de-b155-4ffb-bcaf-70725a77c5e0:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-1b5399de-b155-4ffb-bcaf-70725a77c5e0:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-1b5399de-b155-4ffb-bcaf-70725a77c5e0-root {
    text-align: center;
  }


#s-1b5399de-b155-4ffb-bcaf-70725a77c5e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1b5399de-b155-4ffb-bcaf-70725a77c5e0-root {
    text-align: center;
  }


#s-1b5399de-b155-4ffb-bcaf-70725a77c5e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1b5399de-b155-4ffb-bcaf-70725a77c5e0-root {
    text-align: center;
  }


#s-1b5399de-b155-4ffb-bcaf-70725a77c5e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1b5399de-b155-4ffb-bcaf-70725a77c5e0-root {
    text-align: center;
  }


#s-1b5399de-b155-4ffb-bcaf-70725a77c5e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1b5399de-b155-4ffb-bcaf-70725a77c5e0-root {
    text-align: center;
  }


#s-1b5399de-b155-4ffb-bcaf-70725a77c5e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-ce3b5dd3-ea64-4112-848c-d8c0ed3984e4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ce3b5dd3-ea64-4112-848c-d8c0ed3984e4 {
  display: none;
}
#s-ce3b5dd3-ea64-4112-848c-d8c0ed3984e4, #wrap-s-ce3b5dd3-ea64-4112-848c-d8c0ed3984e4 { display:none !important; }}@media (max-width: 767px){#s-ce3b5dd3-ea64-4112-848c-d8c0ed3984e4 {
  display: none;
}
#s-ce3b5dd3-ea64-4112-848c-d8c0ed3984e4, #wrap-s-ce3b5dd3-ea64-4112-848c-d8c0ed3984e4 { display:none !important; }}
@media (min-width: 0px) {
[id="s-ce3b5dd3-ea64-4112-848c-d8c0ed3984e4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ce3b5dd3-ea64-4112-848c-d8c0ed3984e4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ce3b5dd3-ea64-4112-848c-d8c0ed3984e4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ce3b5dd3-ea64-4112-848c-d8c0ed3984e4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-11b3c7ab-2bd7-4913-b473-0be4ceca174c {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-11b3c7ab-2bd7-4913-b473-0be4ceca174c .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-11b3c7ab-2bd7-4913-b473-0be4ceca174c .shg-sld-nav-button.shg-sld-left,
#s-11b3c7ab-2bd7-4913-b473-0be4ceca174c .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-035461f8-a001-443f-bafc-9f5fd4a78839 {
  text-align: center;
}







  #s-035461f8-a001-443f-bafc-9f5fd4a78839 img.shogun-image {
    

    
    
    
  }


#s-035461f8-a001-443f-bafc-9f5fd4a78839 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-1f8bc42c-fa68-48eb-ad31-40552c81225b {
  display: none;
}
#s-1f8bc42c-fa68-48eb-ad31-40552c81225b, #wrap-s-1f8bc42c-fa68-48eb-ad31-40552c81225b { display:none !important; }}@media (max-width: 767px){#s-1f8bc42c-fa68-48eb-ad31-40552c81225b {
  display: none;
}
#s-1f8bc42c-fa68-48eb-ad31-40552c81225b, #wrap-s-1f8bc42c-fa68-48eb-ad31-40552c81225b { display:none !important; }}
#s-3b02f441-8d34-4734-b958-68526535d1ce {
  text-align: center;
}







  #s-3b02f441-8d34-4734-b958-68526535d1ce img.shogun-image {
    

    
    
    
  }


#s-3b02f441-8d34-4734-b958-68526535d1ce .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 768px) and (max-width: 991px){#s-3826acd3-3576-407d-9c8b-6ff72b3050d3 {
  display: none;
}
#s-3826acd3-3576-407d-9c8b-6ff72b3050d3, #wrap-s-3826acd3-3576-407d-9c8b-6ff72b3050d3 { display:none !important; }}@media (max-width: 767px){#s-3826acd3-3576-407d-9c8b-6ff72b3050d3 {
  display: none;
}
#s-3826acd3-3576-407d-9c8b-6ff72b3050d3, #wrap-s-3826acd3-3576-407d-9c8b-6ff72b3050d3 { display:none !important; }}
#s-650fafa8-4a90-4f7a-be4d-df9761f72d66 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-650fafa8-4a90-4f7a-be4d-df9761f72d66:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 87, 24, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-650fafa8-4a90-4f7a-be4d-df9761f72d66:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-650fafa8-4a90-4f7a-be4d-df9761f72d66-root {
    text-align: center;
  }


#s-650fafa8-4a90-4f7a-be4d-df9761f72d66.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-650fafa8-4a90-4f7a-be4d-df9761f72d66-root {
    text-align: center;
  }


#s-650fafa8-4a90-4f7a-be4d-df9761f72d66.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-650fafa8-4a90-4f7a-be4d-df9761f72d66-root {
    text-align: center;
  }


#s-650fafa8-4a90-4f7a-be4d-df9761f72d66.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-650fafa8-4a90-4f7a-be4d-df9761f72d66-root {
    text-align: center;
  }


#s-650fafa8-4a90-4f7a-be4d-df9761f72d66.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-650fafa8-4a90-4f7a-be4d-df9761f72d66-root {
    text-align: center;
  }


#s-650fafa8-4a90-4f7a-be4d-df9761f72d66.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  font-family: Quantico;
  display:  inline-block ;
}
}
#s-bb2997dc-3ed0-4c3f-becd-1f21db052be8 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-bb2997dc-3ed0-4c3f-becd-1f21db052be8 {
  display: none;
}
#s-bb2997dc-3ed0-4c3f-becd-1f21db052be8, #wrap-s-bb2997dc-3ed0-4c3f-becd-1f21db052be8 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bb2997dc-3ed0-4c3f-becd-1f21db052be8 {
  display: none;
}
#s-bb2997dc-3ed0-4c3f-becd-1f21db052be8, #wrap-s-bb2997dc-3ed0-4c3f-becd-1f21db052be8 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bb2997dc-3ed0-4c3f-becd-1f21db052be8 {
  
}
}
#s-bb2997dc-3ed0-4c3f-becd-1f21db052be8 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-bb2997dc-3ed0-4c3f-becd-1f21db052be8 .shg-sld-nav-button.shg-sld-left,
#s-bb2997dc-3ed0-4c3f-becd-1f21db052be8 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 {
  max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 img.shogun-image,
  #s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 {
    width: 100%;
    height: auto;
  }



  img.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shogun-image {
    
    
  }


.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 .shogun-image-content {
  
    align-items: center;
  
}

.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shg-align-container {
  text-align: center
}

.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 img.shogun-image,
  #s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 {
    width: 100%;
    height: auto;
  }



  img.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shogun-image {
    
    
  }


.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 .shogun-image-content {
  
    align-items: center;
  
}

.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shg-align-container {
  text-align: center
}

.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shogun-image {
  box-sizing: border-box;
}


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



  #s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 img.shogun-image,
  #s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 {
    width: 100%;
    height: auto;
  }



  img.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shogun-image {
    
    
  }


.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 .shogun-image-content {
  
    align-items: center;
  
}

.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shg-align-container {
  text-align: center
}

.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shogun-image {
  box-sizing: border-box;
}


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



  #s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 img.shogun-image,
  #s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 {
    width: 100%;
    height: auto;
  }



  img.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shogun-image {
    
    
  }


.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 .shogun-image-content {
  
    align-items: center;
  
}

.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shg-align-container {
  text-align: center
}

.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shogun-image {
  box-sizing: border-box;
}


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



  #s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 img.shogun-image,
  #s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 {
    width: 100%;
    height: auto;
  }



  img.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shogun-image {
    
    
  }


.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0 .shogun-image-content {
  
    align-items: center;
  
}

.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shg-align-container {
  text-align: center
}

.s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9ebc3f82-a603-4741-8e6a-b0ee114230d0.shogun-image {
  box-sizing: border-box;
}


}
#s-253a4a51-853f-40cd-b28b-0376fe710534 {
  margin-left: 5%;
margin-right: 5%;
}

#s-e3c903c3-522b-44d0-a662-e6bae67f0f54 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-e3c903c3-522b-44d0-a662-e6bae67f0f54:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-e3c903c3-522b-44d0-a662-e6bae67f0f54:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e3c903c3-522b-44d0-a662-e6bae67f0f54-root {
    text-align: center;
  }


#s-e3c903c3-522b-44d0-a662-e6bae67f0f54.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e3c903c3-522b-44d0-a662-e6bae67f0f54-root {
    text-align: center;
  }


#s-e3c903c3-522b-44d0-a662-e6bae67f0f54.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e3c903c3-522b-44d0-a662-e6bae67f0f54-root {
    text-align: center;
  }


#s-e3c903c3-522b-44d0-a662-e6bae67f0f54.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e3c903c3-522b-44d0-a662-e6bae67f0f54-root {
    text-align: center;
  }


#s-e3c903c3-522b-44d0-a662-e6bae67f0f54.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e3c903c3-522b-44d0-a662-e6bae67f0f54-root {
    text-align: center;
  }


#s-e3c903c3-522b-44d0-a662-e6bae67f0f54.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 {
  max-width: 1000px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 img.shogun-image,
  #s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 {
    width: 100%;
    height: auto;
  }



  img.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shogun-image {
    
    
  }


.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 .shogun-image-content {
  
    align-items: center;
  
}

.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shg-align-container {
  text-align: center
}

.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){



  #s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 img.shogun-image,
  #s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 {
    width: 100%;
    height: auto;
  }



  img.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shogun-image {
    
    
  }


.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 .shogun-image-content {
  
    align-items: center;
  
}

.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shg-align-container {
  text-align: center
}

.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shogun-image {
  box-sizing: border-box;
}


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



  #s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 img.shogun-image,
  #s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 {
    width: 100%;
    height: auto;
  }



  img.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shogun-image {
    
    
  }


.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 .shogun-image-content {
  
    align-items: center;
  
}

.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shg-align-container {
  text-align: center
}

.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shogun-image {
  box-sizing: border-box;
}


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



  #s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 img.shogun-image,
  #s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 {
    width: 100%;
    height: auto;
  }



  img.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shogun-image {
    
    
  }


.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 .shogun-image-content {
  
    align-items: center;
  
}

.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shg-align-container {
  text-align: center
}

.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shogun-image {
  box-sizing: border-box;
}


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



  #s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 img.shogun-image,
  #s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 {
    width: 100%;
    height: auto;
  }



  img.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shogun-image {
    
    
  }


.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119 .shogun-image-content {
  
    align-items: center;
  
}

.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shg-align-container {
  text-align: center
}

.s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df917fd5-7fca-4f1d-ae65-ad9e05b0f119.shogun-image {
  box-sizing: border-box;
}


}
#s-bc0717c8-4d39-45b7-a2c0-cd6283644ca2 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-bc0717c8-4d39-45b7-a2c0-cd6283644ca2 {
  display: none;
}
#s-bc0717c8-4d39-45b7-a2c0-cd6283644ca2, #wrap-s-bc0717c8-4d39-45b7-a2c0-cd6283644ca2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bc0717c8-4d39-45b7-a2c0-cd6283644ca2 {
  display: none;
}
#s-bc0717c8-4d39-45b7-a2c0-cd6283644ca2, #wrap-s-bc0717c8-4d39-45b7-a2c0-cd6283644ca2 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bc0717c8-4d39-45b7-a2c0-cd6283644ca2 {
  
}
}
#s-bc0717c8-4d39-45b7-a2c0-cd6283644ca2 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-bc0717c8-4d39-45b7-a2c0-cd6283644ca2 .shg-sld-nav-button.shg-sld-left,
#s-bc0717c8-4d39-45b7-a2c0-cd6283644ca2 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-73ccd9cd-a804-49d8-8241-356564b87c6c {
  text-align: center;
}







  img.s-73ccd9cd-a804-49d8-8241-356564b87c6c.shogun-image {
    
    
  }


.s-73ccd9cd-a804-49d8-8241-356564b87c6c .shogun-image-content {
  
    align-items: center;
  
}

.s-73ccd9cd-a804-49d8-8241-356564b87c6c.shg-align-container {
  text-align: center
}

.s-73ccd9cd-a804-49d8-8241-356564b87c6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73ccd9cd-a804-49d8-8241-356564b87c6c.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-73ccd9cd-a804-49d8-8241-356564b87c6c.shogun-image {
    
    
  }


.s-73ccd9cd-a804-49d8-8241-356564b87c6c .shogun-image-content {
  
    align-items: center;
  
}

.s-73ccd9cd-a804-49d8-8241-356564b87c6c.shg-align-container {
  text-align: center
}

.s-73ccd9cd-a804-49d8-8241-356564b87c6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73ccd9cd-a804-49d8-8241-356564b87c6c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-73ccd9cd-a804-49d8-8241-356564b87c6c.shogun-image {
    
    
  }


.s-73ccd9cd-a804-49d8-8241-356564b87c6c .shogun-image-content {
  
    align-items: center;
  
}

.s-73ccd9cd-a804-49d8-8241-356564b87c6c.shg-align-container {
  text-align: center
}

.s-73ccd9cd-a804-49d8-8241-356564b87c6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73ccd9cd-a804-49d8-8241-356564b87c6c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-73ccd9cd-a804-49d8-8241-356564b87c6c.shogun-image {
    
    
  }


.s-73ccd9cd-a804-49d8-8241-356564b87c6c .shogun-image-content {
  
    align-items: center;
  
}

.s-73ccd9cd-a804-49d8-8241-356564b87c6c.shg-align-container {
  text-align: center
}

.s-73ccd9cd-a804-49d8-8241-356564b87c6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73ccd9cd-a804-49d8-8241-356564b87c6c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-73ccd9cd-a804-49d8-8241-356564b87c6c.shogun-image {
    
    
  }


.s-73ccd9cd-a804-49d8-8241-356564b87c6c .shogun-image-content {
  
    align-items: center;
  
}

.s-73ccd9cd-a804-49d8-8241-356564b87c6c.shg-align-container {
  text-align: center
}

.s-73ccd9cd-a804-49d8-8241-356564b87c6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-73ccd9cd-a804-49d8-8241-356564b87c6c.shogun-image {
  box-sizing: border-box;
}


}
#s-c300d2ba-364d-44ff-afc9-df51ea0e09d9 {
  margin-left: 5%;
margin-right: 5%;
}

#s-2e703076-85f6-4d05-b79f-be93d414d419 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-2e703076-85f6-4d05-b79f-be93d414d419:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-2e703076-85f6-4d05-b79f-be93d414d419:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2e703076-85f6-4d05-b79f-be93d414d419-root {
    text-align: center;
  }


#s-2e703076-85f6-4d05-b79f-be93d414d419.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2e703076-85f6-4d05-b79f-be93d414d419-root {
    text-align: center;
  }


#s-2e703076-85f6-4d05-b79f-be93d414d419.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2e703076-85f6-4d05-b79f-be93d414d419-root {
    text-align: center;
  }


#s-2e703076-85f6-4d05-b79f-be93d414d419.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2e703076-85f6-4d05-b79f-be93d414d419-root {
    text-align: center;
  }


#s-2e703076-85f6-4d05-b79f-be93d414d419.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2e703076-85f6-4d05-b79f-be93d414d419-root {
    text-align: center;
  }


#s-2e703076-85f6-4d05-b79f-be93d414d419.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-09870dca-069f-44d9-ab6e-1de9d589f1ca {
  text-align: center;
}







  img.s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shogun-image {
    
    
  }


.s-09870dca-069f-44d9-ab6e-1de9d589f1ca .shogun-image-content {
  
    align-items: center;
  
}

.s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shg-align-container {
  text-align: center
}

.s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shogun-image {
    
    
  }


.s-09870dca-069f-44d9-ab6e-1de9d589f1ca .shogun-image-content {
  
    align-items: center;
  
}

.s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shg-align-container {
  text-align: center
}

.s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shogun-image {
  box-sizing: border-box;
}


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





  img.s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shogun-image {
    
    
  }


.s-09870dca-069f-44d9-ab6e-1de9d589f1ca .shogun-image-content {
  
    align-items: center;
  
}

.s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shg-align-container {
  text-align: center
}

.s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shogun-image {
  box-sizing: border-box;
}


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





  img.s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shogun-image {
    
    
  }


.s-09870dca-069f-44d9-ab6e-1de9d589f1ca .shogun-image-content {
  
    align-items: center;
  
}

.s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shg-align-container {
  text-align: center
}

.s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shogun-image {
  box-sizing: border-box;
}


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





  img.s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shogun-image {
    
    
  }


.s-09870dca-069f-44d9-ab6e-1de9d589f1ca .shogun-image-content {
  
    align-items: center;
  
}

.s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shg-align-container {
  text-align: center
}

.s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-09870dca-069f-44d9-ab6e-1de9d589f1ca.shogun-image {
  box-sizing: border-box;
}


}
#s-30eaabb8-6244-4d0e-ac58-7f65da45662a {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-30eaabb8-6244-4d0e-ac58-7f65da45662a {
  display: none;
}
#s-30eaabb8-6244-4d0e-ac58-7f65da45662a, #wrap-s-30eaabb8-6244-4d0e-ac58-7f65da45662a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-30eaabb8-6244-4d0e-ac58-7f65da45662a {
  display: none;
}
#s-30eaabb8-6244-4d0e-ac58-7f65da45662a, #wrap-s-30eaabb8-6244-4d0e-ac58-7f65da45662a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-30eaabb8-6244-4d0e-ac58-7f65da45662a {
  
}
}
#s-30eaabb8-6244-4d0e-ac58-7f65da45662a .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-30eaabb8-6244-4d0e-ac58-7f65da45662a .shg-sld-nav-button.shg-sld-left,
#s-30eaabb8-6244-4d0e-ac58-7f65da45662a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-4ba1dbdf-4a8b-4c40-810c-c71438824281 {
  text-align: center;
}







  img.s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shogun-image {
    
    
  }


.s-4ba1dbdf-4a8b-4c40-810c-c71438824281 .shogun-image-content {
  
    align-items: center;
  
}

.s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shg-align-container {
  text-align: center
}

.s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shogun-image {
    
    
  }


.s-4ba1dbdf-4a8b-4c40-810c-c71438824281 .shogun-image-content {
  
    align-items: center;
  
}

.s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shg-align-container {
  text-align: center
}

.s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shogun-image {
    
    
  }


.s-4ba1dbdf-4a8b-4c40-810c-c71438824281 .shogun-image-content {
  
    align-items: center;
  
}

.s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shg-align-container {
  text-align: center
}

.s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shogun-image {
    
    
  }


.s-4ba1dbdf-4a8b-4c40-810c-c71438824281 .shogun-image-content {
  
    align-items: center;
  
}

.s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shg-align-container {
  text-align: center
}

.s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shogun-image {
    
    
  }


.s-4ba1dbdf-4a8b-4c40-810c-c71438824281 .shogun-image-content {
  
    align-items: center;
  
}

.s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shg-align-container {
  text-align: center
}

.s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4ba1dbdf-4a8b-4c40-810c-c71438824281.shogun-image {
  box-sizing: border-box;
}


}
#s-bc348696-1369-49c1-9dd9-7faa6f36ac73 {
  margin-left: 5%;
margin-right: 5%;
}

#s-2b905b34-e4df-46c6-b08d-67ef4aaa757d {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-2b905b34-e4df-46c6-b08d-67ef4aaa757d:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-2b905b34-e4df-46c6-b08d-67ef4aaa757d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2b905b34-e4df-46c6-b08d-67ef4aaa757d-root {
    text-align: center;
  }


#s-2b905b34-e4df-46c6-b08d-67ef4aaa757d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2b905b34-e4df-46c6-b08d-67ef4aaa757d-root {
    text-align: center;
  }


#s-2b905b34-e4df-46c6-b08d-67ef4aaa757d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2b905b34-e4df-46c6-b08d-67ef4aaa757d-root {
    text-align: center;
  }


#s-2b905b34-e4df-46c6-b08d-67ef4aaa757d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2b905b34-e4df-46c6-b08d-67ef4aaa757d-root {
    text-align: center;
  }


#s-2b905b34-e4df-46c6-b08d-67ef4aaa757d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2b905b34-e4df-46c6-b08d-67ef4aaa757d-root {
    text-align: center;
  }


#s-2b905b34-e4df-46c6-b08d-67ef4aaa757d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4 {
  text-align: center;
}







  img.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shogun-image {
    
    
  }


.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shg-align-container {
  text-align: center
}

.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shogun-image {
    
    
  }


.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shg-align-container {
  text-align: center
}

.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shogun-image {
    
    
  }


.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shg-align-container {
  text-align: center
}

.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shogun-image {
    
    
  }


.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shg-align-container {
  text-align: center
}

.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shogun-image {
    
    
  }


.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4 .shogun-image-content {
  
    align-items: center;
  
}

.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shg-align-container {
  text-align: center
}

.s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3989bcd3-7795-47a2-8aad-dcfd1d3cf7c4.shogun-image {
  box-sizing: border-box;
}


}
#s-738b2921-7df6-4157-8e32-8c90a54a23d6 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-738b2921-7df6-4157-8e32-8c90a54a23d6 {
  display: none;
}
#s-738b2921-7df6-4157-8e32-8c90a54a23d6, #wrap-s-738b2921-7df6-4157-8e32-8c90a54a23d6 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-738b2921-7df6-4157-8e32-8c90a54a23d6 {
  display: none;
}
#s-738b2921-7df6-4157-8e32-8c90a54a23d6, #wrap-s-738b2921-7df6-4157-8e32-8c90a54a23d6 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-738b2921-7df6-4157-8e32-8c90a54a23d6 {
  
}
}
#s-738b2921-7df6-4157-8e32-8c90a54a23d6 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-738b2921-7df6-4157-8e32-8c90a54a23d6 .shg-sld-nav-button.shg-sld-left,
#s-738b2921-7df6-4157-8e32-8c90a54a23d6 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9 {
  text-align: center;
}







  img.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shogun-image {
    
    
  }


.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shg-align-container {
  text-align: center
}

.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shogun-image {
    
    
  }


.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shg-align-container {
  text-align: center
}

.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shogun-image {
    
    
  }


.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shg-align-container {
  text-align: center
}

.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shogun-image {
    
    
  }


.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shg-align-container {
  text-align: center
}

.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shogun-image {
    
    
  }


.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shg-align-container {
  text-align: center
}

.s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18b1c24e-8382-4e30-82f8-41cc1e3c04a9.shogun-image {
  box-sizing: border-box;
}


}
#s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2 {
  text-align: center;
}







  img.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shogun-image {
    
    
  }


.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2 .shogun-image-content {
  
    align-items: center;
  
}

.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shg-align-container {
  text-align: center
}

.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shogun-image {
    
    
  }


.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2 .shogun-image-content {
  
    align-items: center;
  
}

.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shg-align-container {
  text-align: center
}

.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shogun-image {
  box-sizing: border-box;
}


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





  img.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shogun-image {
    
    
  }


.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2 .shogun-image-content {
  
    align-items: center;
  
}

.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shg-align-container {
  text-align: center
}

.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shogun-image {
  box-sizing: border-box;
}


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





  img.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shogun-image {
    
    
  }


.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2 .shogun-image-content {
  
    align-items: center;
  
}

.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shg-align-container {
  text-align: center
}

.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shogun-image {
  box-sizing: border-box;
}


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





  img.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shogun-image {
    
    
  }


.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2 .shogun-image-content {
  
    align-items: center;
  
}

.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shg-align-container {
  text-align: center
}

.s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5716d9fb-b07e-4a4b-95c1-8e5e78fa1cb2.shogun-image {
  box-sizing: border-box;
}


}
#s-65756b26-bec2-4c3d-970a-fe90a1eb837e {
  margin-left: 5%;
margin-right: 5%;
}

#s-d3ed9ec6-dfed-4873-8457-c04a2765d901 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-d3ed9ec6-dfed-4873-8457-c04a2765d901:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-d3ed9ec6-dfed-4873-8457-c04a2765d901:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d3ed9ec6-dfed-4873-8457-c04a2765d901-root {
    text-align: center;
  }


#s-d3ed9ec6-dfed-4873-8457-c04a2765d901.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d3ed9ec6-dfed-4873-8457-c04a2765d901-root {
    text-align: center;
  }


#s-d3ed9ec6-dfed-4873-8457-c04a2765d901.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d3ed9ec6-dfed-4873-8457-c04a2765d901-root {
    text-align: center;
  }


#s-d3ed9ec6-dfed-4873-8457-c04a2765d901.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d3ed9ec6-dfed-4873-8457-c04a2765d901-root {
    text-align: center;
  }


#s-d3ed9ec6-dfed-4873-8457-c04a2765d901.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d3ed9ec6-dfed-4873-8457-c04a2765d901-root {
    text-align: center;
  }


#s-d3ed9ec6-dfed-4873-8457-c04a2765d901.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-776f155b-9adf-4b83-ae8c-bf7ab468c18a {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-776f155b-9adf-4b83-ae8c-bf7ab468c18a {
  display: none;
}
#s-776f155b-9adf-4b83-ae8c-bf7ab468c18a, #wrap-s-776f155b-9adf-4b83-ae8c-bf7ab468c18a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-776f155b-9adf-4b83-ae8c-bf7ab468c18a {
  display: none;
}
#s-776f155b-9adf-4b83-ae8c-bf7ab468c18a, #wrap-s-776f155b-9adf-4b83-ae8c-bf7ab468c18a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-776f155b-9adf-4b83-ae8c-bf7ab468c18a {
  
}
}
#s-776f155b-9adf-4b83-ae8c-bf7ab468c18a .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-776f155b-9adf-4b83-ae8c-bf7ab468c18a .shg-sld-nav-button.shg-sld-left,
#s-776f155b-9adf-4b83-ae8c-bf7ab468c18a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-9404a0e6-59b3-4bd7-81f2-594b5c637e93 {
  text-align: center;
}







  img.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shogun-image {
    
    
  }


.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93 .shogun-image-content {
  
    align-items: center;
  
}

.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shg-align-container {
  text-align: center
}

.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shogun-image {
    
    
  }


.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93 .shogun-image-content {
  
    align-items: center;
  
}

.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shg-align-container {
  text-align: center
}

.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shogun-image {
    
    
  }


.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93 .shogun-image-content {
  
    align-items: center;
  
}

.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shg-align-container {
  text-align: center
}

.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shogun-image {
    
    
  }


.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93 .shogun-image-content {
  
    align-items: center;
  
}

.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shg-align-container {
  text-align: center
}

.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shogun-image {
    
    
  }


.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93 .shogun-image-content {
  
    align-items: center;
  
}

.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shg-align-container {
  text-align: center
}

.s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9404a0e6-59b3-4bd7-81f2-594b5c637e93.shogun-image {
  box-sizing: border-box;
}


}
#s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343 {
  text-align: center;
}







  img.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shogun-image {
    
    
  }


.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shg-align-container {
  text-align: center
}

.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shogun-image {
    
    
  }


.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shg-align-container {
  text-align: center
}

.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shogun-image {
    
    
  }


.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shg-align-container {
  text-align: center
}

.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shogun-image {
    
    
  }


.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shg-align-container {
  text-align: center
}

.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shogun-image {
  box-sizing: border-box;
}


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





  img.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shogun-image {
    
    
  }


.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343 .shogun-image-content {
  
    align-items: center;
  
}

.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shg-align-container {
  text-align: center
}

.s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7dd9154-3c6f-41ab-ba77-8a2f007c0343.shogun-image {
  box-sizing: border-box;
}


}
#s-e74e3335-7d38-410c-85e4-6cf7a5e877b8 {
  margin-left: 5%;
margin-right: 5%;
}

#s-9ceac4e6-e533-4d1a-942e-58dd5166b549 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-9ceac4e6-e533-4d1a-942e-58dd5166b549:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-9ceac4e6-e533-4d1a-942e-58dd5166b549:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9ceac4e6-e533-4d1a-942e-58dd5166b549-root {
    text-align: center;
  }


#s-9ceac4e6-e533-4d1a-942e-58dd5166b549.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9ceac4e6-e533-4d1a-942e-58dd5166b549-root {
    text-align: center;
  }


#s-9ceac4e6-e533-4d1a-942e-58dd5166b549.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9ceac4e6-e533-4d1a-942e-58dd5166b549-root {
    text-align: center;
  }


#s-9ceac4e6-e533-4d1a-942e-58dd5166b549.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9ceac4e6-e533-4d1a-942e-58dd5166b549-root {
    text-align: center;
  }


#s-9ceac4e6-e533-4d1a-942e-58dd5166b549.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9ceac4e6-e533-4d1a-942e-58dd5166b549-root {
    text-align: center;
  }


#s-9ceac4e6-e533-4d1a-942e-58dd5166b549.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-f1a9295f-a68b-4d68-b160-f9ccf87c1765 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-f1a9295f-a68b-4d68-b160-f9ccf87c1765 {
  display: none;
}
#s-f1a9295f-a68b-4d68-b160-f9ccf87c1765, #wrap-s-f1a9295f-a68b-4d68-b160-f9ccf87c1765 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f1a9295f-a68b-4d68-b160-f9ccf87c1765 {
  display: none;
}
#s-f1a9295f-a68b-4d68-b160-f9ccf87c1765, #wrap-s-f1a9295f-a68b-4d68-b160-f9ccf87c1765 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f1a9295f-a68b-4d68-b160-f9ccf87c1765 {
  
}
}
#s-f1a9295f-a68b-4d68-b160-f9ccf87c1765 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-f1a9295f-a68b-4d68-b160-f9ccf87c1765 .shg-sld-nav-button.shg-sld-left,
#s-f1a9295f-a68b-4d68-b160-f9ccf87c1765 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4 {
  text-align: center;
}







  img.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shogun-image {
    
    
  }


.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4 .shogun-image-content {
  
    align-items: center;
  
}

.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shg-align-container {
  text-align: center
}

.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shogun-image {
    
    
  }


.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4 .shogun-image-content {
  
    align-items: center;
  
}

.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shg-align-container {
  text-align: center
}

.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shogun-image {
    
    
  }


.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4 .shogun-image-content {
  
    align-items: center;
  
}

.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shg-align-container {
  text-align: center
}

.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shogun-image {
    
    
  }


.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4 .shogun-image-content {
  
    align-items: center;
  
}

.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shg-align-container {
  text-align: center
}

.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shogun-image {
    
    
  }


.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4 .shogun-image-content {
  
    align-items: center;
  
}

.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shg-align-container {
  text-align: center
}

.s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-62fe0c61-265f-4bd2-a99b-ee9fff383ad4.shogun-image {
  box-sizing: border-box;
}


}
#s-0f03cca5-22ae-4e94-a82d-d9351fe1d532 {
  text-align: center;
}
@media (min-width: 1200px){#s-0f03cca5-22ae-4e94-a82d-d9351fe1d532 {
  display: none;
}
#s-0f03cca5-22ae-4e94-a82d-d9351fe1d532, #wrap-s-0f03cca5-22ae-4e94-a82d-d9351fe1d532 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0f03cca5-22ae-4e94-a82d-d9351fe1d532 {
  display: none;
}
#s-0f03cca5-22ae-4e94-a82d-d9351fe1d532, #wrap-s-0f03cca5-22ae-4e94-a82d-d9351fe1d532 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0f03cca5-22ae-4e94-a82d-d9351fe1d532 {
  display: none;
}
#s-0f03cca5-22ae-4e94-a82d-d9351fe1d532, #wrap-s-0f03cca5-22ae-4e94-a82d-d9351fe1d532 { display:none !important; }}






  #s-0f03cca5-22ae-4e94-a82d-d9351fe1d532 img.shogun-image {
    

    
    
    
  }


#s-0f03cca5-22ae-4e94-a82d-d9351fe1d532 .shogun-image-content {
  
    align-items: center;
  
}

#s-817414ec-b418-4c6c-8da9-34e206f68f26 {
  margin-left: 5%;
margin-right: 5%;
}

#s-6663606c-006f-4b79-997f-16b5864e8364 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-6663606c-006f-4b79-997f-16b5864e8364:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-6663606c-006f-4b79-997f-16b5864e8364:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6663606c-006f-4b79-997f-16b5864e8364-root {
    text-align: center;
  }


#s-6663606c-006f-4b79-997f-16b5864e8364.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6663606c-006f-4b79-997f-16b5864e8364-root {
    text-align: center;
  }


#s-6663606c-006f-4b79-997f-16b5864e8364.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6663606c-006f-4b79-997f-16b5864e8364-root {
    text-align: center;
  }


#s-6663606c-006f-4b79-997f-16b5864e8364.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6663606c-006f-4b79-997f-16b5864e8364-root {
    text-align: center;
  }


#s-6663606c-006f-4b79-997f-16b5864e8364.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6663606c-006f-4b79-997f-16b5864e8364-root {
    text-align: center;
  }


#s-6663606c-006f-4b79-997f-16b5864e8364.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-6faa0ac9-5c44-4c85-87ad-5106b544004d {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-6faa0ac9-5c44-4c85-87ad-5106b544004d {
  display: none;
}
#s-6faa0ac9-5c44-4c85-87ad-5106b544004d, #wrap-s-6faa0ac9-5c44-4c85-87ad-5106b544004d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6faa0ac9-5c44-4c85-87ad-5106b544004d {
  display: none;
}
#s-6faa0ac9-5c44-4c85-87ad-5106b544004d, #wrap-s-6faa0ac9-5c44-4c85-87ad-5106b544004d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6faa0ac9-5c44-4c85-87ad-5106b544004d {
  
}
}
#s-6faa0ac9-5c44-4c85-87ad-5106b544004d .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-6faa0ac9-5c44-4c85-87ad-5106b544004d .shg-sld-nav-button.shg-sld-left,
#s-6faa0ac9-5c44-4c85-87ad-5106b544004d .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e {
  text-align: center;
}







  img.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shogun-image {
    
    
  }


.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e .shogun-image-content {
  
    align-items: center;
  
}

.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shg-align-container {
  text-align: center
}

.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shogun-image {
    
    
  }


.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e .shogun-image-content {
  
    align-items: center;
  
}

.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shg-align-container {
  text-align: center
}

.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shogun-image {
    
    
  }


.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e .shogun-image-content {
  
    align-items: center;
  
}

.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shg-align-container {
  text-align: center
}

.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shogun-image {
    
    
  }


.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e .shogun-image-content {
  
    align-items: center;
  
}

.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shg-align-container {
  text-align: center
}

.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shogun-image {
    
    
  }


.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e .shogun-image-content {
  
    align-items: center;
  
}

.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shg-align-container {
  text-align: center
}

.s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9679afd5-acd7-40e6-a3a9-c1f5b05f310e.shogun-image {
  box-sizing: border-box;
}


}
#s-0bfd1323-53c7-4ce1-bc75-8101f18f6753 {
  margin-top: 3px;
margin-bottom: 3px;
text-align: center;
}
@media (min-width: 1200px){#s-0bfd1323-53c7-4ce1-bc75-8101f18f6753 {
  display: none;
}
#s-0bfd1323-53c7-4ce1-bc75-8101f18f6753, #wrap-s-0bfd1323-53c7-4ce1-bc75-8101f18f6753 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0bfd1323-53c7-4ce1-bc75-8101f18f6753 {
  display: none;
}
#s-0bfd1323-53c7-4ce1-bc75-8101f18f6753, #wrap-s-0bfd1323-53c7-4ce1-bc75-8101f18f6753 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0bfd1323-53c7-4ce1-bc75-8101f18f6753 {
  display: none;
}
#s-0bfd1323-53c7-4ce1-bc75-8101f18f6753, #wrap-s-0bfd1323-53c7-4ce1-bc75-8101f18f6753 { display:none !important; }}






  #s-0bfd1323-53c7-4ce1-bc75-8101f18f6753 img.shogun-image {
    

    
    
    
  }


#s-0bfd1323-53c7-4ce1-bc75-8101f18f6753 .shogun-image-content {
  
    align-items: center;
  
}

#s-f51edded-8bab-4636-ad95-5d3ccb454e07 {
  margin-left: 5%;
margin-right: 5%;
}

#s-f2775862-58e7-4dee-926e-6c681b860e96 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-f2775862-58e7-4dee-926e-6c681b860e96:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-f2775862-58e7-4dee-926e-6c681b860e96:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f2775862-58e7-4dee-926e-6c681b860e96-root {
    text-align: center;
  }


#s-f2775862-58e7-4dee-926e-6c681b860e96.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f2775862-58e7-4dee-926e-6c681b860e96-root {
    text-align: center;
  }


#s-f2775862-58e7-4dee-926e-6c681b860e96.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f2775862-58e7-4dee-926e-6c681b860e96-root {
    text-align: center;
  }


#s-f2775862-58e7-4dee-926e-6c681b860e96.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f2775862-58e7-4dee-926e-6c681b860e96-root {
    text-align: center;
  }


#s-f2775862-58e7-4dee-926e-6c681b860e96.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f2775862-58e7-4dee-926e-6c681b860e96-root {
    text-align: center;
  }


#s-f2775862-58e7-4dee-926e-6c681b860e96.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-6d4a9dab-2657-4273-8e94-c56da96bbb4a {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-6d4a9dab-2657-4273-8e94-c56da96bbb4a {
  display: none;
}
#s-6d4a9dab-2657-4273-8e94-c56da96bbb4a, #wrap-s-6d4a9dab-2657-4273-8e94-c56da96bbb4a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6d4a9dab-2657-4273-8e94-c56da96bbb4a {
  display: none;
}
#s-6d4a9dab-2657-4273-8e94-c56da96bbb4a, #wrap-s-6d4a9dab-2657-4273-8e94-c56da96bbb4a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6d4a9dab-2657-4273-8e94-c56da96bbb4a {
  
}
}
#s-6d4a9dab-2657-4273-8e94-c56da96bbb4a .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-6d4a9dab-2657-4273-8e94-c56da96bbb4a .shg-sld-nav-button.shg-sld-left,
#s-6d4a9dab-2657-4273-8e94-c56da96bbb4a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-fe285d37-4190-4fac-bf97-79c22a5daec2 {
  text-align: center;
}







  img.s-fe285d37-4190-4fac-bf97-79c22a5daec2.shogun-image {
    
    
  }


.s-fe285d37-4190-4fac-bf97-79c22a5daec2 .shogun-image-content {
  
    align-items: center;
  
}

.s-fe285d37-4190-4fac-bf97-79c22a5daec2.shg-align-container {
  text-align: center
}

.s-fe285d37-4190-4fac-bf97-79c22a5daec2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe285d37-4190-4fac-bf97-79c22a5daec2.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-fe285d37-4190-4fac-bf97-79c22a5daec2.shogun-image {
    
    
  }


.s-fe285d37-4190-4fac-bf97-79c22a5daec2 .shogun-image-content {
  
    align-items: center;
  
}

.s-fe285d37-4190-4fac-bf97-79c22a5daec2.shg-align-container {
  text-align: center
}

.s-fe285d37-4190-4fac-bf97-79c22a5daec2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe285d37-4190-4fac-bf97-79c22a5daec2.shogun-image {
  box-sizing: border-box;
}


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





  img.s-fe285d37-4190-4fac-bf97-79c22a5daec2.shogun-image {
    
    
  }


.s-fe285d37-4190-4fac-bf97-79c22a5daec2 .shogun-image-content {
  
    align-items: center;
  
}

.s-fe285d37-4190-4fac-bf97-79c22a5daec2.shg-align-container {
  text-align: center
}

.s-fe285d37-4190-4fac-bf97-79c22a5daec2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe285d37-4190-4fac-bf97-79c22a5daec2.shogun-image {
  box-sizing: border-box;
}


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





  img.s-fe285d37-4190-4fac-bf97-79c22a5daec2.shogun-image {
    
    
  }


.s-fe285d37-4190-4fac-bf97-79c22a5daec2 .shogun-image-content {
  
    align-items: center;
  
}

.s-fe285d37-4190-4fac-bf97-79c22a5daec2.shg-align-container {
  text-align: center
}

.s-fe285d37-4190-4fac-bf97-79c22a5daec2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe285d37-4190-4fac-bf97-79c22a5daec2.shogun-image {
  box-sizing: border-box;
}


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





  img.s-fe285d37-4190-4fac-bf97-79c22a5daec2.shogun-image {
    
    
  }


.s-fe285d37-4190-4fac-bf97-79c22a5daec2 .shogun-image-content {
  
    align-items: center;
  
}

.s-fe285d37-4190-4fac-bf97-79c22a5daec2.shg-align-container {
  text-align: center
}

.s-fe285d37-4190-4fac-bf97-79c22a5daec2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fe285d37-4190-4fac-bf97-79c22a5daec2.shogun-image {
  box-sizing: border-box;
}


}
#s-8a4eed60-a9bf-470e-aa00-c98fe346cf46 {
  text-align: center;
}
@media (min-width: 1200px){#s-8a4eed60-a9bf-470e-aa00-c98fe346cf46 {
  display: none;
}
#s-8a4eed60-a9bf-470e-aa00-c98fe346cf46, #wrap-s-8a4eed60-a9bf-470e-aa00-c98fe346cf46 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8a4eed60-a9bf-470e-aa00-c98fe346cf46 {
  display: none;
}
#s-8a4eed60-a9bf-470e-aa00-c98fe346cf46, #wrap-s-8a4eed60-a9bf-470e-aa00-c98fe346cf46 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8a4eed60-a9bf-470e-aa00-c98fe346cf46 {
  display: none;
}
#s-8a4eed60-a9bf-470e-aa00-c98fe346cf46, #wrap-s-8a4eed60-a9bf-470e-aa00-c98fe346cf46 { display:none !important; }}






  #s-8a4eed60-a9bf-470e-aa00-c98fe346cf46 img.shogun-image {
    

    
    
    
  }


#s-8a4eed60-a9bf-470e-aa00-c98fe346cf46 .shogun-image-content {
  
    align-items: center;
  
}

#s-a143c2c2-3379-47c8-b97a-5b5e498d822d {
  margin-left: 5%;
margin-right: 5%;
}

#s-6d4ec7fa-98fa-462a-8533-d93d62875646 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-6d4ec7fa-98fa-462a-8533-d93d62875646:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-6d4ec7fa-98fa-462a-8533-d93d62875646:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6d4ec7fa-98fa-462a-8533-d93d62875646-root {
    text-align: center;
  }


#s-6d4ec7fa-98fa-462a-8533-d93d62875646.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6d4ec7fa-98fa-462a-8533-d93d62875646-root {
    text-align: center;
  }


#s-6d4ec7fa-98fa-462a-8533-d93d62875646.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6d4ec7fa-98fa-462a-8533-d93d62875646-root {
    text-align: center;
  }


#s-6d4ec7fa-98fa-462a-8533-d93d62875646.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6d4ec7fa-98fa-462a-8533-d93d62875646-root {
    text-align: center;
  }


#s-6d4ec7fa-98fa-462a-8533-d93d62875646.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6d4ec7fa-98fa-462a-8533-d93d62875646-root {
    text-align: center;
  }


#s-6d4ec7fa-98fa-462a-8533-d93d62875646.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-d8125574-0a6d-4c6f-a8f4-bb8fb153f6e6 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-d8125574-0a6d-4c6f-a8f4-bb8fb153f6e6 {
  display: none;
}
#s-d8125574-0a6d-4c6f-a8f4-bb8fb153f6e6, #wrap-s-d8125574-0a6d-4c6f-a8f4-bb8fb153f6e6 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d8125574-0a6d-4c6f-a8f4-bb8fb153f6e6 {
  display: none;
}
#s-d8125574-0a6d-4c6f-a8f4-bb8fb153f6e6, #wrap-s-d8125574-0a6d-4c6f-a8f4-bb8fb153f6e6 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d8125574-0a6d-4c6f-a8f4-bb8fb153f6e6 {
  
}
}
#s-d8125574-0a6d-4c6f-a8f4-bb8fb153f6e6 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-d8125574-0a6d-4c6f-a8f4-bb8fb153f6e6 .shg-sld-nav-button.shg-sld-left,
#s-d8125574-0a6d-4c6f-a8f4-bb8fb153f6e6 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc {
  text-align: center;
}







  img.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shogun-image {
    
    
  }


.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc .shogun-image-content {
  
    align-items: center;
  
}

.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shg-align-container {
  text-align: center
}

.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shogun-image {
    
    
  }


.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc .shogun-image-content {
  
    align-items: center;
  
}

.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shg-align-container {
  text-align: center
}

.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shogun-image {
    
    
  }


.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc .shogun-image-content {
  
    align-items: center;
  
}

.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shg-align-container {
  text-align: center
}

.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shogun-image {
    
    
  }


.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc .shogun-image-content {
  
    align-items: center;
  
}

.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shg-align-container {
  text-align: center
}

.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shogun-image {
    
    
  }


.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc .shogun-image-content {
  
    align-items: center;
  
}

.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shg-align-container {
  text-align: center
}

.s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7f1a8787-65ee-4662-be8a-e9bfabcc8dfc.shogun-image {
  box-sizing: border-box;
}


}
#s-236e04ba-4bcc-42a3-9a4c-839f0cd46738 {
  margin-top: 3px;
margin-bottom: 3px;
text-align: center;
}
@media (min-width: 1200px){#s-236e04ba-4bcc-42a3-9a4c-839f0cd46738 {
  display: none;
}
#s-236e04ba-4bcc-42a3-9a4c-839f0cd46738, #wrap-s-236e04ba-4bcc-42a3-9a4c-839f0cd46738 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-236e04ba-4bcc-42a3-9a4c-839f0cd46738 {
  display: none;
}
#s-236e04ba-4bcc-42a3-9a4c-839f0cd46738, #wrap-s-236e04ba-4bcc-42a3-9a4c-839f0cd46738 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-236e04ba-4bcc-42a3-9a4c-839f0cd46738 {
  display: none;
}
#s-236e04ba-4bcc-42a3-9a4c-839f0cd46738, #wrap-s-236e04ba-4bcc-42a3-9a4c-839f0cd46738 { display:none !important; }}






  #s-236e04ba-4bcc-42a3-9a4c-839f0cd46738 img.shogun-image {
    

    
    
    
  }


#s-236e04ba-4bcc-42a3-9a4c-839f0cd46738 .shogun-image-content {
  
    align-items: center;
  
}

#s-52f9d870-8606-43c7-ab12-e533c7600915 {
  margin-left: 5%;
margin-right: 5%;
}

#s-41a5972e-9ac0-41b2-a719-6fc7a4e7e0e3 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-41a5972e-9ac0-41b2-a719-6fc7a4e7e0e3:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-41a5972e-9ac0-41b2-a719-6fc7a4e7e0e3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-41a5972e-9ac0-41b2-a719-6fc7a4e7e0e3-root {
    text-align: center;
  }


#s-41a5972e-9ac0-41b2-a719-6fc7a4e7e0e3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-41a5972e-9ac0-41b2-a719-6fc7a4e7e0e3-root {
    text-align: center;
  }


#s-41a5972e-9ac0-41b2-a719-6fc7a4e7e0e3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-41a5972e-9ac0-41b2-a719-6fc7a4e7e0e3-root {
    text-align: center;
  }


#s-41a5972e-9ac0-41b2-a719-6fc7a4e7e0e3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-41a5972e-9ac0-41b2-a719-6fc7a4e7e0e3-root {
    text-align: center;
  }


#s-41a5972e-9ac0-41b2-a719-6fc7a4e7e0e3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-41a5972e-9ac0-41b2-a719-6fc7a4e7e0e3-root {
    text-align: center;
  }


#s-41a5972e-9ac0-41b2-a719-6fc7a4e7e0e3.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-d4e73aae-184b-4509-9b13-391be59171d9 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-d4e73aae-184b-4509-9b13-391be59171d9 {
  display: none;
}
#s-d4e73aae-184b-4509-9b13-391be59171d9, #wrap-s-d4e73aae-184b-4509-9b13-391be59171d9 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d4e73aae-184b-4509-9b13-391be59171d9 {
  display: none;
}
#s-d4e73aae-184b-4509-9b13-391be59171d9, #wrap-s-d4e73aae-184b-4509-9b13-391be59171d9 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d4e73aae-184b-4509-9b13-391be59171d9 {
  
}
}
#s-d4e73aae-184b-4509-9b13-391be59171d9 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-d4e73aae-184b-4509-9b13-391be59171d9 .shg-sld-nav-button.shg-sld-left,
#s-d4e73aae-184b-4509-9b13-391be59171d9 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-98838282-9eb9-45f3-b677-15c21c5fa8c8 {
  text-align: center;
}







  img.s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shogun-image {
    
    
  }


.s-98838282-9eb9-45f3-b677-15c21c5fa8c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shg-align-container {
  text-align: center
}

.s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shogun-image {
    
    
  }


.s-98838282-9eb9-45f3-b677-15c21c5fa8c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shg-align-container {
  text-align: center
}

.s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shogun-image {
  box-sizing: border-box;
}


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





  img.s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shogun-image {
    
    
  }


.s-98838282-9eb9-45f3-b677-15c21c5fa8c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shg-align-container {
  text-align: center
}

.s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shogun-image {
  box-sizing: border-box;
}


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





  img.s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shogun-image {
    
    
  }


.s-98838282-9eb9-45f3-b677-15c21c5fa8c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shg-align-container {
  text-align: center
}

.s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shogun-image {
  box-sizing: border-box;
}


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





  img.s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shogun-image {
    
    
  }


.s-98838282-9eb9-45f3-b677-15c21c5fa8c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shg-align-container {
  text-align: center
}

.s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98838282-9eb9-45f3-b677-15c21c5fa8c8.shogun-image {
  box-sizing: border-box;
}


}
#s-f5bb7e4a-98e4-4c19-a88a-30054cace6dc {
  text-align: center;
}
@media (min-width: 1200px){#s-f5bb7e4a-98e4-4c19-a88a-30054cace6dc {
  display: none;
}
#s-f5bb7e4a-98e4-4c19-a88a-30054cace6dc, #wrap-s-f5bb7e4a-98e4-4c19-a88a-30054cace6dc { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f5bb7e4a-98e4-4c19-a88a-30054cace6dc {
  display: none;
}
#s-f5bb7e4a-98e4-4c19-a88a-30054cace6dc, #wrap-s-f5bb7e4a-98e4-4c19-a88a-30054cace6dc { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f5bb7e4a-98e4-4c19-a88a-30054cace6dc {
  display: none;
}
#s-f5bb7e4a-98e4-4c19-a88a-30054cace6dc, #wrap-s-f5bb7e4a-98e4-4c19-a88a-30054cace6dc { display:none !important; }}






  #s-f5bb7e4a-98e4-4c19-a88a-30054cace6dc img.shogun-image {
    

    
    
    
  }


#s-f5bb7e4a-98e4-4c19-a88a-30054cace6dc .shogun-image-content {
  
    align-items: center;
  
}

#s-3398ddf6-0bc3-44ae-8c42-db530a30dfde {
  margin-left: 5%;
margin-right: 5%;
}

#s-a78f4cac-21d5-4169-8395-ad19ff3904e0 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-a78f4cac-21d5-4169-8395-ad19ff3904e0:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-a78f4cac-21d5-4169-8395-ad19ff3904e0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a78f4cac-21d5-4169-8395-ad19ff3904e0-root {
    text-align: center;
  }


#s-a78f4cac-21d5-4169-8395-ad19ff3904e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a78f4cac-21d5-4169-8395-ad19ff3904e0-root {
    text-align: center;
  }


#s-a78f4cac-21d5-4169-8395-ad19ff3904e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a78f4cac-21d5-4169-8395-ad19ff3904e0-root {
    text-align: center;
  }


#s-a78f4cac-21d5-4169-8395-ad19ff3904e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a78f4cac-21d5-4169-8395-ad19ff3904e0-root {
    text-align: center;
  }


#s-a78f4cac-21d5-4169-8395-ad19ff3904e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a78f4cac-21d5-4169-8395-ad19ff3904e0-root {
    text-align: center;
  }


#s-a78f4cac-21d5-4169-8395-ad19ff3904e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-26651ffe-5a44-4a0b-900a-6d9192365365 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-26651ffe-5a44-4a0b-900a-6d9192365365 {
  display: none;
}
#s-26651ffe-5a44-4a0b-900a-6d9192365365, #wrap-s-26651ffe-5a44-4a0b-900a-6d9192365365 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-26651ffe-5a44-4a0b-900a-6d9192365365 {
  display: none;
}
#s-26651ffe-5a44-4a0b-900a-6d9192365365, #wrap-s-26651ffe-5a44-4a0b-900a-6d9192365365 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-26651ffe-5a44-4a0b-900a-6d9192365365 {
  
}
}
#s-26651ffe-5a44-4a0b-900a-6d9192365365 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-26651ffe-5a44-4a0b-900a-6d9192365365 .shg-sld-nav-button.shg-sld-left,
#s-26651ffe-5a44-4a0b-900a-6d9192365365 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-a259ea21-f200-41b6-9f43-586245701108 {
  text-align: center;
}







  img.s-a259ea21-f200-41b6-9f43-586245701108.shogun-image {
    
    
  }


.s-a259ea21-f200-41b6-9f43-586245701108 .shogun-image-content {
  
    align-items: center;
  
}

.s-a259ea21-f200-41b6-9f43-586245701108.shg-align-container {
  text-align: center
}

.s-a259ea21-f200-41b6-9f43-586245701108.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a259ea21-f200-41b6-9f43-586245701108.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-a259ea21-f200-41b6-9f43-586245701108.shogun-image {
    
    
  }


.s-a259ea21-f200-41b6-9f43-586245701108 .shogun-image-content {
  
    align-items: center;
  
}

.s-a259ea21-f200-41b6-9f43-586245701108.shg-align-container {
  text-align: center
}

.s-a259ea21-f200-41b6-9f43-586245701108.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a259ea21-f200-41b6-9f43-586245701108.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a259ea21-f200-41b6-9f43-586245701108.shogun-image {
    
    
  }


.s-a259ea21-f200-41b6-9f43-586245701108 .shogun-image-content {
  
    align-items: center;
  
}

.s-a259ea21-f200-41b6-9f43-586245701108.shg-align-container {
  text-align: center
}

.s-a259ea21-f200-41b6-9f43-586245701108.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a259ea21-f200-41b6-9f43-586245701108.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a259ea21-f200-41b6-9f43-586245701108.shogun-image {
    
    
  }


.s-a259ea21-f200-41b6-9f43-586245701108 .shogun-image-content {
  
    align-items: center;
  
}

.s-a259ea21-f200-41b6-9f43-586245701108.shg-align-container {
  text-align: center
}

.s-a259ea21-f200-41b6-9f43-586245701108.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a259ea21-f200-41b6-9f43-586245701108.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a259ea21-f200-41b6-9f43-586245701108.shogun-image {
    
    
  }


.s-a259ea21-f200-41b6-9f43-586245701108 .shogun-image-content {
  
    align-items: center;
  
}

.s-a259ea21-f200-41b6-9f43-586245701108.shg-align-container {
  text-align: center
}

.s-a259ea21-f200-41b6-9f43-586245701108.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a259ea21-f200-41b6-9f43-586245701108.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 0px) {
[id="s-e38d153f-881e-4c8e-9ba9-8859b7726fa6"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e38d153f-881e-4c8e-9ba9-8859b7726fa6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e38d153f-881e-4c8e-9ba9-8859b7726fa6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e38d153f-881e-4c8e-9ba9-8859b7726fa6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-18c82e48-d21a-4e12-bfcf-f272c0489d91 {
  margin-top: 3px;
margin-left: 0%;
margin-bottom: 3px;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-18c82e48-d21a-4e12-bfcf-f272c0489d91 {
  display: none;
}
#s-18c82e48-d21a-4e12-bfcf-f272c0489d91, #wrap-s-18c82e48-d21a-4e12-bfcf-f272c0489d91 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-18c82e48-d21a-4e12-bfcf-f272c0489d91 {
  display: none;
}
#s-18c82e48-d21a-4e12-bfcf-f272c0489d91, #wrap-s-18c82e48-d21a-4e12-bfcf-f272c0489d91 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-18c82e48-d21a-4e12-bfcf-f272c0489d91 {
  display: none;
}
#s-18c82e48-d21a-4e12-bfcf-f272c0489d91, #wrap-s-18c82e48-d21a-4e12-bfcf-f272c0489d91 { display:none !important; }}






  #s-18c82e48-d21a-4e12-bfcf-f272c0489d91 img.shogun-image {
    

    
    
    
  }


#s-18c82e48-d21a-4e12-bfcf-f272c0489d91 .shogun-image-content {
  
    align-items: center;
  
}

#s-e1a28f38-59bf-4a81-bb6b-6e85cb191205 {
  margin-left: 5%;
margin-right: 5%;
}

#s-e135a83d-2008-4b0e-b76a-b6c264b3807e {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-e135a83d-2008-4b0e-b76a-b6c264b3807e:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-e135a83d-2008-4b0e-b76a-b6c264b3807e:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e135a83d-2008-4b0e-b76a-b6c264b3807e-root {
    text-align: center;
  }


#s-e135a83d-2008-4b0e-b76a-b6c264b3807e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e135a83d-2008-4b0e-b76a-b6c264b3807e-root {
    text-align: center;
  }


#s-e135a83d-2008-4b0e-b76a-b6c264b3807e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e135a83d-2008-4b0e-b76a-b6c264b3807e-root {
    text-align: center;
  }


#s-e135a83d-2008-4b0e-b76a-b6c264b3807e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e135a83d-2008-4b0e-b76a-b6c264b3807e-root {
    text-align: center;
  }


#s-e135a83d-2008-4b0e-b76a-b6c264b3807e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e135a83d-2008-4b0e-b76a-b6c264b3807e-root {
    text-align: center;
  }


#s-e135a83d-2008-4b0e-b76a-b6c264b3807e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-66421e6a-6a4b-49a8-b905-e45e98178d7c {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-66421e6a-6a4b-49a8-b905-e45e98178d7c {
  display: none;
}
#s-66421e6a-6a4b-49a8-b905-e45e98178d7c, #wrap-s-66421e6a-6a4b-49a8-b905-e45e98178d7c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-66421e6a-6a4b-49a8-b905-e45e98178d7c {
  display: none;
}
#s-66421e6a-6a4b-49a8-b905-e45e98178d7c, #wrap-s-66421e6a-6a4b-49a8-b905-e45e98178d7c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-66421e6a-6a4b-49a8-b905-e45e98178d7c {
  
}
}
#s-66421e6a-6a4b-49a8-b905-e45e98178d7c .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-66421e6a-6a4b-49a8-b905-e45e98178d7c .shg-sld-nav-button.shg-sld-left,
#s-66421e6a-6a4b-49a8-b905-e45e98178d7c .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-53d784ed-87b3-4ea8-8574-3ea3432ad357 {
  text-align: center;
}







  img.s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shogun-image {
    
    
  }


.s-53d784ed-87b3-4ea8-8574-3ea3432ad357 .shogun-image-content {
  
    align-items: center;
  
}

.s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shg-align-container {
  text-align: center
}

.s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shogun-image {
    
    
  }


.s-53d784ed-87b3-4ea8-8574-3ea3432ad357 .shogun-image-content {
  
    align-items: center;
  
}

.s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shg-align-container {
  text-align: center
}

.s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shogun-image {
  box-sizing: border-box;
}


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





  img.s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shogun-image {
    
    
  }


.s-53d784ed-87b3-4ea8-8574-3ea3432ad357 .shogun-image-content {
  
    align-items: center;
  
}

.s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shg-align-container {
  text-align: center
}

.s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shogun-image {
  box-sizing: border-box;
}


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





  img.s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shogun-image {
    
    
  }


.s-53d784ed-87b3-4ea8-8574-3ea3432ad357 .shogun-image-content {
  
    align-items: center;
  
}

.s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shg-align-container {
  text-align: center
}

.s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shogun-image {
  box-sizing: border-box;
}


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





  img.s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shogun-image {
    
    
  }


.s-53d784ed-87b3-4ea8-8574-3ea3432ad357 .shogun-image-content {
  
    align-items: center;
  
}

.s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shg-align-container {
  text-align: center
}

.s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53d784ed-87b3-4ea8-8574-3ea3432ad357.shogun-image {
  box-sizing: border-box;
}


}
#s-7b0cad28-a418-4ed7-b5b0-5d4e491b813a {
  text-align: center;
}
@media (min-width: 1200px){#s-7b0cad28-a418-4ed7-b5b0-5d4e491b813a {
  display: none;
}
#s-7b0cad28-a418-4ed7-b5b0-5d4e491b813a, #wrap-s-7b0cad28-a418-4ed7-b5b0-5d4e491b813a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7b0cad28-a418-4ed7-b5b0-5d4e491b813a {
  display: none;
}
#s-7b0cad28-a418-4ed7-b5b0-5d4e491b813a, #wrap-s-7b0cad28-a418-4ed7-b5b0-5d4e491b813a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7b0cad28-a418-4ed7-b5b0-5d4e491b813a {
  display: none;
}
#s-7b0cad28-a418-4ed7-b5b0-5d4e491b813a, #wrap-s-7b0cad28-a418-4ed7-b5b0-5d4e491b813a { display:none !important; }}






  #s-7b0cad28-a418-4ed7-b5b0-5d4e491b813a img.shogun-image {
    

    
    
    
  }


#s-7b0cad28-a418-4ed7-b5b0-5d4e491b813a .shogun-image-content {
  
    align-items: center;
  
}

#s-5b9f5a70-9560-4fab-9df3-0fa4591d2bcf {
  margin-left: 5%;
margin-right: 5%;
}

#s-36a23b93-f4a1-4184-a815-6c2900bb0d93 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-36a23b93-f4a1-4184-a815-6c2900bb0d93:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-36a23b93-f4a1-4184-a815-6c2900bb0d93:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-36a23b93-f4a1-4184-a815-6c2900bb0d93-root {
    text-align: center;
  }


#s-36a23b93-f4a1-4184-a815-6c2900bb0d93.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-36a23b93-f4a1-4184-a815-6c2900bb0d93-root {
    text-align: center;
  }


#s-36a23b93-f4a1-4184-a815-6c2900bb0d93.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-36a23b93-f4a1-4184-a815-6c2900bb0d93-root {
    text-align: center;
  }


#s-36a23b93-f4a1-4184-a815-6c2900bb0d93.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-36a23b93-f4a1-4184-a815-6c2900bb0d93-root {
    text-align: center;
  }


#s-36a23b93-f4a1-4184-a815-6c2900bb0d93.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-36a23b93-f4a1-4184-a815-6c2900bb0d93-root {
    text-align: center;
  }


#s-36a23b93-f4a1-4184-a815-6c2900bb0d93.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-c27a4f25-d4d5-41eb-bb7f-e53628f17e9c {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-c27a4f25-d4d5-41eb-bb7f-e53628f17e9c {
  display: none;
}
#s-c27a4f25-d4d5-41eb-bb7f-e53628f17e9c, #wrap-s-c27a4f25-d4d5-41eb-bb7f-e53628f17e9c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c27a4f25-d4d5-41eb-bb7f-e53628f17e9c {
  display: none;
}
#s-c27a4f25-d4d5-41eb-bb7f-e53628f17e9c, #wrap-s-c27a4f25-d4d5-41eb-bb7f-e53628f17e9c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c27a4f25-d4d5-41eb-bb7f-e53628f17e9c {
  
}
}
#s-c27a4f25-d4d5-41eb-bb7f-e53628f17e9c .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-c27a4f25-d4d5-41eb-bb7f-e53628f17e9c .shg-sld-nav-button.shg-sld-left,
#s-c27a4f25-d4d5-41eb-bb7f-e53628f17e9c .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f {
  text-align: center;
}







  img.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shogun-image {
    
    
  }


.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f .shogun-image-content {
  
    align-items: center;
  
}

.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shg-align-container {
  text-align: center
}

.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shogun-image {
    
    
  }


.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f .shogun-image-content {
  
    align-items: center;
  
}

.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shg-align-container {
  text-align: center
}

.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shogun-image {
    
    
  }


.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f .shogun-image-content {
  
    align-items: center;
  
}

.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shg-align-container {
  text-align: center
}

.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shogun-image {
    
    
  }


.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f .shogun-image-content {
  
    align-items: center;
  
}

.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shg-align-container {
  text-align: center
}

.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shogun-image {
  box-sizing: border-box;
}


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





  img.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shogun-image {
    
    
  }


.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f .shogun-image-content {
  
    align-items: center;
  
}

.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shg-align-container {
  text-align: center
}

.s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1107da5f-23f0-43e8-8a3e-2916b4e3b53f.shogun-image {
  box-sizing: border-box;
}


}
#s-400fb117-fcd3-4495-9e2b-54d519cca283 {
  margin-top: 3px;
margin-bottom: 3px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-400fb117-fcd3-4495-9e2b-54d519cca283 {
  display: none;
}
#s-400fb117-fcd3-4495-9e2b-54d519cca283, #wrap-s-400fb117-fcd3-4495-9e2b-54d519cca283 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-400fb117-fcd3-4495-9e2b-54d519cca283 {
  display: none;
}
#s-400fb117-fcd3-4495-9e2b-54d519cca283, #wrap-s-400fb117-fcd3-4495-9e2b-54d519cca283 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-400fb117-fcd3-4495-9e2b-54d519cca283 {
  display: none;
}
#s-400fb117-fcd3-4495-9e2b-54d519cca283, #wrap-s-400fb117-fcd3-4495-9e2b-54d519cca283 { display:none !important; }}






  #s-400fb117-fcd3-4495-9e2b-54d519cca283 img.shogun-image {
    

    
    
    
  }


#s-400fb117-fcd3-4495-9e2b-54d519cca283 .shogun-image-content {
  
    align-items: center;
  
}

#s-a7ef309d-3917-47d5-8c25-bbff00013cb8 {
  margin-left: 5%;
margin-right: 5%;
}

#s-40c17241-0325-4f2b-a2e1-5e5cab050a08 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-40c17241-0325-4f2b-a2e1-5e5cab050a08:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-40c17241-0325-4f2b-a2e1-5e5cab050a08:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-40c17241-0325-4f2b-a2e1-5e5cab050a08-root {
    text-align: center;
  }


#s-40c17241-0325-4f2b-a2e1-5e5cab050a08.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-40c17241-0325-4f2b-a2e1-5e5cab050a08-root {
    text-align: center;
  }


#s-40c17241-0325-4f2b-a2e1-5e5cab050a08.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-40c17241-0325-4f2b-a2e1-5e5cab050a08-root {
    text-align: center;
  }


#s-40c17241-0325-4f2b-a2e1-5e5cab050a08.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-40c17241-0325-4f2b-a2e1-5e5cab050a08-root {
    text-align: center;
  }


#s-40c17241-0325-4f2b-a2e1-5e5cab050a08.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-40c17241-0325-4f2b-a2e1-5e5cab050a08-root {
    text-align: center;
  }


#s-40c17241-0325-4f2b-a2e1-5e5cab050a08.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-be63c0dc-cdd5-4a50-9d28-92b0507319ce {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-be63c0dc-cdd5-4a50-9d28-92b0507319ce {
  display: none;
}
#s-be63c0dc-cdd5-4a50-9d28-92b0507319ce, #wrap-s-be63c0dc-cdd5-4a50-9d28-92b0507319ce { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-be63c0dc-cdd5-4a50-9d28-92b0507319ce {
  display: none;
}
#s-be63c0dc-cdd5-4a50-9d28-92b0507319ce, #wrap-s-be63c0dc-cdd5-4a50-9d28-92b0507319ce { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-be63c0dc-cdd5-4a50-9d28-92b0507319ce {
  
}
}
#s-be63c0dc-cdd5-4a50-9d28-92b0507319ce .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-be63c0dc-cdd5-4a50-9d28-92b0507319ce .shg-sld-nav-button.shg-sld-left,
#s-be63c0dc-cdd5-4a50-9d28-92b0507319ce .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-08c228b3-f38f-4322-a5ff-e2ff501f7668 {
  text-align: center;
}







  img.s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shogun-image {
    
    
  }


.s-08c228b3-f38f-4322-a5ff-e2ff501f7668 .shogun-image-content {
  
    align-items: center;
  
}

.s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shg-align-container {
  text-align: center
}

.s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shogun-image {
    
    
  }


.s-08c228b3-f38f-4322-a5ff-e2ff501f7668 .shogun-image-content {
  
    align-items: center;
  
}

.s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shg-align-container {
  text-align: center
}

.s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shogun-image {
  box-sizing: border-box;
}


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





  img.s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shogun-image {
    
    
  }


.s-08c228b3-f38f-4322-a5ff-e2ff501f7668 .shogun-image-content {
  
    align-items: center;
  
}

.s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shg-align-container {
  text-align: center
}

.s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shogun-image {
  box-sizing: border-box;
}


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





  img.s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shogun-image {
    
    
  }


.s-08c228b3-f38f-4322-a5ff-e2ff501f7668 .shogun-image-content {
  
    align-items: center;
  
}

.s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shg-align-container {
  text-align: center
}

.s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shogun-image {
  box-sizing: border-box;
}


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





  img.s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shogun-image {
    
    
  }


.s-08c228b3-f38f-4322-a5ff-e2ff501f7668 .shogun-image-content {
  
    align-items: center;
  
}

.s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shg-align-container {
  text-align: center
}

.s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-08c228b3-f38f-4322-a5ff-e2ff501f7668.shogun-image {
  box-sizing: border-box;
}


}
#s-3e77af77-a722-4983-81f5-2f95f16bdc0e {
  text-align: center;
}
@media (min-width: 1200px){#s-3e77af77-a722-4983-81f5-2f95f16bdc0e {
  display: none;
}
#s-3e77af77-a722-4983-81f5-2f95f16bdc0e, #wrap-s-3e77af77-a722-4983-81f5-2f95f16bdc0e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3e77af77-a722-4983-81f5-2f95f16bdc0e {
  display: none;
}
#s-3e77af77-a722-4983-81f5-2f95f16bdc0e, #wrap-s-3e77af77-a722-4983-81f5-2f95f16bdc0e { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3e77af77-a722-4983-81f5-2f95f16bdc0e {
  display: none;
}
#s-3e77af77-a722-4983-81f5-2f95f16bdc0e, #wrap-s-3e77af77-a722-4983-81f5-2f95f16bdc0e { display:none !important; }}






  #s-3e77af77-a722-4983-81f5-2f95f16bdc0e img.shogun-image {
    

    
    
    
  }


#s-3e77af77-a722-4983-81f5-2f95f16bdc0e .shogun-image-content {
  
    align-items: center;
  
}

#s-310bbfe8-167c-4cde-9009-fe58977175a3 {
  margin-left: 5%;
margin-right: 5%;
}

#s-10e16d8d-9bde-464a-b004-d6e984ef8bbd {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-10e16d8d-9bde-464a-b004-d6e984ef8bbd:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-10e16d8d-9bde-464a-b004-d6e984ef8bbd:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-10e16d8d-9bde-464a-b004-d6e984ef8bbd-root {
    text-align: center;
  }


#s-10e16d8d-9bde-464a-b004-d6e984ef8bbd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-10e16d8d-9bde-464a-b004-d6e984ef8bbd-root {
    text-align: center;
  }


#s-10e16d8d-9bde-464a-b004-d6e984ef8bbd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-10e16d8d-9bde-464a-b004-d6e984ef8bbd-root {
    text-align: center;
  }


#s-10e16d8d-9bde-464a-b004-d6e984ef8bbd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-10e16d8d-9bde-464a-b004-d6e984ef8bbd-root {
    text-align: center;
  }


#s-10e16d8d-9bde-464a-b004-d6e984ef8bbd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-10e16d8d-9bde-464a-b004-d6e984ef8bbd-root {
    text-align: center;
  }


#s-10e16d8d-9bde-464a-b004-d6e984ef8bbd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-56bbca50-7a6f-4b53-a24b-584796bc0a16 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-56bbca50-7a6f-4b53-a24b-584796bc0a16 {
  display: none;
}
#s-56bbca50-7a6f-4b53-a24b-584796bc0a16, #wrap-s-56bbca50-7a6f-4b53-a24b-584796bc0a16 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-56bbca50-7a6f-4b53-a24b-584796bc0a16 {
  display: none;
}
#s-56bbca50-7a6f-4b53-a24b-584796bc0a16, #wrap-s-56bbca50-7a6f-4b53-a24b-584796bc0a16 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-56bbca50-7a6f-4b53-a24b-584796bc0a16 {
  
}
}
#s-56bbca50-7a6f-4b53-a24b-584796bc0a16 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-56bbca50-7a6f-4b53-a24b-584796bc0a16 .shg-sld-nav-button.shg-sld-left,
#s-56bbca50-7a6f-4b53-a24b-584796bc0a16 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-4471555d-af12-4add-9a8d-480740ab4edc {
  text-align: center;
}







  img.s-4471555d-af12-4add-9a8d-480740ab4edc.shogun-image {
    
    
  }


.s-4471555d-af12-4add-9a8d-480740ab4edc .shogun-image-content {
  
    align-items: center;
  
}

.s-4471555d-af12-4add-9a8d-480740ab4edc.shg-align-container {
  text-align: center
}

.s-4471555d-af12-4add-9a8d-480740ab4edc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4471555d-af12-4add-9a8d-480740ab4edc.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-4471555d-af12-4add-9a8d-480740ab4edc.shogun-image {
    
    
  }


.s-4471555d-af12-4add-9a8d-480740ab4edc .shogun-image-content {
  
    align-items: center;
  
}

.s-4471555d-af12-4add-9a8d-480740ab4edc.shg-align-container {
  text-align: center
}

.s-4471555d-af12-4add-9a8d-480740ab4edc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4471555d-af12-4add-9a8d-480740ab4edc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4471555d-af12-4add-9a8d-480740ab4edc.shogun-image {
    
    
  }


.s-4471555d-af12-4add-9a8d-480740ab4edc .shogun-image-content {
  
    align-items: center;
  
}

.s-4471555d-af12-4add-9a8d-480740ab4edc.shg-align-container {
  text-align: center
}

.s-4471555d-af12-4add-9a8d-480740ab4edc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4471555d-af12-4add-9a8d-480740ab4edc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4471555d-af12-4add-9a8d-480740ab4edc.shogun-image {
    
    
  }


.s-4471555d-af12-4add-9a8d-480740ab4edc .shogun-image-content {
  
    align-items: center;
  
}

.s-4471555d-af12-4add-9a8d-480740ab4edc.shg-align-container {
  text-align: center
}

.s-4471555d-af12-4add-9a8d-480740ab4edc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4471555d-af12-4add-9a8d-480740ab4edc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-4471555d-af12-4add-9a8d-480740ab4edc.shogun-image {
    
    
  }


.s-4471555d-af12-4add-9a8d-480740ab4edc .shogun-image-content {
  
    align-items: center;
  
}

.s-4471555d-af12-4add-9a8d-480740ab4edc.shg-align-container {
  text-align: center
}

.s-4471555d-af12-4add-9a8d-480740ab4edc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4471555d-af12-4add-9a8d-480740ab4edc.shogun-image {
  box-sizing: border-box;
}


}
@media (min-width: 0px) {
[id="s-64a2342f-3cc7-49cb-bb74-534fa8ac8dc2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-64a2342f-3cc7-49cb-bb74-534fa8ac8dc2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-64a2342f-3cc7-49cb-bb74-534fa8ac8dc2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-64a2342f-3cc7-49cb-bb74-534fa8ac8dc2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-357222f8-8876-4684-97e1-dacf014a21f0 {
  margin-top: 3px;
margin-bottom: 3px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-357222f8-8876-4684-97e1-dacf014a21f0 {
  display: none;
}
#s-357222f8-8876-4684-97e1-dacf014a21f0, #wrap-s-357222f8-8876-4684-97e1-dacf014a21f0 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-357222f8-8876-4684-97e1-dacf014a21f0 {
  display: none;
}
#s-357222f8-8876-4684-97e1-dacf014a21f0, #wrap-s-357222f8-8876-4684-97e1-dacf014a21f0 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-357222f8-8876-4684-97e1-dacf014a21f0 {
  display: none;
}
#s-357222f8-8876-4684-97e1-dacf014a21f0, #wrap-s-357222f8-8876-4684-97e1-dacf014a21f0 { display:none !important; }}






  #s-357222f8-8876-4684-97e1-dacf014a21f0 img.shogun-image {
    

    
    
    
  }


#s-357222f8-8876-4684-97e1-dacf014a21f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-b64e0748-a136-47be-9643-2e1b14aadd88 {
  margin-left: 5%;
margin-right: 5%;
}

#s-be045ab7-86a5-4ac1-9b4a-2943396962ca {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-be045ab7-86a5-4ac1-9b4a-2943396962ca:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-be045ab7-86a5-4ac1-9b4a-2943396962ca:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-be045ab7-86a5-4ac1-9b4a-2943396962ca-root {
    text-align: center;
  }


#s-be045ab7-86a5-4ac1-9b4a-2943396962ca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-be045ab7-86a5-4ac1-9b4a-2943396962ca-root {
    text-align: center;
  }


#s-be045ab7-86a5-4ac1-9b4a-2943396962ca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-be045ab7-86a5-4ac1-9b4a-2943396962ca-root {
    text-align: center;
  }


#s-be045ab7-86a5-4ac1-9b4a-2943396962ca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-be045ab7-86a5-4ac1-9b4a-2943396962ca-root {
    text-align: center;
  }


#s-be045ab7-86a5-4ac1-9b4a-2943396962ca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-be045ab7-86a5-4ac1-9b4a-2943396962ca-root {
    text-align: center;
  }


#s-be045ab7-86a5-4ac1-9b4a-2943396962ca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-a95964cf-eb3a-4ffe-ab71-a39f91c513df {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-a95964cf-eb3a-4ffe-ab71-a39f91c513df {
  display: none;
}
#s-a95964cf-eb3a-4ffe-ab71-a39f91c513df, #wrap-s-a95964cf-eb3a-4ffe-ab71-a39f91c513df { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a95964cf-eb3a-4ffe-ab71-a39f91c513df {
  display: none;
}
#s-a95964cf-eb3a-4ffe-ab71-a39f91c513df, #wrap-s-a95964cf-eb3a-4ffe-ab71-a39f91c513df { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a95964cf-eb3a-4ffe-ab71-a39f91c513df {
  
}
}
#s-a95964cf-eb3a-4ffe-ab71-a39f91c513df .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-a95964cf-eb3a-4ffe-ab71-a39f91c513df .shg-sld-nav-button.shg-sld-left,
#s-a95964cf-eb3a-4ffe-ab71-a39f91c513df .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-85687c1c-135d-4a7f-b164-050806fbe193 {
  text-align: center;
}







  img.s-85687c1c-135d-4a7f-b164-050806fbe193.shogun-image {
    
    
  }


.s-85687c1c-135d-4a7f-b164-050806fbe193 .shogun-image-content {
  
    align-items: center;
  
}

.s-85687c1c-135d-4a7f-b164-050806fbe193.shg-align-container {
  text-align: center
}

.s-85687c1c-135d-4a7f-b164-050806fbe193.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-85687c1c-135d-4a7f-b164-050806fbe193.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-85687c1c-135d-4a7f-b164-050806fbe193.shogun-image {
    
    
  }


.s-85687c1c-135d-4a7f-b164-050806fbe193 .shogun-image-content {
  
    align-items: center;
  
}

.s-85687c1c-135d-4a7f-b164-050806fbe193.shg-align-container {
  text-align: center
}

.s-85687c1c-135d-4a7f-b164-050806fbe193.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-85687c1c-135d-4a7f-b164-050806fbe193.shogun-image {
  box-sizing: border-box;
}


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





  img.s-85687c1c-135d-4a7f-b164-050806fbe193.shogun-image {
    
    
  }


.s-85687c1c-135d-4a7f-b164-050806fbe193 .shogun-image-content {
  
    align-items: center;
  
}

.s-85687c1c-135d-4a7f-b164-050806fbe193.shg-align-container {
  text-align: center
}

.s-85687c1c-135d-4a7f-b164-050806fbe193.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-85687c1c-135d-4a7f-b164-050806fbe193.shogun-image {
  box-sizing: border-box;
}


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





  img.s-85687c1c-135d-4a7f-b164-050806fbe193.shogun-image {
    
    
  }


.s-85687c1c-135d-4a7f-b164-050806fbe193 .shogun-image-content {
  
    align-items: center;
  
}

.s-85687c1c-135d-4a7f-b164-050806fbe193.shg-align-container {
  text-align: center
}

.s-85687c1c-135d-4a7f-b164-050806fbe193.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-85687c1c-135d-4a7f-b164-050806fbe193.shogun-image {
  box-sizing: border-box;
}


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





  img.s-85687c1c-135d-4a7f-b164-050806fbe193.shogun-image {
    
    
  }


.s-85687c1c-135d-4a7f-b164-050806fbe193 .shogun-image-content {
  
    align-items: center;
  
}

.s-85687c1c-135d-4a7f-b164-050806fbe193.shg-align-container {
  text-align: center
}

.s-85687c1c-135d-4a7f-b164-050806fbe193.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-85687c1c-135d-4a7f-b164-050806fbe193.shogun-image {
  box-sizing: border-box;
}


}
#s-0dd2c549-c4cd-4e92-8bed-3248dc09214a {
  text-align: center;
}
@media (min-width: 1200px){#s-0dd2c549-c4cd-4e92-8bed-3248dc09214a {
  display: none;
}
#s-0dd2c549-c4cd-4e92-8bed-3248dc09214a, #wrap-s-0dd2c549-c4cd-4e92-8bed-3248dc09214a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0dd2c549-c4cd-4e92-8bed-3248dc09214a {
  display: none;
}
#s-0dd2c549-c4cd-4e92-8bed-3248dc09214a, #wrap-s-0dd2c549-c4cd-4e92-8bed-3248dc09214a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0dd2c549-c4cd-4e92-8bed-3248dc09214a {
  display: none;
}
#s-0dd2c549-c4cd-4e92-8bed-3248dc09214a, #wrap-s-0dd2c549-c4cd-4e92-8bed-3248dc09214a { display:none !important; }}






  #s-0dd2c549-c4cd-4e92-8bed-3248dc09214a img.shogun-image {
    

    
    
    
  }


#s-0dd2c549-c4cd-4e92-8bed-3248dc09214a .shogun-image-content {
  
    align-items: center;
  
}

#s-d77e23a8-1b53-40b2-b0e0-10ac8a93a3c6 {
  margin-left: 5%;
margin-right: 5%;
}

#s-e030e93a-9ec4-45bd-8a9e-aa721ba09e26 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-e030e93a-9ec4-45bd-8a9e-aa721ba09e26:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-e030e93a-9ec4-45bd-8a9e-aa721ba09e26:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e030e93a-9ec4-45bd-8a9e-aa721ba09e26-root {
    text-align: center;
  }


#s-e030e93a-9ec4-45bd-8a9e-aa721ba09e26.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e030e93a-9ec4-45bd-8a9e-aa721ba09e26-root {
    text-align: center;
  }


#s-e030e93a-9ec4-45bd-8a9e-aa721ba09e26.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e030e93a-9ec4-45bd-8a9e-aa721ba09e26-root {
    text-align: center;
  }


#s-e030e93a-9ec4-45bd-8a9e-aa721ba09e26.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e030e93a-9ec4-45bd-8a9e-aa721ba09e26-root {
    text-align: center;
  }


#s-e030e93a-9ec4-45bd-8a9e-aa721ba09e26.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e030e93a-9ec4-45bd-8a9e-aa721ba09e26-root {
    text-align: center;
  }


#s-e030e93a-9ec4-45bd-8a9e-aa721ba09e26.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-1e3ea33c-fd33-49a2-88c2-297dd12a70d3 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-1e3ea33c-fd33-49a2-88c2-297dd12a70d3 {
  display: none;
}
#s-1e3ea33c-fd33-49a2-88c2-297dd12a70d3, #wrap-s-1e3ea33c-fd33-49a2-88c2-297dd12a70d3 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1e3ea33c-fd33-49a2-88c2-297dd12a70d3 {
  display: none;
}
#s-1e3ea33c-fd33-49a2-88c2-297dd12a70d3, #wrap-s-1e3ea33c-fd33-49a2-88c2-297dd12a70d3 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1e3ea33c-fd33-49a2-88c2-297dd12a70d3 {
  
}
}
#s-1e3ea33c-fd33-49a2-88c2-297dd12a70d3 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-1e3ea33c-fd33-49a2-88c2-297dd12a70d3 .shg-sld-nav-button.shg-sld-left,
#s-1e3ea33c-fd33-49a2-88c2-297dd12a70d3 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-b6a3046f-74ba-4541-ba87-e8b6a929cedb {
  text-align: center;
}







  img.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shogun-image {
    
    
  }


.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb .shogun-image-content {
  
    align-items: center;
  
}

.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shg-align-container {
  text-align: center
}

.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shogun-image {
    
    
  }


.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb .shogun-image-content {
  
    align-items: center;
  
}

.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shg-align-container {
  text-align: center
}

.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shogun-image {
    
    
  }


.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb .shogun-image-content {
  
    align-items: center;
  
}

.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shg-align-container {
  text-align: center
}

.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shogun-image {
    
    
  }


.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb .shogun-image-content {
  
    align-items: center;
  
}

.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shg-align-container {
  text-align: center
}

.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shogun-image {
    
    
  }


.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb .shogun-image-content {
  
    align-items: center;
  
}

.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shg-align-container {
  text-align: center
}

.s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6a3046f-74ba-4541-ba87-e8b6a929cedb.shogun-image {
  box-sizing: border-box;
}


}
#s-1c332b77-e20a-48b4-958f-dfe1629b55e5 {
  margin-top: 3px;
margin-bottom: 3px;
text-align: center;
}
@media (min-width: 1200px){#s-1c332b77-e20a-48b4-958f-dfe1629b55e5 {
  display: none;
}
#s-1c332b77-e20a-48b4-958f-dfe1629b55e5, #wrap-s-1c332b77-e20a-48b4-958f-dfe1629b55e5 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1c332b77-e20a-48b4-958f-dfe1629b55e5 {
  display: none;
}
#s-1c332b77-e20a-48b4-958f-dfe1629b55e5, #wrap-s-1c332b77-e20a-48b4-958f-dfe1629b55e5 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1c332b77-e20a-48b4-958f-dfe1629b55e5 {
  display: none;
}
#s-1c332b77-e20a-48b4-958f-dfe1629b55e5, #wrap-s-1c332b77-e20a-48b4-958f-dfe1629b55e5 { display:none !important; }}






  #s-1c332b77-e20a-48b4-958f-dfe1629b55e5 img.shogun-image {
    

    
    
    
  }


#s-1c332b77-e20a-48b4-958f-dfe1629b55e5 .shogun-image-content {
  
    align-items: center;
  
}

#s-d4c4866b-3d8c-4638-8dd5-099bcb21095e {
  margin-left: 5%;
margin-right: 5%;
}

#s-c2a4561b-f951-4ec5-b35f-9eb1e8f87a85 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-c2a4561b-f951-4ec5-b35f-9eb1e8f87a85:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-c2a4561b-f951-4ec5-b35f-9eb1e8f87a85:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c2a4561b-f951-4ec5-b35f-9eb1e8f87a85-root {
    text-align: center;
  }


#s-c2a4561b-f951-4ec5-b35f-9eb1e8f87a85.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c2a4561b-f951-4ec5-b35f-9eb1e8f87a85-root {
    text-align: center;
  }


#s-c2a4561b-f951-4ec5-b35f-9eb1e8f87a85.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c2a4561b-f951-4ec5-b35f-9eb1e8f87a85-root {
    text-align: center;
  }


#s-c2a4561b-f951-4ec5-b35f-9eb1e8f87a85.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c2a4561b-f951-4ec5-b35f-9eb1e8f87a85-root {
    text-align: center;
  }


#s-c2a4561b-f951-4ec5-b35f-9eb1e8f87a85.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c2a4561b-f951-4ec5-b35f-9eb1e8f87a85-root {
    text-align: center;
  }


#s-c2a4561b-f951-4ec5-b35f-9eb1e8f87a85.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-a148df14-4221-4b02-b3e3-b961e60304e0 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-a148df14-4221-4b02-b3e3-b961e60304e0 {
  display: none;
}
#s-a148df14-4221-4b02-b3e3-b961e60304e0, #wrap-s-a148df14-4221-4b02-b3e3-b961e60304e0 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a148df14-4221-4b02-b3e3-b961e60304e0 {
  display: none;
}
#s-a148df14-4221-4b02-b3e3-b961e60304e0, #wrap-s-a148df14-4221-4b02-b3e3-b961e60304e0 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a148df14-4221-4b02-b3e3-b961e60304e0 {
  
}
}
#s-a148df14-4221-4b02-b3e3-b961e60304e0 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-a148df14-4221-4b02-b3e3-b961e60304e0 .shg-sld-nav-button.shg-sld-left,
#s-a148df14-4221-4b02-b3e3-b961e60304e0 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-51f54932-e0a0-4188-aedb-2f6347135c9c {
  text-align: center;
}







  img.s-51f54932-e0a0-4188-aedb-2f6347135c9c.shogun-image {
    
    
  }


.s-51f54932-e0a0-4188-aedb-2f6347135c9c .shogun-image-content {
  
    align-items: center;
  
}

.s-51f54932-e0a0-4188-aedb-2f6347135c9c.shg-align-container {
  text-align: center
}

.s-51f54932-e0a0-4188-aedb-2f6347135c9c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51f54932-e0a0-4188-aedb-2f6347135c9c.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-51f54932-e0a0-4188-aedb-2f6347135c9c.shogun-image {
    
    
  }


.s-51f54932-e0a0-4188-aedb-2f6347135c9c .shogun-image-content {
  
    align-items: center;
  
}

.s-51f54932-e0a0-4188-aedb-2f6347135c9c.shg-align-container {
  text-align: center
}

.s-51f54932-e0a0-4188-aedb-2f6347135c9c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51f54932-e0a0-4188-aedb-2f6347135c9c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-51f54932-e0a0-4188-aedb-2f6347135c9c.shogun-image {
    
    
  }


.s-51f54932-e0a0-4188-aedb-2f6347135c9c .shogun-image-content {
  
    align-items: center;
  
}

.s-51f54932-e0a0-4188-aedb-2f6347135c9c.shg-align-container {
  text-align: center
}

.s-51f54932-e0a0-4188-aedb-2f6347135c9c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51f54932-e0a0-4188-aedb-2f6347135c9c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-51f54932-e0a0-4188-aedb-2f6347135c9c.shogun-image {
    
    
  }


.s-51f54932-e0a0-4188-aedb-2f6347135c9c .shogun-image-content {
  
    align-items: center;
  
}

.s-51f54932-e0a0-4188-aedb-2f6347135c9c.shg-align-container {
  text-align: center
}

.s-51f54932-e0a0-4188-aedb-2f6347135c9c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51f54932-e0a0-4188-aedb-2f6347135c9c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-51f54932-e0a0-4188-aedb-2f6347135c9c.shogun-image {
    
    
  }


.s-51f54932-e0a0-4188-aedb-2f6347135c9c .shogun-image-content {
  
    align-items: center;
  
}

.s-51f54932-e0a0-4188-aedb-2f6347135c9c.shg-align-container {
  text-align: center
}

.s-51f54932-e0a0-4188-aedb-2f6347135c9c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-51f54932-e0a0-4188-aedb-2f6347135c9c.shogun-image {
  box-sizing: border-box;
}


}
#s-aac8a548-ad2d-444f-9980-e42a2f78ddf4 {
  text-align: center;
}
@media (min-width: 1200px){#s-aac8a548-ad2d-444f-9980-e42a2f78ddf4 {
  display: none;
}
#s-aac8a548-ad2d-444f-9980-e42a2f78ddf4, #wrap-s-aac8a548-ad2d-444f-9980-e42a2f78ddf4 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-aac8a548-ad2d-444f-9980-e42a2f78ddf4 {
  display: none;
}
#s-aac8a548-ad2d-444f-9980-e42a2f78ddf4, #wrap-s-aac8a548-ad2d-444f-9980-e42a2f78ddf4 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-aac8a548-ad2d-444f-9980-e42a2f78ddf4 {
  display: none;
}
#s-aac8a548-ad2d-444f-9980-e42a2f78ddf4, #wrap-s-aac8a548-ad2d-444f-9980-e42a2f78ddf4 { display:none !important; }}






  #s-aac8a548-ad2d-444f-9980-e42a2f78ddf4 img.shogun-image {
    

    
    
    
  }


#s-aac8a548-ad2d-444f-9980-e42a2f78ddf4 .shogun-image-content {
  
    align-items: center;
  
}

#s-2d534893-1f31-4cfd-980f-84f8ccbb370c {
  margin-left: 5%;
margin-right: 5%;
}

#s-b851982f-3b09-4908-87a8-08d5cec2a85f {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-b851982f-3b09-4908-87a8-08d5cec2a85f:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-b851982f-3b09-4908-87a8-08d5cec2a85f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b851982f-3b09-4908-87a8-08d5cec2a85f-root {
    text-align: center;
  }


#s-b851982f-3b09-4908-87a8-08d5cec2a85f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b851982f-3b09-4908-87a8-08d5cec2a85f-root {
    text-align: center;
  }


#s-b851982f-3b09-4908-87a8-08d5cec2a85f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b851982f-3b09-4908-87a8-08d5cec2a85f-root {
    text-align: center;
  }


#s-b851982f-3b09-4908-87a8-08d5cec2a85f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b851982f-3b09-4908-87a8-08d5cec2a85f-root {
    text-align: center;
  }


#s-b851982f-3b09-4908-87a8-08d5cec2a85f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b851982f-3b09-4908-87a8-08d5cec2a85f-root {
    text-align: center;
  }


#s-b851982f-3b09-4908-87a8-08d5cec2a85f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-b331c6ae-b2ff-4d5c-bc33-5161c9a6ba20 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-b331c6ae-b2ff-4d5c-bc33-5161c9a6ba20 {
  display: none;
}
#s-b331c6ae-b2ff-4d5c-bc33-5161c9a6ba20, #wrap-s-b331c6ae-b2ff-4d5c-bc33-5161c9a6ba20 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b331c6ae-b2ff-4d5c-bc33-5161c9a6ba20 {
  display: none;
}
#s-b331c6ae-b2ff-4d5c-bc33-5161c9a6ba20, #wrap-s-b331c6ae-b2ff-4d5c-bc33-5161c9a6ba20 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b331c6ae-b2ff-4d5c-bc33-5161c9a6ba20 {
  
}
}
#s-b331c6ae-b2ff-4d5c-bc33-5161c9a6ba20 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-b331c6ae-b2ff-4d5c-bc33-5161c9a6ba20 .shg-sld-nav-button.shg-sld-left,
#s-b331c6ae-b2ff-4d5c-bc33-5161c9a6ba20 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-351a2420-87f3-4aba-a7d4-ba94d683edc4 {
  text-align: center;
}







  img.s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shogun-image {
    
    
  }


.s-351a2420-87f3-4aba-a7d4-ba94d683edc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shg-align-container {
  text-align: center
}

.s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shogun-image {
    
    
  }


.s-351a2420-87f3-4aba-a7d4-ba94d683edc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shg-align-container {
  text-align: center
}

.s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shogun-image {
    
    
  }


.s-351a2420-87f3-4aba-a7d4-ba94d683edc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shg-align-container {
  text-align: center
}

.s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shogun-image {
    
    
  }


.s-351a2420-87f3-4aba-a7d4-ba94d683edc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shg-align-container {
  text-align: center
}

.s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shogun-image {
    
    
  }


.s-351a2420-87f3-4aba-a7d4-ba94d683edc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shg-align-container {
  text-align: center
}

.s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-351a2420-87f3-4aba-a7d4-ba94d683edc4.shogun-image {
  box-sizing: border-box;
}


}
#s-90318beb-714b-4c86-a900-dea521d905a3 {
  margin-top: 3px;
margin-bottom: 3px;
text-align: center;
}
@media (min-width: 1200px){#s-90318beb-714b-4c86-a900-dea521d905a3 {
  display: none;
}
#s-90318beb-714b-4c86-a900-dea521d905a3, #wrap-s-90318beb-714b-4c86-a900-dea521d905a3 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-90318beb-714b-4c86-a900-dea521d905a3 {
  display: none;
}
#s-90318beb-714b-4c86-a900-dea521d905a3, #wrap-s-90318beb-714b-4c86-a900-dea521d905a3 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-90318beb-714b-4c86-a900-dea521d905a3 {
  display: none;
}
#s-90318beb-714b-4c86-a900-dea521d905a3, #wrap-s-90318beb-714b-4c86-a900-dea521d905a3 { display:none !important; }}






  #s-90318beb-714b-4c86-a900-dea521d905a3 img.shogun-image {
    

    
    
    
  }


#s-90318beb-714b-4c86-a900-dea521d905a3 .shogun-image-content {
  
    align-items: center;
  
}

#s-af025259-dc45-4407-9405-faf84a2d5f4c {
  margin-left: 5%;
margin-right: 5%;
}

#s-c887b983-cf34-4b97-ace4-cbf4160faa2b {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-c887b983-cf34-4b97-ace4-cbf4160faa2b:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-c887b983-cf34-4b97-ace4-cbf4160faa2b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c887b983-cf34-4b97-ace4-cbf4160faa2b-root {
    text-align: center;
  }


#s-c887b983-cf34-4b97-ace4-cbf4160faa2b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c887b983-cf34-4b97-ace4-cbf4160faa2b-root {
    text-align: center;
  }


#s-c887b983-cf34-4b97-ace4-cbf4160faa2b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c887b983-cf34-4b97-ace4-cbf4160faa2b-root {
    text-align: center;
  }


#s-c887b983-cf34-4b97-ace4-cbf4160faa2b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c887b983-cf34-4b97-ace4-cbf4160faa2b-root {
    text-align: center;
  }


#s-c887b983-cf34-4b97-ace4-cbf4160faa2b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c887b983-cf34-4b97-ace4-cbf4160faa2b-root {
    text-align: center;
  }


#s-c887b983-cf34-4b97-ace4-cbf4160faa2b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-fdaab04b-5a8e-49b0-af83-dca65bc004ff {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-fdaab04b-5a8e-49b0-af83-dca65bc004ff {
  display: none;
}
#s-fdaab04b-5a8e-49b0-af83-dca65bc004ff, #wrap-s-fdaab04b-5a8e-49b0-af83-dca65bc004ff { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fdaab04b-5a8e-49b0-af83-dca65bc004ff {
  display: none;
}
#s-fdaab04b-5a8e-49b0-af83-dca65bc004ff, #wrap-s-fdaab04b-5a8e-49b0-af83-dca65bc004ff { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fdaab04b-5a8e-49b0-af83-dca65bc004ff {
  
}
}
#s-fdaab04b-5a8e-49b0-af83-dca65bc004ff .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-fdaab04b-5a8e-49b0-af83-dca65bc004ff .shg-sld-nav-button.shg-sld-left,
#s-fdaab04b-5a8e-49b0-af83-dca65bc004ff .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6 {
  text-align: center;
}







  img.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shogun-image {
    
    
  }


.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6 .shogun-image-content {
  
    align-items: center;
  
}

.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shg-align-container {
  text-align: center
}

.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shogun-image {
    
    
  }


.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6 .shogun-image-content {
  
    align-items: center;
  
}

.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shg-align-container {
  text-align: center
}

.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shogun-image {
    
    
  }


.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6 .shogun-image-content {
  
    align-items: center;
  
}

.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shg-align-container {
  text-align: center
}

.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shogun-image {
    
    
  }


.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6 .shogun-image-content {
  
    align-items: center;
  
}

.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shg-align-container {
  text-align: center
}

.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shogun-image {
  box-sizing: border-box;
}


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





  img.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shogun-image {
    
    
  }


.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6 .shogun-image-content {
  
    align-items: center;
  
}

.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shg-align-container {
  text-align: center
}

.s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b8eb14e3-90ab-438d-9fc4-96ee57122ae6.shogun-image {
  box-sizing: border-box;
}


}
#s-45079088-f5d8-4959-85c8-fdea0b4e9284 {
  text-align: center;
}
@media (min-width: 1200px){#s-45079088-f5d8-4959-85c8-fdea0b4e9284 {
  display: none;
}
#s-45079088-f5d8-4959-85c8-fdea0b4e9284, #wrap-s-45079088-f5d8-4959-85c8-fdea0b4e9284 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-45079088-f5d8-4959-85c8-fdea0b4e9284 {
  display: none;
}
#s-45079088-f5d8-4959-85c8-fdea0b4e9284, #wrap-s-45079088-f5d8-4959-85c8-fdea0b4e9284 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-45079088-f5d8-4959-85c8-fdea0b4e9284 {
  display: none;
}
#s-45079088-f5d8-4959-85c8-fdea0b4e9284, #wrap-s-45079088-f5d8-4959-85c8-fdea0b4e9284 { display:none !important; }}






  #s-45079088-f5d8-4959-85c8-fdea0b4e9284 img.shogun-image {
    

    
    
    
  }


#s-45079088-f5d8-4959-85c8-fdea0b4e9284 .shogun-image-content {
  
    align-items: center;
  
}

#s-cca9aeb4-a628-432a-858e-c5cd061adca4 {
  margin-left: 5%;
margin-right: 5%;
}

#s-4fc63e7d-0d41-4fda-ae30-1d98d1962546 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-4fc63e7d-0d41-4fda-ae30-1d98d1962546:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-4fc63e7d-0d41-4fda-ae30-1d98d1962546:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4fc63e7d-0d41-4fda-ae30-1d98d1962546-root {
    text-align: center;
  }


#s-4fc63e7d-0d41-4fda-ae30-1d98d1962546.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4fc63e7d-0d41-4fda-ae30-1d98d1962546-root {
    text-align: center;
  }


#s-4fc63e7d-0d41-4fda-ae30-1d98d1962546.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4fc63e7d-0d41-4fda-ae30-1d98d1962546-root {
    text-align: center;
  }


#s-4fc63e7d-0d41-4fda-ae30-1d98d1962546.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4fc63e7d-0d41-4fda-ae30-1d98d1962546-root {
    text-align: center;
  }


#s-4fc63e7d-0d41-4fda-ae30-1d98d1962546.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4fc63e7d-0d41-4fda-ae30-1d98d1962546-root {
    text-align: center;
  }


#s-4fc63e7d-0d41-4fda-ae30-1d98d1962546.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-fdbc46fd-395d-4ed2-a705-55b788e3114c {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-fdbc46fd-395d-4ed2-a705-55b788e3114c {
  display: none;
}
#s-fdbc46fd-395d-4ed2-a705-55b788e3114c, #wrap-s-fdbc46fd-395d-4ed2-a705-55b788e3114c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fdbc46fd-395d-4ed2-a705-55b788e3114c {
  display: none;
}
#s-fdbc46fd-395d-4ed2-a705-55b788e3114c, #wrap-s-fdbc46fd-395d-4ed2-a705-55b788e3114c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fdbc46fd-395d-4ed2-a705-55b788e3114c {
  
}
}
#s-fdbc46fd-395d-4ed2-a705-55b788e3114c .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-fdbc46fd-395d-4ed2-a705-55b788e3114c .shg-sld-nav-button.shg-sld-left,
#s-fdbc46fd-395d-4ed2-a705-55b788e3114c .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-c148ea43-f103-476a-b77d-569d9382ca0a {
  text-align: center;
}







  img.s-c148ea43-f103-476a-b77d-569d9382ca0a.shogun-image {
    
    
  }


.s-c148ea43-f103-476a-b77d-569d9382ca0a .shogun-image-content {
  
    align-items: center;
  
}

.s-c148ea43-f103-476a-b77d-569d9382ca0a.shg-align-container {
  text-align: center
}

.s-c148ea43-f103-476a-b77d-569d9382ca0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c148ea43-f103-476a-b77d-569d9382ca0a.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c148ea43-f103-476a-b77d-569d9382ca0a.shogun-image {
    
    
  }


.s-c148ea43-f103-476a-b77d-569d9382ca0a .shogun-image-content {
  
    align-items: center;
  
}

.s-c148ea43-f103-476a-b77d-569d9382ca0a.shg-align-container {
  text-align: center
}

.s-c148ea43-f103-476a-b77d-569d9382ca0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c148ea43-f103-476a-b77d-569d9382ca0a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c148ea43-f103-476a-b77d-569d9382ca0a.shogun-image {
    
    
  }


.s-c148ea43-f103-476a-b77d-569d9382ca0a .shogun-image-content {
  
    align-items: center;
  
}

.s-c148ea43-f103-476a-b77d-569d9382ca0a.shg-align-container {
  text-align: center
}

.s-c148ea43-f103-476a-b77d-569d9382ca0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c148ea43-f103-476a-b77d-569d9382ca0a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c148ea43-f103-476a-b77d-569d9382ca0a.shogun-image {
    
    
  }


.s-c148ea43-f103-476a-b77d-569d9382ca0a .shogun-image-content {
  
    align-items: center;
  
}

.s-c148ea43-f103-476a-b77d-569d9382ca0a.shg-align-container {
  text-align: center
}

.s-c148ea43-f103-476a-b77d-569d9382ca0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c148ea43-f103-476a-b77d-569d9382ca0a.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c148ea43-f103-476a-b77d-569d9382ca0a.shogun-image {
    
    
  }


.s-c148ea43-f103-476a-b77d-569d9382ca0a .shogun-image-content {
  
    align-items: center;
  
}

.s-c148ea43-f103-476a-b77d-569d9382ca0a.shg-align-container {
  text-align: center
}

.s-c148ea43-f103-476a-b77d-569d9382ca0a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c148ea43-f103-476a-b77d-569d9382ca0a.shogun-image {
  box-sizing: border-box;
}


}
#s-22ea0b96-0b77-4a3f-8fbc-f49c72c99fa8 {
  margin-top: 3px;
margin-bottom: 3px;
text-align: center;
}
@media (min-width: 1200px){#s-22ea0b96-0b77-4a3f-8fbc-f49c72c99fa8 {
  display: none;
}
#s-22ea0b96-0b77-4a3f-8fbc-f49c72c99fa8, #wrap-s-22ea0b96-0b77-4a3f-8fbc-f49c72c99fa8 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-22ea0b96-0b77-4a3f-8fbc-f49c72c99fa8 {
  display: none;
}
#s-22ea0b96-0b77-4a3f-8fbc-f49c72c99fa8, #wrap-s-22ea0b96-0b77-4a3f-8fbc-f49c72c99fa8 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-22ea0b96-0b77-4a3f-8fbc-f49c72c99fa8 {
  display: none;
}
#s-22ea0b96-0b77-4a3f-8fbc-f49c72c99fa8, #wrap-s-22ea0b96-0b77-4a3f-8fbc-f49c72c99fa8 { display:none !important; }}






  #s-22ea0b96-0b77-4a3f-8fbc-f49c72c99fa8 img.shogun-image {
    

    
    
    
  }


#s-22ea0b96-0b77-4a3f-8fbc-f49c72c99fa8 .shogun-image-content {
  
    align-items: center;
  
}

#s-5d4b2baa-6e2e-47f7-8ff7-3ccecb988da1 {
  margin-left: 5%;
margin-right: 5%;
}

#s-61e1bf67-e449-4889-ad4a-442fe9051b39 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-61e1bf67-e449-4889-ad4a-442fe9051b39:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-61e1bf67-e449-4889-ad4a-442fe9051b39:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-61e1bf67-e449-4889-ad4a-442fe9051b39-root {
    text-align: center;
  }


#s-61e1bf67-e449-4889-ad4a-442fe9051b39.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-61e1bf67-e449-4889-ad4a-442fe9051b39-root {
    text-align: center;
  }


#s-61e1bf67-e449-4889-ad4a-442fe9051b39.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-61e1bf67-e449-4889-ad4a-442fe9051b39-root {
    text-align: center;
  }


#s-61e1bf67-e449-4889-ad4a-442fe9051b39.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-61e1bf67-e449-4889-ad4a-442fe9051b39-root {
    text-align: center;
  }


#s-61e1bf67-e449-4889-ad4a-442fe9051b39.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-61e1bf67-e449-4889-ad4a-442fe9051b39-root {
    text-align: center;
  }


#s-61e1bf67-e449-4889-ad4a-442fe9051b39.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-a4c3bcc0-63c1-4ad8-995f-d7274201c0fd {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-a4c3bcc0-63c1-4ad8-995f-d7274201c0fd {
  display: none;
}
#s-a4c3bcc0-63c1-4ad8-995f-d7274201c0fd, #wrap-s-a4c3bcc0-63c1-4ad8-995f-d7274201c0fd { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a4c3bcc0-63c1-4ad8-995f-d7274201c0fd {
  display: none;
}
#s-a4c3bcc0-63c1-4ad8-995f-d7274201c0fd, #wrap-s-a4c3bcc0-63c1-4ad8-995f-d7274201c0fd { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a4c3bcc0-63c1-4ad8-995f-d7274201c0fd {
  
}
}
#s-a4c3bcc0-63c1-4ad8-995f-d7274201c0fd .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-a4c3bcc0-63c1-4ad8-995f-d7274201c0fd .shg-sld-nav-button.shg-sld-left,
#s-a4c3bcc0-63c1-4ad8-995f-d7274201c0fd .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-61b74b51-2e02-401b-b85c-9484553be688 {
  text-align: center;
}







  img.s-61b74b51-2e02-401b-b85c-9484553be688.shogun-image {
    
    
  }


.s-61b74b51-2e02-401b-b85c-9484553be688 .shogun-image-content {
  
    align-items: center;
  
}

.s-61b74b51-2e02-401b-b85c-9484553be688.shg-align-container {
  text-align: center
}

.s-61b74b51-2e02-401b-b85c-9484553be688.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-61b74b51-2e02-401b-b85c-9484553be688.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-61b74b51-2e02-401b-b85c-9484553be688.shogun-image {
    
    
  }


.s-61b74b51-2e02-401b-b85c-9484553be688 .shogun-image-content {
  
    align-items: center;
  
}

.s-61b74b51-2e02-401b-b85c-9484553be688.shg-align-container {
  text-align: center
}

.s-61b74b51-2e02-401b-b85c-9484553be688.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-61b74b51-2e02-401b-b85c-9484553be688.shogun-image {
  box-sizing: border-box;
}


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





  img.s-61b74b51-2e02-401b-b85c-9484553be688.shogun-image {
    
    
  }


.s-61b74b51-2e02-401b-b85c-9484553be688 .shogun-image-content {
  
    align-items: center;
  
}

.s-61b74b51-2e02-401b-b85c-9484553be688.shg-align-container {
  text-align: center
}

.s-61b74b51-2e02-401b-b85c-9484553be688.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-61b74b51-2e02-401b-b85c-9484553be688.shogun-image {
  box-sizing: border-box;
}


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





  img.s-61b74b51-2e02-401b-b85c-9484553be688.shogun-image {
    
    
  }


.s-61b74b51-2e02-401b-b85c-9484553be688 .shogun-image-content {
  
    align-items: center;
  
}

.s-61b74b51-2e02-401b-b85c-9484553be688.shg-align-container {
  text-align: center
}

.s-61b74b51-2e02-401b-b85c-9484553be688.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-61b74b51-2e02-401b-b85c-9484553be688.shogun-image {
  box-sizing: border-box;
}


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





  img.s-61b74b51-2e02-401b-b85c-9484553be688.shogun-image {
    
    
  }


.s-61b74b51-2e02-401b-b85c-9484553be688 .shogun-image-content {
  
    align-items: center;
  
}

.s-61b74b51-2e02-401b-b85c-9484553be688.shg-align-container {
  text-align: center
}

.s-61b74b51-2e02-401b-b85c-9484553be688.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-61b74b51-2e02-401b-b85c-9484553be688.shogun-image {
  box-sizing: border-box;
}


}
#s-d07ab289-535f-4cca-8f7b-fe1d647b71d3 {
  text-align: center;
}
@media (min-width: 1200px){#s-d07ab289-535f-4cca-8f7b-fe1d647b71d3 {
  display: none;
}
#s-d07ab289-535f-4cca-8f7b-fe1d647b71d3, #wrap-s-d07ab289-535f-4cca-8f7b-fe1d647b71d3 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d07ab289-535f-4cca-8f7b-fe1d647b71d3 {
  display: none;
}
#s-d07ab289-535f-4cca-8f7b-fe1d647b71d3, #wrap-s-d07ab289-535f-4cca-8f7b-fe1d647b71d3 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d07ab289-535f-4cca-8f7b-fe1d647b71d3 {
  display: none;
}
#s-d07ab289-535f-4cca-8f7b-fe1d647b71d3, #wrap-s-d07ab289-535f-4cca-8f7b-fe1d647b71d3 { display:none !important; }}






  #s-d07ab289-535f-4cca-8f7b-fe1d647b71d3 img.shogun-image {
    

    
    
    
  }


#s-d07ab289-535f-4cca-8f7b-fe1d647b71d3 .shogun-image-content {
  
    align-items: center;
  
}

#s-ef1030e5-a057-4e2b-a78f-4cfb308b7cf0 {
  margin-left: 5%;
margin-right: 5%;
}

#s-6885d760-5fa7-4bed-abbe-020270a1b427 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-6885d760-5fa7-4bed-abbe-020270a1b427:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-6885d760-5fa7-4bed-abbe-020270a1b427:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6885d760-5fa7-4bed-abbe-020270a1b427-root {
    text-align: center;
  }


#s-6885d760-5fa7-4bed-abbe-020270a1b427.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6885d760-5fa7-4bed-abbe-020270a1b427-root {
    text-align: center;
  }


#s-6885d760-5fa7-4bed-abbe-020270a1b427.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6885d760-5fa7-4bed-abbe-020270a1b427-root {
    text-align: center;
  }


#s-6885d760-5fa7-4bed-abbe-020270a1b427.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6885d760-5fa7-4bed-abbe-020270a1b427-root {
    text-align: center;
  }


#s-6885d760-5fa7-4bed-abbe-020270a1b427.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6885d760-5fa7-4bed-abbe-020270a1b427-root {
    text-align: center;
  }


#s-6885d760-5fa7-4bed-abbe-020270a1b427.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-b741ede5-1132-4084-a4e4-9208b1350911 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-b741ede5-1132-4084-a4e4-9208b1350911 {
  display: none;
}
#s-b741ede5-1132-4084-a4e4-9208b1350911, #wrap-s-b741ede5-1132-4084-a4e4-9208b1350911 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b741ede5-1132-4084-a4e4-9208b1350911 {
  display: none;
}
#s-b741ede5-1132-4084-a4e4-9208b1350911, #wrap-s-b741ede5-1132-4084-a4e4-9208b1350911 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b741ede5-1132-4084-a4e4-9208b1350911 {
  
}
}
#s-b741ede5-1132-4084-a4e4-9208b1350911 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-b741ede5-1132-4084-a4e4-9208b1350911 .shg-sld-nav-button.shg-sld-left,
#s-b741ede5-1132-4084-a4e4-9208b1350911 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-98918492-e42d-4be3-82be-df016045bb75 {
  text-align: center;
}







  img.s-98918492-e42d-4be3-82be-df016045bb75.shogun-image {
    
    
  }


.s-98918492-e42d-4be3-82be-df016045bb75 .shogun-image-content {
  
    align-items: center;
  
}

.s-98918492-e42d-4be3-82be-df016045bb75.shg-align-container {
  text-align: center
}

.s-98918492-e42d-4be3-82be-df016045bb75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98918492-e42d-4be3-82be-df016045bb75.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-98918492-e42d-4be3-82be-df016045bb75.shogun-image {
    
    
  }


.s-98918492-e42d-4be3-82be-df016045bb75 .shogun-image-content {
  
    align-items: center;
  
}

.s-98918492-e42d-4be3-82be-df016045bb75.shg-align-container {
  text-align: center
}

.s-98918492-e42d-4be3-82be-df016045bb75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98918492-e42d-4be3-82be-df016045bb75.shogun-image {
  box-sizing: border-box;
}


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





  img.s-98918492-e42d-4be3-82be-df016045bb75.shogun-image {
    
    
  }


.s-98918492-e42d-4be3-82be-df016045bb75 .shogun-image-content {
  
    align-items: center;
  
}

.s-98918492-e42d-4be3-82be-df016045bb75.shg-align-container {
  text-align: center
}

.s-98918492-e42d-4be3-82be-df016045bb75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98918492-e42d-4be3-82be-df016045bb75.shogun-image {
  box-sizing: border-box;
}


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





  img.s-98918492-e42d-4be3-82be-df016045bb75.shogun-image {
    
    
  }


.s-98918492-e42d-4be3-82be-df016045bb75 .shogun-image-content {
  
    align-items: center;
  
}

.s-98918492-e42d-4be3-82be-df016045bb75.shg-align-container {
  text-align: center
}

.s-98918492-e42d-4be3-82be-df016045bb75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98918492-e42d-4be3-82be-df016045bb75.shogun-image {
  box-sizing: border-box;
}


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





  img.s-98918492-e42d-4be3-82be-df016045bb75.shogun-image {
    
    
  }


.s-98918492-e42d-4be3-82be-df016045bb75 .shogun-image-content {
  
    align-items: center;
  
}

.s-98918492-e42d-4be3-82be-df016045bb75.shg-align-container {
  text-align: center
}

.s-98918492-e42d-4be3-82be-df016045bb75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-98918492-e42d-4be3-82be-df016045bb75.shogun-image {
  box-sizing: border-box;
}


}
#s-f46e7856-94b2-4264-9946-8777d9d6a20a {
  margin-top: 3px;
margin-bottom: 3px;
text-align: center;
}
@media (min-width: 1200px){#s-f46e7856-94b2-4264-9946-8777d9d6a20a {
  display: none;
}
#s-f46e7856-94b2-4264-9946-8777d9d6a20a, #wrap-s-f46e7856-94b2-4264-9946-8777d9d6a20a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f46e7856-94b2-4264-9946-8777d9d6a20a {
  display: none;
}
#s-f46e7856-94b2-4264-9946-8777d9d6a20a, #wrap-s-f46e7856-94b2-4264-9946-8777d9d6a20a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f46e7856-94b2-4264-9946-8777d9d6a20a {
  display: none;
}
#s-f46e7856-94b2-4264-9946-8777d9d6a20a, #wrap-s-f46e7856-94b2-4264-9946-8777d9d6a20a { display:none !important; }}






  #s-f46e7856-94b2-4264-9946-8777d9d6a20a img.shogun-image {
    

    
    
    
  }


#s-f46e7856-94b2-4264-9946-8777d9d6a20a .shogun-image-content {
  
    align-items: center;
  
}

#s-85ce65d2-6fa2-462c-92e3-3df38a4a39a3 {
  margin-left: 5%;
margin-right: 5%;
}

#s-be544c76-150e-44f9-8e5a-f57e33b38314 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-be544c76-150e-44f9-8e5a-f57e33b38314:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-be544c76-150e-44f9-8e5a-f57e33b38314:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-be544c76-150e-44f9-8e5a-f57e33b38314-root {
    text-align: center;
  }


#s-be544c76-150e-44f9-8e5a-f57e33b38314.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-be544c76-150e-44f9-8e5a-f57e33b38314-root {
    text-align: center;
  }


#s-be544c76-150e-44f9-8e5a-f57e33b38314.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-be544c76-150e-44f9-8e5a-f57e33b38314-root {
    text-align: center;
  }


#s-be544c76-150e-44f9-8e5a-f57e33b38314.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-be544c76-150e-44f9-8e5a-f57e33b38314-root {
    text-align: center;
  }


#s-be544c76-150e-44f9-8e5a-f57e33b38314.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-be544c76-150e-44f9-8e5a-f57e33b38314-root {
    text-align: center;
  }


#s-be544c76-150e-44f9-8e5a-f57e33b38314.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-5e35a90c-1e64-4b83-9e73-fe9d416cbf91 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-5e35a90c-1e64-4b83-9e73-fe9d416cbf91 {
  display: none;
}
#s-5e35a90c-1e64-4b83-9e73-fe9d416cbf91, #wrap-s-5e35a90c-1e64-4b83-9e73-fe9d416cbf91 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5e35a90c-1e64-4b83-9e73-fe9d416cbf91 {
  display: none;
}
#s-5e35a90c-1e64-4b83-9e73-fe9d416cbf91, #wrap-s-5e35a90c-1e64-4b83-9e73-fe9d416cbf91 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5e35a90c-1e64-4b83-9e73-fe9d416cbf91 {
  
}
}
#s-5e35a90c-1e64-4b83-9e73-fe9d416cbf91 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-5e35a90c-1e64-4b83-9e73-fe9d416cbf91 .shg-sld-nav-button.shg-sld-left,
#s-5e35a90c-1e64-4b83-9e73-fe9d416cbf91 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-efafc6b9-b723-4b39-adce-eba78e67dd98 {
  text-align: center;
}







  img.s-efafc6b9-b723-4b39-adce-eba78e67dd98.shogun-image {
    
    
  }


.s-efafc6b9-b723-4b39-adce-eba78e67dd98 .shogun-image-content {
  
    align-items: center;
  
}

.s-efafc6b9-b723-4b39-adce-eba78e67dd98.shg-align-container {
  text-align: center
}

.s-efafc6b9-b723-4b39-adce-eba78e67dd98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-efafc6b9-b723-4b39-adce-eba78e67dd98.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-efafc6b9-b723-4b39-adce-eba78e67dd98.shogun-image {
    
    
  }


.s-efafc6b9-b723-4b39-adce-eba78e67dd98 .shogun-image-content {
  
    align-items: center;
  
}

.s-efafc6b9-b723-4b39-adce-eba78e67dd98.shg-align-container {
  text-align: center
}

.s-efafc6b9-b723-4b39-adce-eba78e67dd98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-efafc6b9-b723-4b39-adce-eba78e67dd98.shogun-image {
  box-sizing: border-box;
}


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





  img.s-efafc6b9-b723-4b39-adce-eba78e67dd98.shogun-image {
    
    
  }


.s-efafc6b9-b723-4b39-adce-eba78e67dd98 .shogun-image-content {
  
    align-items: center;
  
}

.s-efafc6b9-b723-4b39-adce-eba78e67dd98.shg-align-container {
  text-align: center
}

.s-efafc6b9-b723-4b39-adce-eba78e67dd98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-efafc6b9-b723-4b39-adce-eba78e67dd98.shogun-image {
  box-sizing: border-box;
}


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





  img.s-efafc6b9-b723-4b39-adce-eba78e67dd98.shogun-image {
    
    
  }


.s-efafc6b9-b723-4b39-adce-eba78e67dd98 .shogun-image-content {
  
    align-items: center;
  
}

.s-efafc6b9-b723-4b39-adce-eba78e67dd98.shg-align-container {
  text-align: center
}

.s-efafc6b9-b723-4b39-adce-eba78e67dd98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-efafc6b9-b723-4b39-adce-eba78e67dd98.shogun-image {
  box-sizing: border-box;
}


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





  img.s-efafc6b9-b723-4b39-adce-eba78e67dd98.shogun-image {
    
    
  }


.s-efafc6b9-b723-4b39-adce-eba78e67dd98 .shogun-image-content {
  
    align-items: center;
  
}

.s-efafc6b9-b723-4b39-adce-eba78e67dd98.shg-align-container {
  text-align: center
}

.s-efafc6b9-b723-4b39-adce-eba78e67dd98.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-efafc6b9-b723-4b39-adce-eba78e67dd98.shogun-image {
  box-sizing: border-box;
}


}
#s-51c8c0b8-3de7-4356-9d39-264e65f54da0 {
  text-align: center;
}
@media (min-width: 1200px){#s-51c8c0b8-3de7-4356-9d39-264e65f54da0 {
  display: none;
}
#s-51c8c0b8-3de7-4356-9d39-264e65f54da0, #wrap-s-51c8c0b8-3de7-4356-9d39-264e65f54da0 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-51c8c0b8-3de7-4356-9d39-264e65f54da0 {
  display: none;
}
#s-51c8c0b8-3de7-4356-9d39-264e65f54da0, #wrap-s-51c8c0b8-3de7-4356-9d39-264e65f54da0 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-51c8c0b8-3de7-4356-9d39-264e65f54da0 {
  display: none;
}
#s-51c8c0b8-3de7-4356-9d39-264e65f54da0, #wrap-s-51c8c0b8-3de7-4356-9d39-264e65f54da0 { display:none !important; }}






  #s-51c8c0b8-3de7-4356-9d39-264e65f54da0 img.shogun-image {
    

    
    
    
  }


#s-51c8c0b8-3de7-4356-9d39-264e65f54da0 .shogun-image-content {
  
    align-items: center;
  
}

#s-e38cfa0d-07eb-47c8-8865-3197052dbc2a {
  margin-left: 5%;
margin-right: 5%;
}

#s-555d679f-9337-43fd-aa0a-721f9c629034 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-555d679f-9337-43fd-aa0a-721f9c629034:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-555d679f-9337-43fd-aa0a-721f9c629034:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-555d679f-9337-43fd-aa0a-721f9c629034-root {
    text-align: center;
  }


#s-555d679f-9337-43fd-aa0a-721f9c629034.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-555d679f-9337-43fd-aa0a-721f9c629034-root {
    text-align: center;
  }


#s-555d679f-9337-43fd-aa0a-721f9c629034.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-555d679f-9337-43fd-aa0a-721f9c629034-root {
    text-align: center;
  }


#s-555d679f-9337-43fd-aa0a-721f9c629034.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-555d679f-9337-43fd-aa0a-721f9c629034-root {
    text-align: center;
  }


#s-555d679f-9337-43fd-aa0a-721f9c629034.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-555d679f-9337-43fd-aa0a-721f9c629034-root {
    text-align: center;
  }


#s-555d679f-9337-43fd-aa0a-721f9c629034.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-1f5000b6-4012-442e-adf6-9a483c6691a2 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-1f5000b6-4012-442e-adf6-9a483c6691a2 {
  display: none;
}
#s-1f5000b6-4012-442e-adf6-9a483c6691a2, #wrap-s-1f5000b6-4012-442e-adf6-9a483c6691a2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1f5000b6-4012-442e-adf6-9a483c6691a2 {
  display: none;
}
#s-1f5000b6-4012-442e-adf6-9a483c6691a2, #wrap-s-1f5000b6-4012-442e-adf6-9a483c6691a2 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1f5000b6-4012-442e-adf6-9a483c6691a2 {
  
}
}
#s-1f5000b6-4012-442e-adf6-9a483c6691a2 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-1f5000b6-4012-442e-adf6-9a483c6691a2 .shg-sld-nav-button.shg-sld-left,
#s-1f5000b6-4012-442e-adf6-9a483c6691a2 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-94823924-150f-4f63-ab13-2a9054f0ae91 {
  text-align: center;
}







  img.s-94823924-150f-4f63-ab13-2a9054f0ae91.shogun-image {
    
    
  }


.s-94823924-150f-4f63-ab13-2a9054f0ae91 .shogun-image-content {
  
    align-items: center;
  
}

.s-94823924-150f-4f63-ab13-2a9054f0ae91.shg-align-container {
  text-align: center
}

.s-94823924-150f-4f63-ab13-2a9054f0ae91.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94823924-150f-4f63-ab13-2a9054f0ae91.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-94823924-150f-4f63-ab13-2a9054f0ae91.shogun-image {
    
    
  }


.s-94823924-150f-4f63-ab13-2a9054f0ae91 .shogun-image-content {
  
    align-items: center;
  
}

.s-94823924-150f-4f63-ab13-2a9054f0ae91.shg-align-container {
  text-align: center
}

.s-94823924-150f-4f63-ab13-2a9054f0ae91.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94823924-150f-4f63-ab13-2a9054f0ae91.shogun-image {
  box-sizing: border-box;
}


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





  img.s-94823924-150f-4f63-ab13-2a9054f0ae91.shogun-image {
    
    
  }


.s-94823924-150f-4f63-ab13-2a9054f0ae91 .shogun-image-content {
  
    align-items: center;
  
}

.s-94823924-150f-4f63-ab13-2a9054f0ae91.shg-align-container {
  text-align: center
}

.s-94823924-150f-4f63-ab13-2a9054f0ae91.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94823924-150f-4f63-ab13-2a9054f0ae91.shogun-image {
  box-sizing: border-box;
}


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





  img.s-94823924-150f-4f63-ab13-2a9054f0ae91.shogun-image {
    
    
  }


.s-94823924-150f-4f63-ab13-2a9054f0ae91 .shogun-image-content {
  
    align-items: center;
  
}

.s-94823924-150f-4f63-ab13-2a9054f0ae91.shg-align-container {
  text-align: center
}

.s-94823924-150f-4f63-ab13-2a9054f0ae91.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94823924-150f-4f63-ab13-2a9054f0ae91.shogun-image {
  box-sizing: border-box;
}


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





  img.s-94823924-150f-4f63-ab13-2a9054f0ae91.shogun-image {
    
    
  }


.s-94823924-150f-4f63-ab13-2a9054f0ae91 .shogun-image-content {
  
    align-items: center;
  
}

.s-94823924-150f-4f63-ab13-2a9054f0ae91.shg-align-container {
  text-align: center
}

.s-94823924-150f-4f63-ab13-2a9054f0ae91.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-94823924-150f-4f63-ab13-2a9054f0ae91.shogun-image {
  box-sizing: border-box;
}


}
#s-42422c27-8e86-412e-b39b-a75faf3978cc {
  margin-top: 3px;
margin-bottom: 3px;
text-align: center;
}
@media (min-width: 1200px){#s-42422c27-8e86-412e-b39b-a75faf3978cc {
  display: none;
}
#s-42422c27-8e86-412e-b39b-a75faf3978cc, #wrap-s-42422c27-8e86-412e-b39b-a75faf3978cc { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-42422c27-8e86-412e-b39b-a75faf3978cc {
  display: none;
}
#s-42422c27-8e86-412e-b39b-a75faf3978cc, #wrap-s-42422c27-8e86-412e-b39b-a75faf3978cc { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-42422c27-8e86-412e-b39b-a75faf3978cc {
  display: none;
}
#s-42422c27-8e86-412e-b39b-a75faf3978cc, #wrap-s-42422c27-8e86-412e-b39b-a75faf3978cc { display:none !important; }}






  #s-42422c27-8e86-412e-b39b-a75faf3978cc img.shogun-image {
    

    
    
    
  }


#s-42422c27-8e86-412e-b39b-a75faf3978cc .shogun-image-content {
  
    align-items: center;
  
}

#s-994b2d2f-0a0a-488c-b36c-a28409d2604e {
  margin-left: 5%;
margin-right: 5%;
}

#s-315945e3-ede7-41ea-a6b1-53a88de5c77b {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-315945e3-ede7-41ea-a6b1-53a88de5c77b:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-315945e3-ede7-41ea-a6b1-53a88de5c77b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-315945e3-ede7-41ea-a6b1-53a88de5c77b-root {
    text-align: center;
  }


#s-315945e3-ede7-41ea-a6b1-53a88de5c77b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-315945e3-ede7-41ea-a6b1-53a88de5c77b-root {
    text-align: center;
  }


#s-315945e3-ede7-41ea-a6b1-53a88de5c77b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-315945e3-ede7-41ea-a6b1-53a88de5c77b-root {
    text-align: center;
  }


#s-315945e3-ede7-41ea-a6b1-53a88de5c77b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-315945e3-ede7-41ea-a6b1-53a88de5c77b-root {
    text-align: center;
  }


#s-315945e3-ede7-41ea-a6b1-53a88de5c77b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-315945e3-ede7-41ea-a6b1-53a88de5c77b-root {
    text-align: center;
  }


#s-315945e3-ede7-41ea-a6b1-53a88de5c77b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-248972d9-6876-482b-b63c-6c116b753c7f {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-248972d9-6876-482b-b63c-6c116b753c7f {
  display: none;
}
#s-248972d9-6876-482b-b63c-6c116b753c7f, #wrap-s-248972d9-6876-482b-b63c-6c116b753c7f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-248972d9-6876-482b-b63c-6c116b753c7f {
  display: none;
}
#s-248972d9-6876-482b-b63c-6c116b753c7f, #wrap-s-248972d9-6876-482b-b63c-6c116b753c7f { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-248972d9-6876-482b-b63c-6c116b753c7f {
  
}
}
#s-248972d9-6876-482b-b63c-6c116b753c7f .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-248972d9-6876-482b-b63c-6c116b753c7f .shg-sld-nav-button.shg-sld-left,
#s-248972d9-6876-482b-b63c-6c116b753c7f .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-a66012ec-931c-46b1-8b5e-d48da374d6ea {
  text-align: center;
}







  img.s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shogun-image {
    
    
  }


.s-a66012ec-931c-46b1-8b5e-d48da374d6ea .shogun-image-content {
  
    align-items: center;
  
}

.s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shg-align-container {
  text-align: center
}

.s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shogun-image {
    
    
  }


.s-a66012ec-931c-46b1-8b5e-d48da374d6ea .shogun-image-content {
  
    align-items: center;
  
}

.s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shg-align-container {
  text-align: center
}

.s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shogun-image {
    
    
  }


.s-a66012ec-931c-46b1-8b5e-d48da374d6ea .shogun-image-content {
  
    align-items: center;
  
}

.s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shg-align-container {
  text-align: center
}

.s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shogun-image {
    
    
  }


.s-a66012ec-931c-46b1-8b5e-d48da374d6ea .shogun-image-content {
  
    align-items: center;
  
}

.s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shg-align-container {
  text-align: center
}

.s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shogun-image {
  box-sizing: border-box;
}


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





  img.s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shogun-image {
    
    
  }


.s-a66012ec-931c-46b1-8b5e-d48da374d6ea .shogun-image-content {
  
    align-items: center;
  
}

.s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shg-align-container {
  text-align: center
}

.s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a66012ec-931c-46b1-8b5e-d48da374d6ea.shogun-image {
  box-sizing: border-box;
}


}
#s-4a7522b5-8c27-492c-8724-8549f3639917 {
  text-align: center;
}
@media (min-width: 1200px){#s-4a7522b5-8c27-492c-8724-8549f3639917 {
  display: none;
}
#s-4a7522b5-8c27-492c-8724-8549f3639917, #wrap-s-4a7522b5-8c27-492c-8724-8549f3639917 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4a7522b5-8c27-492c-8724-8549f3639917 {
  display: none;
}
#s-4a7522b5-8c27-492c-8724-8549f3639917, #wrap-s-4a7522b5-8c27-492c-8724-8549f3639917 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4a7522b5-8c27-492c-8724-8549f3639917 {
  display: none;
}
#s-4a7522b5-8c27-492c-8724-8549f3639917, #wrap-s-4a7522b5-8c27-492c-8724-8549f3639917 { display:none !important; }}






  #s-4a7522b5-8c27-492c-8724-8549f3639917 img.shogun-image {
    

    
    
    
  }


#s-4a7522b5-8c27-492c-8724-8549f3639917 .shogun-image-content {
  
    align-items: center;
  
}

#s-9ddfcc52-5d59-47ad-951b-e5330ad8dd02 {
  margin-left: 5%;
margin-right: 5%;
}

#s-763d731c-9821-46d0-b0c8-399c6c513a10 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-763d731c-9821-46d0-b0c8-399c6c513a10:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-763d731c-9821-46d0-b0c8-399c6c513a10:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-763d731c-9821-46d0-b0c8-399c6c513a10-root {
    text-align: center;
  }


#s-763d731c-9821-46d0-b0c8-399c6c513a10.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-763d731c-9821-46d0-b0c8-399c6c513a10-root {
    text-align: center;
  }


#s-763d731c-9821-46d0-b0c8-399c6c513a10.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-763d731c-9821-46d0-b0c8-399c6c513a10-root {
    text-align: center;
  }


#s-763d731c-9821-46d0-b0c8-399c6c513a10.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-763d731c-9821-46d0-b0c8-399c6c513a10-root {
    text-align: center;
  }


#s-763d731c-9821-46d0-b0c8-399c6c513a10.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-763d731c-9821-46d0-b0c8-399c6c513a10-root {
    text-align: center;
  }


#s-763d731c-9821-46d0-b0c8-399c6c513a10.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-da40ae9d-a38a-4a52-85a4-1c4c1872c160 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-da40ae9d-a38a-4a52-85a4-1c4c1872c160 {
  display: none;
}
#s-da40ae9d-a38a-4a52-85a4-1c4c1872c160, #wrap-s-da40ae9d-a38a-4a52-85a4-1c4c1872c160 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-da40ae9d-a38a-4a52-85a4-1c4c1872c160 {
  display: none;
}
#s-da40ae9d-a38a-4a52-85a4-1c4c1872c160, #wrap-s-da40ae9d-a38a-4a52-85a4-1c4c1872c160 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-da40ae9d-a38a-4a52-85a4-1c4c1872c160 {
  
}
}
#s-da40ae9d-a38a-4a52-85a4-1c4c1872c160 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-da40ae9d-a38a-4a52-85a4-1c4c1872c160 .shg-sld-nav-button.shg-sld-left,
#s-da40ae9d-a38a-4a52-85a4-1c4c1872c160 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-0c831e25-56a4-41f9-b0e4-c62d2bb86670 {
  text-align: center;
}







  img.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shogun-image {
    
    
  }


.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670 .shogun-image-content {
  
    align-items: center;
  
}

.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shg-align-container {
  text-align: center
}

.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shogun-image {
    
    
  }


.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670 .shogun-image-content {
  
    align-items: center;
  
}

.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shg-align-container {
  text-align: center
}

.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shogun-image {
    
    
  }


.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670 .shogun-image-content {
  
    align-items: center;
  
}

.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shg-align-container {
  text-align: center
}

.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shogun-image {
    
    
  }


.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670 .shogun-image-content {
  
    align-items: center;
  
}

.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shg-align-container {
  text-align: center
}

.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shogun-image {
  box-sizing: border-box;
}


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





  img.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shogun-image {
    
    
  }


.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670 .shogun-image-content {
  
    align-items: center;
  
}

.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shg-align-container {
  text-align: center
}

.s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0c831e25-56a4-41f9-b0e4-c62d2bb86670.shogun-image {
  box-sizing: border-box;
}


}
#s-ed83d047-07d7-4c19-8502-f26c95854601 {
  margin-top: 3px;
margin-bottom: 3px;
text-align: center;
}
@media (min-width: 1200px){#s-ed83d047-07d7-4c19-8502-f26c95854601 {
  display: none;
}
#s-ed83d047-07d7-4c19-8502-f26c95854601, #wrap-s-ed83d047-07d7-4c19-8502-f26c95854601 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ed83d047-07d7-4c19-8502-f26c95854601 {
  display: none;
}
#s-ed83d047-07d7-4c19-8502-f26c95854601, #wrap-s-ed83d047-07d7-4c19-8502-f26c95854601 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ed83d047-07d7-4c19-8502-f26c95854601 {
  display: none;
}
#s-ed83d047-07d7-4c19-8502-f26c95854601, #wrap-s-ed83d047-07d7-4c19-8502-f26c95854601 { display:none !important; }}






  #s-ed83d047-07d7-4c19-8502-f26c95854601 img.shogun-image {
    

    
    
    
  }


#s-ed83d047-07d7-4c19-8502-f26c95854601 .shogun-image-content {
  
    align-items: center;
  
}

#s-f079032b-20da-48a9-8ca2-954e89ffda4c {
  margin-left: 5%;
margin-right: 5%;
}

#s-7cb57814-8bfe-4c72-ad23-e3b3f1731d38 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-7cb57814-8bfe-4c72-ad23-e3b3f1731d38:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-7cb57814-8bfe-4c72-ad23-e3b3f1731d38:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7cb57814-8bfe-4c72-ad23-e3b3f1731d38-root {
    text-align: center;
  }


#s-7cb57814-8bfe-4c72-ad23-e3b3f1731d38.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7cb57814-8bfe-4c72-ad23-e3b3f1731d38-root {
    text-align: center;
  }


#s-7cb57814-8bfe-4c72-ad23-e3b3f1731d38.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7cb57814-8bfe-4c72-ad23-e3b3f1731d38-root {
    text-align: center;
  }


#s-7cb57814-8bfe-4c72-ad23-e3b3f1731d38.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7cb57814-8bfe-4c72-ad23-e3b3f1731d38-root {
    text-align: center;
  }


#s-7cb57814-8bfe-4c72-ad23-e3b3f1731d38.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7cb57814-8bfe-4c72-ad23-e3b3f1731d38-root {
    text-align: center;
  }


#s-7cb57814-8bfe-4c72-ad23-e3b3f1731d38.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-1a9a85a9-6c7a-465a-9838-258e7943ce19 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-1a9a85a9-6c7a-465a-9838-258e7943ce19 {
  display: none;
}
#s-1a9a85a9-6c7a-465a-9838-258e7943ce19, #wrap-s-1a9a85a9-6c7a-465a-9838-258e7943ce19 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1a9a85a9-6c7a-465a-9838-258e7943ce19 {
  display: none;
}
#s-1a9a85a9-6c7a-465a-9838-258e7943ce19, #wrap-s-1a9a85a9-6c7a-465a-9838-258e7943ce19 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1a9a85a9-6c7a-465a-9838-258e7943ce19 {
  
}
}
#s-1a9a85a9-6c7a-465a-9838-258e7943ce19 .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-1a9a85a9-6c7a-465a-9838-258e7943ce19 .shg-sld-nav-button.shg-sld-left,
#s-1a9a85a9-6c7a-465a-9838-258e7943ce19 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9 {
  text-align: center;
}







  img.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shogun-image {
    
    
  }


.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shg-align-container {
  text-align: center
}

.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shogun-image {
    
    
  }


.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shg-align-container {
  text-align: center
}

.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shogun-image {
    
    
  }


.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shg-align-container {
  text-align: center
}

.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shogun-image {
    
    
  }


.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shg-align-container {
  text-align: center
}

.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shogun-image {
    
    
  }


.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shg-align-container {
  text-align: center
}

.s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c28b7f9-e43b-47c9-87d5-604b88cdd6a9.shogun-image {
  box-sizing: border-box;
}


}
#s-f6852681-2453-4f65-8b74-f6a377eb0044 {
  text-align: center;
}
@media (min-width: 1200px){#s-f6852681-2453-4f65-8b74-f6a377eb0044 {
  display: none;
}
#s-f6852681-2453-4f65-8b74-f6a377eb0044, #wrap-s-f6852681-2453-4f65-8b74-f6a377eb0044 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f6852681-2453-4f65-8b74-f6a377eb0044 {
  display: none;
}
#s-f6852681-2453-4f65-8b74-f6a377eb0044, #wrap-s-f6852681-2453-4f65-8b74-f6a377eb0044 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f6852681-2453-4f65-8b74-f6a377eb0044 {
  display: none;
}
#s-f6852681-2453-4f65-8b74-f6a377eb0044, #wrap-s-f6852681-2453-4f65-8b74-f6a377eb0044 { display:none !important; }}






  #s-f6852681-2453-4f65-8b74-f6a377eb0044 img.shogun-image {
    

    
    
    
  }


#s-f6852681-2453-4f65-8b74-f6a377eb0044 .shogun-image-content {
  
    align-items: center;
  
}

#s-8eb602fb-8f20-4572-b47f-7a46d62540e7 {
  margin-left: 5%;
margin-right: 5%;
}

#s-fdbec11f-2acf-4f8b-a5ed-e14f376dbb2f {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-fdbec11f-2acf-4f8b-a5ed-e14f376dbb2f:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-fdbec11f-2acf-4f8b-a5ed-e14f376dbb2f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-fdbec11f-2acf-4f8b-a5ed-e14f376dbb2f-root {
    text-align: center;
  }


#s-fdbec11f-2acf-4f8b-a5ed-e14f376dbb2f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-fdbec11f-2acf-4f8b-a5ed-e14f376dbb2f-root {
    text-align: center;
  }


#s-fdbec11f-2acf-4f8b-a5ed-e14f376dbb2f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fdbec11f-2acf-4f8b-a5ed-e14f376dbb2f-root {
    text-align: center;
  }


#s-fdbec11f-2acf-4f8b-a5ed-e14f376dbb2f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fdbec11f-2acf-4f8b-a5ed-e14f376dbb2f-root {
    text-align: center;
  }


#s-fdbec11f-2acf-4f8b-a5ed-e14f376dbb2f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-fdbec11f-2acf-4f8b-a5ed-e14f376dbb2f-root {
    text-align: center;
  }


#s-fdbec11f-2acf-4f8b-a5ed-e14f376dbb2f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-b1eadade-1d87-4a53-8c84-4a45af86b46f {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-b1eadade-1d87-4a53-8c84-4a45af86b46f {
  display: none;
}
#s-b1eadade-1d87-4a53-8c84-4a45af86b46f, #wrap-s-b1eadade-1d87-4a53-8c84-4a45af86b46f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b1eadade-1d87-4a53-8c84-4a45af86b46f {
  display: none;
}
#s-b1eadade-1d87-4a53-8c84-4a45af86b46f, #wrap-s-b1eadade-1d87-4a53-8c84-4a45af86b46f { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b1eadade-1d87-4a53-8c84-4a45af86b46f {
  
}
}
#s-b1eadade-1d87-4a53-8c84-4a45af86b46f .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-b1eadade-1d87-4a53-8c84-4a45af86b46f .shg-sld-nav-button.shg-sld-left,
#s-b1eadade-1d87-4a53-8c84-4a45af86b46f .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-9cc914c7-590f-4257-a16d-2776b6d74303 {
  text-align: center;
}







  img.s-9cc914c7-590f-4257-a16d-2776b6d74303.shogun-image {
    
    
  }


.s-9cc914c7-590f-4257-a16d-2776b6d74303 .shogun-image-content {
  
    align-items: center;
  
}

.s-9cc914c7-590f-4257-a16d-2776b6d74303.shg-align-container {
  text-align: center
}

.s-9cc914c7-590f-4257-a16d-2776b6d74303.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cc914c7-590f-4257-a16d-2776b6d74303.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-9cc914c7-590f-4257-a16d-2776b6d74303.shogun-image {
    
    
  }


.s-9cc914c7-590f-4257-a16d-2776b6d74303 .shogun-image-content {
  
    align-items: center;
  
}

.s-9cc914c7-590f-4257-a16d-2776b6d74303.shg-align-container {
  text-align: center
}

.s-9cc914c7-590f-4257-a16d-2776b6d74303.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cc914c7-590f-4257-a16d-2776b6d74303.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9cc914c7-590f-4257-a16d-2776b6d74303.shogun-image {
    
    
  }


.s-9cc914c7-590f-4257-a16d-2776b6d74303 .shogun-image-content {
  
    align-items: center;
  
}

.s-9cc914c7-590f-4257-a16d-2776b6d74303.shg-align-container {
  text-align: center
}

.s-9cc914c7-590f-4257-a16d-2776b6d74303.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cc914c7-590f-4257-a16d-2776b6d74303.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9cc914c7-590f-4257-a16d-2776b6d74303.shogun-image {
    
    
  }


.s-9cc914c7-590f-4257-a16d-2776b6d74303 .shogun-image-content {
  
    align-items: center;
  
}

.s-9cc914c7-590f-4257-a16d-2776b6d74303.shg-align-container {
  text-align: center
}

.s-9cc914c7-590f-4257-a16d-2776b6d74303.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cc914c7-590f-4257-a16d-2776b6d74303.shogun-image {
  box-sizing: border-box;
}


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





  img.s-9cc914c7-590f-4257-a16d-2776b6d74303.shogun-image {
    
    
  }


.s-9cc914c7-590f-4257-a16d-2776b6d74303 .shogun-image-content {
  
    align-items: center;
  
}

.s-9cc914c7-590f-4257-a16d-2776b6d74303.shg-align-container {
  text-align: center
}

.s-9cc914c7-590f-4257-a16d-2776b6d74303.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9cc914c7-590f-4257-a16d-2776b6d74303.shogun-image {
  box-sizing: border-box;
}


}
#s-44388aa5-a5f7-4965-9538-e8560257b6a8 {
  margin-top: 3px;
margin-bottom: 3px;
text-align: center;
}
@media (min-width: 1200px){#s-44388aa5-a5f7-4965-9538-e8560257b6a8 {
  display: none;
}
#s-44388aa5-a5f7-4965-9538-e8560257b6a8, #wrap-s-44388aa5-a5f7-4965-9538-e8560257b6a8 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-44388aa5-a5f7-4965-9538-e8560257b6a8 {
  display: none;
}
#s-44388aa5-a5f7-4965-9538-e8560257b6a8, #wrap-s-44388aa5-a5f7-4965-9538-e8560257b6a8 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-44388aa5-a5f7-4965-9538-e8560257b6a8 {
  display: none;
}
#s-44388aa5-a5f7-4965-9538-e8560257b6a8, #wrap-s-44388aa5-a5f7-4965-9538-e8560257b6a8 { display:none !important; }}






  #s-44388aa5-a5f7-4965-9538-e8560257b6a8 img.shogun-image {
    

    
    
    
  }


#s-44388aa5-a5f7-4965-9538-e8560257b6a8 .shogun-image-content {
  
    align-items: center;
  
}

#s-d47a25f5-358e-4a52-905d-0bf8c7ca663f {
  margin-left: 5%;
margin-right: 5%;
}

#s-8a9b865b-68fa-4207-9476-2d0c47c26373 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-8a9b865b-68fa-4207-9476-2d0c47c26373:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-8a9b865b-68fa-4207-9476-2d0c47c26373:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8a9b865b-68fa-4207-9476-2d0c47c26373-root {
    text-align: center;
  }


#s-8a9b865b-68fa-4207-9476-2d0c47c26373.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8a9b865b-68fa-4207-9476-2d0c47c26373-root {
    text-align: center;
  }


#s-8a9b865b-68fa-4207-9476-2d0c47c26373.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8a9b865b-68fa-4207-9476-2d0c47c26373-root {
    text-align: center;
  }


#s-8a9b865b-68fa-4207-9476-2d0c47c26373.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8a9b865b-68fa-4207-9476-2d0c47c26373-root {
    text-align: center;
  }


#s-8a9b865b-68fa-4207-9476-2d0c47c26373.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8a9b865b-68fa-4207-9476-2d0c47c26373-root {
    text-align: center;
  }


#s-8a9b865b-68fa-4207-9476-2d0c47c26373.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-4e29c47b-be87-4f50-ba9e-473df7434a7a {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-4e29c47b-be87-4f50-ba9e-473df7434a7a {
  display: none;
}
#s-4e29c47b-be87-4f50-ba9e-473df7434a7a, #wrap-s-4e29c47b-be87-4f50-ba9e-473df7434a7a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4e29c47b-be87-4f50-ba9e-473df7434a7a {
  display: none;
}
#s-4e29c47b-be87-4f50-ba9e-473df7434a7a, #wrap-s-4e29c47b-be87-4f50-ba9e-473df7434a7a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4e29c47b-be87-4f50-ba9e-473df7434a7a {
  
}
}
#s-4e29c47b-be87-4f50-ba9e-473df7434a7a .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-4e29c47b-be87-4f50-ba9e-473df7434a7a .shg-sld-nav-button.shg-sld-left,
#s-4e29c47b-be87-4f50-ba9e-473df7434a7a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-498ebc61-d8f7-45ce-9661-916893d0f68c {
  text-align: center;
}







  img.s-498ebc61-d8f7-45ce-9661-916893d0f68c.shogun-image {
    
    
  }


.s-498ebc61-d8f7-45ce-9661-916893d0f68c .shogun-image-content {
  
    align-items: center;
  
}

.s-498ebc61-d8f7-45ce-9661-916893d0f68c.shg-align-container {
  text-align: center
}

.s-498ebc61-d8f7-45ce-9661-916893d0f68c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-498ebc61-d8f7-45ce-9661-916893d0f68c.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-498ebc61-d8f7-45ce-9661-916893d0f68c.shogun-image {
    
    
  }


.s-498ebc61-d8f7-45ce-9661-916893d0f68c .shogun-image-content {
  
    align-items: center;
  
}

.s-498ebc61-d8f7-45ce-9661-916893d0f68c.shg-align-container {
  text-align: center
}

.s-498ebc61-d8f7-45ce-9661-916893d0f68c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-498ebc61-d8f7-45ce-9661-916893d0f68c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-498ebc61-d8f7-45ce-9661-916893d0f68c.shogun-image {
    
    
  }


.s-498ebc61-d8f7-45ce-9661-916893d0f68c .shogun-image-content {
  
    align-items: center;
  
}

.s-498ebc61-d8f7-45ce-9661-916893d0f68c.shg-align-container {
  text-align: center
}

.s-498ebc61-d8f7-45ce-9661-916893d0f68c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-498ebc61-d8f7-45ce-9661-916893d0f68c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-498ebc61-d8f7-45ce-9661-916893d0f68c.shogun-image {
    
    
  }


.s-498ebc61-d8f7-45ce-9661-916893d0f68c .shogun-image-content {
  
    align-items: center;
  
}

.s-498ebc61-d8f7-45ce-9661-916893d0f68c.shg-align-container {
  text-align: center
}

.s-498ebc61-d8f7-45ce-9661-916893d0f68c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-498ebc61-d8f7-45ce-9661-916893d0f68c.shogun-image {
  box-sizing: border-box;
}


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





  img.s-498ebc61-d8f7-45ce-9661-916893d0f68c.shogun-image {
    
    
  }


.s-498ebc61-d8f7-45ce-9661-916893d0f68c .shogun-image-content {
  
    align-items: center;
  
}

.s-498ebc61-d8f7-45ce-9661-916893d0f68c.shg-align-container {
  text-align: center
}

.s-498ebc61-d8f7-45ce-9661-916893d0f68c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-498ebc61-d8f7-45ce-9661-916893d0f68c.shogun-image {
  box-sizing: border-box;
}


}
#s-715ab399-ac13-424d-b725-89c52ad62326 {
  text-align: center;
}
@media (min-width: 1200px){#s-715ab399-ac13-424d-b725-89c52ad62326 {
  display: none;
}
#s-715ab399-ac13-424d-b725-89c52ad62326, #wrap-s-715ab399-ac13-424d-b725-89c52ad62326 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-715ab399-ac13-424d-b725-89c52ad62326 {
  display: none;
}
#s-715ab399-ac13-424d-b725-89c52ad62326, #wrap-s-715ab399-ac13-424d-b725-89c52ad62326 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-715ab399-ac13-424d-b725-89c52ad62326 {
  display: none;
}
#s-715ab399-ac13-424d-b725-89c52ad62326, #wrap-s-715ab399-ac13-424d-b725-89c52ad62326 { display:none !important; }}






  #s-715ab399-ac13-424d-b725-89c52ad62326 img.shogun-image {
    

    
    
    
  }


#s-715ab399-ac13-424d-b725-89c52ad62326 .shogun-image-content {
  
    align-items: center;
  
}

#s-a09e8744-d18c-458f-a2f5-1236f2e1e453 {
  margin-left: 5%;
margin-right: 5%;
}

#s-e02f3733-8ee9-42d5-9945-b9ba6777ec65 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-e02f3733-8ee9-42d5-9945-b9ba6777ec65:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-e02f3733-8ee9-42d5-9945-b9ba6777ec65:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e02f3733-8ee9-42d5-9945-b9ba6777ec65-root {
    text-align: center;
  }


#s-e02f3733-8ee9-42d5-9945-b9ba6777ec65.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e02f3733-8ee9-42d5-9945-b9ba6777ec65-root {
    text-align: center;
  }


#s-e02f3733-8ee9-42d5-9945-b9ba6777ec65.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e02f3733-8ee9-42d5-9945-b9ba6777ec65-root {
    text-align: center;
  }


#s-e02f3733-8ee9-42d5-9945-b9ba6777ec65.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e02f3733-8ee9-42d5-9945-b9ba6777ec65-root {
    text-align: center;
  }


#s-e02f3733-8ee9-42d5-9945-b9ba6777ec65.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e02f3733-8ee9-42d5-9945-b9ba6777ec65-root {
    text-align: center;
  }


#s-e02f3733-8ee9-42d5-9945-b9ba6777ec65.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-c28e838c-f8e9-472a-9ba7-46ca6668d23d {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-c28e838c-f8e9-472a-9ba7-46ca6668d23d {
  display: none;
}
#s-c28e838c-f8e9-472a-9ba7-46ca6668d23d, #wrap-s-c28e838c-f8e9-472a-9ba7-46ca6668d23d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c28e838c-f8e9-472a-9ba7-46ca6668d23d {
  display: none;
}
#s-c28e838c-f8e9-472a-9ba7-46ca6668d23d, #wrap-s-c28e838c-f8e9-472a-9ba7-46ca6668d23d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c28e838c-f8e9-472a-9ba7-46ca6668d23d {
  
}
}
#s-c28e838c-f8e9-472a-9ba7-46ca6668d23d .shg-sld-dot {
  background-color: rgba(255, 255, 255, 1);
}

#s-c28e838c-f8e9-472a-9ba7-46ca6668d23d .shg-sld-nav-button.shg-sld-left,
#s-c28e838c-f8e9-472a-9ba7-46ca6668d23d .shg-sld-nav-button.shg-sld-right {
  fill: rgba(255, 255, 255, 1);
}

#s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714 {
  text-align: center;
}







  img.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shogun-image {
    
    
  }


.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714 .shogun-image-content {
  
    align-items: center;
  
}

.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shg-align-container {
  text-align: center
}

.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shogun-image {
    
    
  }


.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714 .shogun-image-content {
  
    align-items: center;
  
}

.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shg-align-container {
  text-align: center
}

.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shogun-image {
    
    
  }


.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714 .shogun-image-content {
  
    align-items: center;
  
}

.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shg-align-container {
  text-align: center
}

.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shogun-image {
    
    
  }


.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714 .shogun-image-content {
  
    align-items: center;
  
}

.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shg-align-container {
  text-align: center
}

.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shogun-image {
  box-sizing: border-box;
}


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





  img.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shogun-image {
    
    
  }


.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714 .shogun-image-content {
  
    align-items: center;
  
}

.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shg-align-container {
  text-align: center
}

.s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3234e270-f9ad-47e3-bfdd-84cb5c4bb714.shogun-image {
  box-sizing: border-box;
}


}
#s-9e25b652-ed60-44e0-8e01-045a2b41b498 {
  margin-top: 3px;
margin-bottom: 3px;
text-align: center;
}
@media (min-width: 1200px){#s-9e25b652-ed60-44e0-8e01-045a2b41b498 {
  display: none;
}
#s-9e25b652-ed60-44e0-8e01-045a2b41b498, #wrap-s-9e25b652-ed60-44e0-8e01-045a2b41b498 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9e25b652-ed60-44e0-8e01-045a2b41b498 {
  display: none;
}
#s-9e25b652-ed60-44e0-8e01-045a2b41b498, #wrap-s-9e25b652-ed60-44e0-8e01-045a2b41b498 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9e25b652-ed60-44e0-8e01-045a2b41b498 {
  display: none;
}
#s-9e25b652-ed60-44e0-8e01-045a2b41b498, #wrap-s-9e25b652-ed60-44e0-8e01-045a2b41b498 { display:none !important; }}






  #s-9e25b652-ed60-44e0-8e01-045a2b41b498 img.shogun-image {
    

    
    
    
  }


#s-9e25b652-ed60-44e0-8e01-045a2b41b498 .shogun-image-content {
  
    align-items: center;
  
}

#s-4650dd72-4a95-47bb-bf8d-483f38b038cc {
  margin-left: 5%;
margin-right: 5%;
}

#s-d7f8b031-b7af-475d-bf4b-2a615ccdb855 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-d7f8b031-b7af-475d-bf4b-2a615ccdb855:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
background-color: rgba(81, 88, 18, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-d7f8b031-b7af-475d-bf4b-2a615ccdb855:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d7f8b031-b7af-475d-bf4b-2a615ccdb855-root {
    text-align: center;
  }


#s-d7f8b031-b7af-475d-bf4b-2a615ccdb855.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d7f8b031-b7af-475d-bf4b-2a615ccdb855-root {
    text-align: center;
  }


#s-d7f8b031-b7af-475d-bf4b-2a615ccdb855.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d7f8b031-b7af-475d-bf4b-2a615ccdb855-root {
    text-align: center;
  }


#s-d7f8b031-b7af-475d-bf4b-2a615ccdb855.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d7f8b031-b7af-475d-bf4b-2a615ccdb855-root {
    text-align: center;
  }


#s-d7f8b031-b7af-475d-bf4b-2a615ccdb855.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d7f8b031-b7af-475d-bf4b-2a615ccdb855-root {
    text-align: center;
  }


#s-d7f8b031-b7af-475d-bf4b-2a615ccdb855.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-ddc4244b-59cb-4f49-b6e2-55e17cd21f9d hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}.animate__animated.animate__infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animate__animated.animate__repeat-1{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-iteration-count:var(--animate-repeat);animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{-webkit-animation-iteration-count:2;animation-iteration-count:2;-webkit-animation-iteration-count:calc(var(--animate-repeat)*2);animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{-webkit-animation-iteration-count:3;animation-iteration-count:3;-webkit-animation-iteration-count:calc(var(--animate-repeat)*3);animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-delay:var(--animate-delay);animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{-webkit-animation-delay:2s;animation-delay:2s;-webkit-animation-delay:calc(var(--animate-delay)*2);animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{-webkit-animation-delay:3s;animation-delay:3s;-webkit-animation-delay:calc(var(--animate-delay)*3);animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{-webkit-animation-delay:4s;animation-delay:4s;-webkit-animation-delay:calc(var(--animate-delay)*4);animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{-webkit-animation-delay:5s;animation-delay:5s;-webkit-animation-delay:calc(var(--animate-delay)*5);animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-duration:calc(var(--animate-duration)/2);animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-duration:calc(var(--animate-duration)*0.8);animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-duration:calc(var(--animate-duration)*3);animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@-webkit-keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}@keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0) scaleY(.95);transform:translateZ(0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shakeX{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.animate__shakeX{-webkit-animation-name:shakeX;animation-name:shakeX}@-webkit-keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@keyframes shakeY{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}.animate__shakeY{-webkit-animation-name:shakeY;animation-name:shakeY}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.animate__headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.animate__swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.animate__heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-duration:calc(var(--animate-duration)*1.3);animation-duration:calc(var(--animate-duration)*1.3);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(.7);transform:translateY(-1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInDown{-webkit-animation-name:backInDown;animation-name:backInDown}@-webkit-keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInLeft{-webkit-animation-name:backInLeft;animation-name:backInLeft}@-webkit-keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}80%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInRight{-webkit-animation-name:backInRight;animation-name:backInRight}@-webkit-keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(.7);transform:translateY(1200px) scale(.7);opacity:.7}80%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.animate__backInUp{-webkit-animation-name:backInUp;animation-name:backInUp}@-webkit-keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}@keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(700px) scale(.7);transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{-webkit-animation-name:backOutDown;animation-name:backOutDown}@-webkit-keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}@keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(-2000px) scale(.7);transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{-webkit-animation-name:backOutLeft;animation-name:backOutLeft}@-webkit-keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}@keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0) scale(.7);transform:translateX(0) scale(.7);opacity:.7}to{-webkit-transform:translateX(2000px) scale(.7);transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{-webkit-animation-name:backOutRight;animation-name:backOutRight}@-webkit-keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}@keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0) scale(.7);transform:translateY(0) scale(.7);opacity:.7}to{-webkit-transform:translateY(-700px) scale(.7);transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{-webkit-animation-name:backOutUp;animation-name:backOutUp}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}.animate__bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(.9);transform:translate3d(0,25px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(.95);transform:translate3d(0,-10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(.985);transform:translate3d(0,5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(.95);transform:translate3d(0,10px,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(.985);transform:translate3d(0,-5px,0) scaleY(.985)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.animate__bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(.985);transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(.9);transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(.985);transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(.9);transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopLeft{-webkit-animation-name:fadeInTopLeft;animation-name:fadeInTopLeft}@-webkit-keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInTopRight{0%{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInTopRight{-webkit-animation-name:fadeInTopRight;animation-name:fadeInTopRight}@-webkit-keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomLeft{-webkit-animation-name:fadeInBottomLeft;animation-name:fadeInBottomLeft}@-webkit-keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInBottomRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__fadeInBottomRight{-webkit-animation-name:fadeInBottomRight;animation-name:fadeInBottomRight}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}@keyframes fadeOutTopLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{-webkit-animation-name:fadeOutTopLeft;animation-name:fadeOutTopLeft}@-webkit-keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}@keyframes fadeOutTopRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{-webkit-animation-name:fadeOutTopRight;animation-name:fadeOutTopRight}@-webkit-keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}@keyframes fadeOutBottomRight{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{-webkit-animation-name:fadeOutBottomRight;animation-name:fadeOutBottomRight}@-webkit-keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}@keyframes fadeOutBottomLeft{0%{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{-webkit-animation-name:fadeOutBottomLeft;animation-name:fadeOutBottomLeft}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animate__animated.animate__flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.animate__flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInRight{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInRight{-webkit-animation-name:lightSpeedInRight;animation-name:lightSpeedInRight;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedInLeft{0%{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__lightSpeedInLeft{-webkit-animation-name:lightSpeedInLeft;animation-name:lightSpeedInLeft;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOutRight{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{-webkit-animation-name:lightSpeedOutRight;animation-name:lightSpeedOutRight;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}@keyframes lightSpeedOutLeft{0%{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{-webkit-animation-name:lightSpeedOutLeft;animation-name:lightSpeedOutLeft;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{opacity:1}to{-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.animate__rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{opacity:1}to{-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{opacity:1}to{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{opacity:1}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2);-webkit-animation-name:hinge;animation-name:hinge;-webkit-transform-origin:top left;transform-origin:top left}@-webkit-keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.animate__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft;-webkit-transform-origin:left center;transform-origin:left center}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight;-webkit-transform-origin:right center;transform-origin:right center}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.animate__slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.animate__slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.animate__slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.animate__slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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