/*style*/
@font-face {
  font-family: 'Inter-Thin';
  src: url('../fonts/Inter-Thin.ttf');
}

@font-face {
  font-family: 'Inter-ExtraLight';
  src: url('../fonts/Inter-ExtraLight.ttf');
}

@font-face {
  font-family: 'Inter-Light';
  src: url('../fonts/Inter-Light.ttf');
}

@font-face {
  font-family: 'Inter-Regular';
  src: url('../fonts/Inter-Regular.ttf');
}

@font-face {
  font-family: 'Inter-Medium';
  src: url('../fonts/Inter-Medium.ttf');
}

@font-face {
  font-family: 'Inter-SemiBold';
  src: url('../fonts/Inter-SemiBold.ttf');
}

@font-face {
  font-family: 'Inter-Bold';
  src: url('../fonts/Inter-Bold.ttf');
}

@font-face {
  font-family: 'Inter-ExtraBold';
  src: url('../fonts/Inter-ExtraBold.ttf');
}

@font-face {
  font-family: 'Inter-Black';
  src: url('../fonts/Inter-Black.ttf');
}

@font-face {
  font-family: 'Roboto-Light';
  src: url('../fonts/Roboto-Light.ttf');
}

@font-face {
  font-family: 'Roboto-LightItalic';
  src: url('../fonts/Roboto-LightItalic.ttf');
}

@font-face {
  font-family: 'Roboto-Regular';
  src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
  font-family: 'Roboto-Italic';
  src: url('../fonts/Roboto-Italic.ttf');
}

@font-face {
  font-family: 'Roboto-Medium';
  src: url('../fonts/Roboto-Medium.ttf');
}

@font-face {
  font-family: 'Roboto-Bold';
  src: url('../fonts/Roboto-Bold.ttf');
}

@font-face {
  font-family: 'Roboto-Black';
  src: url('../fonts/Roboto-Black.ttf');
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto-Regular';
  overflow-x: hidden;
}

p {
  line-height: 1.5;
}

a {
  text-decoration: none;
}

.grecaptcha-badge {
  z-index: 9999;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.header-desktop {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  font-family: 'Roboto-Regular';
  z-index: 9999;
  padding: 15px 20px;
}

.nav-background {
  background: rgba(11, 124, 99);
  transition: all 0.2s linear;
}

.header-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0px 20px;
}

.header-content a {
  font-size: 1rem;
  color: #ffffff;
}

.rigth-side-header {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.rigth-side-header a:hover {
  color: #ec9706;
  transition: all 0.1s linear;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  left: -250px;
  top: 40px;
  padding: 20px;
  padding-bottom: 20px;
  border-radius: 0px 0px 20px 20px;
  z-index: 9999;
  color: #fff;
  font-family: 'Roboto-Regular';
  display: none;
  max-width: 580px;
  line-height: 2;
}

.dropdown-hover {
  padding-bottom: 12px;
  padding-top: 12px;
}

.dropdown-hover:hover + .dropdown-menu {
  display: block;
}

.dropdown-menu:hover {
  display: block;
}

.dropdown-menu p a {
  color: #fff;
}

.dropdown-menu-content {
  display: flex;
  justify-content: space-between;
}

.dropdown-menu-content h3 {
  font-size: 1rem;
  font-family: 'Roboto-Bold';
}

.dropdown-menu-content h3 a {
  color: #fff;
}

.dropdown-subtitle {
  font-family: 'Roboto-Bold';
  color: #808080;
  margin-top: 0px !important;
}

.dropdown-menu-characteristics {
  display: flex;
  gap: 40px;
}

.header-mobile {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
  filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.2));
  max-width: 100vw;
}

.mobile-header-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
}

.mobile-header-bottom img {
  max-width: 100vw;
}

.mobile-header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
}

.call-me-button {
  background: #282828;
  background: #282828;
  text-align: right;
  padding: 5px 25px;
}

.contact-box-content p {
  text-align: center;
  font-family: 'Roboto-Regular';
  font-size: 1.1rem;
  margin-top: 20px;
}

.contact-box-content {
  color: #4d4d4d;
  margin: 80px auto;
}

.call-me-button a {
  color: #ec9706;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 4px;
  background-color: #0b7c63;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.mobile-header-content {
  font-family: 'Roboto-Regular';
  font-size: 1.2rem;
}

.mobile-header-content a {
  margin: 10px auto;
  color: #0b7c63;
  display: block;
  font-family: 'Roboto-Bold';
}

.mobile-dropdown-link-collapse a {
  font-family: 'Roboto-Light' !important;
  color: #6f6c6c;
}

.mobile-dropdown-content {
  font-family: 'Roboto-Regular';
  cursor: pointer;
}

.productivity-margin a,
.mobile-dropdown-content {
  margin-bottom: 0px !important;
}

.pricing-margin-top,
.mobile-dropdown-link-collapse a:first-child {
  margin-top: 0px !important;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #0b7c63;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger:hover {
  opacity: 1 !important;
}

.mobile-header-content {
  display: none;
  text-align: center;
  padding-bottom: 20px;
}

