@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Encode+Sans+Expanded:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap");
.small-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-bottom: 20px;
  color: #c4d600;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 90px;
  width: 100%;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.header-mobile {
  display: none;
}
@media (max-width: 768px) {
  .header-mobile {
    background-color: #222223;
    height: 66px;
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .header-mobile .header-language {
    margin-right: 32px;
  }
}
.header-mobile-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-mobile .logo {
  height: 38px;
  width: 126px;
  background: url("/images/qnetlogo_transi.png?v=74425c117ef5") no-repeat center;
  background-size: contain;
}
.header-mobile .nav-mobile {
  display: none;
}
@media (max-width: 768px) {
  .header-mobile .nav-mobile {
    display: flex;
    flex-direction: row;
  }
  .header-mobile .nav-mobile .header-language {
    margin-right: 32px;
  }
}
.header-mobile .nav-mobile button {
  background: none;
  border: none;
  cursor: pointer;
}
.header-mobile .menu-overlay {
  position: fixed;
  top: 66px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none; /* hidden by default */
  z-index: 1;
}
.header-mobile .mobile-menu {
  background-color: #222223;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 66px;
  right: 0;
  padding: 20px;
  box-sizing: border-box;
  color: white;
}
.header-mobile .menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.header-mobile .menu-header img {
  height: 20px;
}
.header-mobile .nav-mobile .close-btn {
  display: none;
}
.header-mobile .nav-mobile.menu-active .nav-toggle {
  display: none;
}
.header-mobile .nav-mobile.menu-active .header-language {
  display: none;
}
.header-mobile .nav-mobile.menu-active .close-btn {
  display: inline-block;
}
.header-mobile .close-btn {
  color: white;
  cursor: pointer;
}
.header-mobile .menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-mobile .menu-links li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header-mobile .menu-links a {
  color: white;
  text-decoration: none;
  font-size: 24px;
}
.header-mobile .contact-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #00857d;
  color: white;
  text-align: center;
  border-radius: 30px;
  text-decoration: none;
  font-size: 20px;
  width: 40%;
}
.header-mobile .show {
  display: block;
}
.header-mobile .nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .header-mobile .nav {
    display: none;
  }
}
.header-mobile .nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}
.header-mobile .nav-link {
  color: #ffffff;
  text-decoration: none;
  font-family: "Encode Sans Expanded", sans-serif;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}
.header-mobile .nav-link:hover {
  color: #00857d;
}
.header-mobile .header-language {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  cursor: pointer;
}
.header-mobile .header-language img {
  transition: transform 0.3s ease;
}
.header-mobile .header-language:hover img {
  transform: rotate(180deg);
}
.header-mobile .header-cta {
  background-color: #00857d;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Encode Sans Expanded", sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.header-mobile .header-cta:hover {
  background-color: rgb(0, 82, 77.0676691729);
}

@media (min-width: 769px) {
  .header {
    background-color: #222223;
    height: 102px;
    display: flex;
    align-items: center;
  }
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header .logo {
  height: 54px;
  width: 181px;
  background: url("/images/qnetlogo_transi.png?v=74425c117ef5") no-repeat center;
  background-size: contain;
}
.header .nav-mobile {
  display: none;
}
@media (max-width: 768px) {
  .header .nav-mobile {
    display: flex;
    flex-direction: row;
  }
  .header .nav-mobile .header-language {
    margin-right: 32px;
  }
}
.header .nav-mobile button {
  background: none;
  border: none;
  cursor: pointer;
}
.header .menu-overlay {
  position: fixed;
  top: 102px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none; /* hidden by default */
  z-index: 1;
}
.header .mobile-menu {
  background-color: #222223;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 102px;
  right: 0;
  padding: 20px;
  box-sizing: border-box;
  color: white;
}
.header .menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.header .menu-header img {
  height: 20px;
}
.header .close-btn {
  color: white;
  cursor: pointer;
}
.header .menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header .menu-links li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header .menu-links a {
  color: white;
  text-decoration: none;
  font-size: 24px;
}
.header .contact-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #00857d;
  color: white;
  text-align: center;
  border-radius: 30px;
  text-decoration: none;
  font-size: 20px;
  width: 40%;
}
.header .show {
  display: block;
}
.header .nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .header .nav {
    display: none;
  }
}
.header .nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}
.header .nav-link {
  color: #ffffff;
  text-decoration: none;
  font-family: "Encode Sans Expanded", sans-serif;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}
.header .nav-link:hover {
  color: #00857d;
}
.header .header-language {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  cursor: pointer;
}
.header .header-language img {
  transition: transform 0.3s ease;
}
.header .header-language:hover img {
  transform: rotate(180deg);
}
.header .header-cta {
  background-color: #00857d;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Encode Sans Expanded", sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.header .header-cta:hover {
  background-color: rgb(0, 82, 77.0676691729);
}

.title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 16px;
}

.subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  max-width: 567px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  padding: 60px 0;
  background-color: #ffffff;
}
.hero-content {
  max-width: 1089px;
  margin: 0 auto;
}
.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 30px;
}
.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  max-width: 567px;
  margin: 0 auto;
}

