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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-box-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

#s-fbfd41ee-7683-45eb-b64e-76ae7ed4b6aa {
  border-style: solid;
margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: #000;
border-style: solid;
min-height: 50px;
}








#s-fbfd41ee-7683-45eb-b64e-76ae7ed4b6aa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fbfd41ee-7683-45eb-b64e-76ae7ed4b6aa.shg-box.shg-c {
  justify-content: center;
}

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

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

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

@media (min-width: 0px) {
[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e6637ae1-8b84-4910-bf0f-2eb6c02b87d5"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-048d243e-df77-4d3d-ad0c-96a5995f2dd6 {
  min-height: 50px;
}








#s-048d243e-df77-4d3d-ad0c-96a5995f2dd6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-048d243e-df77-4d3d-ad0c-96a5995f2dd6.shg-box.shg-c {
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content-bottom {
  align-items: flex-end;
}
#s-6c45ee49-84ce-4697-927f-6581ad77ff5f {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
text-align: center;
}




  #s-6c45ee49-84ce-4697-927f-6581ad77ff5f img.shogun-image {
    
    width: px;
  }


#s-6c45ee49-84ce-4697-927f-6581ad77ff5f .shogun-image-content {
  
    align-items: center;
  
}

#s-df1fbe80-ff50-4d15-a36e-66cf5586da8e {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-2d021521-7083-47f7-af6a-c2728ba1812d {
  text-align: center;
}




  #s-2d021521-7083-47f7-af6a-c2728ba1812d img.shogun-image {
    
    width: px;
  }


#s-2d021521-7083-47f7-af6a-c2728ba1812d .shogun-image-content {
  
    align-items: center;
  
}

.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

#s-38d7040f-3713-4d2b-9cce-a2013fc5de20 .shogun-tabs {
  justify-content: flex-start;
}


  #s-38d7040f-3713-4d2b-9cce-a2013fc5de20 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(244, 244, 244, 1);
    border: 1px solid #DDDDDD;
  }
  #s-38d7040f-3713-4d2b-9cce-a2013fc5de20 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: #F4F4F4;
    border: 1px solid rgba(207, 207, 207, 1);
  }
#s-38d7040f-3713-4d2b-9cce-a2013fc5de20 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(172, 173, 175, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-38d7040f-3713-4d2b-9cce-a2013fc5de20 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(203, 136, 104, 1);
}

#s-38d7040f-3713-4d2b-9cce-a2013fc5de20 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: #F4F4F4;
}

#s-38d7040f-3713-4d2b-9cce-a2013fc5de20 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(207, 207, 207, 1);
}

#s-2c7ee506-07e4-4333-85ee-3d1259220186 {
  padding-left: 10px;
padding-right: 10px;
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-ced60cda-b1b5-407e-94d4-0f4f3f23bc3a {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-afad4711-5b46-4001-8d3e-f00a3e97609b {
  padding-left: 10px;
padding-right: 10px;
}

#s-bcbd1097-7903-48fc-9790-a027c8851a5b {
  margin-top: 10px;
min-height: 50px;
}








#s-bcbd1097-7903-48fc-9790-a027c8851a5b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bcbd1097-7903-48fc-9790-a027c8851a5b.shg-box.shg-c {
  justify-content: center;
}

#s-a9b0b6c3-3999-46d9-ac80-d5dcf6986ad1 {
  margin-left: 0px;
margin-right: 0px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (min-width: 1200px){#s-a9b0b6c3-3999-46d9-ac80-d5dcf6986ad1 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a9b0b6c3-3999-46d9-ac80-d5dcf6986ad1 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a9b0b6c3-3999-46d9-ac80-d5dcf6986ad1 {
  
}
}@media (max-width: 767px){#s-a9b0b6c3-3999-46d9-ac80-d5dcf6986ad1 {
  
}
}







#s-a9b0b6c3-3999-46d9-ac80-d5dcf6986ad1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a9b0b6c3-3999-46d9-ac80-d5dcf6986ad1.shg-box.shg-c {
  justify-content: flex-start;
}

#s-bf663d12-9d04-4588-aca8-4f4025b06e64 {
  margin-top: 25px;
margin-left: 50px;
margin-bottom: 25px;
margin-right: 50px;
background-color: rgba(26, 26, 26, 0);
}
@media (min-width: 1200px){#s-bf663d12-9d04-4588-aca8-4f4025b06e64 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bf663d12-9d04-4588-aca8-4f4025b06e64 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bf663d12-9d04-4588-aca8-4f4025b06e64 {
  
}
}@media (max-width: 767px){#s-bf663d12-9d04-4588-aca8-4f4025b06e64 {
  
}
}
@media (min-width: 0px) {
[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 12.5px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 18.75px);
}

}

@media (min-width: 992px) {
[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 18.75px);
}

}

@media (min-width: 1200px) {
[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 18.75px);
}

[id="s-bf663d12-9d04-4588-aca8-4f4025b06e64"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 18.75px);
}

}

#s-f0725031-5302-42bb-8ea8-43c7ffc0624a {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-f0725031-5302-42bb-8ea8-43c7ffc0624a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f0725031-5302-42bb-8ea8-43c7ffc0624a {
  cursor: pointer;
}#s-f0725031-5302-42bb-8ea8-43c7ffc0624a.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-2f765808-1ce6-4eb1-962a-d44593711d3b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 10.0px);
}

}

#s-301837f6-3e3e-4aa1-919b-423fe8f20aa4 {
  margin-left: 20px;
margin-right: 20px;
}

#s-301837f6-3e3e-4aa1-919b-423fe8f20aa4 .shogun-icon-wrapper {
  text-align: left;
}


#s-301837f6-3e3e-4aa1-919b-423fe8f20aa4 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(14, 37, 58, 1);
}

#s-3b2a1d4a-b135-4497-8b30-781f9c752f2b {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-9f1cb478-69a5-44e3-a557-d6bf86b1c325 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-9f1cb478-69a5-44e3-a557-d6bf86b1c325 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9f1cb478-69a5-44e3-a557-d6bf86b1c325 {
  cursor: pointer;
}#s-9f1cb478-69a5-44e3-a557-d6bf86b1c325.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-3eadd22d-df53-40e4-b982-09ee25a22550"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 10.0px);
}

}

#s-cd6350c2-a571-4645-a796-4fa3653d4097 {
  margin-left: 20px;
margin-right: 20px;
}

#s-cd6350c2-a571-4645-a796-4fa3653d4097 .shogun-icon-wrapper {
  text-align: left;
}


#s-cd6350c2-a571-4645-a796-4fa3653d4097 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(14, 37, 58, 1);
}

#s-455e6a6b-9b63-434a-8871-eaef7feffe9c {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-947d778f-36ab-48fa-89ed-335d8a98ec90 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-947d778f-36ab-48fa-89ed-335d8a98ec90 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-947d778f-36ab-48fa-89ed-335d8a98ec90 {
  cursor: pointer;
}#s-947d778f-36ab-48fa-89ed-335d8a98ec90.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-5625449e-b8c8-4d62-b85c-934e1cc44aee"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 10.0px);
}

}

#s-f0bb8baa-a735-4aa5-ae35-0c2c59d519bc {
  margin-left: 20px;
margin-right: 20px;
}

#s-f0bb8baa-a735-4aa5-ae35-0c2c59d519bc .shogun-icon-wrapper {
  text-align: left;
}


