.service {
  padding-bottom: 8rem;
  background-color: #e7e7e7;
}
.service .navbar {
  background-color: #102226;
  margin: 5rem 0;
  border-radius: 3rem;
}
.service .navbar ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 1rem 3rem;
}
.service .navbar ul li a {
  font-size: 1.4rem;
  color: var(--white);
}
.service .navbar ul li a:hover {
  text-decoration: none;
}
.service .navbar ul .active {
  border-bottom: 2px solid #fff;
}
.service__content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 10rem;
  margin-bottom: 5rem;
}
.service__content__left .secondary--headline {
  padding-bottom: 3rem;
}
.service__content__right img {
  border-radius: 2rem;
}
.service .features__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}
.service .features__content .feature p {
  padding-top: 1rem;
}

.lg-hidden {
  display: none;
}

.mobile-navbar {
  display: none;
  background-color: #102226;
  margin: 5rem 0;
  border-radius: 3rem;
  padding: 2rem;
  overflow: hidden;
}

.hidden {
  display: none;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.collapsed {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.expanded {
  max-height: 500px; /* Adjust according to the content height */
  transition: max-height 0.5s ease-in;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

#menu-items {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#menu-items li {
  margin: 10px 0;
  font-size: 1.4rem;
}

#menu-items li a {
  text-decoration: none;
  color: white;
}

#menu-items li a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 786px) {
  .mobile-navbar {
    display: block;
  }
  .service .navbar {
    display: none;
  }
  .service .navbar ul {
    display: block;
  }
  .service .navbar ul li {
    padding-bottom: 1rem;
  }
  .service__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service .features__content {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=style.css.map */