.stats-grid {
  padding: 60px 0;
  position: relative;
}
.stats-grid .stat-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.stats-grid .stat-columns .stats-cards {
  margin: 10px;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
  display: grid;
  gap: 20px;
  max-width: 1240px;
  grid-template-rows: repeat(4, auto);
}
.stats-grid .stat-columns .stat-card {
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: start;
  justify-content: left;
  text-align: left;
  position: relative;
}
.stats-grid .stat-columns .stat-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}
.stats-grid .stat-columns .stat-card.stat-main {
  grid-column: span 12;
  grid-row: 1;
  background: #d9d9d6 url("/images/rectangle9.png?v=b1f8fb06aa1b") no-repeat;
  background-size: contain;
  background-position: right;
  color: #222223;
  height: 206px;
}
.stats-grid .stat-columns .stat-card.stat-secondary {
  grid-column: 1/7;
  grid-row: 1/3;
  background-color: #d9d9d6;
  color: #222223;
  height: 412px;
  background: url("/images/rectangle6.png?v=1aa390707d12") no-repeat;
  background-size: cover;
}
.stats-grid .stat-columns .stat-card.stat-countries {
  grid-column: 7/12;
  grid-row: 1;
  background-color: #222223;
  color: #ffffff;
}
.stats-grid .stat-columns .stat-card.stat-experience {
  grid-column: 8/13;
  grid-row: 2;
  background-color: #00857d;
  color: #ffffff;
  height: 115px;
}
.stats-grid .stat-columns .stat-card.stat-partners {
  grid-column: 1/8;
  grid-row: 2;
  background-color: #222223;
  color: #ffffff;
  height: 115px;
}
.stats-grid .stat-columns .stat-card.stat-solved {
  grid-column: 7/12;
  grid-row: 2;
  color: #ffffff;
  background: #00857d url("/images/lightbulb.png?v=24f77ecbd02e") no-repeat;
  background-size: 146px 146px;
  background-position: bottom right;
}
.stats-grid .stat-columns .stat-card.stat-banknote {
  grid-column: 8/13;
  grid-row: 3/5;
  background: #d9d9d6 url("/images/rectangle4.png?v=f5fd46dfb7e4") no-repeat;
  background-size: 200px;
  background-position: bottom right;
  color: #222223;
}
.stats-grid .stat-columns .stat-card.stat-rate {
  grid-column: 1/8;
  grid-row: 3;
  background-color: #222223;
  background: #d9d9d6 url("/images/rectangle89.png?v=80385737cd6b") no-repeat;
  background-size: contain;
  background-position: right;
  color: #222223;
  height: 141px;
  flex-direction: column;
  gap: 10px;
}
.stats-grid .stat-columns .stat-card.stat-email {
  grid-column: 1/4;
  grid-row: 4;
  background-color: #222223;
  color: #ffffff;
  height: 115px;
  align-items: center;
  justify-content: center;
  /*  background: rgb(0 0 0 / 100%) url(/images/email-icon.svg) no-repeat; */
  background-size: contain;
}
.stats-grid .stat-columns .stat-card.stat-facebook {
  grid-column: 4/8;
  grid-row: 4;
  background-color: #222223;
  color: #ffffff;
  height: 115px;
  align-items: center;
  justify-content: center;
}
.stats-grid .stat-columns .stat-card.stat-continents {
  grid-column: 1/12;
  grid-row: 3;
  background: url("/images/rectangle3.png?v=509d0675a89b") no-repeat;
  background-size: cover;
  color: #222223;
  background-position: center;
  height: 227px;
}

.queue-management {
  padding: 80px 0;
  background-color: #ffffff;
}
.queue-management .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  color: #000000;
  margin-bottom: 30px;
}
.queue-management .queue-description {
  max-width: 1102px;
  margin: 0 auto 60px;
  text-align: center;
}
.queue-management .queue-description p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 20px;
}
.queue-management .queue-description p:last-child {
  margin-bottom: 0;
}
.queue-management .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .queue-management .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .queue-management .features-grid {
    grid-template-columns: 1fr;
  }
}
.queue-management .feature-card {
  background-color: rgba(217, 217, 214, 0.2);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  height: 403px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.queue-management .feature-card .feature-icon {
  width: 103px;
  height: 92px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.queue-management .feature-card .feature-icon img {
  max-width: 100%;
  max-height: 100%;
}
.queue-management .feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 20px;
}
.queue-management .feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}

.qnet-pro7 {
  background-color: rgba(217, 217, 214, 0.2);
  padding: 60px 0;
  text-align: center;
}
.qnet-pro7 h2 {
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.qnet-pro7 p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  max-width: 1070px;
  margin: 0 auto 40px;
}

.why-choose {
  padding: 80px 0;
  background-color: #ffffff;
}
.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.why-choose-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 30px;
}
.why-choose-text p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 40px;
}
.why-choose-image {
  border-radius: 15px;
  overflow: hidden;
  height: 355px;
  position: relative;
}
.why-choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-choose-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.testimonials {
  padding: 80px 0;
  background-color: #ffffff;
}
.testimonials .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  color: #000000;
  margin-bottom: 60px;
}
.testimonials .testimonials-slider {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}
.testimonials .slider-nav {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.testimonials .slider-nav img {
  width: 29.5px;
  height: 46.5px;
}
.testimonials .slider-nav.next img {
  transform: scaleX(-1);
}
.testimonials .testimonial-cards {
  display: flex;
  gap: 30px;
  flex: 1;
}
.testimonials .testimonial-card {
  background-color: rgba(217, 217, 214, 0.2);
  border-radius: 25px;
  padding: 40px;
  flex: 1;
}
.testimonials .testimonial-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 20px;
}
.testimonials .testimonial-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #00857d;
  margin-bottom: 5px;
}
.testimonials .testimonial-card span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #222223;
}
.testimonials .client-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  opacity: 0.6;
}
.testimonials .client-logos img {
  width: 122px;
  height: 122px;
  object-fit: contain;
  mix-blend-mode: luminosity;
}

.become-partner {
  background-color: #222223;
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}
.become-partner h2 {
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 567px;
  margin-left: auto;
  margin-right: auto;
}
.become-partner p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 1070px;
  margin: 0 auto 40px;
}

.faq {
  padding: 80px 0;
  background-color: #ffffff;
}
.faq h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 40px;
}
.faq .faq-items {
  max-width: 1193px;
  margin: 0 auto;
}
.faq .faq-item {
  background-color: rgba(196, 214, 0, 0.6);
  border: 1px solid #c4d600;
  border-radius: 35px;
  padding: 25px 40px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.faq .faq-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #222223;
  margin: 0;
}
.faq .faq-item:hover {
  background-color: rgba(196, 214, 0, 0.8);
}
.faq .faq-item.active {
  background-color: rgba(196, 214, 0, 0.8);
}
.faq .faq-item .collapse-icon {
  transition: transform 0.2s ease;
}
.faq .faq-item .collapse-icon.rotate {
  transform: rotate(180deg);
}
.faq .faq-content {
  padding: 0 30px;
}
.faq .faq-content {
  display: none;
  padding-bottom: 12px;
}
.faq {
  /* Optional: make active items visible */
  /*   .collapsible.active + .faq-content {
    display: block;
  } */
  /* Optional styling for active FAQ item */
  /*   .collapsible.active {
    background-color: #f0f0f0;
  } */
}