#s-f0bb8baa-a735-4aa5-ae35-0c2c59d519bc .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(14, 37, 58, 1);
}

#s-2f22a449-d7c7-4c0b-a802-aa467169f61f {
  margin-top: 10px;
margin-bottom: 10px;
margin-right: 0px;
}

#s-99be99a0-d2f7-4b1f-bfd6-13cc57f392f7 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-99be99a0-d2f7-4b1f-bfd6-13cc57f392f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-99be99a0-d2f7-4b1f-bfd6-13cc57f392f7 {
  cursor: pointer;
}#s-99be99a0-d2f7-4b1f-bfd6-13cc57f392f7.shg-box.shg-c {
  justify-content: center;
}

#s-8aad1c15-ea3b-4801-b542-76769547f568 {
  margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-8aad1c15-ea3b-4801-b542-76769547f568"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 10.0px);
}

}

#s-0a1f97a3-da81-43f8-8d9b-a8da669073cc {
  margin-left: 20px;
margin-right: 20px;
}

#s-0a1f97a3-da81-43f8-8d9b-a8da669073cc .shogun-icon-wrapper {
  text-align: left;
}


#s-0a1f97a3-da81-43f8-8d9b-a8da669073cc .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(14, 37, 58, 1);
}

#s-9a68b1a2-dae1-4a8f-b131-48c66a9ea933 {
  margin-top: 10px;
margin-bottom: 10px;
margin-right: 0px;
}

#s-459756c1-df00-4911-bdaf-549997b3d8b7 {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 500px;
background-position: right center;
}
@media (min-width: 1200px){#s-459756c1-df00-4911-bdaf-549997b3d8b7 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-459756c1-df00-4911-bdaf-549997b3d8b7 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-459756c1-df00-4911-bdaf-549997b3d8b7 {
  
}
}@media (max-width: 767px){#s-459756c1-df00-4911-bdaf-549997b3d8b7 {
  
}
}







#s-459756c1-df00-4911-bdaf-549997b3d8b7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-459756c1-df00-4911-bdaf-549997b3d8b7.shg-box.shg-c {
  justify-content: center;
}

#s-55da4002-6e20-457f-aae1-d688f947a3d8 {
  margin-top: 50px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
border-radius: 0px;
background-color: rgba(237, 237, 237, 1);
}

@media (min-width: 0px) {
[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-55da4002-6e20-457f-aae1-d688f947a3d8"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-d901fcf5-86a1-4f64-891c-b152ae5e63c5 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-d901fcf5-86a1-4f64-891c-b152ae5e63c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d901fcf5-86a1-4f64-891c-b152ae5e63c5.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-a1cc2d63-77e7-4675-ad7f-eb4c07e29f73"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
}

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

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

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

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

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

  to {
    opacity: 1;
  }
}

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

  to {
    opacity: 1;
  }
}

#s-e9a0e79b-8472-4cf7-ad12-ed1c896dd4e4 {
  margin-top: 15px;
margin-bottom: 15px;
padding-top: 10px;
padding-bottom: 10px;
}

#s-20350545-703d-4028-a2c1-62c4b2a011d0 {
  text-align: center;
}




  #s-20350545-703d-4028-a2c1-62c4b2a011d0 img.shogun-image {
    
    width: px;
  }


#s-20350545-703d-4028-a2c1-62c4b2a011d0 .shogun-image-content {
  
    align-items: center;
  
}

#s-2a6d42dc-f680-41c8-b025-975313a792ff {
  text-align: center;
}




  #s-2a6d42dc-f680-41c8-b025-975313a792ff img.shogun-image {
    
    width: px;
  }


#s-2a6d42dc-f680-41c8-b025-975313a792ff .shogun-image-content {
  
    align-items: center;
  
}

#s-f38f9814-5c7f-4081-92cd-47465903e833 {
  text-align: center;
}




  #s-f38f9814-5c7f-4081-92cd-47465903e833 img.shogun-image {
    
    width: px;
  }


#s-f38f9814-5c7f-4081-92cd-47465903e833 .shogun-image-content {
  
    align-items: center;
  
}

#s-61a03838-6a34-48cf-b6c8-b24eaff3c100 {
  text-align: center;
}




  #s-61a03838-6a34-48cf-b6c8-b24eaff3c100 img.shogun-image {
    
    width: px;
  }


#s-61a03838-6a34-48cf-b6c8-b24eaff3c100 .shogun-image-content {
  
    align-items: center;
  
}

#s-200a9f29-2727-4cdc-9d0d-41b77133ca9b {
  text-align: center;
}




  #s-200a9f29-2727-4cdc-9d0d-41b77133ca9b img.shogun-image {
    
    width: px;
  }


#s-200a9f29-2727-4cdc-9d0d-41b77133ca9b .shogun-image-content {
  
    align-items: center;
  
}

#s-e7029b60-c541-43ec-8a80-a22af367692c {
  text-align: center;
}




  #s-e7029b60-c541-43ec-8a80-a22af367692c img.shogun-image {
    
    width: px;
  }


#s-e7029b60-c541-43ec-8a80-a22af367692c .shogun-image-content {
  
    align-items: center;
  
}

#s-0f3dc9a0-570c-4d3f-882d-1d77f41f947a {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-e3704304-9b6c-4646-9d3e-655d8890c0d0 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-fa13e90e-419f-4025-af05-68b64947fffc {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-7c5d33b2-e574-4158-8051-e50f797ae5b2 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-1c046d13-56aa-40aa-8825-5a800693ad0c {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-d1108454-3e47-417a-a59d-e0fcd5b28899 {
  margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
}

#s-0a16e8a4-494d-49c2-8e05-d0ba8cca1c86 {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0);
border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(23, 143, 238, 1);
border-radius: 0px;
min-height: 400px;
background-color: rgba(237, 237, 237, 1);
}
@media (min-width: 1200px){#s-0a16e8a4-494d-49c2-8e05-d0ba8cca1c86 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0a16e8a4-494d-49c2-8e05-d0ba8cca1c86 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-0a16e8a4-494d-49c2-8e05-d0ba8cca1c86 {
  
}
}@media (max-width: 767px){#s-0a16e8a4-494d-49c2-8e05-d0ba8cca1c86 {
  
}
}







#s-0a16e8a4-494d-49c2-8e05-d0ba8cca1c86 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-0a16e8a4-494d-49c2-8e05-d0ba8cca1c86.shg-box.shg-c {
  justify-content: center;
}

#s-8b196053-7f40-498d-bf72-14c12b6e8da0 {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0);
border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(23, 143, 238, 1);
border-radius: 0px;
min-height: 400px;
background-color: rgba(237, 237, 237, 1);
}
@media (min-width: 1200px){#s-8b196053-7f40-498d-bf72-14c12b6e8da0 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8b196053-7f40-498d-bf72-14c12b6e8da0 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-8b196053-7f40-498d-bf72-14c12b6e8da0 {
  
}
}@media (max-width: 767px){#s-8b196053-7f40-498d-bf72-14c12b6e8da0 {
  
}
}







#s-8b196053-7f40-498d-bf72-14c12b6e8da0 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-8b196053-7f40-498d-bf72-14c12b6e8da0.shg-box.shg-c {
  justify-content: center;
}

#s-8eb00e8f-e505-4749-a850-a69c4ffaf5e8 {
  border-style: solid;
margin-top: 15px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 20px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(219, 219, 219, 1);
background-color: rgba(0, 0, 0, 0);
}