.mobile-dropdown-content a {
  color: #575757;
  font-family: 'Roboto-regular';
}

.mobile-header-content p {
  padding: 5px;
  font-size: 1.3rem;
}

.mobile-dropdown-link-collapse {
  display: none;
}

.dropdown-for-features {
  display: none;
}

.hero-image {
  background: url('../images/global/station24-software.gif');
  background-position: center;
  background-position-y: -50px;
}

.hero-image-content {
  padding-top: 200px;
  padding-bottom: 300px;
}

.hero-image-content h1 {
  font-family: 'Inter-Bold';
  font-size: 4.5rem;
  color: white;
  text-align: center;
  line-height: 1;
}

.hero-image-content p {
  color: white;
  text-align: center;
  line-height: 1.4;
  padding: 30px 0px 30px 0px;
  font-size: 1.2rem;
}

.try-free-button {
  background: #ec9706;
  border-radius: 100px;
  color: white;
  padding: 15px 20px;
  font-family: 'Roboto-Regular';
  font-weight: regular;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0 auto;
  min-width: 200px;
  max-width: 280px;
  display: block;
  text-align: center;
}

.bottom-border-background {
  width: 100%;
  height: auto;
  position: relative;
  bottom: -10px;
  z-index: 1;
}

.bottom-border-background img {
  width: 100%;
}

.top-banner-animation {
  position: relative;
  width: 900px;
  left: 40%;
  margin-top: -300px;
  z-index: 2;
}

.top-banner-animation-image-1 {
  animation-duration: 0.5s;
}

.top-banner-animation-image-2 {
  animation-duration: 1s;
  --animate-delay: 0.9s;
}

.top-banner-animation-image-3 {
  top: 120px;
  left: 35%;
  animation-duration: 1.5s;
  --animate-delay: 2s;
}

.top-banner-animation-image {
  position: absolute;
}

.why-station-content .cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.why-station-content .card {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #ffc635;
  box-sizing: border-box;
  backdrop-filter: blur(15px);
  border-radius: 10px;
  max-width: 260px;
  /* min-width: 270px; */
  padding: 20px;
  min-height: 150px;
}

.why-station-content .card .card-title {
  font-size: 1.3rem;
  color: #0b7c63;
  margin-bottom: 15px;
}

.why-station-title {
  text-align: center;
  margin-bottom: 40px;
}

.why-station-title h2,
.moduls-heading h2 {
  font-family: 'Inter-Bold';
  font-size: 2.4rem;
  color: #0b7c63;
}

.why-station-content .card .card-text {
  color: #575757;
  font-size: 0.9rem;
  line-height: 1.6;
}

.modul {
  display: flex;
  justify-content: space-between;
  margin-top: 75px;
  align-items: center;
}

.modul-left {
  max-width: 550px;
}

.copyright a {
  color: white;
}

.reversed {
  flex-direction: row-reverse;
}

.moduls-heading {
  text-align: center;
  margin-top: 100px;
}

.moduls-heading p {
  margin-top: 40px;
  color: #4d4d4d;
  font-size: 1.2rem;
}

.modul-title,
.mobile-app-title,
.loyalty-title {
  color: #4d4d4d;
  font-size: 2rem;
}

.loyalty-right {
  max-width: 500px;
}

.loyalty-right img {
  width: 100%;
}

.modul-content,
.mobile-app-left-content,
.loyalty-left-content {
  margin-top: 25px;
  margin-left: 20px;
}

.modul-text,
.mobile-app-text,
.loyalty-text {
  color: #575757;
  font-size: 0.9rem;
  margin-top: 8px;
  font-family: 'Roboto-Regular';
  font-weight: lighter;
  line-height: 1.6;
}

.modul-subtitle,
.mobile-app-subtitle,
.loyalty-subtitle {
  color: #4d4d4d;
  font-size: 1.4rem;
  margin-left: 0px;
}

.modul-subtitle {
  position: relative;
}

.mobile-app {
  background: linear-gradient(
    180deg,
    #e6f2ef 0%,
    rgba(230, 242, 239, 0) 77.47%
  );
  position: relative;
}

.mobile-app-top-border {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 1;
}

.modul-subtitle::before,
.mobile-app-subtitle::before,
.loyalty-subtitle::before {
  content: url('../images/global/yellow-checkmark.png');
  position: absolute;
  left: -20px;
}

.modul-button {
  border: 1px solid #ec9706;
  border-radius: 100px;
  display: inline-block;
  padding: 15px 40px;
  margin-left: 15px;
  margin-top: 20px;
  color: #ec9706;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-app-content {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding-top: 100px;
  align-items: center;
}

.mobile-app-right {
  min-width: 500px;
  text-align: center;
}

.mobile-app-content-img img {
  max-width: 540px;
}

.download-app-button {
  margin-left: 15px;
  margin-top: 30px;
  cursor: pointer;
  display: inline-block;
}

.loyalty-program {
  margin-top: 100px;
}

.loyalty-program-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  gap: 100px;
}

.testimonials {
  margin-top: 100px;
}

.testimonial-title {
  color: #0b7c63;
  font-family: 'Inter-Bold';
  font-size: 2.8rem;
  text-align: center;
}