.final-cta {
  background-color: rgba(217, 217, 214, 0.2);
  padding: 60px 0;
  text-align: center;
  margin-top: 90px;
  margin-bottom: 90px;
}
.final-cta h2 {
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 40px;
  max-width: 1127px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 17px 63px;
  border: none;
  border-radius: 35px;
  text-decoration: none;
  font-family: "Encode Sans Expanded", sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  align-content: center;
  cursor: pointer;
}
.btn-primary {
  background-color: #00857d;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: rgb(0, 82, 77.0676691729);
}
.btn-primary-large {
  background-color: #00857d;
  color: #ffffff;
  padding: 24px 74px;
  border-radius: 35px;
}
.btn-primary-large:hover {
  background-color: rgb(0, 82, 77.0676691729);
}
.btn-secondary-large {
  background-color: #000000;
  color: #ffffff;
  padding: 24px 24px;
  border-radius: 35px;
}
.btn-secondary-large:hover {
  background-color: rgb(0, 82, 77.0676691729);
}
.btn-secondary {
  background-color: #222223;
  color: #ffffff;
  height: 55px;
}
.btn-secondary:hover {
  background-color: rgb(59.1304347826, 59.1304347826, 60.8695652174);
}
.btn-accent {
  background-color: #c4d600;
  color: #ffffff;
  height: 55px;
  color: #000000;
  font-size: 16px;
}
.btn-accent:hover {
  background-color: rgb(59.1304347826, 59.1304347826, 60.8695652174);
}

.footer {
  background-color: #222223;
  color: #ffffff;
  padding: 60px 0 20px;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer .footer-info .footer-logo {
  height: 54px;
  width: 181px;
  background: url("/images/qnetlogo_transi.png?v=74425c117ef5") no-repeat center;
  background-size: contain;
  margin-bottom: 30px;
}
.footer .footer-info .contact-info {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer .footer-info .contact-info .contact-email,
.footer .footer-info .contact-info .contact-phone {
  color: #00857d;
  display: block;
  margin-top: 10px;
  text-decoration: none;
}
.footer .footer-info .social-icons {
  display: flex;
  gap: 15px;
}
.footer .footer-info .social-icons a {
  width: 24px;
  height: 24px;
  display: block;
}
.footer .footer-info .social-icons a svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
  transition: fill 0.3s ease;
}
.footer .footer-info .social-icons a:hover svg {
  fill: #00857d;
}
.footer .footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.footer .footer-links .footer-column h4 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #00857d;
  margin-bottom: 20px;
}
.footer .footer-links .footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-links .footer-column ul li {
  margin-bottom: 10px;
}
.footer .footer-links .footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: color 0.3s ease;
}
.footer .footer-links .footer-column ul li a:hover {
  color: #00857d;
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-bottom p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #00857d;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 24px !important;
  }
  /* 
  .stats-grid .stats-cards {
    grid-template-columns: 1fr;

    .stat-card {
      grid-column: 1 !important;
      grid-row: auto !important;
      height: auto !important;
      min-height: 120px;
    }
  } */
  .features-grid {
    grid-template-columns: 1fr !important;
  }
  .why-choose-content {
    grid-template-columns: 1fr !important;
  }
  .testimonials-slider {
    flex-direction: column;
  }
  .testimonial-cards {
    flex-direction: column;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.total-experience {
  background-color: #222223;
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}
.total-experience h2 {
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 567px;
  margin-left: auto;
  margin-right: auto;
}
.total-experience p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 1070px;
  margin: 0 auto 40px;
}
.total-experience .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .total-experience .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .total-experience .features-grid {
    grid-template-columns: 1fr;
  }
}
.total-experience .features-grid.line-2 {
  margin-top: 0px;
  grid-template-columns: repeat(3, 1fr);
}
.total-experience .feature-card {
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  height: 403px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.total-experience .feature-card .feature-icon {
  width: 103px;
  height: 92px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.total-experience .feature-card .feature-icon img {
  max-width: 100%;
  max-height: 100%;
}
.total-experience .feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #c4d600;
}
.total-experience .feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.work-with-us {
  background-color: rgba(217, 217, 214, 0.2);
  padding: 100px 0;
  text-align: center;
}
.work-with-us .work-with-us-buttons a {
  margin: 0px 30px 0px;
}
.work-with-us h2 {
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.work-with-us p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  max-width: 1070px;
  margin: 0 auto 40px;
}

.sectors {
  text-align: center;
}
.sectors .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 90px;
  width: 100%;
}
.sectors .container h2 {
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 567px;
  margin-left: auto;
  margin-right: auto;
}
.sectors .container p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 1070px;
  margin: 0 auto 40px;
}
.sectors .container .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .sectors .container .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sectors .container .features-grid {
    grid-template-columns: 1fr;
  }
}
.sectors .container .feature-card {
  border-radius: 15px;
  padding: 40px 30px;
  border: 1px solid #00857d;
  text-align: center;
  height: 403px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-decoration: none;
}
.sectors .container .feature-card:hover {
  border: 1px solid #c4d600;
}
.sectors .container .feature-card .feature-icon {
  width: 103px;
  height: 92px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sectors .container .feature-card .feature-icon img {
  max-width: 100%;
  max-height: 100%;
}
.sectors .container .feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 20px;
}
.sectors .container .feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
.sectors .container .other-section-btn {
  margin-top: 30px;
  margin-bottom: 90px;
  display: block;
  width: 100%;
  background-color: #222223;
  height: 152px;
  border-radius: 15px;
  color: #c4d600;
  text-decoration: none;
  align-content: center;
  font-size: 24px;
}
.sectors .container .other-section-btn:hover {
  background-color: rgb(94, 94, 94);
}

.breadcrumbs {
  padding: 30px 0;
  text-align: left;
}
.breadcrumbs a {
  color: #00857d;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs span {
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.products {
  text-align: center;
}
.products .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 90px;
  width: 100%;
}
.products .container h2 {
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 567px;
  margin-left: auto;
  margin-right: auto;
}
.products .container p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 1070px;
  margin: 0 auto 40px;
}
.products .container .products-description {
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 1070px;
  margin: 0 auto 40px;
  align-content: center;
}
.products .container .features-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1024px) {
  .products .container .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .products .container .features-grid {
    grid-template-columns: 1fr;
  }
}
.products .container .feature-card {
  text-decoration: none;
  border-radius: 15px;
  padding: 40px 30px;
  border: 1px solid #00857d;
  text-align: center;
  height: 403px;
  display: flex;
  flex-direction: column;
}
.products .container .feature-card:hover {
  border: 1px solid #c4d600;
}
.products .container .feature-card .feature-icon {
  width: 22s0px;
  height: 220px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products .container .feature-card .feature-icon img {
  max-width: 100%;
  max-height: 100%;
}
.products .container .feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 400;
  text-align: left;
  margin-top: 20px;
  color: black;
}
.products .container .feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.customer-flow-title .container {
  max-width: 1440px;
  padding: 0 90px;
  width: 100%;
  text-align: center;
  margin: 60px auto 60px;
}
.customer-flow-title .container title {
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 32px;
  font-weight: 400;
}