@media (min-width: 0px) {
[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-be60f659-14f1-4284-9b70-7f7e0b418e0b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-edea878b-e422-4fc1-bbfa-db01e06c132c {
  margin-bottom: 0px;
padding-left: 20px;
padding-right: 20px;
}

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

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

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

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

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

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

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

#s-3c363103-956e-4ba7-aabe-f29d9472501d {
  background-image: url(none);
background-repeat: no-repeat;
border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(32, 50, 67, 1);
border-radius: 30px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(32, 50, 67, 1);
}
#s-3c363103-956e-4ba7-aabe-f29d9472501d:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(32, 50, 67, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-3c363103-956e-4ba7-aabe-f29d9472501d:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-3c363103-956e-4ba7-aabe-f29d9472501d.shg-btn {
  color: rgba(32, 50, 67, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-f71c9d22-f8b6-493a-966e-86110120a62d {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
margin-bottom: 10px;
padding-top: 25px;
padding-bottom: 25px;
min-height: 500px;
background-position: center center;
}








#s-f71c9d22-f8b6-493a-966e-86110120a62d > .shg-box-overlay {
  background-color: rgba(66, 66, 66, 1);
  opacity: 0.6;
}#s-f71c9d22-f8b6-493a-966e-86110120a62d.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-1c8ded5f-ec20-4db0-881d-08af2960acdf"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-16a5c1b6-edd5-4de0-b605-bc898ab30ea9 {
  min-height: 50px;
}








#s-16a5c1b6-edd5-4de0-b605-bc898ab30ea9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-16a5c1b6-edd5-4de0-b605-bc898ab30ea9.shg-box.shg-c {
  justify-content: center;
}

#s-08987404-ce9e-4679-9818-21cd17f57caf {
  opacity: 1;
text-align: center;
}




  #s-08987404-ce9e-4679-9818-21cd17f57caf img.shogun-image {
    
    width: px;
  }


#s-08987404-ce9e-4679-9818-21cd17f57caf .shogun-image-content {
  
    align-items: center;
  
}

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

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

#s-e6bf7b46-bbff-437d-ac82-3a2bc7081e97 {
  padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
text-align: center;
}

#s-e6bf7b46-bbff-437d-ac82-3a2bc7081e97 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 30px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-e4691ad1-f285-426f-b42b-e2c2d1624cbe {
  padding-top: 15px;
padding-bottom: 15px;
}

@media (min-width: 0px) {
[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-e4691ad1-f285-426f-b42b-e2c2d1624cbe"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-5dd47f53-8965-4172-a853-5f3f32075fc6 {
  min-height: 50px;
}








#s-5dd47f53-8965-4172-a853-5f3f32075fc6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5dd47f53-8965-4172-a853-5f3f32075fc6.shg-box.shg-c {
  justify-content: flex-start;
}

#s-ca205c40-e1ea-424d-a851-ddb2ad4b0439 {
  padding-top: 35px;
padding-bottom: 15px;
text-align: center;
}

#s-ca205c40-e1ea-424d-a851-ddb2ad4b0439 .shogun-heading-component h3 {
  color: rgba(203, 137, 105, 1);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-c482297d-fc28-44e8-ad8e-fd6344afcd01 {
  padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
text-align: center;
}




  #s-c482297d-fc28-44e8-ad8e-fd6344afcd01 img.shogun-image {
    
    width: px;
  }


#s-c482297d-fc28-44e8-ad8e-fd6344afcd01 .shogun-image-content {
  
    align-items:  flex-start;
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-69b4567b-e03b-4e8f-bdcb-ae554388677c {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 25px;
padding-right: 15px;
}

#s-69b4567b-e03b-4e8f-bdcb-ae554388677c > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-69b4567b-e03b-4e8f-bdcb-ae554388677c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-69b4567b-e03b-4e8f-bdcb-ae554388677c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(14, 37, 58, 1);
}

#s-69b4567b-e03b-4e8f-bdcb-ae554388677c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-69b4567b-e03b-4e8f-bdcb-ae554388677c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(14, 37, 58, 1);
  text-align: center;
  font-family: Raleway;
  font-weight: ;
  font-style: ;
  font-size: 18px;
}

#s-69b4567b-e03b-4e8f-bdcb-ae554388677c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-80760815-264d-4703-9dac-a7b28441be00 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
text-align: center;
background-color: rgba(14, 37, 58, 1);
text-decoration: none;
}
#s-80760815-264d-4703-9dac-a7b28441be00:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-80760815-264d-4703-9dac-a7b28441be00:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-80760815-264d-4703-9dac-a7b28441be00.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-09d346ad-160b-4920-8dca-3b4af8139041 {
  padding-left: 15px;
padding-right: 15px;
}

#s-188520fd-f4d2-4fd2-bffe-2c8fcfcfc626 {
  padding-top: 35px;
padding-bottom: 15px;
text-align: center;
}

#s-188520fd-f4d2-4fd2-bffe-2c8fcfcfc626 .shogun-heading-component h3 {
  color: rgba(203, 137, 105, 1);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-3497f4ce-fb8b-4533-bf62-02b8f0812bb6 {
  padding-bottom: 20px;
text-align: center;
}
@media (min-width: 1200px){#s-3497f4ce-fb8b-4533-bf62-02b8f0812bb6 {
  display: none;
}
#s-3497f4ce-fb8b-4533-bf62-02b8f0812bb6, #wrap-s-3497f4ce-fb8b-4533-bf62-02b8f0812bb6 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3497f4ce-fb8b-4533-bf62-02b8f0812bb6 {
  display: none;
}
#s-3497f4ce-fb8b-4533-bf62-02b8f0812bb6, #wrap-s-3497f4ce-fb8b-4533-bf62-02b8f0812bb6 { display:none !important; }}



  #s-3497f4ce-fb8b-4533-bf62-02b8f0812bb6 img.shogun-image {
    
    width: px;
  }


#s-3497f4ce-fb8b-4533-bf62-02b8f0812bb6 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-8697d2c7-4c20-4a79-a200-183f7fe01e0f {
  padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-8697d2c7-4c20-4a79-a200-183f7fe01e0f {
  display: none;
}
#s-8697d2c7-4c20-4a79-a200-183f7fe01e0f, #wrap-s-8697d2c7-4c20-4a79-a200-183f7fe01e0f { display:none !important; }}@media (max-width: 767px){#s-8697d2c7-4c20-4a79-a200-183f7fe01e0f {
  display: none;
}
#s-8697d2c7-4c20-4a79-a200-183f7fe01e0f, #wrap-s-8697d2c7-4c20-4a79-a200-183f7fe01e0f { display:none !important; }}




#s-8697d2c7-4c20-4a79-a200-183f7fe01e0f .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-24ec304d-b094-47b8-ab6a-90eb80fcc521 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 25px;
padding-right: 15px;
}

#s-24ec304d-b094-47b8-ab6a-90eb80fcc521 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-24ec304d-b094-47b8-ab6a-90eb80fcc521 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-24ec304d-b094-47b8-ab6a-90eb80fcc521 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(14, 37, 58, 1);
}

#s-24ec304d-b094-47b8-ab6a-90eb80fcc521 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-24ec304d-b094-47b8-ab6a-90eb80fcc521 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(14, 37, 58, 1);
  text-align: center;
  font-family: Raleway;
  font-weight: ;
  font-style: ;
  font-size: 20px;
}

