/* ===================== Generals ===================== */
body,
h1,
h2,
h3,
h4,
h5,
p,
span,
a {
  font-family: 'Open Sans', sans-serif;
  color: #15172E;
}

h1 {
  font-weight: 600;
  font-size: 45px;
}

h2 {
  font-weight: 700;
  font-size: 40px;
}

h3 {
  font-weight: 400;
  font-size: 15px;
}

h4 {
  font-weight: 600;
  font-size: 25px;
}

h5 {
  font-weight: 600;
  font-size: 20px;
}

p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
  height: 100dvh;
}
/* ===================== Navbar styles ===================== */
.navbar-wrapper {
  height: 100px;
  margin-top: 16px;
  transition: margin-top 0.3s ease;
}

.navbar-wrapper.shrink {
  margin-top: 0;
}

.navbar.container {
  position: fixed;
  margin-top: 16px;
  left: 0;
  right: 0;
  z-index: 10000;
  margin: 0 auto;
  height: 100px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  background-color: #f9f9f9;
  color: black;
  transition: height 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
}

.navbar.container.shrink {
  height: 80px;
  padding: 0 15px;
  border-radius: 20px;
}

.navbar.container.dropdown-open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.navbar-brand {
  flex-shrink: 0;
}

.navbar-logo {
  width: 345.6px;
  height: 50px;
  margin-top: 3px;
  padding-left: 0;
  object-fit: contain;
}

.navbar-logo-mobile {
  width: 150px;
  height: auto;
  margin-top: 3px;
  padding-left: 0;
  object-fit: contain;
}

.navbar-item {
  margin: 0 15px;
  padding: 0 15px;
  line-height: 50px;
  cursor: pointer;
  user-select: none;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s ease;
}

.navbar-menu {
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
}

.navbar.container>.sign-in,
.navbar.container>.btn {
  flex-shrink: 0;
  margin-left: 15px;
}

.navbar-item:hover {
  background-color: transparent;
  color: #000;
  border-bottom: 2px solid #007A6D;
}

.navbar.container.shrink {
  height: 80px;
  padding: 0 15px;
}

.navbar-logo.shrink {
  width: 280px;
  transition: width 0.3s ease;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f9f9f9;
  color: black;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  box-sizing: border-box;
  padding: 0 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 10001;
  pointer-events: none;
}

.dropdown-content,
.dropdown-content p,
.dropdown-content a,
.dropdown-content li,
.dropdown-content h3,
.dropdown-content h4 {
  font-size: 10px;
  font-weight: 300;
  line-height: 1.4;
  margin-right: 90px;
}

.dropdown-content.show {
  max-height: 1000px;
  padding: 20px 40px 40px 40px;
  pointer-events: auto;
}

#gray-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 3;
  display: none;
  pointer-events: none;
}

