.automateNavbar {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  background: var(--gradient-purple);
  z-index: 5;
  padding-left: 23px;
  padding-right: 23px;
}

.automateNavbar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: var(--content-large-max-width);
  margin: 0 auto;
  padding-top: var(--section-base-padding);
  padding-bottom: var(--section-base-padding);
}

.automateNavbar__headingContainer {
  text-decoration: none;
}

.automateNavbar__heading {
  display: flex;
  align-items: center;
}

.automateNavbar__headingLogo {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.automateNavbar__headingText {
  color: var(--color-white);
  font-weight: var(--font-weight-semibold);
}

.automateNavbar__icon {
  transition: transform 0.3s ease;
}

.automateNavbar__icon:hover {
  cursor: pointer;
}

.automateNavbar__icon.active {
  transform: rotate(180deg);
}

.automateNavbar__linksContainer {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.automateNavbar__links {
  color: var(--color-white);
  display: none;
}

.automateNavbar__linkContainer {
  display: inline-block;
  position: relative;
  height: 100%;
}

.automateNavbar__link {
  /* font-family: 'Rubik', sans-serif; */
  color: var(--color-white);
  text-decoration: none;
}

.automateNavbar__linksContainer--mobile {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.automateNavbar__linksContainer--mobile.active {
  max-height: 500px;
}

.automateNavbar__link--mobile {
  display: block;
  padding: 20px;
  color: var(--color-white);
  text-decoration: none;
}

.automateNavbar__link__subMenu {
  display: flex;
  gap: 12px;
}

.automateNavbar__link__subMenuLink {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
  text-decoration: none;
  padding: 12px 20px;
}

.automateNavbar__link__subMenuLink:hover {
  cursor: pointer;
}

.automateNavbar__link__subMenuLink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.automateNavbar__link__subMenuLink:hover::after {
  width: 100%;
}

.automateNavbar__link__subMenuLink > img {
  display: none;
  width: 10px;
  height: 10px;
}

.automateNavbar__link__subMenuLink:hover > img {
  display: block;
}

.automateNavbar__linkContainer:hover .automateNavbar__link__subMenuContainer {
  display: block;
}

@media (min-width: 1080px) {
  .automateNavbar {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 0;
  }

  .automateNavbar__icon {
    display: none;
  }

  .automateNavbar__links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
  }
}