.customer-flow {
  background-color: #222223;
  margin: 60px auto 60px;
}
.customer-flow .container {
  max-width: 1260px;
  margin: 60px auto 60px;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 100%;
}
.customer-flow .container .timeline {
  position: relative;
  margin-left: 40px;
  max-width: 600px;
}
.customer-flow .container {
  /* Vertical line */
}
.customer-flow .container .timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 20px;
  background: white;
  border-radius: 20px;
}
.customer-flow .container {
  /* Hide radio buttons */
}
.customer-flow .container input[type=radio] {
  display: none;
}
.customer-flow .container .item {
  position: relative;
  margin-bottom: 2rem;
}
.customer-flow .container {
  /* White circle marker */
}
.customer-flow .container .item label::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 39px;
  height: 39px;
  background: white;
  border-radius: 50%;
  z-index: 1;
}
.customer-flow .container {
  /* PNG icon inside the circle */
}
.customer-flow .container .item label::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  z-index: 2;
  transition: transform 0.3s ease;
  background-image: url("/images/timeline_down.png?v=7ea213678cd6");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 8px; /* your icon size */
}
.customer-flow .container {
  /* Section title */
}
.customer-flow .container .item label {
  display: block;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 500;
  color: #c4d600;
  padding-left: 100px;
  padding-bottom: 50px;
  position: relative;
}
.customer-flow .container {
  /* Content */
}
.customer-flow .container .content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 100px;
  color: white;
  font-size: 0.95rem;
}
.customer-flow .container {
  /* Show content when selected */
}
.customer-flow .container input[type=radio]:checked + label + .content {
  max-height: 200px;
}
.customer-flow .container {
  /* Rotate the icon when active */
}
.customer-flow .container input[type=radio]:checked + label::after {
  transform: rotate(180deg);
}

.counterfeit-detector .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.counterfeit-detector .container .description {
  flex: 50%;
}
.counterfeit-detector .container .title {
  padding-bottom: 16px;
}
.counterfeit-detector .learn-more {
  text-align: center;
  margin: 42px 0 42px;
}
.counterfeit-detector .learn-more .learn-more-cta {
  background-color: #00857d;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Encode Sans Expanded", sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.counterfeit-detector .learn-more .learn-more-cta:hover {
  background-color: rgb(0, 82, 77.0676691729);
}

.customer-stories {
  padding-top: 42px;
}
.customer-stories .title {
  text-align: center;
  padding: 12px;
}
.customer-stories .subtitle {
  text-align: center;
  padding-bottom: 28px;
}

.healthcare-solutions {
  background-color: #222223;
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
  margin: 60px auto 60px;
}
.healthcare-solutions h2 {
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 567px;
  margin-left: auto;
  margin-right: auto;
}
.healthcare-solutions p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 1070px;
  margin: 0 auto 40px;
}
.healthcare-solutions .features-grid-line-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .healthcare-solutions .features-grid-line-1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .healthcare-solutions .features-grid-line-1 {
    grid-template-columns: 1fr;
  }
}
.healthcare-solutions .features-grid-line-2 {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 30px;
  /*     margin-left:100px;
  margin-right:100px; */
}
@media (max-width: 1024px) {
  .healthcare-solutions .features-grid-line-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .healthcare-solutions .features-grid-line-2 {
    grid-template-columns: 1fr;
  }
}
.healthcare-solutions .feature-card {
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  height: 403px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.healthcare-solutions .feature-card .feature-icon {
  width: 103px;
  height: 92px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.healthcare-solutions .feature-card .feature-icon img {
  max-width: 100%;
  max-height: 100%;
}
.healthcare-solutions .feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #c4d600;
}
.healthcare-solutions .feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.other-sectors {
  text-align: center;
  margin-bottom: 90px;
}
.other-sectors .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 90px;
  width: 100%;
}
.other-sectors .container h2 {
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 567px;
  margin-left: auto;
  margin-right: auto;
}
.other-sectors .container p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 1070px;
  margin: 0 auto 40px;
}
.other-sectors .container .products-description {
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 1070px;
  margin: 0 auto 40px;
  align-content: center;
}
.other-sectors .container .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1024px) {
  .other-sectors .container .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .other-sectors .container .features-grid {
    grid-template-columns: 1fr;
  }
}
.other-sectors .container .feature-card {
  border-radius: 15px;
  padding: 40px 30px;
  border: 1px solid #00857d;
  text-align: center;
  height: 403px;
  display: flex;
  flex-direction: column;
}
.other-sectors .container .feature-card .feature-icon {
  width: 22s0px;
  height: 220px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.other-sectors .container .feature-card .feature-icon img {
  max-width: 100%;
  max-height: 100%;
}
.other-sectors .container .feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 400;
  text-align: left;
  margin-top: 20px;
}
.other-sectors .container .feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.other-sectors-solutions .title {
  text-align: center;
}
.other-sectors-solutions .sector-line-bg {
  background-color: rgba(217, 217, 214, 0.2);
  padding-top: 24px;
  padding-bottom: 24px;
}
.other-sectors-solutions .sector-line-bg .container .section-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.other-sectors-solutions .sector-line-bg .container .section-row .sector-image {
  flex: 50%;
}
.other-sectors-solutions .sector-line-bg .container .section-row .sector-description {
  padding: 24px;
  flex: 50%;
}
.other-sectors-solutions .sector-line-bg .container .section-row .sector-description h3 {
  color: #00857d;
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 26px;
  font-weight: 400;
  padding-bottom: 32px;
}
.other-sectors-solutions .sector-line-bg .container .section-row .sector-description ul {
  margin-left: 20px;
}
.other-sectors-solutions .sector-line {
  padding-top: 24px;
  padding-bottom: 24px;
}
.other-sectors-solutions .sector-line .container .section-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.other-sectors-solutions .sector-line .container .section-row .sector-image {
  flex: 50%;
}
.other-sectors-solutions .sector-line .container .section-row .sector-description {
  padding: 24px;
  flex: 50%;
}
.other-sectors-solutions .sector-line .container .section-row .sector-description ul {
  margin-left: 20px;
}
.other-sectors-solutions .sector-line .container .section-row .sector-description h3 {
  padding-bottom: 32px;
  color: #00857d;
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 26px;
  font-weight: 400;
}
.choose-pro .title {
  text-align: center;
}
.choose-pro .sector-line-bg {
  padding-top: 24px;
  padding-bottom: 24px;
}
.choose-pro .sector-line-bg .container .section-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.choose-pro .sector-line-bg .container .section-row .sector-image {
  flex: 50%;
}
.choose-pro .sector-line-bg .container .section-row .sector-description {
  padding: 24px;
  flex: 50%;
}
.choose-pro .sector-line-bg .container .section-row .sector-description h3 {
  color: #00857d;
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 26px;
  font-weight: 400;
  padding-bottom: 32px;
}
.choose-pro .sector-line-bg .container .section-row .sector-description ul {
  margin-left: 20px;
}
.choose-pro .sector-line {
  padding-top: 24px;
  padding-bottom: 24px;
}
.choose-pro .sector-line .container .section-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.choose-pro .sector-line .container .section-row .sector-image {
  flex: 50%;
}
.choose-pro .sector-line .container .section-row .sector-image img {
  border-radius: 15px;
}
.choose-pro .sector-line .container .section-row .sector-description {
  padding: 24px;
  flex: 50%;
}
.choose-pro .sector-line .container .section-row .sector-description ul {
  margin-left: 20px;
}
.choose-pro .sector-line .container .section-row .sector-description h3 {
  padding-bottom: 32px;
  color: #00857d;
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 26px;
  font-weight: 400;
}
.other-sector-cta {
  background-color: #222223;
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
  margin-bottom: 90px;
}
.other-sector-cta h2 {
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}
.other-sector-cta p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 1070px;
  margin: 0 auto 40px;
}