.navbar-collapse {
  padding: 1rem 1.5rem;
}
/* =====================Responsive Navbar =======================================*/
@media (max-width: 600.98px) {
  .dropdown-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-left: 0 !important;
    background-color: #f9f9f9;
    padding: 10px 20px;
    border-radius: 0 0 20px 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    pointer-events: none;
    display: none;
  }

  .dropdown-content.show {
    padding: 10px 20px;
    pointer-events: auto;
    overflow-y: auto;
    display: block;
  }

  .navbar-collapse {
    display: none !important;
    position: relative;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f9f9f9;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    z-index: 1050;

    transition: max-height 0.3s ease;
    flex-direction: column;
  }

  .navbar-collapse.show {
    display: flex !important;
    flex-direction: column;
  }

  .navbar-toggler {
    display: block !important;
  }

  .navbar-menu {
    flex-direction: column !important;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .navbar-menu .navbar-item {
    display: block;
    padding: 0.5rem 0;
    width: 100%;
    position: relative;
  }

  .dropdown-menu {
    position: relative !important;
    float: none !important;
    width: 100% !important;
    box-shadow: none !important;
    background: white !important;
    padding: 0.5rem 1rem !important;
    margin: 0.5rem 0 0 0 !important;
    border: 1px solid #ddd !important;
    border-radius: 0.25rem !important;

    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .dropdown-menu.show {
    max-height: 300px;
    overflow-y: auto;
    display: block !important;
  }

  .navbar-collapse>.d-flex.ms-auto {
    flex-direction: column !important;
    width: 100%;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .navbar-collapse>.d-flex.ms-auto a.nav-link {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .navbar-collapse>.d-flex.ms-auto button.btnDemoNav {
    width: auto;
    align-self: center;
    margin-bottom: 0.5rem;
  }

  .navbar-logo-mobile {
    max-height: 50px;
    width: auto;
  }

  .navbar-collapse.show+#navbar {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .contentSubtitleNav {
    color: #848386;
    font-size: 12px !important;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }

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

   .dropdown-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-left: 0 !important;
    background-color: #f9f9f9;
    padding: 10px 20px;
    border-radius: 0 0 20px 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    pointer-events: none;
    display: none;
  }

  .dropdown-content.show {
    padding: 10px 20px;
    pointer-events: auto;
    overflow-y: auto;
    display: block;
  }

  .navbar-collapse {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f9f9f9;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    z-index: 1050;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    flex-direction: column;
  }

  .navbar-collapse.show {
    display: flex !important;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }

  .navbar-toggler {
    display: block !important;
  }

  .navbar-menu {
    flex-direction: column !important;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .navbar-menu .navbar-item {
    display: block;
    padding: 0.5rem 0;
    width: 100%;
    position: relative;
  }

  .dropdown-menu {
    position: relative !important;
    float: none !important;
    width: 100% !important;
    box-shadow: none !important;
    background: white !important;
    padding: 0.5rem 1rem !important;
    margin: 0.5rem 0 0 0 !important;
    border: 1px solid #ddd !important;
    border-radius: 0.25rem !important;

    max-height: 0;
    overflow-y: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown-menu.show {
    max-height: 300px;
    overflow-y: auto;
    display: block !important;
  }

  .navbar-collapse>.d-flex.ms-auto {
    flex-direction: column !important;
    width: 100%;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .navbar-collapse>.d-flex.ms-auto a.nav-link {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .navbar-collapse>.d-flex.ms-auto button.btnDemoNav {
    width: auto;
    align-self: center;
    margin-bottom: 0.5rem;
  }

  .navbar-logo-mobile {
    max-height: 50px;
    width: auto;
  }

  .navbar-collapse.show+#navbar {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .contentSubtitleNav {
    color: #848386;
    font-size: 12px !important;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }

}

/* Desktop */
@media (min-width: 1200px) {
  .navbar-collapse {
    display: flex !important;
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
    background: none !important;
  }

  .navbar-toggler {
    display: none !important;
  }

  .dropdown-menu {
    position: absolute !important;
    background: white !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    width: auto !important;
    padding: 0.5rem 0 !important;
    border-radius: 0.25rem !important;
    max-height: none !important;
    overflow: visible !important;
  }
}


/* =========NAVBAR STYLES TITLES, SUBTITLES AND IMG OF DROPDOWN======== */
.iconTextNav {
  background-color: #e0e0e0;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 20px;
  margin-top: 5px;
}

.linkIconTextNav {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: flex-start;
}

.contentTitleNav {
  font-weight: bold;
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
  color: inherit;
}

.contentTitleNav::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #007A6D;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.linkIconTextNav:hover .contentTitleNav::before,
.linkIconTextNav:focus .contentTitleNav::before {
  transform: scaleX(1);
}

.contentSubtitleNav {
  color: #848386;
  font-size: 12px !important;
}

.contentImgNav {
  width: 16px;
  height: 16px;
}

.imgsolution {
  max-width: 100%;
  height: auto;
  border-radius: 20px;

}

/* ===================== Botones ===================== */
.btnDemoNav {
  background-color: #007A6D;
  width: 180px;
  height: 40px;
  gap: 8px;
  border-radius: 10px;
  border: none;
  font-size: 20px;
  line-height: 100%;
}

.btnDemoNav:hover {
  box-shadow: 0 0 12px rgba(0, 122, 109, 0.5);
  transform: scale(1.03);
  transition: all 0.2s ease-in-out;
}

.button-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  text-align: center;
  align-items: center;
}

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

.btnDemo {
  background-color: #007A6D;
  height: 56px;
  gap: 8px;
  border-radius: 10px;
  padding: 10px 20px;
  color: white;
  border: none;
  font-size: 20px;
  line-height: 100%;
  margin-top: 40px;
}

.btnDemo:hover,
.btnFeatures:hover {
  box-shadow: 0 0 12px rgba(0, 122, 109, 0.5);
  transform: scale(1.03);
  transition: all 0.2s ease-in-out;
}

.btnBlack {
  width: 255;
  height: 56;
  gap: 8px;
  border-radius: 8px;
  padding-top: 16px;
  padding-right: 24px;
  padding-bottom: 16px;
  padding-left: 24px;
  background-color: #15172E;
  color: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 40px;
}

.btnBlack:hover {
  box-shadow: 0 0 12px #1d203f;
  transform: scale(1.03);
  transition: all 0.2s ease-in-out;
}
/* ===================== Iframe Modal ===================== */
.modal {
  display: none;
  position: fixed;
  z-index: 10002;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  pointer-events: auto;
  align-items: center;
}

.modal-content {
  display: flex;
  background-color: white;
  max-width: 100%;
  width: 600px;
  max-height: 95vh;
  position: fixed;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden; 
}

.modal-scrollable-content {
  overflow-y: auto;
  max-height: 95vh;
  padding: 1rem; 
}

.close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  background-color: white;
}

.close-button:hover {
  color: black;
}

@media (max-width: 768px) {
  .modal-content {
    width: 90%;
  }
}

/* ===================== Footer ===================== */
.footerBackground {
  background-color: #2D2D2D;
  padding: 40px 60px;
}

footer {
  color: white;
}

svg {
  color: white;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer ul {
  padding-left: 0;
}

footer li {
  text-align: left;
}

footer li a:hover {
  color: #ddd;
}

.text-footer {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
  color: #FFFFFF;
}

#billing,
#portal,
#ecommerce,
#scheduler,
#crm,
#kiosk,
#network-voip,
#and-so-much-more,
#Coworking,
#Kiosk,
#Smart,
#Environmental,
#Client,
#NetworkAndVoIP {
  scroll-margin-top: 90px;
}

#portal-avatar0,
#portal-avatar1,
#ecommerce-avatar0,
#ecommerce-avatar1,
#ecommerce-avatar2,
#ecommerce-avatar3,
#scheduler-avatar0,
#scheduler-avatar1,
#scheduler-avatar2,
#crm-avatar0,
#crm-avatar1,
#crm-avatar2,
#crm-avatar3,
#billing-avatar0,
#billing-avatar1,
#kiosk-avatar0,
#kiosk-avatar1,
#network-voip-avatar0,
#network-voip-avatar1,
#and-so-much-more-avatar0,
#and-so-much-more-avatar1,
#and-so-much-more-avatar2 {
  scroll-margin-top: 110px;
}

.divtextDrop span {
  font-size: 12.4px;
}

.container-gray {
  background-color: #F9F9F9;
  padding-top: 30px;
  padding-bottom: 30px;
}

.container-white {
  background-color: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}

.background-nav {
  background-color: rgba(255, 255, 255, 0.7);
}

/* ===================== Product and solutions styles ===================== */

.card-paragraph {
  line-height: 1.5;
  letter-spacing: 0%;
  color: #848386 !important
}

.textHeadline {
  line-height: 62px;
  max-width: 100%;
  margin-top: 40px;
  font-weight: 700;
}

.subText {
  line-height: 40px;
  margin-top: 40px;
}

.subText-green {
  line-height: 24px;
  margin-top: 40px;
  color: #007A6D;
}
/* =====================  sideBar links styles ===================== */
.nav-link {
  font-size: 16px;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  color: #15172E;
}

.nav-link.active {
  border-bottom: 2px solid #007A6D;
  font-weight: bold;
}

.nav-link:hover {
  color: #15172E;
}


/* ===================== Book a demo Bottom cards ===================== */

.bottom-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;
  letter-spacing: -2.5%;
  text-align: center;
}

.textLooking {
  font-weight: 400;
  font-size: 32px;
  line-height: 30px;
  margin-top: 20px;
}


/* ===================== Picing and Solutions FAQs ===================== */

.accordion-item {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.accordion-inner {
  width: 1000px;
  border-bottom: 1px solid #848386;
}

.accordion-button::after {
  content: '＋';
  font-size: 24px;
  transform: none;
}

.accordion-button:not(.collapsed)::after {
  content: '−';
}