:root {
  --midnight-blue: #1c1733;
  --white-smoke: #e9ecef;
  --gold: #ffd500;
  --black: black;
  --cadet-blue: #2b9db4;
  --dark-slate-grey: #404041;
  --red: #e40000;
  --yellow: #ffeb00;
  --white: white;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-embed-youtubevideo {
  width: 100%;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/youtube-placeholder.2b05e7d68d.svg');
  background-position: 50%;
  background-size: cover;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.w-embed-youtubevideo:empty {
  min-height: 75px;
  padding-bottom: 56.25%;
}

.page-wrapper {
  position: relative;
}

.body {
  color: var(--midnight-blue);
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
}

.section-header {
  border-bottom: 1px solid #f3f2f2;
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-footer {
  background-color: #f8f8f8;
  padding-top: 45px;
  padding-bottom: 50px;
}

.section-request-demo {
  z-index: 9;
  height: 100px;
  background-color: #8b8c9f;
  align-items: center;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section-top {
  height: 34px;
  background-color: #f3f2f2;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-breadcrumbs {
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-landing-hero {
  margin-bottom: 60px;
}

.section-grid-list {
  margin-bottom: 70px;
}

.section-contacts {
  margin-top: 100px;
  margin-bottom: 100px;
}

.container {
  width: 100%;
  max-width: 1360px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.container.small {
  max-width: 1140px;
}

.container.xsmall {
  max-width: 610px;
}

.slh-text-wrapper {
  background-color: var(--white-smoke);
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 55px;
  display: flex;
}

.slh-img-wrapper {
  height: auto;
  min-height: 300px;
  min-width: 50%;
  background-image: url('../images/section-inner-hero-img.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1;
}

.slh-wrapper {
  border-radius: 15px;
  overflow: hidden;
}

.slh-heading {
  color: var(--midnight-blue);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  line-height: 1.2em;
}

.slh-subtext {
  border-left: 5px solid var(--gold);
  color: var(--midnight-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 15px;
  padding-left: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4em;
}

.sgl-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.sgl-grid-item {
  text-align: center;
  border: 1px #000;
  border-radius: 8px;
  flex-direction: column;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 12px 4px rgba(0, 0, 0, .08);
}

.sgl-grid-item-logo-wrapper {
  max-height: 80px;
  min-height: 80px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  position: relative;
}

.sgl-grid-item-text-wrapper {
  margin-bottom: 20px;
  padding-left: 25px;
  padding-right: 25px;
}

.sgl-grid-item-cta-wrapper {
  padding-left: 25px;
  padding-right: 25px;
}

.sgl-grid-item-text {
  color: var(--black);
  text-align: center;
}

.sgl-grid-item-cta {
  justify-content: center;
  align-items: center;
  display: flex;
}

.sgl-grid-item-cta-text {
  color: var(--cadet-blue);
  font-size: 19px;
  font-weight: 700;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
}

.sgl-grid-item-cta-icon {
  color: var(--cadet-blue);
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  font-size: 19px;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: relative;
  left: 0;
}

.sgl-grid-item-content-wrapper {
  border: 1px solid #fff;
  border-top-style: none;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 25px;
  transition: border-color .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  overflow: hidden;
}

.global-css {
  display: none;
}

.sgl-grid-item-img {
  width: 100%;
  display: block;
}

.sgl-grid-item-logo {
  max-height: 60px;
  object-fit: contain;
  position: relative;
}

.section-form {
  background-color: var(--midnight-blue);
  margin-top: 0;
  padding-top: 75px;
  padding-bottom: 200px;
}

.section-form-heading {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 48px;
  line-height: 1em;
}

.section-form-heading.color-midnight-blue {
  color: var(--midnight-blue);
}

.section-form-subheading {
  color: #fff;
  text-align: center;
  margin-bottom: 35px;
  font-size: 24px;
  line-height: 1.4em;
}

.section-form-subheading.color-midnight-blue {
  color: var(--midnight-blue);
}

.section-form-wrapper {
  background-color: #fff;
  border: 1px #000;
  border-radius: 10px;
  padding: 40px;
}

.section-form-block {
  margin-bottom: 0;
}

.section-form-item {
  margin-bottom: 30px;
}

.section-form-tos {
  color: var(--dark-slate-grey);
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  font-weight: 400;
}

.section-form-tos-link {
  color: var(--dark-slate-grey);
  text-decoration: underline;
}

.section-form-tos-link:hover {
  text-decoration: none;
}

.section-form-submit {
  width: 100%;
  background-color: var(--gold);
  color: var(--midnight-blue);
  text-transform: uppercase;
  border-radius: 4px;
  margin-top: 20px;
  padding: 18px 30px;
  font-weight: 700;
  line-height: 1em;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
}

.section-form-submit:hover {
  background-color: #dab600;
}

.section-form-input {
  border: 1px #fff;
  border-top-style: solid;
  border-bottom: 1px solid #8b8c9f;
  border-radius: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
}

.section-form-input:hover {
  border-bottom-color: var(--midnight-blue);
}

.section-form-input:focus {
  border-style: solid;
  border-color: var(--midnight-blue);
  padding-left: 10px;
  padding-right: 10px;
}

.section-form-select {
  background-color: #fff;
  border: 1px solid #fff;
  border-bottom-color: #8b8c9f;
  margin-bottom: 0;
  padding-left: 0;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
}

.section-form-select:hover {
  border-bottom-color: var(--midnight-blue);
}

.section-form-select:focus {
  border-color: var(--midnight-blue);
  padding-left: 10px;
}

.section-form-select._w-200px {
  width: 200px;
  margin-bottom: 0;
  padding-left: 0;
}

.section-form-select._w-180 {
  max-width: 180px;
  border-radius: 0;
}

.section-contacts-wrapper {
  display: flex;
}

.sc-first-part {
  background-color: #f3f2f2;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  flex: 1;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.sc-last-part {
  background-color: var(--midnight-blue);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 30px;
  display: flex;
}

.sc-first-part-img {
  width: 172px;
  margin-top: -40px;
  margin-right: 15px;
}

.sc-first-part-text {
  border-left: 5px solid var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  padding-left: 15px;
  font-size: 15px;
  font-weight: 700;
}

.sc-last-part-grid {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
}

.sc-lp-gi-text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.sc-lp-gi-text-span {
  color: var(--gold);
}

.sc-lp-gi-text-link {
  color: #fff;
  text-decoration: none;
}

.sc-lp-gi-text-link:hover {
  color: var(--gold);
}

.sc-lp-gi-text-link.no-hover:hover {
  color: #fff;
}

.breadcrumbs-list {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.breadcrumbs-list-item-link {
  color: #000;
  background-image: url('../images/caret-right.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-left: 8px;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color .4s cubic-bezier(.215, .61, .355, 1);
  display: block;
}

.breadcrumbs-list-item-link:hover {
  color: var(--cadet-blue);
}

.section-top-text {
  color: #020303;
  font-size: 15px;
}

.section-top-contacts-list {
  align-items: center;
  display: flex;
}

.section-top-contacts-list-item {
  color: #7c7c7c;
  margin-left: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: block;
}

.section-top-contacts-list-item:hover {
  text-decoration: underline;
}

.section-top-wrapper, .section-header-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.logo-img {
  display: block;
}

.section-header-navigation {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.shn-item {
  padding-left: 40px;
}

.header-button {
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #9675f7;
  border-radius: 6px;
  padding: 16px 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: inline-block;
}

.header-button:hover {
  background-color: #7158b9;
}

.shn-item-link {
  color: var(--midnight-blue);
  text-transform: capitalize;
  white-space: nowrap;
  border-bottom: 2px solid #fff;
  padding-top: 7px;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: block;
}

.shn-item-link:hover, .shn-item-link.w--current, .shn-item-link.active {
  border-bottom-color: var(--gold);
}

.shn-item-dropdown-text {
  color: var(--midnight-blue);
  white-space: nowrap;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: block;
}

.shn-item-dropdown {
  position: relative;
}

.shn-item-dropdown-list {
  z-index: -1;
  opacity: 0;
  background-color: #fff;
  border-radius: 4px;
  padding: 20px;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  position: absolute;
  transform: translate(0, -10px);
  box-shadow: 0 0 8px 4px rgba(9, 30, 66, .1);
}

.shn-item-dropdown-list.w--open {
  margin-top: 20px;
  padding-bottom: 10px;
  box-shadow: 0 0 8px 4px rgba(9, 30, 66, .1);
}

.shn-idl-item {
  height: 28px;
  color: var(--midnight-blue);
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 10px;
  padding: 0 38px 0 10px;
  font-size: 14px;
  line-height: 28px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: block;
  position: relative;
  overflow: hidden;
}

.shn-idl-item:hover, .shn-idl-item.active, .shn-idl-item.active:hover {
  background-color: #f3f2f2;
}

.shn-idt-icon {
  margin-right: 0;
}

.shn-idt-text {
  text-transform: capitalize;
  cursor: default;
  border-bottom: 2px solid #fff;
  padding-top: 7px;
  padding-bottom: 5px;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
}

.shn-idt-text:hover {
  border-bottom-color: var(--gold);
}

.section-request-demo-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.srd-text {
  width: 15%;
  border-left: 5px solid var(--gold);
  color: #fff;
  flex: 0 auto;
  margin-right: 15px;
  padding-left: 15px;
  font-size: 20px;
  font-weight: 700;
}

.srd-content {
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.srd-item {
  color: var(--midnight-blue);
  flex: 1;
  margin-bottom: 0;
  margin-left: 15px;
  padding-left: 0;
  text-decoration: none;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
}

.srd-label {
  height: 44px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1em;
  display: flex;
}

.srd-label:hover {
  border-color: var(--white-smoke);
  background-color: var(--white-smoke);
}

.srd-radio {
  display: none;
}

.srd-button {
  width: 170px;
  height: 44px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #9675f7;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  font-size: 15px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
}

.srd-button:hover {
  background-color: #7158b9;
}

.srd-form-block {
  margin-bottom: 0;
}

.section-footer-wrapper {
  display: flex;
}

.sf-first {
  max-width: 160px;
}

.sf-mid {
  flex: 1;
  margin-left: 45px;
}

.sf-last {
  max-width: 320px;
  border-left: 1px solid #c7bebe;
  flex: 1;
  padding-left: 50px;
}

.sf-logo {
  margin-bottom: 30px;
}

.sff-text {
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4em;
}

.sf-contacts {
  margin-bottom: 25px;
  font-size: 13px;
  font-weight: 700;
  line-height: 26px;
}

.sf-contacts-link {
  color: var(--midnight-blue);
  text-decoration: none;
}

.soc-icons-list {
  align-items: center;
  display: flex;
}

.sfsil-item {
  color: var(--midnight-blue);
  margin-right: 7px;
  font-size: 15px;
  line-height: 1em;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: block;
}

.sfsil-item:hover {
  color: var(--cadet-blue);
}

.footer-menu-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.footer-menu-grid-heading {
  color: var(--midnight-blue);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 26px;
}

.footer-menu-list {
  font-size: 13px;
  line-height: 26px;
}

.footer-menu-list-item {
  color: var(--midnight-blue);
  font-size: 13px;
  line-height: 26px;
  text-decoration: none;
  display: block;
}

.footer-menu-list-item:hover {
  text-decoration: underline;
}

.footer-menu-list-item-link {
  color: var(--midnight-blue);
  font-size: 13px;
  line-height: 26px;
  text-decoration: none;
  display: inline-block;
}

.footer-menu-list-item-link:hover {
  text-decoration: underline;
}

.sf-copyrights {
  color: rgba(28, 23, 51, .5);
  margin-top: 18px;
  font-size: 11px;
  font-weight: 700;
}

.sf-big {
  flex: 1;
  display: flex;
}

.sf-contacts-mobile {
  margin-bottom: 25px;
  font-size: 13px;
  font-weight: 700;
  line-height: 26px;
  display: none;
}

.soc-icons-list-mobile {
  align-items: center;
  display: none;
}

.sgl-grid-item-heading-wrapper {
  min-height: 45px;
  color: var(--cadet-blue);
  margin-bottom: 10px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 20px;
  font-weight: 700;
}

.sgl-grid-item-heading {
  color: var(--cadet-blue);
  text-align: center;
}

.sgl-grid-item-date-wrapper {
  margin-bottom: 10px;
  padding-left: 25px;
  padding-right: 25px;
}

.sgl-grid-item-date {
  color: #c4c8d6;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

.section-logo-list {
  margin-bottom: 60px;
}

.section-logo-list-heading {
  text-align: center;
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 22px;
}

.sll-list {
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
}

.sll-list-item {
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.sil-item {
  background-color: #f3f2f2;
  border-radius: 8px;
  margin-bottom: 25px;
  padding-bottom: 40px;
  overflow: hidden;
}

.sil-item-top {
  margin-bottom: 20px;
  display: flex;
}

.sil-item-logos {
  flex-wrap: wrap;
  align-items: center;
  padding-left: 15px;
  display: flex;
  position: relative;
}

.sil-item-text-wrapper {
  flex: 0 auto;
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 70px;
}

.sil-item-img-wrapper {
  width: 44%;
  min-width: 44%;
}

.sil-il-item {
  justify-content: center;
  align-items: center;
  margin: 20px;
  padding: 0;
  display: flex;
}

.sil-item-img {
  width: 100%;
  display: block;
}

.sil-item-heading {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 45px;
  line-height: 1.4em;
}

.sil-item-text.mb-24px {
  margin-bottom: 24px;
  line-height: 25px;
}

.section-customer-stories-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--midnight-blue);
  border-radius: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 25px;
  display: grid;
  overflow: hidden;
}

.scs-text-wrapper {
  padding: 45px 35px 45px 40px;
}

.scs-img-wrapper {
  background-image: url('../images/image-4.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.scs-heading {
  border-left: 5px solid var(--gold);
  color: #fff;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 40px;
  padding-left: 12px;
  font-size: 16px;
}

.scs-text {
  color: #fff;
  line-height: 25px;
}

.scs-text-span {
  color: var(--cadet-blue);
}

.link-with-arrow {
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.link-with-arrow-text {
  color: var(--cadet-blue);
  font-size: 19px;
  font-weight: 700;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
}

.link-with-arrow-icon {
  color: var(--cadet-blue);
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  font-size: 19px;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: relative;
  left: 0;
}

.section-generic-gray {
  background-color: #f3f2f2;
  margin-bottom: 60px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.scl-subheading {
  border-left: 5px solid var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 12px;
  font-size: 15px;
}

.scl-heading {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 45px;
  line-height: 1.4em;
}

.logos-slider {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 25px;
}

.logos-slider-mask {
  height: 100%;
}

.slider-left-arrow, .slider-right-arrow, .slider-nav {
  display: none;
}

.logos-slide {
  height: 100%;
  background-color: #f3f2f2;
}

.logos-slide-wrapper {
  justify-content: space-between;
  align-items: center;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.logos-slide-item {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 10px;
  display: flex;
}

.section-hospitality {
  margin-bottom: 60px;
}

.section-hospitality-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--midnight-blue);
  border-radius: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 20px;
  padding-left: 60px;
  display: flex;
  overflow: hidden;
}

.sh-text-wrapper {
  flex: 1;
  padding: 90px 0;
}

.sh-img-wrapper {
  min-width: 295px;
  background-image: url('../images/image-2.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.sh-heading {
  max-width: 335px;
  border-left: 5px solid var(--gold);
  color: #fff;
  align-self: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 24px;
  font-size: 35px;
  line-height: 1.2em;
}

.sh-list {
  padding-left: 30px;
  list-style-type: disc;
}

.sh-list-item {
  color: #fff;
  margin-top: 5px;
  margin-bottom: 5px;
  list-style-type: disc;
}

.sh-text {
  color: #fff;
  letter-spacing: -.06px;
  font-size: 17px;
  font-weight: 400;
}

.h2-heading {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 45px;
  line-height: 1.2em;
}

.h2-heading.m-custom {
  margin-top: 20px;
}

.sub-tagline {
  border-left: 5px solid var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 12px;
  font-size: 15px;
}

.section-store-size {
  margin-bottom: 70px;
}

.section-store-size-pre {
  width: 100%;
  justify-content: space-between;
  display: flex;
}

.section-store-size-content {
  background-color: #1c1733;
  background-image: linear-gradient(rgba(28, 23, 51, .36), rgba(28, 23, 51, .36)), url('../images/Front-of-the-house-team_opt-1.png');
  background-position: 0 0, 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
  border-radius: 15px;
  margin-top: 50px;
  padding: 40px 60px 80px;
}

.text-default {
  margin-bottom: 1em;
  line-height: 25px;
}

.text-default.mb-0 {
  margin-bottom: 0;
}

.h3-heading {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4em;
}

.sssp-item.last {
  max-width: 450px;
  padding-left: 20px;
}

.sssp-item.first {
  max-width: 620px;
  padding-right: 20px;
}

.sssc-heading {
  max-width: 500px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 40px;
}

.sssc-grid {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.sssc-grid-item {
  width: 100%;
  height: 180px;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
}

.sssc-grid-item.hidden-desktop {
  display: none;
}

.sssc-grid-item.trigger-form-modal {
  height: 160px;
}

.sssc-grid-item-hover {
  z-index: 2;
  opacity: 0;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  transition: opacity .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.sssc-grid-item-hover:hover {
  opacity: 1;
}

.sssc-grid-item-cointent {
  z-index: 1;
  position: relative;
}

.sssc-grid-item-text-pre {
  color: var(--midnight-blue);
  text-align: center;
  letter-spacing: 2px;
  padding-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1em;
}

.sssc-grid-item-text-value {
  color: var(--midnight-blue);
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1em;
}

.sssc-grid-item-button {
  background-color: var(--gold);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  display: flex;
  overflow: hidden;
}

.sssc-grid-item-button-text {
  color: var(--midnight-blue);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.sssc-grid-item-button-icon {
  color: var(--midnight-blue);
  justify-content: center;
  align-items: center;
  margin-left: 7px;
  display: flex;
}

.section-homepage-hero {
  padding-bottom: 100px;
}

.section-homepage-icons {
  margin-bottom: 50px;
}

.section-homepage-icons-wrapper {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.shi-item {
  opacity: .3;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  transition: opacity .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
}

.shi-item:hover, .shi-item.active {
  opacity: 1;
}

.shi-item-img-wrapper {
  height: 82px;
}

.shi-item-text-wrapper {
  height: 44px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}

.shi-item-img.cstm {
  position: relative;
  top: -9px;
}

.shi-item-text {
  color: var(--midnight-blue);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
}

.list-default {
  padding-left: 17px;
}

.section-powering-sectors {
  background-color: #f3f2f2;
  margin-bottom: 70px;
  padding-top: 80px;
  padding-bottom: 70px;
}

.sps-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 50px;
}

.sps-grid-item {
  color: var(--midnight-blue);
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
}

.sps-grid-item:hover {
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, .1);
}

.sps-grid-item-img-wrapper, .sps-grid-item-heading-wirapper, .sps-grid-item-text-wrapper {
  margin-bottom: 20px;
}

.sps-button-default {
  background-color: var(--gold);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 13px 30px 11px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
}

.sps-button-text {
  color: var(--midnight-blue);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  line-height: 1em;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
}

.sps-button-icon {
  color: var(--midnight-blue);
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  font-size: 14px;
  line-height: 1em;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: relative;
  top: -1px;
  left: 0;
}

.button-default-wrapper {
  display: inline-block;
}

.sps-grid-item-img {
  justify-content: center;
  align-items: center;
  display: flex;
}

.sps-grid-item-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1em;
}

.section-generic-page-content {
  margin-bottom: 80px;
}

.section-generic-page-intro {
  margin-bottom: 55px;
}

.section-testimonals-slider {
  margin-bottom: 70px;
}

.section-testimonials-slider-container {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.section-stories-from-clients {
  background-color: #f3f2f2;
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 70px;
}

.ssfc-heading {
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 34px;
  line-height: 1.4em;
}

.ssfc-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: flex;
}

.ssfc-item {
  text-align: center;
  border: 1px #000;
  border-radius: 8px;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 12px 4px rgba(0, 0, 0, .08);
}

.section-live-chat {
  margin-bottom: 60px;
}

.section-live-chat-wrapper {
  background-color: #e9ecef;
  border-radius: 15px;
  align-items: flex-end;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 30px;
  display: flex;
}

.section-live-chat-text {
  flex: 1;
  padding-top: 50px;
  padding-bottom: 65px;
}

.section-live-chat-img-wrapper {
  margin-top: -65px;
  margin-right: 40px;
  padding-left: 10px;
}

.sgl-grid-item-section-wrapper {
  margin-bottom: 20px;
  padding-left: 25px;
  padding-right: 25px;
}

.sgl-grid-item-section {
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.sgpi-heading {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 55px;
  font-size: 28px;
  line-height: 1.4em;
}

.sih-wrapper {
  border-radius: 15px;
  display: flex;
  overflow: hidden;
}

.section-inner-hero {
  margin-bottom: 60px;
}

.sih-logo {
  margin-top: 60px;
  display: block;
}

.sts-slider {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
}

.sts-slide {
  height: auto;
  background-image: url('../images/Rectangle-47.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 90px;
  padding-bottom: 90px;
}

.sts-arrow {
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
  top: auto;
  bottom: 100px;
}

.sts-arrow.left {
  margin-top: 0;
  margin-bottom: 0;
  top: auto;
  bottom: 100px;
  left: 80px;
}

.sts-arrow.right {
  margin-left: 0;
  margin-right: 0;
  left: 195px;
}

.sts-nav {
  display: none;
}

.sts-counter-wrapper {
  z-index: 9;
  height: 40px;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 100px;
  left: 130px;
}

.sts-counter-current, .sts-counter-total {
  color: #fff;
  font-weight: 700;
}

.sts-counter-text {
  color: #fff;
  margin-left: 5px;
  margin-right: 5px;
  font-weight: 700;
}

.sts-arrow-icon {
  justify-content: center;
  align-items: center;
  display: flex;
}

.sts-text-wrapper {
  padding-bottom: 50px;
  padding-right: 40px;
}

.sts-video-wrapper {
  max-width: 660px;
  flex: 1;
}

.sts-sub-tagline {
  border-left: 5px solid var(--gold);
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 12px;
  font-size: 15px;
}

.sts-h2-heading {
  max-width: 250px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 45px;
  line-height: 1.2em;
}

.sts-h2-heading.m-custom {
  margin-top: 20px;
}

.sts-subtext {
  color: #d7d7d7;
  text-transform: uppercase;
  margin-top: 50px;
  font-size: 15px;
}

.sts-subtext.mobile {
  display: none;
}

.sts-slide-wrapper {
  justify-content: space-between;
  padding-top: 0;
  padding-left: 84px;
  padding-right: 44px;
  display: flex;
}

.section-homepage-hero-wrapper {
  position: relative;
}

.shh-content-wrapper {
  min-height: 468px;
  background-image: url('../images/3spos-homepage-hero-bg.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 40px 40px 50px;
  display: flex;
}

.shh-image-wrapper {
  max-width: 572px;
  position: absolute;
  top: -10px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.h1-homepage {
  max-width: 50%;
  margin-top: 0;
  margin-bottom: 40px;
  padding-right: 30px;
  font-size: 63px;
  line-height: 1.1em;
}

.shh-button-default {
  width: 286px;
  height: 56px;
  background-color: var(--cadet-blue);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
}

.shh-button-default.me-40 {
  flex-wrap: nowrap;
  margin-right: 40px;
}

.shh-button-text {
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 700;
  line-height: 1em;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
}

.shh-button-icon {
  color: #fff;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  font-size: 18px;
  line-height: 1em;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: relative;
  top: -1px;
  left: 0;
}

.shh-cta-wrapper {
  max-width: 50%;
  flex-wrap: wrap;
  display: flex;
}

.shh-cta-wrapper.mobile {
  display: none;
}

.shh-link-default {
  width: auto;
  height: 56px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 12px 10px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
}

.shh-link-text {
  color: var(--midnight-blue);
  text-transform: none;
  font-size: 19px;
  font-weight: 700;
  line-height: 1em;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
}

.shh-link-icon {
  color: var(--midnight-blue);
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  font-size: 18px;
  line-height: 1em;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: relative;
  top: -1px;
  left: 0;
}

.shh-image {
  display: block;
}

.gradient-grid-wrapper {
  text-align: right;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 100px;
  position: relative;
}

.gradient-grid {
  z-index: 3;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  border: 6px solid #dcdcdc;
  border-right: 6px #000;
  border-radius: 40px 0 0 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 120px;
  display: grid;
  position: relative;
}

.gradient-grid-logo {
  z-index: 4;
  width: 195px;
  height: 195px;
  position: absolute;
  top: 105px;
  left: 5px;
}

.gradient-grid-item {
  height: 100px;
  background-color: var(--gold);
  color: var(--midnight-blue);
  cursor: default;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 5px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  overflow: hidden;
}

.gradient-grid-item.bg-gray {
  cursor: default;
  background-color: #c4c8d6;
}

.gradient-grid-item-heading {
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 19px;
  line-height: 1em;
}

.gradient-grid-item-text {
  opacity: .4;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.2em;
}

.gradient-grid-sub-text {
  z-index: 4;
  background-color: #fff;
  margin: 0 0 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  font-size: 19px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  top: 0;
  box-shadow: 0 0 60px 60px #fff;
}

.gradient-grid-logo-img {
  display: block;
  transform: translate(0);
}

.gradient-grid-sub-text-wrapper {
  z-index: 4;
  padding-left: 100px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform: translate(0, -50%);
}

.gradient-grid-sub-text-wrapper.bottom {
  margin-top: -6px;
}

.gradient-grid-sub-text-wrapper.top {
  margin-bottom: -6px;
  transform: translate(0, 50%);
}

.shn-idl-item-icon {
  width: 28px;
  height: 28px;
  opacity: 0;
  justify-content: center;
  align-items: center;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.shn-idl-item-text {
  color: var(--midnight-blue);
  white-space: nowrap;
  display: block;
}

.modals-container {
  display: none;
}

.section-form-message-container {
  position: relative;
}

.section-form-message {
  border-top: 1px solid var(--red);
  color: #e40000;
  padding-top: 5px;
  font-size: 14px;
  position: relative;
  top: -1px;
  left: 0;
  right: 0;
}

.section-contacts-form {
  background-color: var(--midnight-blue);
  margin-top: 0;
  padding-top: 75px;
  padding-bottom: 200px;
}

.section-form-textarea {
  min-height: 160px;
  border: 1px #fff;
  border-top-style: solid;
  border-bottom: 1px solid #8b8c9f;
  border-radius: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
}

.section-form-textarea:hover {
  border-bottom-color: var(--midnight-blue);
}

.section-form-textarea:focus {
  border-style: solid;
  border-color: var(--midnight-blue);
  padding-left: 10px;
  padding-right: 10px;
}

.section-locations {
  padding-bottom: 70px;
}

.section-locations-grid {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.h4-heading {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4em;
}

.slgi-name {
  font-size: 22px;
  font-weight: 700;
}

.slgi-address {
  margin-top: 5px;
}

.slgi-contacts {
  margin-top: 30px;
}

.slgi-link {
  color: var(--midnight-blue);
  text-decoration: none;
}

.slgi-button-wrapper {
  margin-top: 30px;
}

.gradient-grid-logo-img-hover {
  display: block;
  position: absolute;
  top: 0;
}

.ggl-circle-1 {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 100px;
  padding: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px 10px rgba(0, 0, 0, .2);
}

.ggl-circle-2 {
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  background-color: #fff;
  border-radius: 100px;
  padding: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px 10px rgba(0, 0, 0, .15);
}

.ggl-circle-3 {
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  background-color: #fff;
  border-radius: 100px;
  padding: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px 30px rgba(0, 0, 0, .05);
}

.ggl-circle-4 {
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  background-color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 6px;
  transition: all .4s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  overflow: hidden;
}

.ggl-circle-4:hover {
  box-shadow: inset 0 0 36px 18px rgba(0, 0, 0, .1);
}

.mobile-menu-panel, .hamburger-button, .mobile-controls {
  display: none;
}

.section-page-not-found {
  margin-top: 190px;
  margin-bottom: 50px;
}

.pnf-wrapper {
  text-align: center;
  background-color: #e9ecef;
  border-radius: 15px;
  margin-top: 0;
  padding: 0 50px 100px;
}

.pnf-icon {
  margin-bottom: -50px;
  position: relative;
  top: -120px;
}

.pnf-h2 {
  margin-top: 0;
  margin-bottom: 20px;
}

.pnf-p {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 991px) {
  .body.overflow-hidden {
    overflow: hidden;
  }

  .section-header {
    z-index: 10000;
    height: 100px;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: relative;
  }

  .section-request-demo {
    height: 120px;
    background-color: var(--midnight-blue);
  }

  .section-top {
    z-index: 10000;
    position: relative;
  }

  .slh-text-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .slh-img-wrapper {
    height: 250px;
  }

  .slh-heading {
    font-size: 32px;
  }

  .slh-subtext {
    line-height: 1.4em;
  }

  .sgl-grid-item-logo-wrapper, .sgl-grid-item-text-wrapper, .sgl-grid-item-cta-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .sgl-grid-item-content-wrapper {
    padding-bottom: 20px;
  }

  .section-form {
    margin-top: 60px;
  }

  .sc-first-part {
    flex: 1;
  }

  .sc-last-part {
    flex: 0 auto;
    padding: 20px 40px;
  }

  .sc-first-part-img {
    width: 172px;
  }

  .sc-first-part-text {
    min-width: 200px;
    white-space: normal;
    flex: 1;
  }

  .sc-last-part-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .breadcrumbs-list {
    margin-top: 0;
    margin-bottom: 0;
  }

  .section-top-text {
    font-size: 13px;
  }

  .section-top-contacts-list-item {
    margin-left: 15px;
    font-size: 13px;
  }

  .section-top-contacts-list-item.hide-mobile, .section-header-navigation {
    display: none;
  }

  .shn-item {
    padding-left: 15px;
  }

  .header-button {
    padding: 8px 20px;
  }

  .section-request-demo-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .srd-text {
    width: 100%;
    margin-bottom: 16px;
  }

  .srd-content {
    align-self: stretch;
    margin-left: -10px;
    margin-right: -10px;
  }

  .srd-item {
    margin-left: 10px;
    margin-right: 10px;
  }

  .srd-item.last {
    display: none;
  }

  .srd-label {
    text-align: center;
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
  }

  .srd-button {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-footer-wrapper {
    flex-direction: column;
  }

  .sf-first {
    width: 100%;
    max-width: 100%;
    display: flex;
  }

  .sf-mid {
    margin-left: 0;
  }

  .sf-last {
    max-width: 180px;
    flex: 1;
    padding-left: 30px;
  }

  .sff-text {
    margin-top: 3px;
    margin-bottom: 3px;
  }

  .sf-first-text-container {
    padding-left: 30px;
  }

  .sgl-grid-item-heading-wrapper, .sgl-grid-item-date-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .sil-item-logos {
    padding-left: 15px;
  }

  .sil-item-text-wrapper {
    padding-top: 15px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .sil-il-item {
    margin: 10px;
  }

  .sil-item-heading {
    margin-bottom: 15px;
    font-size: 36px;
  }

  .scl-heading {
    font-size: 40px;
  }

  .logos-slide-wrapper {
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-around;
  }

  .section-hospitality-wrapper {
    padding-left: 40px;
  }

  .sh-text-wrapper {
    flex: 1;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 30px;
  }

  .sh-img-wrapper {
    display: none;
  }

  .sh-heading {
    max-width: 50%;
    flex: 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
  }

  .h2-heading {
    font-size: 40px;
  }

  .section-store-size {
    margin-bottom: 60px;
  }

  .section-store-size-content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .h3-heading {
    font-size: 24px;
  }

  .sssc-grid {
    grid-column-gap: 10px;
    grid-row-gap: 0px;
  }

  .sssc-grid-item {
    height: 120px;
  }

  .sssc-grid-item.trigger-form-modal {
    height: 140px;
  }

  .sssc-grid-item-hover {
    display: none;
  }

  .sssc-grid-item-text-value {
    font-size: 19px;
  }

  .section-homepage-hero {
    padding-bottom: 40px;
    overflow: hidden;
  }

  .shi-item {
    min-width: 14%;
  }

  .shi-item-img-wrapper {
    width: 62px;
    height: 62px;
  }

  .shi-item-text {
    font-size: 12px;
    line-height: 14px;
  }

  .section-powering-sectors {
    margin-bottom: 40px;
  }

  .sps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sps-grid-item {
    padding: 20px 15px;
  }

  .sps-grid-item-heading {
    font-size: 28px;
  }

  .sps-grid-item-text {
    font-size: 14px;
  }

  .section-generic-page-content {
    margin-bottom: 60px;
  }

  .section-stories-from-clients {
    margin-bottom: 60px;
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .ssfc-heading {
    margin-bottom: 30px;
    font-size: 28px;
  }

  .sgl-grid-item-section-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .sgpi-heading {
    font-size: 24px;
  }

  .sts-slide {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .sts-arrow.left, .sts-arrow.right, .sts-counter-wrapper {
    bottom: 30px;
  }

  .sts-video-wrapper {
    max-width: 400px;
  }

  .sts-h2-heading {
    font-size: 40px;
  }

  .sts-subtext {
    margin-top: 30px;
  }

  .sts-slide-wrapper {
    padding-left: 40px;
  }

  .shh-content-wrapper {
    min-height: 0;
    background-color: #e9ecef;
    border-radius: 15px;
    padding: 30px;
  }

  .shh-image-wrapper {
    max-width: 360px;
    padding-top: 30px;
    top: 0;
    right: -35px;
  }

  .h1-homepage {
    font-size: 42px;
  }

  .shh-button-default.me-40 {
    width: auto;
    height: auto;
    margin-right: 0;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .shh-cta-wrapper.mobile {
    display: none;
  }

  .shh-link-default {
    height: 44px;
    margin-top: 10px;
  }

  .gradient-grid {
    display: block;
  }

  .gradient-grid-logo {
    top: 50%;
    transform: translate(0, -50%);
  }

  .gradient-grid-item {
    height: 60px;
    flex-direction: row;
    margin-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .gradient-grid-item-heading {
    text-align: left;
    flex: 1;
    margin-bottom: 0;
  }

  .gradient-grid-item-text {
    max-width: 130px;
    text-align: left;
    flex: 1;
  }

  .section-contacts-form {
    margin-top: 60px;
  }

  .section-locations {
    padding-bottom: 0;
  }

  .h4-heading {
    font-size: 24px;
  }

  .mobile-menu-panel {
    z-index: 999;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 134px 0 0;
    transition: all .4s cubic-bezier(.215, .61, .355, 1);
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: translate(-100%);
  }

  .mobile-menu-panel.active {
    height: 100vh;
    transform: translate(0%);
  }

  .mmp-close {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    line-height: 1em;
    transition: all .4s cubic-bezier(.215, .61, .355, 1);
    display: none;
    position: absolute;
    top: 30px;
    bottom: auto;
    left: auto;
    right: 30px;
  }

  .mmp-close:hover {
    background-color: var(--white-smoke);
  }

  .mmp-list {
    height: 100%;
    border-left: 20px solid #ffd500;
    margin-top: 0;
    padding-bottom: 30px;
    padding-right: 0;
    overflow: auto;
  }

  .mmp-list-item {
    color: var(--midnight-blue);
    padding: 0;
    display: block;
    position: relative;
  }

  .mmp-list-item.has-children {
    padding-left: 0;
    padding-right: 0;
  }

  .mmp-list-item-link {
    color: var(--midnight-blue);
    border-bottom: 1px solid #c4c8d6;
    padding: 13px 40px;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    transition: all .4s cubic-bezier(.215, .61, .355, 1);
    display: block;
  }

  .mmp-list-item-link.active {
    background-color: #f3f2f2;
    border-radius: 4px;
  }

  .mmp-list-item-sublist {
    background-color: #f3f2f2;
    padding: 10px 0;
  }

  .mmp-lis-item {
    padding-top: 0;
    padding-bottom: 0;
  }

  .mmp-list-item-icon {
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
    transition: all .4s cubic-bezier(.215, .61, .355, 1);
    display: flex;
    position: absolute;
    top: 14px;
    right: 20px;
  }

  .mmp-lis-item-link {
    color: var(--midnight-blue);
    padding: 13px 40px;
    font-size: 19px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity .4s cubic-bezier(.215, .61, .355, 1);
    display: block;
  }

  .mmp-lis-item-link.active {
    color: var(--midnight-blue);
    background-color: #e6e6e6;
    border-radius: 4px;
  }

  .hamburger-button {
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    display: flex;
  }

  .mobile-controls {
    display: flex;
  }

  .header-phone-link {
    width: 40px;
    height: 40px;
    color: #1c1733;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 30px;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .section-header {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-request-demo {
    height: 80px;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
  }

  .section-breadcrumbs {
    margin-top: 7px;
    margin-bottom: 7px;
  }

  .section-landing-hero {
    margin-bottom: 40px;
  }

  .section-contacts {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .container.section-inner-hero-container {
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .slh-text-wrapper {
    padding: 20px 30px;
  }

  .slh-img-wrapper {
    height: 180px;
    display: none;
  }

  .slh-wrapper {
    border-radius: 0;
  }

  .slh-heading {
    font-size: 24px;
    line-height: 1.2em;
  }

  .slh-subtext {
    letter-spacing: 0;
    font-size: 14px;
  }

  .sgl-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sgl-grid-item-content-wrapper {
    width: 100%;
  }

  .section-form {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .section-form-heading {
    margin-bottom: 20px;
    font-size: 42px;
  }

  .section-form-subheading {
    font-size: 22px;
  }

  .section-form-wrapper {
    padding: 30px;
  }

  .sc-first-part {
    max-width: 54%;
    flex: 0 auto;
    padding-right: 20px;
  }

  .sc-last-part {
    flex: 1;
    padding-left: 20px;
    padding-right: 20px;
  }

  .sc-first-part-img {
    display: none;
  }

  .breadcrumbs-list {
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.1em;
  }

  .section-top-text {
    font-size: 11px;
  }

  .section-top-contacts-list-item, .srd-text {
    display: none;
  }

  .srd-content {
    margin-left: 0;
    margin-right: 0;
  }

  .srd-item {
    display: none;
  }

  .srd-item.last {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .srd-button {
    width: 100%;
  }

  .sf-first {
    flex-direction: column;
  }

  .sf-last {
    max-width: 100%;
    border-left-style: none;
    order: -1;
    padding-left: 0;
  }

  .sf-logo {
    margin-bottom: 20px;
  }

  .sf-contacts {
    display: block;
  }

  .sf-contacts-link {
    margin-left: 0;
    margin-right: 10px;
    display: inline-block;
  }

  .soc-icons-list {
    display: none;
  }

  .sfsil-item {
    font-size: 26px;
  }

  .footer-menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sf-first-text-container {
    margin-bottom: 20px;
    padding-left: 0;
  }

  .sf-big {
    flex-direction: column;
  }

  .sf-contacts-mobile {
    width: 100%;
    margin-bottom: 20px;
    display: none;
  }

  .soc-icons-list-mobile {
    margin-top: 20px;
    display: flex;
  }

  .sll-list {
    margin-left: -10px;
    margin-right: -10px;
  }

  .sll-list-item {
    padding: 10px;
  }

  .sil-item-top {
    flex-direction: column;
  }

  .sil-item-img-wrapper {
    width: 100%;
    height: 250px;
    min-width: 0%;
    order: -1;
    position: relative;
    overflow: hidden;
  }

  .sil-item-img {
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .section-customer-stories-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    display: flex;
  }

  .scs-text-wrapper {
    padding: 30px;
    overflow: hidden;
  }

  .scs-img-wrapper {
    height: 250px;
    order: -1;
  }

  .scs-heading {
    margin-bottom: 30px;
  }

  .scl-heading {
    font-size: 28px;
  }

  .section-hospitality-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 40px;
    display: flex;
  }

  .sh-text-wrapper {
    padding: 0;
    overflow: hidden;
  }

  .sh-img-wrapper {
    height: 250px;
    order: -1;
  }

  .sh-heading {
    max-width: 100%;
    align-self: stretch;
    margin-bottom: 30px;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .sh-list {
    padding-left: 17px;
  }

  .h2-heading {
    font-size: 28px;
  }

  .section-store-size-pre {
    display: block;
  }

  .section-store-size-content {
    background-image: linear-gradient(rgba(28, 23, 51, .36), rgba(28, 23, 51, .36));
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .sssp-item.last {
    max-width: 100%;
    padding-left: 0;
  }

  .sssp-item.first {
    max-width: 100%;
    margin-bottom: 30px;
    padding-right: 0;
  }

  .sssc-heading {
    display: none;
  }

  .sssc-grid {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .sssc-grid-item.hidden-desktop {
    background-color: rgba(0, 0, 0, 0);
    align-items: flex-start;
    display: flex;
  }

  .sssc-grid-item-first-text {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
  }

  .section-homepage-hero {
    overflow: visible;
  }

  .section-homepage-icons-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .shi-item {
    width: 25%;
    max-width: 25%;
    min-width: 15%;
    flex: 0 auto;
    justify-content: center;
    margin-bottom: 20px;
  }

  .sps-grid {
    grid-template-columns: 1fr;
  }

  .sps-grid-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    display: flex;
  }

  .sps-grid-item-img-wrapper {
    margin-bottom: 0;
    margin-right: 10px;
  }

  .sps-grid-item-heading-wirapper {
    margin-bottom: 0;
  }

  .sps-grid-item-text-wrapper {
    display: none;
  }

  .sps-button-default {
    width: 40px;
    height: 40px;
    padding: 0;
  }

  .sps-button-default.slgi {
    width: auto;
    padding: 13px 30px 11px;
  }

  .sps-button-text {
    display: none;
  }

  .sps-button-text.slgi {
    display: block;
  }

  .sps-button-icon {
    margin-left: 0;
    top: 0;
  }

  .sps-grid-item-img {
    max-height: 50px;
    max-width: 50px;
  }

  .sps-grid-item-heading {
    text-align: left;
    font-size: 32px;
  }

  .sps-grid-item-inner-wrapper {
    align-items: center;
    display: flex;
  }

  .section-generic-page-content, .section-generic-page-intro, .section-stories-from-clients {
    margin-bottom: 40px;
  }

  .ssfc-grid {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: stretch;
  }

  .ssfc-item {
    max-width: 45%;
    min-width: 45%;
    align-items: center;
  }

  .section-live-chat-text {
    padding: 30px;
  }

  .section-live-chat-img-wrapper {
    display: none;
  }

  .sgpi-heading {
    padding-bottom: 40px;
    font-size: 22px;
  }

  .sih-wrapper {
    border-radius: 0;
    flex-direction: column;
  }

  .section-inner-hero {
    border-radius: 0;
    margin-bottom: 40px;
  }

  .sih-logo {
    margin-top: 30px;
  }

  .sts-slide {
    background-color: var(--midnight-blue);
    background-image: none;
    border-radius: 12px;
    padding-top: 30px;
    padding-bottom: 70px;
  }

  .sts-arrow.left {
    bottom: 20px;
    left: auto;
    right: 140px;
  }

  .sts-arrow.right {
    bottom: 20px;
    left: auto;
    right: 30px;
  }

  .sts-counter-wrapper {
    width: 60px;
    justify-content: center;
    bottom: 20px;
    left: auto;
    right: 75px;
  }

  .sts-text-wrapper {
    padding-bottom: 10px;
  }

  .sts-video-wrapper {
    max-width: 100%;
  }

  .sts-h2-heading {
    max-width: 100%;
    font-size: 28px;
  }

  .sts-subtext {
    display: none;
  }

  .sts-subtext.mobile {
    display: block;
    position: absolute;
    bottom: 25px;
  }

  .sts-slide-wrapper {
    padding-left: 30px;
    padding-right: 30px;
    display: block;
  }

  .section-homepage-hero-wrapper {
    background-color: #e9ecef;
    border-radius: 15px;
    padding-bottom: 30px;
    display: block;
  }

  .shh-content-wrapper {
    max-width: 50%;
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    flex: 1;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 0;
  }

  .shh-image-wrapper {
    max-width: 60%;
    flex: 1;
    margin-top: -10px;
    margin-right: -20px;
    padding-top: 0;
    position: relative;
    right: 0;
  }

  .h1-homepage {
    max-width: 100%;
    font-size: 24px;
  }

  .shh-button-default {
    width: 40px;
    height: 40px;
    padding: 0;
  }

  .shh-button-default.me-40 {
    height: 44px;
  }

  .shh-button-text {
    display: block;
  }

  .shh-button-icon {
    margin-left: 10px;
    top: 0;
  }

  .shh-cta-wrapper {
    display: none;
  }

  .shh-cta-wrapper.mobile {
    max-width: 100%;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .shh-link-default {
    width: 100%;
    height: 44px;
    padding: 0;
  }

  .shh-link-text {
    display: block;
  }

  .shh-link-icon {
    margin-left: 10px;
    top: 0;
  }

  .shh-inner-wrapper {
    margin-bottom: 20px;
    display: flex;
  }

  .gradient-grid-wrapper {
    padding-left: 60px;
  }

  .gradient-grid {
    padding-left: 80px;
  }

  .gradient-grid-logo {
    width: 140px;
    height: 140px;
    left: -8px;
  }

  .gradient-grid-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gradient-grid-item-heading {
    padding-right: 10px;
  }

  .gradient-grid-item-text {
    max-width: 100px;
  }

  .section-contacts-form {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .section-locations-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  .section-contacts {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .container.small.section-customer-stories-container, .container.xsmall {
    padding-left: 0;
    padding-right: 0;
  }

  .sgl-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .sgl-grid-item-img-wrapper {
    width: 100%;
  }

  .section-form {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .section-form-heading {
    margin-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .section-form-subheading {
    margin-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .section-form-wrapper {
    border-radius: 0;
  }

  .section-form-item {
    margin-bottom: 25px;
  }

  .section-contacts-wrapper {
    border-radius: 10px;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
  }

  .sc-first-part {
    max-width: 100%;
    border-radius: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .sc-last-part {
    border-radius: 0;
  }

  .sc-last-part-grid {
    width: 100%;
  }

  .sc-lp-gi-text-link {
    text-decoration: underline;
  }

  .breadcrumbs-list {
    margin-top: 0;
    margin-bottom: 0;
  }

  .section-top-text {
    text-align: center;
    letter-spacing: -.1px;
    flex: 1;
    font-size: 11px;
    line-height: 1em;
    display: block;
  }

  .section-top-wrapper {
    text-align: center;
    align-items: center;
  }

  .sil-item-img-wrapper {
    height: auto;
    overflow: visible;
  }

  .sil-item-img {
    position: relative;
  }

  .sil-item-heading {
    font-size: 24px;
  }

  .section-customer-stories-wrapper {
    border-radius: 0;
  }

  .link-with-arrow-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .link-with-arrow-container.ps-0 {
    padding-left: 0;
    position: relative;
  }

  .section-generic-gray {
    margin-bottom: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .scl-heading {
    margin-bottom: 15px;
    line-height: 1.2em;
  }

  .logos-slide-wrapper {
    justify-content: space-between;
  }

  .section-hospitality {
    margin-bottom: 40px;
  }

  .section-hospitality-wrapper {
    border-radius: 10px;
    padding: 30px;
  }

  .sh-heading {
    font-size: 28px;
  }

  .sh-list {
    margin-bottom: 0;
  }

  .h2-heading {
    margin-bottom: 15px;
    line-height: 1.2em;
  }

  .sub-tagline {
    letter-spacing: 0;
  }

  .section-store-size {
    margin-bottom: 40px;
  }

  .section-store-size-content {
    background-image: linear-gradient(rgba(28, 23, 51, .36), rgba(28, 23, 51, .36)), url('../images/Front-of-the-house-team_opt-1.png');
    background-position: 0 0, 58%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    margin-top: 40px;
  }

  .h3-heading {
    margin-bottom: 15px;
  }

  .sssc-heading {
    font-size: 17px;
    line-height: 1.4em;
    display: block;
  }

  .sssc-grid {
    width: 190px;
    grid-template-columns: 1fr;
  }

  .sssc-grid-item {
    height: 90px;
  }

  .sssc-grid-item.hidden-desktop {
    display: none;
  }

  .sssc-grid-item.trigger-form-modal {
    height: 110px;
  }

  .section-homepage-icons {
    margin-bottom: 40px;
  }

  .shi-item-text-wrapper {
    padding-left: 4px;
    padding-right: 4px;
  }

  .section-powering-sectors {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sps-grid {
    grid-template-columns: 1fr;
  }

  .sps-grid-item {
    padding-left: 15px;
    padding-right: 15px;
  }

  .sps-grid-item-heading {
    font-size: 28px;
  }

  .section-generic-page-intro {
    margin-bottom: 30px;
  }

  .ssfc-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .ssfc-item {
    max-width: 100%;
    min-width: 0%;
  }

  .sgpi-heading {
    padding-bottom: 30px;
    font-size: 20px;
  }

  .sts-arrow.left {
    left: 25px;
    right: auto;
  }

  .sts-arrow.right {
    left: 140px;
    right: auto;
  }

  .sts-counter-wrapper {
    left: 74px;
    right: auto;
  }

  .sts-h2-heading {
    margin-bottom: 15px;
    line-height: 1.2em;
  }

  .sts-subtext.mobile {
    margin-top: 20px;
    position: relative;
    bottom: 0;
  }

  .section-homepage-hero-wrapper {
    padding-bottom: 20px;
  }

  .shh-content-wrapper {
    max-width: 45%;
    padding-top: 25px;
    padding-right: 10px;
  }

  .shh-image-wrapper {
    margin-top: 10px;
  }

  .h1-homepage {
    margin-bottom: 30px;
    padding-right: 0;
  }

  .shh-button-text {
    font-size: 16px;
  }

  .shh-link-text {
    font-size: 17px;
  }

  .shh-inner-wrapper {
    margin-bottom: 0;
  }

  .gradient-grid-wrapper {
    z-index: 0;
    margin-top: -100px;
    margin-bottom: 0;
    padding-left: 0;
  }

  .gradient-grid {
    border-bottom-style: none;
    border-right-style: solid;
    border-right-color: #dcdcdc;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 0;
    padding-top: 200px;
    padding-left: 0;
  }

  .gradient-grid-logo {
    top: 105px;
    left: 50%;
    transform: translate(-50%);
  }

  .gradient-grid-item {
    flex-direction: column;
    padding-bottom: 0;
    position: relative;
  }

  .gradient-grid-item-text {
    max-width: 100%;
    text-align: center;
    line-height: 1em;
  }

  .gradient-grid-sub-text-wrapper.bottom {
    text-align: center;
    margin-top: 0;
    padding-left: 0;
  }

  .gradient-grid-sub-text-wrapper.top {
    text-align: center;
    margin-bottom: 0;
    padding-top: 100px;
    padding-left: 0;
    transform: translate(0, 200px);
  }

  .section-our-solutions-heading {
    z-index: 2;
    position: relative;
  }

  .section-contacts-form {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .section-locations-grid {
    grid-template-columns: 1fr;
  }

  .h4-heading {
    margin-bottom: 15px;
  }

  .pnf-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
}

#w-node-ef0a5ebe-b86d-e4a8-5750-d270f8ba1d4a-8dd1e743, #w-node-ce54e02a-7eca-f55d-b5d3-f76bf63b3276-8dd1e743, #w-node-_8e12b522-72a0-da29-1d9a-8f48369804ff-8dd1e743, #w-node-_8de92580-b9e3-efcc-10e3-23a4a6242589-8dd1e743, #w-node-b2b86b0d-020a-2579-7025-42a8f87d43c6-8dd1e743, #w-node-ceb5f8b2-6517-7342-2c78-457bb4fb327f-8dd1e743, #w-node-cee1f64c-bc55-adf2-eaca-1324d5dd677d-8dd1e743, #w-node-_743f7496-526b-a0d9-0bef-8fd36c59e65d-8dd1e743, #w-node-_10d27cc5-2a21-6715-2272-44523cdb0e7a-8dd1e743, #w-node-e00a2bf7-1da4-b4a1-147f-cb5b712e9f4b-8dd1e743, #w-node-_25c3bae3-3c0c-4a8c-34b4-4ef7edb38bcc-8dd1e743, #w-node-_399eda88-a1af-4775-7c89-5d5bdad36dae-8dd1e743, #w-node-_6f00c8d7-fcb4-a7f7-9ba3-dc9e46ae7926-8dd1e743, #w-node-d8149649-b039-1502-c0d1-ee2d17810806-8dd1e743, #w-node-ac9c46f8-8e17-174d-8d81-f3ce13b2966c-8dd1e743, #w-node-c5ca3761-d84f-fae7-3b1b-965d08341cff-8dd1e743, #w-node-beaa1832-1053-155a-7658-8d40cc922de0-cc922dd1, #w-node-beaa1832-1053-155a-7658-8d40cc922df9-cc922dd1, #w-node-beaa1832-1053-155a-7658-8d40cc922e09-cc922dd1, #w-node-beaa1832-1053-155a-7658-8d40cc922e1c-cc922dd1, #w-node-c6785c14-ef1c-3004-9304-de4e6738b4aa-6738b4aa, #w-node-d4ac57b4-981c-2d6c-686b-9e427a0723ad-7314c012, #w-node-_24109228-5cbe-c716-ea3c-55527afa1b76-7314c012, #w-node-_8369311b-ed74-ec03-1cde-43faeda49f02-7314c012, #w-node-d39156f0-bec6-3deb-cf92-21e0d8c10b08-7314c012, #w-node-_47646f65-a3bb-58a8-b587-b63e33f8769f-7314c012, #w-node-_5b118795-d3b1-b753-8fa7-6d1aa95b1748-7314c012, #w-node-_0faf906e-9d99-bbab-06df-f76db733668c-b7336683, #w-node-_0faf906e-9d99-bbab-06df-f76db7336692-b7336683, #w-node-_0faf906e-9d99-bbab-06df-f76db7336696-b7336683, #w-node-_0faf906e-9d99-bbab-06df-f76db733669c-b7336683, #w-node-_82d93a6d-0b86-92ad-e2c3-d0b8e913375c-e2070565, #w-node-_3808a347-ff8b-980f-13fe-10100823eaa7-e2070565, #w-node-fe7bd80d-2660-53ca-362d-81c0c3052aae-e2070565 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_0faf906e-9d99-bbab-06df-f76db7336692-b7336683 {
    order: 9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_0faf906e-9d99-bbab-06df-f76db7336692-b7336683 {
    order: 9999;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}