#s-24ec304d-b094-47b8-ab6a-90eb80fcc521 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 20px;
}
#s-8b89a619-d03a-4024-8317-dc16f7331c84 {
  padding-left: 15px;
padding-right: 15px;
}

#s-6ecfab74-d20b-4fdf-b1e0-5f725d41b15e {
  padding-top: 35px;
padding-bottom: 15px;
text-align: center;
}

#s-6ecfab74-d20b-4fdf-b1e0-5f725d41b15e .shogun-heading-component h3 {
  color: rgba(203, 137, 105, 1);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-e153f28f-c5e9-4aaf-81a2-0154fc3d41f0 {
  text-align: center;
}




  #s-e153f28f-c5e9-4aaf-81a2-0154fc3d41f0 img.shogun-image {
    
    width: px;
  }


#s-e153f28f-c5e9-4aaf-81a2-0154fc3d41f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-d819fddb-7c0f-4096-a4a4-299d0fc7c666 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 25px;
padding-right: 15px;
}

#s-d819fddb-7c0f-4096-a4a4-299d0fc7c666 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-d819fddb-7c0f-4096-a4a4-299d0fc7c666 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-d819fddb-7c0f-4096-a4a4-299d0fc7c666 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(14, 37, 58, 1);
}

#s-d819fddb-7c0f-4096-a4a4-299d0fc7c666 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-d819fddb-7c0f-4096-a4a4-299d0fc7c666 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(14, 37, 58, 1);
  text-align: center;
  font-family: Raleway;
  font-weight: ;
  font-style: ;
  font-size: 18px;
}

#s-d819fddb-7c0f-4096-a4a4-299d0fc7c666 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-2b7a064b-e34e-4d67-bfe6-4a5ffa4cb34b {
  padding-left: 15px;
padding-right: 15px;
}

#s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af {
  padding-top: 15px;
padding-bottom: 15px;
}

@media (min-width: 0px) {
[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c1f99832-e8d7-42f2-bbd8-3db5df6ef2af"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-72bd13b4-2801-48c6-8781-05b5636270c5 {
  min-height: 50px;
}








#s-72bd13b4-2801-48c6-8781-05b5636270c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-72bd13b4-2801-48c6-8781-05b5636270c5.shg-box.shg-c {
  justify-content: flex-start;
}

#s-db490c25-2b18-463f-8d57-5d8916d1eda0 {
  padding-top: 35px;
padding-bottom: 15px;
text-align: center;
}

#s-db490c25-2b18-463f-8d57-5d8916d1eda0 .shogun-heading-component h3 {
  color: rgba(203, 137, 105, 1);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-142fb7a6-cd5a-42eb-9c3c-cb231e88ea1c {
  padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
text-align: center;
}




  #s-142fb7a6-cd5a-42eb-9c3c-cb231e88ea1c img.shogun-image {
    
    width: px;
  }


#s-142fb7a6-cd5a-42eb-9c3c-cb231e88ea1c .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-32ec98c5-dd1b-4a16-b2d7-dc3e721de0b5 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 25px;
padding-right: 15px;
}

#s-32ec98c5-dd1b-4a16-b2d7-dc3e721de0b5 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-32ec98c5-dd1b-4a16-b2d7-dc3e721de0b5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-32ec98c5-dd1b-4a16-b2d7-dc3e721de0b5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(14, 37, 58, 1);
}

#s-32ec98c5-dd1b-4a16-b2d7-dc3e721de0b5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-32ec98c5-dd1b-4a16-b2d7-dc3e721de0b5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(14, 37, 58, 1);
  text-align: center;
  font-family: Raleway;
  font-weight: ;
  font-style: ;
  font-size: 18px;
}

#s-32ec98c5-dd1b-4a16-b2d7-dc3e721de0b5 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-41ae5ed2-eef1-499e-a773-6e0bc4ac1662 {
  padding-left: 15px;
padding-right: 15px;
}

#s-9582cb95-4042-4f81-91c5-75c84ae55ead {
  padding-top: 35px;
padding-bottom: 15px;
text-align: center;
}

#s-9582cb95-4042-4f81-91c5-75c84ae55ead .shogun-heading-component h3 {
  color: rgba(203, 137, 105, 1);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-8eb7a7b9-38af-4009-850c-9b74fac4eb6f {
  padding-bottom: 20px;
text-align: center;
}
@media (min-width: 1200px){#s-8eb7a7b9-38af-4009-850c-9b74fac4eb6f {
  display: none;
}
#s-8eb7a7b9-38af-4009-850c-9b74fac4eb6f, #wrap-s-8eb7a7b9-38af-4009-850c-9b74fac4eb6f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8eb7a7b9-38af-4009-850c-9b74fac4eb6f {
  display: none;
}
#s-8eb7a7b9-38af-4009-850c-9b74fac4eb6f, #wrap-s-8eb7a7b9-38af-4009-850c-9b74fac4eb6f { display:none !important; }}



  #s-8eb7a7b9-38af-4009-850c-9b74fac4eb6f img.shogun-image {
    
    width: px;
  }


#s-8eb7a7b9-38af-4009-850c-9b74fac4eb6f .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-a70dec2a-ad2c-4740-81ad-1efb07bec079 {
  padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-a70dec2a-ad2c-4740-81ad-1efb07bec079 {
  display: none;
}
#s-a70dec2a-ad2c-4740-81ad-1efb07bec079, #wrap-s-a70dec2a-ad2c-4740-81ad-1efb07bec079 { display:none !important; }}@media (max-width: 767px){#s-a70dec2a-ad2c-4740-81ad-1efb07bec079 {
  display: none;
}
#s-a70dec2a-ad2c-4740-81ad-1efb07bec079, #wrap-s-a70dec2a-ad2c-4740-81ad-1efb07bec079 { display:none !important; }}



  #s-a70dec2a-ad2c-4740-81ad-1efb07bec079 img.shogun-image {
    
    width: px;
  }


#s-a70dec2a-ad2c-4740-81ad-1efb07bec079 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-bf9fa4e2-9bc1-4d77-bf45-92f0a537a222 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 25px;
padding-right: 15px;
}

#s-bf9fa4e2-9bc1-4d77-bf45-92f0a537a222 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-bf9fa4e2-9bc1-4d77-bf45-92f0a537a222 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-bf9fa4e2-9bc1-4d77-bf45-92f0a537a222 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(14, 37, 58, 1);
}

#s-bf9fa4e2-9bc1-4d77-bf45-92f0a537a222 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-bf9fa4e2-9bc1-4d77-bf45-92f0a537a222 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(14, 37, 58, 1);
  text-align: center;
  font-family: Raleway;
  font-weight: ;
  font-style: ;
  font-size: 18px;
}

#s-bf9fa4e2-9bc1-4d77-bf45-92f0a537a222 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-f74683e3-142c-40fe-893c-76126986e2cb {
  padding-left: 15px;
padding-right: 15px;
}

#s-7fda4ac4-89d9-4b75-94c1-5da44b35b55f {
  padding-top: 35px;
padding-bottom: 15px;
text-align: center;
}

#s-7fda4ac4-89d9-4b75-94c1-5da44b35b55f .shogun-heading-component h3 {
  color: rgba(203, 137, 105, 1);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-fc328e65-dcdf-4df5-bdc7-969fb9da975b {
  padding-top: 8px;
padding-left: 15px;
padding-bottom: 8px;
padding-right: 15px;
text-align: center;
}




  #s-fc328e65-dcdf-4df5-bdc7-969fb9da975b img.shogun-image {
    
    width: px;
  }