.product-list {
  text-align: center;
}
.product-list .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 90px;
  width: 100%;
}
.product-list .container .features-grid h3 {
  text-align: center;
}
.product-list .container .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .product-list .container .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .product-list .container .features-grid {
    grid-template-columns: 1fr;
  }
}
.product-list .container .feature-card {
  border-radius: 15px;
  padding: 40px 30px;
  border: 1px solid #00857d;
  text-align: center;
  height: 403px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-decoration: none;
}
.product-list .container .feature-card:hover {
  border: 1px solid #c4d600;
}
.product-list .container .feature-card .feature-icon {
  /*         width: 103px;
  height: 92px; */
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-list .container .feature-card .feature-icon img {
  max-width: 85%;
  max-height: 100%;
}
.product-list .container .feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #000000;
}
.product-list .container .feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
.product-list .container .other-section-btn {
  margin-top: 30px;
  margin-bottom: 90px;
  display: block;
  width: 100%;
  background-color: #222223;
  height: 152px;
  border-radius: 15px;
  color: #c4d600;
  text-decoration: none;
  align-content: center;
  font-size: 24px;
}
.product-list .container .other-section-btn:hover {
  background-color: rgb(94, 94, 94);
}

.queue-management-solutions {
  background-color: rgba(217, 217, 214, 0.2);
  padding-bottom: 32px;
  padding-top: 32px;
  text-align: center;
}
.queue-management-solutions .container-full-width {
  margin: 0 auto;
  width: 100%;
}
.queue-management-solutions .container-full-width .features-grid h3 {
  text-align: center;
}
.queue-management-solutions .container-full-width .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .queue-management-solutions .container-full-width .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .queue-management-solutions .container-full-width .features-grid {
    grid-template-columns: 1fr;
  }
}
.queue-management-solutions .container-full-width .card-1 {
  background-image: url("/images/product_start.png?v=8c53dbd1d08c");
}
.queue-management-solutions .container-full-width .card-2 {
  background-image: url("/images/product_basic.png?v=6417acf1f5c8");
}
.queue-management-solutions .container-full-width .card-3 {
  background-image: url("/images/product_pro.png?v=32fdefdf6045");
}
.queue-management-solutions .container-full-width .feature-card-section {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
}
.queue-management-solutions .container-full-width .feature-card-section .feature-card-description {
  margin-top: 32px;
  text-align: left;
  padding: 60px;
  background-color: #1b1b1b;
  color: white;
  height: 238px;
}
.queue-management-solutions .container-full-width .feature-card {
  flex-direction: column;
  display: flex;
  justify-content: end;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px 30px;
  border: 1px solid #d9d9d6;
  text-align: center;
  height: 427px;
  width: 295px;
  background-size: 240px;
  background-repeat: no-repeat;
  background-position: top;
}
.queue-management-solutions .container-full-width .feature-card:hover {
  border: 1px solid #c4d600;
}
.queue-management-solutions .container-full-width .feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #00857d;
}
.queue-management-solutions .container-full-width .feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.how-to-choose-container {
  margin-top: 90px;
  margin-bottom: 90px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.how-to-choose-container h2 {
  flex-basis: 33.33%;
  align-content: center;
  padding-right: 60px;
}
.how-to-choose-container .subtitle {
  flex-basis: 66.66%;
}

.section-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.section-list .section-button {
  cursor: pointer;
  align-content: center;
  text-decoration: none;
  margin: 10px 15px;
  background-color: #1b1b1b;
  color: white;
  border-radius: 30px;
  padding: 5px 33px;
  text-align: center;
  text-wrap: nowrap;
}
.section-list .section-button:hover {
  background-color: rgb(0, 82, 77.0676691729);
}
.section-list .section-button.active {
  background-color: #00857d;
}

.start-description {
  margin-bottom: 60px;
  margin-top: 60px;
  text-align: center;
}
.start-description img {
  max-width: 100%;
  border-radius: 15px;
}

.start-features .title {
  text-align: center;
  margin-bottom: 60px;
}
.start-features .start-feature-list {
  margin: 0 auto;
  padding: 30px 90px;
  width: 100%;
  background-color: #1b1b1b;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.start-features .start-feature-list .feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.start-features .start-feature-list .feature-card .feature-title {
  color: #c4d600;
  font-size: 20px;
}
.start-features .start-feature-list .feature-card .feature-description {
  color: white;
  font-size: 14px;
}
.start-features .start-feature-list-line-2 {
  margin: 0 auto;
  padding: 0 90px;
  width: 100%;
  background-color: #1b1b1b;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.start-features .start-feature-list-line-2 .feature-card {
  height: 212px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.start-features .start-feature-list-line-2 .feature-card .feature-title {
  color: #c4d600;
  font-size: 16px;
}
.start-features .start-feature-list-line-3 {
  margin: 0 auto;
  padding: 0 90px;
  width: 100%;
  background-color: #1b1b1b;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.start-features .start-feature-list-line-3 .feature-card {
  height: 212px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.start-features .start-feature-list-line-3 .feature-card .feature-title {
  color: #c4d600;
  font-size: 16px;
}

.start-limitations {
  margin-bottom: 60px;
}
.start-limitations .title {
  text-align: center;
  margin-bottom: 60px;
}
.start-limitations .start-limitation-list {
  margin: 0 auto;
  padding: 30px 90px;
  width: 100%;
  background-color: #1b1b1b;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.start-limitations .start-limitation-list .feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.start-limitations .start-limitation-list .feature-card .feature-icon {
  padding-top: 30px;
  padding-bottom: 30px;
}
.start-limitations .start-limitation-list .feature-card .feature-title {
  color: #c4d600;
  font-size: 20px;
}
.start-limitations .start-limitation-list .feature-card .feature-description {
  color: white;
  font-size: 14px;
}

.system-elements .title {
  text-align: center;
  margin-bottom: 30px;
}
.system-elements .system-elements-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, 400px);
  gap: 30px;
  /*     @media (max-width: 1024px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  } */
}
.system-elements .feature-card {
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-decoration: none;
}
.system-elements .feature-card .feature-icon {
  height: 283px;
  /*         width: 103px;
    height: 92px; */
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid #00857d;
  border-radius: 15px;
}
.system-elements .feature-card .feature-list {
  text-align: left;
}
.system-elements .feature-card .feature-list ul {
  margin-left: 1em;
}
.system-elements .feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #00857d;
  text-align: left;
  margin-bottom: 20px;
  margin-top: 20px;
}
.system-elements .feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.light-bg-cta {
  background-color: rgba(217, 217, 214, 0.2);
  padding: 90px 0;
  text-align: center;
  margin-top: 90px;
  margin-bottom: 90px;
}
.light-bg-cta .cta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.light-bg-cta .cta-row h2 {
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 24px;
  font-weight: 400;
}
.light-bg-cta .cta-row .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 768px) {
  .light-bg-cta .cta-row .cta-buttons {
    margin-top: 20px;
  }
}