.testimonial-text {
  font-size: 1.3rem;
  color: #4d4d4d;
  text-align: center;
  font-family: 'Roboto-Regular';
  margin: 30px auto;
}

.testimonial-rating-img {
  text-align: center;
}

.testimonial-rating-text {
  text-transform: uppercase;
  color: #6f6c6c;
  font-family: 'Roboto-Regular';
  font-size: 1.1rem;
  text-align: center;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.testimonial-card {
  border: 1px solid #ddd;
  padding: 15px 20px 30px;
  max-width: 387px;
  min-width: 386px;
  border-radius: 10px;
  position: relative;
}

.quotes {
  position: absolute;
  bottom: 10px;
  right: 15px;
}

.testimonial-card-name {
  font-size: 1.3rem;
  font-family: 'Roboto-Regular';
  color: #4d4d4d;
}

.testimonial-card-rating {
  margin-top: 10px;
  margin-bottom: 12px;
}

.testimonial-card-text {
  font-size: 0.9rem;
  font-family: 'Roboto-Regular';
  color: #6f6c6c;
  line-height: 1.6;
}

.testimonial-footnote {
  font-size: 0.9rem;
  font-family: 'Roboto-Regular';
  color: #6f6c6c;
  margin-top: 30px;
}

.partners {
  background: linear-gradient(
    116deg,
    #50af75 0%,
    #6dcd93 37.43%,
    #50af75 79.85%
  );
  position: relative;
  padding-bottom: 50px;
}

.partners-title {
  font-size: 2.8rem;
  font-family: 'Inter-Bold';
  text-align: center;
  color: white;
  margin-bottom: 80px;
}

.partners-content {
  position: relative;
  z-index: 2;
  padding-top: 200px;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 41px;
  justify-content: space-between;
  align-items: center;
}

.partners-logos img {
  max-height: 122px;
}

.contact-box-content h2 {
  font-size: 2.8rem;
  font-family: 'Inter-Bold';
  text-align: center;
}

.contact-box-content .try-free-button {
  margin-top: 40px;
}

.modul-button a {
  text-decoration: none;
  color: #ec9706;
}

.contact-content-container {
  position: relative;
}

.contact-cta-content {
  max-width: 700px;
  margin: 150px auto;
  text-align: center;
  background: #50af75;
  box-shadow: 0px 37px 28px -23px rgba(204, 51, 102, 0.35);
  border-radius: 20px;
  color: #fff;
  padding: 22px 25px;
}

.contact-content-text {
  position: relative;
  z-index: 2;
}

.contact-content-title a:hover {
  color: #50af75;
  background: #fff;
  transition: all 0.2s linear;
}

.contact-content-text .contact-content-title h3 {
  font-size: 1.8rem;
  font-family: 'Nunito-light';
  margin-bottom: 12px;
}

.contact-content-text .contact-content-title p {
  font-size: 1.1rem;
  font-family: 'Nunito-light';
}

.contact-cta-visual {
  position: absolute;
  top: 0px;
  left: 10px;
  z-index: 1;
}

.hero-image {
  background-size: cover;
}

.hero-image-characteristics-background {
  background: url('../images/hero-bottom-images/station-24-characteristics.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.hero-image-register-background {
  background: url('../images/hero-bottom-images/station24-cash-register.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.hero-image-administration-background {
  background: url('../images/hero-bottom-images/station24-administration.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.hero-image-kitchen-background {
  background: url('../images/hero-bottom-images/station24-kitchen.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.hero-image-pricing-background {
  background: url('../images/hero-bottom-images/station24-contac-us.png');
  background-position: center;
  background-size: cover;
}

.char-card {
  max-width: 340px !important;
}

.char-card-title {
  align-items: center;
  display: flex;
  gap: 10px;
}

.middle-banner {
  background: linear-gradient(
    116deg,
    #50af75 0%,
    #6dcd93 37.43%,
    #50af75 79.85%
  );
  position: relative;
  padding: 250px;
}

.middle-banner-content {
  position: relative;
  z-index: 3;
}

.middle-banner-button {
  margin-left: 0px;
}

.middle-banner-left {
  max-width: 640px;
}

.middle-banner-right {
  max-width: 700px;
  position: absolute;
  z-index: 2;
  right: 0;
  top: 10%;
}

.top-border-light-green {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.bottom-border-light-green {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  z-index: 1;
}

.middle-banner-right img {
  width: 100%;
}

.middle-banner-content h2 {
  font-size: 3.5rem;
  font-family: 'inter-bold';
  color: white;
  margin-bottom: 60px;
}

.technical-char {
  margin-bottom: 100px;
}

.modals-contact-box {
  margin-bottom: 80px;
}

.modals-contact-box h2 {
  color: #4d4d4d;
}

.footer {
  background: linear-gradient(
    100.71deg,
    #0b7c63 0%,
    #109376 26.56%,
    #299d83 48.44%,
    #109376 76.04%,
    #0b7c63 100%
  );
  position: relative;
  padding-top: 40px;
}

.footer-top-border {
  position: absolute;
  left: 0;
  right: 0;
  top: -3px;
}

.footer-top-border img {
  width: 100%;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.logo-footer img {
  width: 250px;
}

.footer-logo {
  display: inline-block;
}

.footer-contact h4 {
  color: white;
  margin-bottom: 10px;
}

.footer-contact p {
  color: white;
  font-size: 0.9rem;
  transition: all 0.2s linear;
}

.footer-contact p:hover {
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.2s linear;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  color: white;
  font-size: 0.8rem;
}

.copyright a:hover {
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.2s linear;
}

.hero-image-characteristics h1 {
  max-width: unset;
}

.modul-right {
  max-width: 500px;
}

.modul-right img {
  width: 100%;
}

/* .reversed-side {
    margin-left: -150px;
} */

.top-banner-image {
  position: absolute;
  margin-top: -200px;
}

.top-banner-image img {
  max-width: 600px;
}

.hero-image-characteristics {
  padding-bottom: 150px;
}

.characteristics,
.moduls {
  margin-bottom: 120px;
}

.top-banner-image-size img {
  max-width: 600px;
}

.charact-heading,
.modul-heading {
  color: #0b7c63;
  font-size: 2.8rem;
  font-family: 'Nunito-black';
  text-align: left;
}

.charact-paragraph,
.modul-paragraph {
  color: #808080;
  font-size: 1.1rem;
  margin-top: 20px;
}

.charact-content,
.moduls-content {
  display: flex;
  justify-content: space-between;
}

.moduls-content {
  gap: 20px;
}

.char-content-reverse {
  flex-direction: row-reverse;
}

.charact-text,
.modul-text {
  max-width: 750px;
}

.modul-image img {
  max-width: 600px;
}

.pricing-cards {
  margin-top: -450px;
  position: relative;
  z-index: 4;
}

.pricing-cards-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card {
  max-width: 385px;
  padding: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
}

.small-card {
  border: 1px solid #ffc635;
  max-width: unset;
}

.big-card {
  border: 1px solid #50af75;
  max-width: unset;
  grid-row: span 2;
  background: #0b7c63;
}

.big-card .card-title,
.small-card .card-title {
  text-align: center;
}

.big-card .card-title,
.big-card .card-time,
.big-card .pricing-item {
  color: #fff;
}

.big-card hr {
  margin: 40px auto;
}

.big-card .card-price {
  color: #ffc635;
}

.card-title {
  font-family: 'Inter-SemiBold';
  text-transform: uppercase;
  color: #0b7c63;
  text-align: left;
}

.card-price {
  font-family: 'Inter-Black';
  color: #0b7c63;
  font-size: 3.5rem;
  text-align: center;
  margin-top: 25px;
}

.card-time {
  color: #6f6c6c;
  text-align: center;
  font-size: 1.1rem;
  font-family: 'Roboto-Regular';
}

.pricing-item {
  font-family: 'Inter-Regular';
  color: #6f6c6c;
  font-size: 1.1rem;
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.middle-banner-pricing {
  background: none;
  padding: 100px;
}

.additional-features-price {
  color: #0b7c63;
}

.pricing-ondemand {
  color: #ff8f94;
}

.middle-banner-right-pricing {
  top: 25%;
}

.modul-text .try-free-button {
  background: #50af75;
  display: inline-block;
  margin-top: 50px;
  transition: all 0.2s linear;
}

.card .modul-button {
  margin: 20px auto;
  width: 100%;
  text-align: center;
}

.modul-text .try-free-button:hover {
  background: #0b7c63;
  transition: all 0.2s linear;
}

.kitchen-functionality-margin {
  margin-top: 150px;
}

.pricing-header {
  text-align: center;
  margin: 120px auto;
}

.pricing-title {
  color: #0b7c63;
  font-size: 4.5rem;
  font-family: 'Nunito-Black';
}

.pricing-description {
  color: #808080;
  font-size: 1.1rem;
}

.pricing-visual {
  background: linear-gradient(
    100.71deg,
    #0b7c63 0%,
    #109376 26.56%,
    #299d83 48.44%,
    #109376 76.04%,
    #0b7c63 100%
  );
  margin-bottom: 100px;
  position: relative;
}

.pricing-visual-content {
  z-index: 2;
  position: relative;
  display: flex;
}

.pricing-text-content {
  position: absolute;
  right: -100px;
  bottom: 100px;
}

.pricing-top-border {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  top: -2px;
}

.additional-prices {
  display: flex;
  gap: 30px;
}

.pricing-text-top p {
  font-size: 1.1rem;
  color: #ffffff;
}

.pricing-text-bot {
  margin-top: 20px;
}

.pricing-text-bot h3 {
  font-size: 1.5rem;
  color: #ffffff;
}

.additional-price-heading {
  font-size: 2.8rem;
  color: #ffffff;
  font-family: 'Nunito-Black';
}

.currency {
  font-size: 1.2rem;
  color: #ffffff;
}

.addotional-price-text {
  font-size: 1.3rem;
  color: #ffffff;
  font-family: 'Nunito-semibold';
}

.pricing-bot-border {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  bottom: -10px;
}

.additional-services {
  padding: 50px 0px;
}

.additional-service-card {
  background: #e6f2ef;
  border-radius: 20px;
  max-width: 440px;
  display: flex;
  padding: 35px 22px;
  justify-content: space-between;
  box-shadow: 0px 37px 28px -23px rgb(204 51 102 / 35%);
  gap: 20px;
  max-height: 135px;
}

.card-left-side-heading {
  font-size: 1.3rem;
  font-family: 'Nunito-Bold';
  color: #0b7c63;
}

.card-left-side-text {
  font-size: 1.3rem;
  font-family: 'Nunito-light';
  color: #0b7c63;
}

.additional-service-price {
  font-size: 2.5rem;
  color: #0b7c63;
  font-family: 'Nunito-bold';
}

.card-left-side {
  display: flex;
  gap: 10px;
  align-items: center;
}

.additional-services-top-cards,
.additional-services-bot-cards {
  display: flex;
  justify-content: space-between;
}

.additional-services-mid-cards {
  display: flex;
  justify-content: center;
  margin: 20px auto;
}

.additional-service-button {
  padding: 10px;
  background-color: #0b7c63;
  border-radius: 10px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Nunito-bold';
  transition: all 0.2s linear;
}

.additional-service-button:hover {
  background: #50af75;
  cursor: pointer;
  transition: all 0.2s linear;
}

.demo-tryout {
  text-align: center;
}

.demo-tryout h2 {
  font-size: 3rem;
  color: #0b7c63;
  font-family: 'Nunito-Black';
  margin-bottom: 50px;
}

#contact-form {
  padding: 200px 0px 0px;
  background: url('../images/hero-bottom-images/station24-contac-us.png');
  background-position: center;
  background-size: cover;
}

.iti--allow-dropdown {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  height: 50px;
  border: 1px solid #ffc635 !important;
  margin: 10px auto;
  padding: 0px 20px;
  font-size: 1.1rem;
  font-family: 'Inter-regular';
  color: #0b7c63;
  transition: all 0.2s linear;
}

.iti--allow-dropdown #form_phone {
  border: unset !important;
  height: 45px;
}

.bottom-border-form {
  width: 100%;
  height: auto;
  position: relative;
  bottom: -5px;
  z-index: 1;
}

.form-container {
  position: relative;
  z-index: 2;
}

.form-title {
  font-family: 'Inter-Black';
  font-size: 4.5rem;
  color: #fff;
  max-width: 840px;
  line-height: 1;
  text-align: center;
  margin: 0 auto;
}

.form-description {
  font-size: 1.1rem;
  text-align: center;
  color: #fff;
  margin-top: 20px;
  font-family: 'Roboto-Regular';
}

.form-content {
  width: 100%;
  margin: 60px auto -300px;
  position: relative;
  z-index: 2;
}

.form-container {
  display: flex;
  gap: 20px;
}

.form-group {
  width: 100%;
}

.form-group label {
  color: #fff;
}

.form-group input {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  height: 50px;
  border: 1px solid #ffc635 !important;
  margin: 10px auto;
  padding: 0px 20px;
  font-size: 1.1rem;
  font-family: 'Inter-regular';
  color: #0b7c63;
  transition: all 0.2s linear;
  border: solid 1px #e6f2ef;
}

.form-group li {
  color: #ec9706;
  list-style: none;
}

.form-group input:focus {
  outline: none;
  border: 1px solid #50af75;
  transition: all 0.2s linear;
  font-size: 1.2rem;
}

input[type='submit'] {
  border: none;
  margin: 45px auto;
  font-size: 1.1rem;
}

.contact-bot-border {
  position: absolute;
  bottom: -20px;
  z-index: 1;
  left: 0;
  right: 0;
}

.information-cards {
  margin-bottom: 100px;
}

.info-card-content {
  display: flex;
  gap: 20px;
}

.service-desk-text {
  font-size: 2.4rem;
  text-align: center;
  color: #4d4d4d;
  font-family: 'Roboto-regular';
}

.service-desk-text a {
  color: #0b7c63;
  font-family: 'Roboto-Medium';
}

.service-desk-text a:hover {
  opacity: 0.8;
  transition: all 0.2s linear;
}

.info-card {
  border: 1px solid #ffc635;
  text-align: center;
  border-radius: 10px;
  padding: 60px;
  color: #0b7c63;
  min-width: 380px;
  min-height: 240px;
  transition: all 0.2s linear;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-card:hover {
  box-shadow: 0px 15px 30px -15px rgba(0, 0, 0, 0.41);
  -webkit-box-shadow: 0px 15px 30px -15px rgba(0, 0, 0, 0.41);
  -moz-box-shadow: 0px 15px 30px -15px rgba(0, 0, 0, 0.41);
  transition: all 0.2s linear;
}

.info-card-text {
  color: #818181;
  font-size: 1.2rem;
}

.info-card-icon {
  margin-bottom: 20px;
}

.info-card-icon i {
  font-size: 3rem;
}

.contact-content-visual {
  max-width: 600px;
}

.contact-content-visual img {
  width: 100%;
}

.contact-content-text {
  max-width: 600px;
}

.contact-content-main {
  display: flex;
  align-items: center;
}

.contact-content-big-text {
  color: #0b7c63;
  font-size: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-small-text-container {
  margin-top: 40px;
}

.contact-content-small-text {
  color: #0b7c63;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.technical-questions-text {
  color: #0b7c63;
  font-size: 2rem;
  text-align: center;
}

.productivity-modul-content {
  margin-left: 0px;
}

.productivity-modul-heading {
  margin-top: 0px;
}

.privacy-container {
  margin-top: 100px;
}

.privacy-title {
  font-family: 'Inter-SemiBold';
  color: #4d4d4d;
  font-size: 1.6rem;
  margin-bottom: 30px;
  margin-top: 50px;
}

.privacy-paragraph {
  font-family: 'Roboto-Regular';
  font-size: 1rem;
  color: #4d4d4d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.privacy-paragraph span {
  font-family: 'Roboto-Bold';
  color: #109376;
  text-decoration: none;
}

.privacy-paragraph span a {
  color: #0b7c63;
  text-decoration: none;
}

.privacy-bullet {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.nav-background-privacy {
  background-color: #0b7c63 !important;
}

/* Coockie */
.coockie {
  position: fixed;
  bottom: -40%;
  z-index: 9999;
  left: 0px;
  right: 0px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5px 20px;
  transition: all 0.3s linear;
}

.button_container {
  margin: 0 auto;
  text-align: center;
}

.coockie div {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.coockie_text {
  font-family: 'Roboto-Regular';
  line-height: 1.2;
  color: #4d4d4d;
  font-size: 0.9rem;
}

.cookie_link {
  font-family: 'Roboto-black';
  text-decoration: underline;
}

.cookie_link a {
  color: #0b7c63 !important;
}

.button_container {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.coockie_button {
  padding: 10px 50px;
  border-radius: 10px;
  border: none;
  font-family: 'Roboto-Regular';
  cursor: pointer;
}

.accept_button:hover {
  background-color: #109376;
  transition: all 0.2s linear;
}

.decline_button:hover {
  color: #808080;
  transition: all 0.2s linear;
}

.accept_button {
  background-color: #0b7c63;
  color: white;
}

.decline_button {
  border: 1px solid #0b7c63;
}

.try-free-button:hover {
  background: #f9a91f;
  transition: all 0.2s linear;
}

.modul-button:hover {
  background: #f9a91f;
  border: 1px solid #f9a91f;
  transition: all 0.2s linear;
  color: #fff !important;
}

.modul-button:hover a {
  color: #fff !important;
}

.why-station-content {
  margin-top: 50px;
}

.bottom-border-home {
  width: 100%;
  height: auto;
  position: relative;
  bottom: -20px;
  z-index: 1;
}

.bottom-border-thank-you {
  bottom: -10px;
}

.phone-number-holder {
  position: fixed;
  top: 50%;
  background: #ec9706;
  color: white;
  padding: 10px 20px;
  border-radius: 50px 0px 0px 50px;
  right: -150px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s linear;
  z-index: 9999;
  box-shadow: 0px 15px 30px -15px rgb(0 0 0 / 41%);
  -webkit-box-shadow: 0px 15px 30px -15px rgb(0 0 0 / 41%);
  -moz-box-shadow: 0px 15px 30px -15px rgba(0, 0, 0, 0.41);
}

.phone-number-content a {
  color: #fff;
}

.phone-number-holder:hover {
  right: 0px;
  transition: all 0.2s linear;
  background-color: #f9a91f;
}

.middle-banner-right-pricing {
  left: 0px;
}

.middle-banner-pricing .middle-banner-left {
  margin-left: 500px;
}

.grecaptcha-badge {
  opacity: 0;
}

.footer-contact p a {
  color: #fff;
}

.loyalty-left-content {
  margin-left: 0px;
}

.modul-right {
  position: relative;
}

.object-holder {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-10px);
  }

  100% {
    transform: translatey(0px);
  }
}

.object-1 {
  width: 20px !important;
  animation: float 3s ease-in-out infinite;
  left: 50px;
  position: absolute;
}

.object-2 {
  width: 15px !important;
  position: absolute;
  right: 0px;
  animation: float 4s ease-in-out infinite;
}

.object-3 {
  width: 10px !important;
  bottom: 50px;
  position: absolute;
  animation: float 5s ease-in-out infinite;
}

.object-4 {
  width: 20px !important;
  animation: float 3s ease-in-out infinite;
  left: 220px;
  position: absolute;
}

.object-5 {
  width: 15px !important;
  position: absolute;
  right: 0px;
  animation: float 4s ease-in-out infinite;
  bottom: 80px;
}

.object-6 {
  width: 10px !important;
  bottom: 50px;
  position: absolute;
  animation: float 5s ease-in-out infinite;
}

#contact-form-mdoal {
  box-shadow: -1px 1px 9px 5px rgba(0, 0, 0, 0.13);
  -webkit-box-shadow: -1px 1px 9px 5px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: -1px 1px 9px 5px rgba(0, 0, 0, 0.13);
}

.request-demo-modal {
  margin: 50px auto;
  background: #fff;
  box-shadow: -1px 1px 9px 5px rgba(0, 0, 0, 0.13);
  -webkit-box-shadow: -1px 1px 9px 5px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: -1px 1px 9px 5px rgba(0, 0, 0, 0.13);
  max-width: 900px;
  padding: 20px 50px 20px;
  border-radius: 10px;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
  top: 10vh;
  z-index: 9999;
  display: none;
}

.form-title-modal {
  font-size: 2.8rem;
  font-family: 'Inter-Bold';
  text-align: center;
  color: #4d4d4d;
}

.form-description-modal {
  text-align: center;
  font-family: 'Roboto-Regular';
  font-size: 1.1rem;
  margin-top: 20px;
  color: #4d4d4d;
}

.form-group-modal label {
  color: #4d4d4d;
}

.form-content-modal {
  margin: 60px auto 30px;
}

.form-dismiss {
  font-size: 1.4rem;
  text-align: right;
}

.form-dismiss i {
  transition: 0.2 linear all;
}

.form-dismiss i:hover {
  opacity: 0.4;
  cursor: pointer;
  transition: 0.2s linear all;
}

.grecaptcha-badge {
  opacity: 0;
}

@media screen and (max-width: 1600px) {
  .hero-image {
    background-position-y: -30px;
  }

  .form-title-modal {
    font-size: 2.2rem;
  }

  .form-description-modal {
    font-size: 1rem;
  }

  .form-content-modal input {
    height: 40px;
  }

  .request-demo-modal {
    top: 5vh;
  }

  .form-content-modal {
    margin: 20px auto 30px;
  }

  .request-demo-modal {
    margin: 0 auto;
  }

  .request-demo-button {
    height: 50px !important;
    margin: 20px auto 0px !important;
  }
}

@media screen and (max-width: 1440px) {
  .middle-banner-content h2 {
    font-size: 2.8rem;
  }

  .middle-banner-hide {
    display: none;
  }

  .hero-image {
    background-position-y: 0px;
  }
}

@media screen and (max-width: 1280px) {
  .pricing-cards-content {
    margin-top: 100px;
  }
}

@media screen and (max-width: 1200px) {
  .modul {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 50px;
  }

  .modul-right {
    max-width: 400px;
  }

  .reversed {
    flex-direction: row;
  }

  .loyalty-program-content {
    flex-wrap: wrap;
  }

  .info-card-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pricing-cards-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .card-price {
    font-size: 2.5rem;
  }

  .card {
    min-width: 380px;
  }

  .hero-image {
    background-position-y: 30px;
  }
}

@media screen and (max-width: 992px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: block;
  }

  .why-station-content {
    justify-content: center;
  }

  .learn-about-guests-content-text,
  .making-trust-text-content {
    flex-direction: column;
  }

  .learn-about-guests-image {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
  }

  .making-trust-image {
    max-width: 500px;
  }

  .mobile-app-content,
  .tech-char-content {
    flex-direction: column;
  }

  .mobile-app-content-img img {
    max-width: 440px;
  }

  .mobile-app {
    padding-top: 150px;
  }

  .testimonials-cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-image-content h1 {
    font-size: 2.5rem;
  }

  .hero-image-content {
    padding-top: 100px;
    margin-top: 40px;
  }

  .hero-image-content p {
    font-size: 1rem;
  }

  .mobile-app-right {
    margin-top: 50px;
  }

  .card {
    min-width: 290px;
    max-width: 300px;
  }

  .mobile-app-right {
    max-width: 200px;
    min-width: 200px;
  }

  .mobile-app-right img {
    width: 100%;
  }

  .partners-logos {
    justify-content: space-around;
  }

  .testimonial-card {
    min-width: 300px;
  }

  .contact-box-content h2 {
    font-size: 1.6rem;
  }

  .testimonial-title {
    font-size: 2rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  .testimonial-rating-img {
    max-width: 200px;
    text-align: center;
    margin: 0 auto;
  }

  .testimonial-rating-img img {
    width: 100%;
  }

  .testimonial-rating-text {
    font-size: 1rem;
  }

  .form-title {
    font-size: 2rem;
  }

  .form-description {
    font-size: 1rem;
  }

  .info-card-content {
    flex-wrap: wrap;
  }

  .service-desk-text {
    font-size: 1.4rem;
  }

  .info-card {
    min-width: 320px;
    max-width: 310px;
  }

  .form-container {
    flex-wrap: wrap;
  }

  .information-cards {
    margin-top: 80px;
    margin-bottom: 50px;
  }

  .service-desk-contact {
    margin-bottom: 50px;
  }

  .form-content {
    margin: 20px auto -300px;
  }

  .form-container {
    gap: 0px;
  }

  .middle-banner-right-pricing {
    display: none;
  }

  .middle-banner {
    padding: 0px;
  }

  .pricing-cards-content {
    margin-top: 300px;
    grid-template-columns: 1fr;
  }

  .small-card {
    max-width: unset;
  }

  .big-card {
    grid-row: span 1;
    max-width: unset;
  }

  .productivity-modul {
    flex-direction: column-reverse;
    align-items: center;
  }

  .modul-content {
    margin-left: 30px;
  }

  .partners-content {
    padding-top: 100px;
  }

  .coockie div {
    flex-direction: column;
  }

  .button_container {
    flex-direction: row !important;
  }

  .phone-number-holder {
    top: 80%;
  }

  .middle-banner-pricing .middle-banner-left {
    margin-left: 0px;
  }

  .partners-logos div {
    width: 120px;
  }

  .partners-logos div img {
    width: 100%;
  }

  .form-title-modal {
    font-size: 1.6rem;
  }

  .form-description-modal {
    font-size: 0.9rem;
  }

  .form-content-modal {
    margin: 20px auto 0px;
  }

  .request-demo-button {
    min-width: 300px !important;
    max-width: 320px !important;
  }

  .request-demo-modal {
    padding: 20px 30px 20px;
  }

  .padding-contant-container-modal {
    padding-bottom: 20px !important;
  }

  .request-demo-modal {
    top: 2vh;
  }

  .padding-contant-container-modal {
    overflow: scroll !important;
  }
}

@media screen and (max-width: 768px) {
  .padding-contact-container {
    padding-bottom: 150px;
  }

  .info-card {
    padding: 30px;
  }

  .modul-subtitle {
    font-size: 1.2rem;
  }

  .hero-image {
    background-position-y: 20px;
  }

  .hero-image-content {
    padding-bottom: 200px;
  }

  .mobile-app {
    padding-top: 80px;
  }

  .mobile-app-content {
    padding-top: 0px;
  }

  .loyalty-program-content {
    gap: 20px;
  }

  .partners-logos {
    gap: 50px;
  }

  .logo-footer {
    text-align: center;
  }

  .footer-contact {
    min-width: 185px;
  }

  .footer-contacts {
    gap: 30px;
    justify-content: center;
  }

  .testimonials {
    margin-top: 40px;
  }

  .hero-image-characteristics {
    padding-bottom: 150px;
  }

  .productivity-image {
    max-width: 200px;
  }

  .productivity-modul-content {
    margin-left: 0px;
  }
}

@media screen and (max-width: 576px) {
  .top-banner-animation {
    transform: scale(0.4);
    left: -40%;
    margin-top: -20px;
  }

  .top-banner-image {
    margin-top: -200px;
  }

  .why-station-screens img {
    max-width: 100%;
  }

  /* .hero-image-content {
        padding-bottom: 100px;
    } */
  .charact-content {
    flex-direction: column;
  }

  .charact-image {
    max-width: 150px;
  }

  .charact-image img {
    width: 100%;
  }

  .char-content-reverse .charact-image {
    align-self: end;
  }

  .moduls-content {
    flex-direction: column;
  }

  .modul-image img {
    max-width: 100%;
  }

  .first-module {
    margin-top: 100px;
  }

  .characteristics,
  .moduls {
    margin-bottom: unset;
  }

  .first-char {
    margin-top: 100px;
  }

  .contact-content-main {
    flex-direction: column;
  }

  .mobile-app-content-img img {
    max-width: 250px;
    margin-bottom: -120px;
  }

  .mobile-app {
    margin-bottom: 70px;
  }

  .learn-about-guests {
    padding: 20px 20px 0px;
  }

  .bottom-border-home {
    bottom: -10px;
  }

  .hero-image-home-content {
    padding-bottom: 300px;
  }

  .hero-image {
    background: url('../images/global/station24-software-mobile.gif');
    background-position: center;
    background-position-y: -600px;
    background-size: cover;
  }

  .partners-logos {
    gap: 20px;
  }

  .partners-logos div {
    width: 80px;
  }

  .partners-logos div img {
    width: 100%;
  }

  .request-demo-modal {
    height: 95vh;
    overflow: scroll;
  }
}

@media screen and (max-width: 533px) {
  .hero-image {
    background: url('../images/global/station24-software-mobile.gif');
    background-position: center;
    background-position-y: -520px;
    background-size: cover;
  }
}

@media screen and (max-width: 500px) {
  .hero-image {
    background-position-y: -480px;
  }
}

@media screen and (max-width: 480px) {
  .hero-image {
    background-position-y: -420px;
  }
}

@media screen and (max-width: 450px) {
  .hero-image {
    background-position-y: -320px;
  }

  .hero-image-home-content {
    padding-bottom: 300px;
    padding-top: 150px;
    margin-top: 0px;
  }
}

@media screen and (max-width: 450px) {
  .hero-image {
    background-position-y: -250px;
  }
}

@media screen and (max-width: 420px) {
  .hero-image {
    background-position-y: -200px;
  }
}

@media screen and (max-width: 390px) {
  .hero-image {
    background-position-y: -150px;
  }
}

@media screen and (max-width: 370px) {
  .hero-image {
    background-position-y: -60px;
  }
}

@media screen and (max-width: 370px) {
  .hero-image {
    background-position-y: -60px;
  }
}

@media (min-width: 992px) {
  .middle-banner-pricing {
    margin-bottom: 220px;
  }
}