#s-fc328e65-dcdf-4df5-bdc7-969fb9da975b .shogun-image-content {
  
    align-items: center;
  
}

#s-17e68fb1-a927-4a96-b2c4-b9e4d30b945c {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 25px;
padding-right: 15px;
}

#s-17e68fb1-a927-4a96-b2c4-b9e4d30b945c > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-17e68fb1-a927-4a96-b2c4-b9e4d30b945c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-17e68fb1-a927-4a96-b2c4-b9e4d30b945c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(14, 37, 58, 1);
}

#s-17e68fb1-a927-4a96-b2c4-b9e4d30b945c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-17e68fb1-a927-4a96-b2c4-b9e4d30b945c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(14, 37, 58, 1);
  text-align: center;
  font-family: Raleway;
  font-weight: ;
  font-style: ;
  font-size: 18px;
}

#s-17e68fb1-a927-4a96-b2c4-b9e4d30b945c > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-026aa006-9ddb-4f9b-9d74-7ed07b78d90b {
  padding-left: 15px;
padding-right: 15px;
}

#s-e0e190b6-0fc8-4e67-9726-5973cce89379 {
  padding-top: 15px;
padding-bottom: 15px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-e0e190b6-0fc8-4e67-9726-5973cce89379"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-7fcbc642-20e8-4bbb-832b-0ec961b259b2 {
  min-height: 50px;
}








#s-7fcbc642-20e8-4bbb-832b-0ec961b259b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7fcbc642-20e8-4bbb-832b-0ec961b259b2.shg-box.shg-c {
  justify-content: flex-start;
}

#s-f4baf00f-b1cd-4403-8e34-064353b0edef {
  padding-top: 10px;
padding-bottom: 15px;
text-align: center;
}

#s-f4baf00f-b1cd-4403-8e34-064353b0edef .shogun-heading-component h3 {
  color: rgba(203, 137, 105, 1);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-4e187fdc-343c-4093-8b6b-22ce8031c1ef {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-4761ef49-b44e-4861-a784-0114cd890bd0 {
  text-align: center;
}




  #s-4761ef49-b44e-4861-a784-0114cd890bd0 img.shogun-image {
    
    width: px;
  }


#s-4761ef49-b44e-4861-a784-0114cd890bd0 .shogun-image-content {
  
    align-items: center;
  
}

#s-9b85abf8-8420-4037-9232-8e3dd379bf16 {
  text-align: center;
}




  #s-9b85abf8-8420-4037-9232-8e3dd379bf16 img.shogun-image {
    
    width: px;
  }


#s-9b85abf8-8420-4037-9232-8e3dd379bf16 .shogun-image-content {
  
    align-items: center;
  
}

#s-ecfe40ff-5f09-4218-8e61-c65393a2555f {
  text-align: center;
}




  #s-ecfe40ff-5f09-4218-8e61-c65393a2555f img.shogun-image {
    
    width: px;
  }


#s-ecfe40ff-5f09-4218-8e61-c65393a2555f .shogun-image-content {
  
    align-items: center;
  
}

#s-6b1fc1e8-e86c-41f6-b841-441b8964c697 {
  padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
padding-right: 15px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-6b1fc1e8-e86c-41f6-b841-441b8964c697 {
  display: none;
}
#s-6b1fc1e8-e86c-41f6-b841-441b8964c697, #wrap-s-6b1fc1e8-e86c-41f6-b841-441b8964c697 { display:none !important; }}@media (max-width: 767px){#s-6b1fc1e8-e86c-41f6-b841-441b8964c697 {
  display: none;
}
#s-6b1fc1e8-e86c-41f6-b841-441b8964c697, #wrap-s-6b1fc1e8-e86c-41f6-b841-441b8964c697 { display:none !important; }}



  #s-6b1fc1e8-e86c-41f6-b841-441b8964c697 img.shogun-image {
    
    width: px;
  }


#s-6b1fc1e8-e86c-41f6-b841-441b8964c697 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-5eea579d-1ed4-47e7-9314-6276ce939ce7 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 25px;
padding-right: 15px;
}

#s-5eea579d-1ed4-47e7-9314-6276ce939ce7 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-5eea579d-1ed4-47e7-9314-6276ce939ce7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-5eea579d-1ed4-47e7-9314-6276ce939ce7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(14, 37, 58, 1);
}

#s-5eea579d-1ed4-47e7-9314-6276ce939ce7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-5eea579d-1ed4-47e7-9314-6276ce939ce7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(14, 37, 58, 1);
  text-align: center;
  font-family: Raleway;
  font-weight: ;
  font-style: ;
  font-size: 18px;
}

#s-5eea579d-1ed4-47e7-9314-6276ce939ce7 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-13d38128-72a8-4efe-824a-20eedfc91028 {
  padding-left: 15px;
padding-right: 15px;
}

#s-cc5e4451-7cd6-4bd9-a9e4-b0567041a10a {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 500px;
background-position: center center;
}








#s-cc5e4451-7cd6-4bd9-a9e4-b0567041a10a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cc5e4451-7cd6-4bd9-a9e4-b0567041a10a.shg-box.shg-c {
  justify-content: center;
}

#s-e4149efc-2160-487a-823b-d168fd7ba624 {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-e4149efc-2160-487a-823b-d168fd7ba624 {
  
}
}@media (max-width: 767px){#s-e4149efc-2160-487a-823b-d168fd7ba624 {
  
}
}







#s-e4149efc-2160-487a-823b-d168fd7ba624 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e4149efc-2160-487a-823b-d168fd7ba624.shg-box.shg-c {
  justify-content: flex-start;
}

#s-323cfe5a-e5cf-453a-b8c3-06fde233cc0d {
  padding-top: 35px;
padding-bottom: 25px;
text-align: center;
}

#s-323cfe5a-e5cf-453a-b8c3-06fde233cc0d .shogun-heading-component h2 {
  color: rgba(203, 137, 105, 1);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 30px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-a563c2b1-901f-442c-98fe-57f3ef13f5c2 {
  margin-top: 5px;
margin-left: 10px;
margin-bottom: 5px;
margin-right: 10px;
min-height: 50px;
}








#s-a563c2b1-901f-442c-98fe-57f3ef13f5c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a563c2b1-901f-442c-98fe-57f3ef13f5c2.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c963b6e0-a0b0-4c65-bf0b-1864bbe4997e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 0px) {
[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-48d36e58-d7b3-4ea5-865d-493c1320bdb0"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 22.5px);
}

}

#s-cdad9864-cd45-4fcb-a9ea-5f1792114c81 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-cdad9864-cd45-4fcb-a9ea-5f1792114c81 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cdad9864-cd45-4fcb-a9ea-5f1792114c81.shg-box.shg-c {
  justify-content: center;
}

#s-69c7e787-dd50-43fc-8b85-bcc436dd0770 {
  text-align: center;
}




  #s-69c7e787-dd50-43fc-8b85-bcc436dd0770 img.shogun-image {
    
    width: px;
  }


#s-69c7e787-dd50-43fc-8b85-bcc436dd0770 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-28d2ad67-ba01-4221-87ff-e725e29a349f {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-75d77584-6fc3-4764-b680-15618c6881bc {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-75d77584-6fc3-4764-b680-15618c6881bc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-75d77584-6fc3-4764-b680-15618c6881bc.shg-box.shg-c {
  justify-content: center;
}