.dark-bg-cta {
  background-color: #1b1b1b;
  padding: 90px 0;
  text-align: center;
  margin-top: 90px;
  margin-bottom: 90px;
}
.dark-bg-cta .cta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.dark-bg-cta .cta-row h2 {
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: white;
}
.dark-bg-cta .cta-row .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 768px) {
  .dark-bg-cta .cta-row .cta-buttons {
    margin-top: 20px;
  }
}

.pro-features .title {
  text-align: center;
  margin-bottom: 60px;
}
.pro-features .pro-feature-list {
  margin: 0 auto;
  padding: 30px 90px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .pro-features .pro-feature-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pro-features .pro-feature-list .feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: top;
}
.pro-features .pro-feature-list .feature-card .feature-icon {
  height: 100px;
}
.pro-features .pro-feature-list .feature-card .feature-title {
  color: #c4d600;
  font-size: 20px;
  margin-top: 90px;
  margin-bottom: 90px;
}
.pro-features .pro-feature-list .feature-card .feature-description {
  font-size: 14px;
}
.pro-features .pro-feature-list-line-2 {
  margin: 0 auto;
  padding: 0 90px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .pro-features .pro-feature-list-line-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pro-features .pro-feature-list-line-2 .feature-card {
  height: 212px;
  background-color: rgba(217, 217, 214, 0.2);
  text-align: center;
  display: flex;
  border: 2px solid #d9d9d6;
  border-radius: 15px;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  height: 337px;
}
.pro-features .pro-feature-list-line-2 .feature-card.no-bg {
  border: none;
  background-color: transparent;
}
.pro-features .pro-feature-list-line-2 .feature-card .feature-icon img {
  height: 92px;
}
.pro-features .pro-feature-list-line-2 .feature-card .feature-title {
  color: #00857d;
  font-size: 20px;
}
.pro-features .pro-feature-list-line-2 .feature-card .feature-title-big {
  color: #00857d;
  font-size: 26px;
}
.pro-features .pro-feature-list-line-2 .feature-card .feature-list {
  margin-left: 32px;
  text-align: left;
}
.pro-features .pro-feature-list-line-2 .feature-card .feature-hidden-description {
  display: none;
}
.pro-features .pro-feature-list-line-2 .feature-card .feature-card {
  cursor: pointer;
}
.pro-features .pro-feature-list-line-2 .feature-card.active .feature-hidden-description {
  display: block;
}

.pro-optional-features .title {
  text-align: center;
  margin-bottom: 60px;
}
.pro-optional-features .pro-optional-feature-list {
  background-color: rgba(217, 217, 214, 0.2);
  margin: 0 auto;
  padding: 30px 90px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .pro-optional-features .pro-optional-feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pro-optional-features .pro-optional-feature-list .feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: top;
  background-color: white;
  border: 1px solid #00857d;
  border-radius: 15px;
}
.pro-optional-features .pro-optional-feature-list .feature-card:hover {
  border: 1px solid #c4d600;
}
.pro-optional-features .pro-optional-feature-list .feature-card .feature-icon {
  height: 100px;
}
.pro-optional-features .pro-optional-feature-list .feature-card .feature-title {
  color: #c4d600;
  font-size: 20px;
  margin-top: 90px;
  margin-bottom: 90px;
}
.pro-optional-features .pro-optional-feature-list .feature-card .feature-description {
  font-size: 14px;
}

.optional-modules {
  margin-bottom: 90px;
  padding-top: 32px;
  text-align: center;
}
.optional-modules .container {
  /*     padding-top: 32px;
  background-color: $light-gray;
  margin: 0 auto;
  //padding: 0 90px;
  width: 100%; */
}
.optional-modules .container .features-grid {
  position: relative;
}
.optional-modules .container .features-grid h3 {
  text-align: center;
}
.optional-modules .container .features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1024px) {
  .optional-modules .container .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.optional-modules .container .features-grid {
  /*       @media (max-width: 768px) {
     grid-template-columns: repeat(2, 1fr);
  } */
}
.optional-modules .container .feature-card-section {
  display: flex;
  flex-direction: column;
  z-index: 2;
  text-decoration: none;
  align-items: center;
}
.optional-modules .container .feature-card-section .feature-card-description {
  text-align: left;
  padding: 12px;
  background-color: #1b1b1b;
  color: white;
  height: 200px;
  width: 100%;
}
.optional-modules .container .feature-card {
  flex-direction: column;
  display: flex;
  justify-content: center;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px 30px;
  border: 1px solid #00857d;
  text-align: center;
  height: 282px;
  width: 188px;
  margin-bottom: 30px;
}
.optional-modules .container .feature-card:hover {
  border: 1px solid #c4d600;
}
.optional-modules .container .feature-card .feature-icon img {
  height: 100px;
}
.optional-modules .container .feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #00857d;
}
.optional-modules .container .feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.product-main-image {
  margin-bottom: 60px;
  text-align: center;
}
.product-main-image img {
  max-width: 100%;
  border-radius: 15px;
}

.product-features {
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: rgba(217, 217, 214, 0.2);
}
.product-features .features-container {
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.product-features .features-container h2 {
  flex-basis: 33%;
  align-content: center;
  padding-right: 60px;
}
.product-features .features-container .subtitle {
  flex-basis: 66%;
  text-align: left;
}
.product-features h2 {
  align-content: center;
  text-align: right;
}
.product-features .subtitle {
  flex-basis: 66%;
}

.product-specification {
  background-color: #1b1b1b;
  color: white;
}
.product-specification .specification-container {
  margin-top: 90px;
  margin-bottom: 90px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.product-specification .specification-container h2 {
  color: white;
  flex: 40%;
  align-content: center;
}
.product-specification .specification-container .spec-list {
  flex: 60%;
}
.product-specification .specification-container .subtitle {
  color: white;
  flex: 50%;
}

.product-gallery .title {
  text-align: center;
  margin-bottom: 30px;
}
.product-gallery .products-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, 400px);
  gap: 30px;
  /*     @media (max-width: 1024px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  } */
}
.product-gallery .product-card {
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-decoration: none;
  height: 800px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.visualization-gallery .title {
  text-align: center;
  margin-bottom: 30px;
}
.visualization-gallery .visualization-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, 611px);
  gap: 30px;
  /*     @media (max-width: 1024px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  } */
}
.visualization-gallery .product-card {
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-decoration: none;
  height: 427px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.smart-features .title {
  text-align: center;
  margin-bottom: 60px;
}
.smart-features .smart-feature-list {
  margin: 0 auto;
  padding: 30px 90px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .smart-features .smart-feature-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.smart-features .smart-feature-list .feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: top;
  padding: 20px;
}
.smart-features .smart-feature-list .feature-card .feature-icon {
  height: 100px;
}
.smart-features .smart-feature-list .feature-card .feature-title {
  color: #c4d600;
  font-size: 24px;
  margin-top: 120px;
  margin-bottom: 60px;
}
.smart-features .smart-feature-list .feature-card .feature-description {
  font-size: 16px;
}

.voice-features .title {
  text-align: center;
  margin-bottom: 60px;
}
.voice-features .voice-feature-list {
  margin: 0 auto;
  padding: 30px 90px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .voice-features .voice-feature-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.voice-features .voice-feature-list .feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: top;
  padding: 20px;
}
.voice-features .voice-feature-list .feature-card .feature-icon {
  height: 100px;
}
.voice-features .voice-feature-list .feature-card .feature-title {
  color: #c4d600;
  font-size: 24px;
  margin-top: 120px;
  margin-bottom: 60px;
}
.voice-features .voice-feature-list .feature-card .feature-description {
  font-size: 16px;
}

.appointment-flow .title {
  text-align: center;
  margin-bottom: 30px;
}
.appointment-flow .appointment-flow-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, 400px);
  gap: 30px;
  /*     @media (max-width: 1024px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  } */
}
.appointment-flow .feature-card {
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-decoration: none;
}
.appointment-flow .feature-card .feature-icon {
  height: 427px;
  /*         width: 103px;
    height: 92px; */
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 400px;
  max-width: 100%;
  max-height: 100%;
}
.appointment-flow .feature-card .feature-list {
  text-align: left;
}
.appointment-flow .feature-card .feature-list ul {
  margin-left: 1em;
}
.appointment-flow .feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #00857d;
  text-align: left;
  margin-bottom: 20px;
  margin-top: 20px;
}
.appointment-flow .feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.tailor-made-solutions {
  padding-bottom: 32px;
  padding-top: 32px;
  text-align: center;
}
.tailor-made-solutions .container-full-width {
  margin: 0;
  padding: 0;
  width: 100%;
}
.tailor-made-solutions .container-full-width .features-grid {
  display: grid;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}
.tailor-made-solutions .container-full-width .features-grid h3 {
  text-align: center;
}
.tailor-made-solutions .container-full-width .feature-card-section {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
.tailor-made-solutions .container-full-width .feature-card-section .feature-card-description {
  margin-top: 32px;
  text-align: left;
  padding: 60px;
  background-color: #1b1b1b;
  color: white;
  height: 238px;
  width: 100%;
}
.tailor-made-solutions .container-full-width .feature-card {
  flex-direction: column;
  display: flex;
  justify-content: end;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px 30px;
  margin: 30px 30px;
  border: 1px solid #00857d;
  text-align: center;
  width: 610px;
}
.tailor-made-solutions .container-full-width .feature-card:hover {
  border: 1px solid #c4d600;
}
.tailor-made-solutions .container-full-width .feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #000000;
}
.tailor-made-solutions .container-full-width .feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.counterfeit-solutions {
  padding-bottom: 32px;
  padding-top: 32px;
  text-align: center;
}
.counterfeit-solutions .container-full-width {
  margin: 0;
  padding: 0;
  width: 100%;
}
.counterfeit-solutions .container-full-width .features-grid {
  display: grid;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}