#s-e4383ec0-f59a-4856-90e7-079754ebb4fe {
  text-align: center;
}




  #s-e4383ec0-f59a-4856-90e7-079754ebb4fe img.shogun-image {
    
    width: px;
  }


#s-e4383ec0-f59a-4856-90e7-079754ebb4fe .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-762a112d-943c-454e-bc91-7abaf4ab3d9e {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-ff0461e1-e20d-4619-b308-fd05e4ba8d3d {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-ff0461e1-e20d-4619-b308-fd05e4ba8d3d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ff0461e1-e20d-4619-b308-fd05e4ba8d3d.shg-box.shg-c {
  justify-content: center;
}

#s-f59181d1-b4cc-4fac-ba24-c4893b5dd9ee {
  text-align: center;
}




  #s-f59181d1-b4cc-4fac-ba24-c4893b5dd9ee img.shogun-image {
    
    width: px;
  }


#s-f59181d1-b4cc-4fac-ba24-c4893b5dd9ee .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-b3ae2562-5a5e-4e5a-86e9-6fae90e556d7 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-58b74a7c-b5c3-4a3d-91ca-8bc8b1ee76a3 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-58b74a7c-b5c3-4a3d-91ca-8bc8b1ee76a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-58b74a7c-b5c3-4a3d-91ca-8bc8b1ee76a3.shg-box.shg-c {
  justify-content: center;
}

#s-221d66c7-22b0-4a01-a19b-9dd166d8b4db {
  text-align: center;
}




  #s-221d66c7-22b0-4a01-a19b-9dd166d8b4db img.shogun-image {
    
    width: px;
  }


#s-221d66c7-22b0-4a01-a19b-9dd166d8b4db .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-d5118550-8e34-483f-87c3-df974d0718c6 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 7.5px);
}

[id="s-59f0186a-54b3-4907-84a9-774efe0a7ad0"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 7.5px);
}

}

#s-e12e6d96-d676-45a9-a5b0-60abb5bb736c {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-e12e6d96-d676-45a9-a5b0-60abb5bb736c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e12e6d96-d676-45a9-a5b0-60abb5bb736c.shg-box.shg-c {
  justify-content: center;
}

#s-3979eef7-6422-4666-be28-692fad3fcf4a {
  text-align: center;
}




  #s-3979eef7-6422-4666-be28-692fad3fcf4a img.shogun-image {
    
    width: px;
  }


#s-3979eef7-6422-4666-be28-692fad3fcf4a .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-52fd539d-3183-454f-8972-3a879758bc7e {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-1b0254d9-1ab7-4179-982c-ad509b783884 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-1b0254d9-1ab7-4179-982c-ad509b783884 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1b0254d9-1ab7-4179-982c-ad509b783884.shg-box.shg-c {
  justify-content: center;
}

#s-0a55eabe-396f-412c-9b25-6e9e1f8bb4ab {
  text-align: center;
}




  #s-0a55eabe-396f-412c-9b25-6e9e1f8bb4ab img.shogun-image {
    
    width: px;
  }


#s-0a55eabe-396f-412c-9b25-6e9e1f8bb4ab .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-efbe8f8b-80a4-46d9-95b3-80839ba7eaf6 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-f8704525-5d97-4ac0-abd7-d64d6f4eaafb {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-f8704525-5d97-4ac0-abd7-d64d6f4eaafb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f8704525-5d97-4ac0-abd7-d64d6f4eaafb.shg-box.shg-c {
  justify-content: center;
}

#s-0bba9fb2-dd93-4027-99b7-366fea569da0 {
  text-align: center;
}




  #s-0bba9fb2-dd93-4027-99b7-366fea569da0 img.shogun-image {
    
    width: px;
  }


#s-0bba9fb2-dd93-4027-99b7-366fea569da0 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-145667af-9bba-439d-b99a-a04a2bdb52eb {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-a00c9aec-c121-434b-b46f-68624b3ff4b9 {
  margin-top: 5px;
margin-bottom: 5px;
min-height: 50px;
}








#s-a00c9aec-c121-434b-b46f-68624b3ff4b9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a00c9aec-c121-434b-b46f-68624b3ff4b9.shg-box.shg-c {
  justify-content: center;
}

#s-b6c6cb30-155a-4efe-8c79-1921714cfbae {
  text-align: center;
}




  #s-b6c6cb30-155a-4efe-8c79-1921714cfbae img.shogun-image {
    
    width: px;
  }


#s-b6c6cb30-155a-4efe-8c79-1921714cfbae .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-e0593955-4970-49da-a623-8a7489593e9d {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-8cf32589-9fdc-481e-95f4-7a8c8386c70a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-b8f2927c-fefb-44e2-9b39-c210bc59b8fd {
  padding-top: 35px;
padding-bottom: 20px;
text-align: center;
}

#s-b8f2927c-fefb-44e2-9b39-c210bc59b8fd .shogun-heading-component h2 {
  color: rgba(203, 137, 105, 1);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-e4d46c4d-e251-423b-a342-99a030c03d17 {
  padding-left: 15px;
padding-bottom: 35px;
padding-right: 15px;
}

#s-e4d46c4d-e251-423b-a342-99a030c03d17 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-e4d46c4d-e251-423b-a342-99a030c03d17 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(14, 37, 58, 1);
  padding: 10px;
}

#s-e4d46c4d-e251-423b-a342-99a030c03d17 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(255, 255, 255, 1);
}

#s-e4d46c4d-e251-423b-a342-99a030c03d17 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-e4d46c4d-e251-423b-a342-99a030c03d17 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(255, 255, 255, 1);
  text-align: left;
  font-family: Raleway;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-e4d46c4d-e251-423b-a342-99a030c03d17 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
@media (min-width: 0px) {
[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-6682cf71-5ea6-4c82-abcd-aabc48573253"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-51af71df-0031-42ba-9f17-3fd7d3591145 {
  margin-left: 45px;
margin-right: 45px;
text-align: center;
}




  #s-51af71df-0031-42ba-9f17-3fd7d3591145 img.shogun-image {
    
    width: px;
  }


#s-51af71df-0031-42ba-9f17-3fd7d3591145 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-5d0de897-89cf-4472-8a71-c61223c23b9c {
  padding-left: 5px;
padding-right: 5px;
}

#s-058066fd-7bab-4edf-bb73-22e4d8616820 {
  margin-left: 45px;
margin-right: 45px;
text-align: center;
}




  #s-058066fd-7bab-4edf-bb73-22e4d8616820 img.shogun-image {
    
    width: px;
  }


#s-058066fd-7bab-4edf-bb73-22e4d8616820 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-b458e308-26c0-4759-97d2-bcb76bb02605 {
  margin-left: 45px;
margin-right: 45px;
text-align: center;
}




  #s-b458e308-26c0-4759-97d2-bcb76bb02605 img.shogun-image {
    
    width: px;
  }


#s-b458e308-26c0-4759-97d2-bcb76bb02605 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-03e7f40a-a267-4693-bb84-8166cc8a507e {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
}

#s-042b33a5-11fd-408b-acff-ec5b5166d493 {
  padding-left: 15px;
padding-right: 15px;
}

#s-905967c6-59d4-4f8a-b362-7a2d5c729ba1 {
  margin-top: 10px;
margin-left: 45px;
margin-bottom: 10px;
margin-right: 45px;
text-align: center;
}




  #s-905967c6-59d4-4f8a-b362-7a2d5c729ba1 img.shogun-image {
    
    width: px;
  }