.counterfeit-solutions .container-full-width .features-grid h3 {
  text-align: center;
}
.counterfeit-solutions .container-full-width .feature-card-section {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
.counterfeit-solutions .container-full-width .feature-card-section .feature-card-description {
  margin-top: 32px;
  text-align: left;
  padding: 60px;
  background-color: #1b1b1b;
  color: white;
  height: 238px;
  width: 100%;
}
.counterfeit-solutions .container-full-width .feature-card {
  flex-direction: column;
  display: flex;
  justify-content: end;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px 30px;
  margin: 30px 30px;
  border: 1px solid #00857d;
  text-align: center;
  width: 610px;
}
.counterfeit-solutions .container-full-width .feature-card:hover {
  border: 1px solid #c4d600;
}
.counterfeit-solutions .container-full-width .feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #000000;
}
.counterfeit-solutions .container-full-width .feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.section-title {
  text-align: center;
  margin-bottom: 42px;
}
.section-title .padding-top {
  padding-top: 90px;
}

.iris-5-cta {
  background-color: rgba(217, 217, 214, 0.2);
  padding: 90px 0;
  text-align: center;
  margin-top: 90px;
  margin-bottom: 90px;
}
.iris-5-cta .cta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.iris-5-cta .cta-row h2 {
  font-family: "Encode Sans Expanded", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
.iris-5-cta .cta-row .sub-title {
  max-width: 80%;
}
.iris-5-cta .cta-row .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 768px) {
  .iris-5-cta .cta-row .cta-buttons {
    margin-top: 20px;
  }
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  background-color: rgba(217, 217, 214, 0.2);
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  flex: 1;
  border: none;
}
.form-group label {
  margin-bottom: 0.5rem;
}
.form-group label input {
  margin-right: 0.5rem;
}
.form-group legend {
  margin-bottom: 0.5rem;
}

.radio-group label {
  margin-left: 2.5rem;
}

input,
select,
textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 20px;
}

textarea {
  resize: vertical;
}

.btn-submit {
  background: #008060;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.text-center {
  text-align: center;
}

.sales {
  margin-top: 90px;
  margin-bottom: 90px;
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: rgba(217, 217, 214, 0.2);
}
.sales .title {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
}
.sales .container {
  display: flex;
  flex-direction: row;
  align-items: start;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sales .container .contact,
.sales .container .info {
  margin-top: 16px;
  flex: 50%;
}
.sales .container .details {
  margin-left: 2rem;
}

.cataloque-elements .title {
  text-align: left;
  margin-bottom: 60px;
  margin-top: 90px;
}
.cataloque-elements .controls {
  text-align: center;
}
.cataloque-elements .controls select {
  appearance: none;
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none; /* Firefox */
  background-color: #222223; /* keep your color */
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  border-radius: 15px;
  margin-right: 20px;
  /* Add custom arrow on top of bg color */
  background-image: url("/images/collapse-icon_white.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 40px; /* space for icon */
}
@media (max-width: 768px) {
  .cataloque-elements .controls select {
    margin-top: 20px;
  }
}
.cataloque-elements .controls {
  /* optional: hover state for select itself */
}
.cataloque-elements .controls select:hover {
  filter: brightness(1.1);
}
.cataloque-elements .controls {
  /* ⚠️ option:hover only works in Firefox */
}
.cataloque-elements .controls select option:hover {
  background-color: red;
}
.cataloque-elements .controls input {
  background-color: #d9d9d6;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  border-radius: 15px;
  margin-right: 20px;
  max-width: 270px;
}
@media (max-width: 768px) {
  .cataloque-elements .controls input {
    margin-top: 20px;
  }
}
.cataloque-elements h5 {
  color: #00857d;
}
.cataloque-elements .cataloque-elements-grid {
  margin-bottom: 90px;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, 400px);
  gap: 30px;
  /*     @media (max-width: 1024px) {
    grid-template-columns: repeat(2, 1fr);
  }*/
}
@media (max-width: 768px) {
  .cataloque-elements .cataloque-elements-grid {
    grid-template-columns: repeat(auto-fill, 340px);
  }
}
.cataloque-elements .product-card {
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.cataloque-elements .product-card .product-icon {
  height: 283px;
  /*         width: 103px;
    height: 92px; */
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid #d9d9d6;
  border-radius: 15px;
}
.cataloque-elements .product-card .product-icon.dispenser {
  background-color: #6d6e70;
}
.cataloque-elements .product-card .product-name {
  text-align: left;
  margin-top: 20px;
  color: #00857d;
  font-size: 24px;
}
.cataloque-elements .product-card .product-list {
  text-align: left;
}
.cataloque-elements .product-card .product-list ul {
  margin-left: 1em;
}
.cataloque-elements .product-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #00857d;
  text-align: left;
  margin-bottom: 20px;
  margin-top: 20px;
}
.cataloque-elements .product-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
.cataloque-elements .product-card .tags {
  position: absolute;
  top: 18px;
  right: 18px;
}
.cataloque-elements .product-card .tags .tag {
  color: #00857d;
  font-size: 16px;
  padding: 16px;
  background-repeat: no-repeat;
  width: 55px;
  height: 55px;
  display: inline-block;
}

.free-demo {
  margin-bottom: 32px;
  display: none;
}

.link {
  color: #c4d600;
}

.iris-description {
  background-color: #1b1b1b;
  color: white;
  padding: 32px;
  margin-bottom: 90px;
}
.iris-description .description-cols {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.iris-description .description-cols .description-col {
  flex: 50%;
}

.header-language {
  position: relative;
  display: inline-block;
}

#selected-language {
  margin-right: 0.5em;
}

.language-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1em;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.25em 0.75em;
  border-radius: 4px;
  transition: background 0.2s;
}

.language-btn[aria-expanded=true] {
  background: rgba(255, 255, 255, 0.1);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  color: white;
  min-width: 80px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin-top: 4px;
  z-index: 100;
  list-style: none;
  padding: 0;
  border: 1px solid #333;
}

.language-dropdown li {
  padding: 0.5em 1em;
  cursor: pointer;
  transition: background 0.2s;
}

.language-dropdown li:hover {
  background: #444;
}