#s-905967c6-59d4-4f8a-b362-7a2d5c729ba1 .shogun-image-content {
  
    align-items: center;
  
}

#s-d63125ad-630f-44d2-a1d0-1c6a0360413b {
  padding-left: 10px;
padding-right: 10px;
}

#s-5468da71-c28d-4122-8590-c1c7b96755f6 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}

#s-2d0b5570-c966-435c-9696-bf2470fe8620 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}

@media (min-width: 0px) {
[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-5c1d8220-08b6-41a7-9fdc-75d136fd6160"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-363d7fd0-9d29-4836-90a0-d4971102be52 {
  padding-left: 5px;
padding-right: 5px;
}

#s-915eb55c-632d-444e-b31f-b5e45630e736 {
  padding-left: 5px;
padding-right: 5px;
}

#s-f1401284-f871-4aee-a39f-afa741ea27e2 {
  padding-left: 5px;
padding-right: 5px;
}

#s-154f1277-6b84-45a4-a9fd-29e9f400fc8a {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-154f1277-6b84-45a4-a9fd-29e9f400fc8a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 22.5px);
}

}

#s-c18b0706-3c19-43ef-9e9f-cf21f3977574 {
  text-align: center;
}




  #s-c18b0706-3c19-43ef-9e9f-cf21f3977574 img.shogun-image {
    
    width: px;
  }


#s-c18b0706-3c19-43ef-9e9f-cf21f3977574 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-44766161-07d9-47ee-8d11-6e4444ab4891 {
  padding-left: 5px;
padding-right: 5px;
}

#s-b3fb9a96-2f00-4da9-8f46-dfffbe62f84c {
  text-align: center;
}




  #s-b3fb9a96-2f00-4da9-8f46-dfffbe62f84c img.shogun-image {
    
    width: px;
  }


#s-b3fb9a96-2f00-4da9-8f46-dfffbe62f84c .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-3c42369d-38f4-44d4-949d-5553739f62b3 {
  padding-left: 5px;
padding-right: 5px;
}

#s-5de2c570-6599-4098-a5ea-7a65c7d67ca7 {
  text-align: center;
}




  #s-5de2c570-6599-4098-a5ea-7a65c7d67ca7 img.shogun-image {
    
    width: px;
  }


#s-5de2c570-6599-4098-a5ea-7a65c7d67ca7 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-8a33187c-6a98-4518-91f7-1e587d2d2582 {
  text-align: center;
}




  #s-8a33187c-6a98-4518-91f7-1e587d2d2582 img.shogun-image {
    
    width: px;
  }


#s-8a33187c-6a98-4518-91f7-1e587d2d2582 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-ac47ab8c-9d0f-4848-bcb9-2d71b1649b90 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(203, 137, 105, 1);
text-decoration: none;
}
#s-ac47ab8c-9d0f-4848-bcb9-2d71b1649b90:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ac47ab8c-9d0f-4848-bcb9-2d71b1649b90:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-ac47ab8c-9d0f-4848-bcb9-2d71b1649b90.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Raleway;
  display:  block ;
}

#s-548c7df6-ea69-4c1e-9ad8-86043314074d .shogun-tabs {
  justify-content: flex-start;
}


  #s-548c7df6-ea69-4c1e-9ad8-86043314074d .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid #DDDDDD;
  }
  #s-548c7df6-ea69-4c1e-9ad8-86043314074d .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: #F4F4F4;
    border: 1px solid #ddd;
  }
#s-548c7df6-ea69-4c1e-9ad8-86043314074d .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(116, 116, 116, 1);
  font-family: Raleway;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-548c7df6-ea69-4c1e-9ad8-86043314074d .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: #555;
}

#s-548c7df6-ea69-4c1e-9ad8-86043314074d .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: #F4F4F4;
}

#s-548c7df6-ea69-4c1e-9ad8-86043314074d .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-b0412221-37f4-4e26-aac4-c7d4326e2b2b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-b397465a-3487-43b4-b0fb-722a78ff2bf2 {
  text-align: center;
}




  #s-b397465a-3487-43b4-b0fb-722a78ff2bf2 img.shogun-image {
    
    width: px;
  }


#s-b397465a-3487-43b4-b0fb-722a78ff2bf2 .shogun-image-content {
  
    align-items: center;
  
}

#s-50585f4f-910f-42a7-ba33-28d87db0085e {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
}

@media (min-width: 0px) {
[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-72c172cf-8f4a-4b3f-a73a-4f20fbb622a2"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-7104894d-14c4-4286-9898-00bc3eef2d0a {
  text-align: center;
}




  #s-7104894d-14c4-4286-9898-00bc3eef2d0a img.shogun-image {
    
    width: px;
  }


#s-7104894d-14c4-4286-9898-00bc3eef2d0a .shogun-image-content {
  
    align-items: center;
  
}

#s-5ac27181-04c0-45a4-ba5b-51e1565338e2 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
}

@media (min-width: 0px) {
[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-c5652671-7e49-4fbb-8714-06a300856bf8"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-8988cfed-4184-4659-8fe2-4e0a99d85037 {
  text-align: center;
}




  #s-8988cfed-4184-4659-8fe2-4e0a99d85037 img.shogun-image {
    
    width: px;
  }


#s-8988cfed-4184-4659-8fe2-4e0a99d85037 .shogun-image-content {
  
    align-items: center;
  
}

#s-15e4851d-d718-4043-a37a-e2c0aad70d8c {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
}

#s-767746fe-6105-49c5-a550-4a231977e402 {
  min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}








#s-767746fe-6105-49c5-a550-4a231977e402 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-767746fe-6105-49c5-a550-4a231977e402.shg-box.shg-c {
  justify-content: center;
}

#s-e529aa31-9d93-4532-94a1-594583900436 {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 500px;
background-position: center center;
}








#s-e529aa31-9d93-4532-94a1-594583900436 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e529aa31-9d93-4532-94a1-594583900436.shg-box.shg-c {
  justify-content: center;
}

#s-6a326c2c-ef63-4802-ab53-bc048f8cbfee {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-6a326c2c-ef63-4802-ab53-bc048f8cbfee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6a326c2c-ef63-4802-ab53-bc048f8cbfee.shg-box.shg-c {
  justify-content: center;
}

#s-2e59cd93-74cc-4b88-bec5-5f647d14080c {
  padding-top: 20px;
}

#s-2e59cd93-74cc-4b88-bec5-5f647d14080c .shogun-icon-wrapper {
  text-align: center;
}


#s-2e59cd93-74cc-4b88-bec5-5f647d14080c .shogun-icon-wrapper > .shogun-icon {

  font-size: 50px !important;
  color: #495056;
}

#s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b {
  margin-left: 50px;
margin-right: 50px;
}

@media (min-width: 0px) {
[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-fc42f7b6-0dfd-4141-bb20-104a33ccf12b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-02e2ab1f-bf25-4850-b2f5-fbc57b205868 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-ad72957b-0a62-46e9-a980-6a57729a8f33 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-516b1cc6-f07d-4471-a1e6-a3545218f047 {
  box-shadow:0px 20px 40px 0px rgba(0, 0, 0, 0.1);
margin-top: 50px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
min-height: 50px;
}








#s-516b1cc6-f07d-4471-a1e6-a3545218f047 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-516b1cc6-f07d-4471-a1e6-a3545218f047.shg-box.shg-c {
  justify-content: center;
}

#s-7e394b0e-391b-4d3e-99ab-7d05057090fa {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 40px;
padding-bottom: 10px;
text-align: center;
}

#s-7e394b0e-391b-4d3e-99ab-7d05057090fa .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  100 ;
  font-family: Raleway;
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-c1814295-fa0f-4a70-869d-689edc6b385a {
  padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c1814295-fa0f-4a70-869d-689edc6b385a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 0px) {
[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-8ebe3546-7d04-4ff4-87b4-d57301a93b7e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-71275426-1d0d-4ea5-b57d-edb4e8f6eb03 {
  text-align: center;
}




  #s-71275426-1d0d-4ea5-b57d-edb4e8f6eb03 img.shogun-image {
    
    width: px;
  }


#s-71275426-1d0d-4ea5-b57d-edb4e8f6eb03 .shogun-image-content {
  
    align-items: center;
  
}

#s-ac8cb217-95fd-41d8-a644-2097af46ef08 {
  text-align: center;
}




  #s-ac8cb217-95fd-41d8-a644-2097af46ef08 img.shogun-image {
    
    width: px;
  }


#s-ac8cb217-95fd-41d8-a644-2097af46ef08 .shogun-image-content {
  
    align-items: center;
  
}

#s-2896bee3-7b47-4f83-a237-d4df33cb578e {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-2896bee3-7b47-4f83-a237-d4df33cb578e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2896bee3-7b47-4f83-a237-d4df33cb578e.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 19.333333333333332px);
}

}

@media (min-width: 992px) {
[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 19.333333333333332px);
}

}

@media (min-width: 1200px) {
[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 19.333333333333332px);
}

[id="s-690b78fb-334d-4bd6-b3f6-8b9e8f6d7851"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 19.333333333333332px);
}

}

#s-55a7d6e0-7f30-424f-9605-4932af6c9035 {
  margin-left: 25px;
margin-right: 25px;
text-align: center;
}




  #s-55a7d6e0-7f30-424f-9605-4932af6c9035 img.shogun-image {
    
    width: px;
  }


#s-55a7d6e0-7f30-424f-9605-4932af6c9035 .shogun-image-content {
  
    align-items: center;
  
}

#s-c0896cce-b977-4608-aec2-004f9d1c6db0 {
  padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c0896cce-b977-4608-aec2-004f9d1c6db0"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-3c91756e-a4eb-4387-aee1-a2cf9b512c6a {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-990be710-53a6-47a6-9d02-08b3ec146efb {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 500px;
background-position: center center;
}








#s-990be710-53a6-47a6-9d02-08b3ec146efb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-990be710-53a6-47a6-9d02-08b3ec146efb.shg-box.shg-c {
  justify-content: center;
}

#s-02ad80e6-1796-4776-8e4c-34141a52fcf0 {
  background-color: rgba(242, 242, 242, 1);
}

@media (min-width: 0px) {
[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-02ad80e6-1796-4776-8e4c-34141a52fcf0"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 0px) {
[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f9e8dedc-8f04-4593-942a-9dbea90add16"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-5e47a1af-a2f9-4e77-8de7-e7e2ca2f45f7 {
  padding-top: 30px;
}

#s-5e47a1af-a2f9-4e77-8de7-e7e2ca2f45f7 .shogun-icon-wrapper {
  text-align: center;
}


#s-5e47a1af-a2f9-4e77-8de7-e7e2ca2f45f7 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(6, 37, 57, 1);
}

#s-bbbed4d0-8864-410e-a35c-a6916801beee {
  padding-top: 30px;
}

#s-bbbed4d0-8864-410e-a35c-a6916801beee .shogun-icon-wrapper {
  text-align: center;
}


#s-bbbed4d0-8864-410e-a35c-a6916801beee .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(6, 37, 57, 1);
}

#s-557bf72d-1754-4c28-b22e-3ec4e75357dc {
  min-height: 50px;
}








#s-557bf72d-1754-4c28-b22e-3ec4e75357dc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-557bf72d-1754-4c28-b22e-3ec4e75357dc.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c23e2dfe-21f0-404c-bd4c-2bd72030ccfd"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-00ff5019-1b8f-41ac-abe5-fd0f0d6df33d {
  margin-top: 10px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
padding-top: 35px;
padding-bottom: 20px;
text-align: center;
}

#s-00ff5019-1b8f-41ac-abe5-fd0f0d6df33d .shogun-heading-component h2 {
  color: rgba(203, 137, 105, 1);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-c052d9e7-b28e-4dd5-b038-a742a7a898dc {
  margin-top: 10px;
margin-left: 40px;
margin-bottom: 10px;
margin-right: 40px;
}

#s-d2fe205a-10e0-4337-a654-c7a13aed8bb9 {
  box-shadow:0px 20px 40px 0px rgba(0, 0, 0, 0.1);
margin-top: 50px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
min-height: 50px;
}








#s-d2fe205a-10e0-4337-a654-c7a13aed8bb9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d2fe205a-10e0-4337-a654-c7a13aed8bb9.shg-box.shg-c {
  justify-content: center;
}

#s-a9796e3a-98b5-4e81-a76c-6c5c7de4fe06 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 40px;
padding-bottom: 10px;
text-align: center;
}

#s-a9796e3a-98b5-4e81-a76c-6c5c7de4fe06 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-9f513bb8-bb64-451f-9998-e687ca661737 {
  padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-9f513bb8-bb64-451f-9998-e687ca661737"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 0px) {
[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-2fca589c-01b4-4e8a-8c9d-cb9669f33697"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-ff689bbc-dce2-4bee-b4fd-10d27bceb573 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-ff689bbc-dce2-4bee-b4fd-10d27bceb573 .shogun-icon-wrapper {
  text-align: center;
}


#s-ff689bbc-dce2-4bee-b4fd-10d27bceb573 .shogun-icon-wrapper > .shogun-icon {

  font-size: 44px !important;
  color: rgba(203, 136, 104, 1);
}

#s-8fa5cb06-22f3-42bf-b6a5-73b97d5daec5 {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(14, 37, 58, 1);
text-align: center;
text-decoration: none;
hover-type: color;
}
#s-8fa5cb06-22f3-42bf-b6a5-73b97d5daec5:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(75, 75, 75, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-8fa5cb06-22f3-42bf-b6a5-73b97d5daec5:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-8fa5cb06-22f3-42bf-b6a5-73b97d5daec5.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  block ;
}

#s-9e7dd9ae-7ef2-4d37-85a5-913666679ced {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-9e7dd9ae-7ef2-4d37-85a5-913666679ced .shogun-icon-wrapper {
  text-align: center;
}


#s-9e7dd9ae-7ef2-4d37-85a5-913666679ced .shogun-icon-wrapper > .shogun-icon {

  font-size: 44px !important;
  color: rgba(203, 136, 104, 1);
}

#s-7eff0f96-ea41-4ded-a6f0-88863f832466 {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 30px;
background-color: rgba(14, 37, 58, 1);
text-align: center;
text-decoration: none;
hover-type: color;
}
#s-7eff0f96-ea41-4ded-a6f0-88863f832466:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(75, 75, 75, 1) !important;
text-decoration: none !important;
hover-type: color !important;}#s-7eff0f96-ea41-4ded-a6f0-88863f832466:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7eff0f96-ea41-4ded-a6f0-88863f832466.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  
  display:  block ;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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