/* [project]/src/components/Footer/footer.module.css [app-client] (css) */
.footer-module__WOMdyG__footer {
  background: var(--brand-color-6);
  clear: both;
  color: #fff;
  border-top: 4px solid #212529;
  margin-top: 0;
  padding: 0;
  position: relative;
  font-size: .875rem !important;
}

.footer-module__WOMdyG__footerHeading {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 3rem;
  display: inline-block;
  position: relative;
  font-size: .9rem !important;
  font-weight: 700 !important;
}

.footer-module__WOMdyG__footerHeading:after {
  content: "";
  width: 50px;
  height: 3px;
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: var(--brand-color-1) !important;
}

.footer-module__WOMdyG__footerContent {
  padding-left: 0;
  line-height: 1.6;
  font-size: .875rem !important;
}

.footer-module__WOMdyG__footerContent li {
  gap: .8rem;
  margin-bottom: 1em;
  display: flex;
  position: relative;
}

.footer-module__WOMdyG__footer p {
  color: #fff !important;
}

.footer-module__WOMdyG__footer a {
  color: var(--brand-color-white);
  text-decoration: none;
  display: inline-block;
}

.footer-module__WOMdyG__SocialIcons {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  gap: .3rem;
  padding-left: 0;
  transition: background-color .3s, transform .3s;
  display: flex;
}

.footer-module__WOMdyG__socialIcons {
  align-items: center;
  gap: .2rem;
  padding-left: 0;
  transition: background-color .3s, transform .3s;
  display: flex;
}

.footer-module__WOMdyG__socialIcons li {
  color: #212529;
  border-radius: 100%;
  margin: -1px 1px 0 0;
  padding: 0;
  display: inline-block;
  overflow: visible;
  box-shadow: 0 1px 1px #0003;
}

.footer-module__WOMdyG__socialIcons li a {
  text-align: center;
  background: var(--brand-color-dark-gray);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: .8rem;
  display: flex;
  color: #333 !important;
}

.footer-module__WOMdyG__socialIcons li a:hover {
  background: var(--brand-color-1);
  color: #fff !important;
}

.footer-module__WOMdyG__socialIcons li a:hover svg {
  color: #fff !important;
}

.footer-module__WOMdyG__footerListIcon svg {
  fill: #fff;
  width: 1em !important;
  min-width: 1em !important;
  height: 1em !important;
}

.footer-module__WOMdyG__footerCopyright {
  color: #fff;
  background: none;
  border-top: 1px solid #fff;
  place-items: center;
  margin: 0 60px;
  padding: 1rem 0;
}

.footer-module__WOMdyG__footerCopyright p {
  margin-bottom: 0;
  font-size: .9em !important;
}

.footer-module__WOMdyG__newsLink:hover {
  color: var(--brand-color-1);
}

/* [project]/src/components/ChatBot/chatbot.module.css [app-client] (css) */
.chatbot-module__DuXWVq__chatbotPopup {
  opacity: 0;
  transform-origin: 100% 100%;
  z-index: 999;
  background: #fff;
  border-radius: 12px;
  width: 400px;
  max-width: 90%;
  height: 80%;
  max-height: 500px;
  transition: all .2s ease-in-out;
  display: none;
  position: fixed;
  bottom: 2%;
  right: 2%;
  overflow: hidden;
  transform: scale(.95);
  box-shadow: 0 18px 40px -5px #0003, 0 15px 20px -5px #0000001a;
}

.chatbot-module__DuXWVq__chatbotPopup.chatbot-module__DuXWVq__visibleChatPopup {
  opacity: 1;
  display: block;
  transform: scale(1);
}

.chatbot-module__DuXWVq__chatbotHeader {
  background: var(--brand-color-2);
  height: 60px;
  color: var(--brand-color-white);
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  display: flex;
}

.chatbot-module__DuXWVq__headerTitle {
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.chatbot-module__DuXWVq__headerButtons {
  align-items: center;
  gap: 12px;
  display: flex;
}

.chatbot-module__DuXWVq__iconButton {
  color: var(--brand-color-white);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 8px;
  transition: all .2s;
  display: flex;
}

.chatbot-module__DuXWVq__iconButton:hover {
  color: var(--header-textColor);
  background: #ffffff1a;
}

.chatbot-module__DuXWVq__iconButton:focus {
  outline-offset: 2px;
  outline: 2px solid #ffffff80;
}

.chatbot-module__DuXWVq__webchat {
  background-color: var(--brand-color-white);
  height: calc(100% - 60px);
  position: relative;
}

.chatbot-module__DuXWVq__webchat ul {
  list-style-type: disc !important;
}

.chatbot-module__DuXWVq__webchat ol {
  list-style-type: decimal !important;
}

.chatbot-module__DuXWVq__webchat-overlay {
  pointer-events: none;
  z-index: 1;
  background: #ffffffd9;
  position: absolute;
  inset: 0;
}

.chatbot-module__DuXWVq__webchat > div {
  z-index: 2;
  position: relative;
}

.chatbot-module__DuXWVq__webchat .chatbot-module__DuXWVq__webchat__basic-transcript__content {
  white-space: pre-wrap !important;
  word-break: break-word !important;
}

.chatbot-module__DuXWVq__webchat .chatbot-module__DuXWVq__webchat__bubble__content {
  padding: 8px 12px !important;
}

.chatbot-module__DuXWVq__webchat img {
  display: inline-block !important;
}

.chatbot-module__DuXWVq__webchat p {
  color: inherit !important;
  margin-bottom: 1rem !important;
}

.chatbot-module__DuXWVq__webchat ul li, .chatbot-module__DuXWVq__webchat ol li {
  margin-bottom: 1rem !important;
}

.chatbot-module__DuXWVq__webchat .chatbot-module__DuXWVq__webchat__bubble {
  max-width: 85% !important;
  margin: 8px !important;
}

.chatbot-module__DuXWVq__webchat .chatbot-module__DuXWVq__webchat__basic-transcript__content ul, .chatbot-module__DuXWVq__webchat .chatbot-module__DuXWVq__webchat__basic-transcript__content ol, .chatbot-module__DuXWVq__webchat .chatbot-module__DuXWVq__webchat__bubble__content ul, .chatbot-module__DuXWVq__webchat .chatbot-module__DuXWVq__webchat__bubble__content ol {
  margin: 8px 0 !important;
  padding-left: 24px !important;
  list-style-position: outside !important;
}

.chatbot-module__DuXWVq__webchat .chatbot-module__DuXWVq__webchat--css-shhtp-kdgeig.chatbot-module__DuXWVq__webchat__render-markdown .chatbot-module__DuXWVq__webchat__render-markdown__external-link-icon {
  display: inline-block !important;
}

.chatbot-module__DuXWVq__webchat .chatbot-module__DuXWVq__webchat__basic-transcript__content li, .chatbot-module__DuXWVq__webchat .chatbot-module__DuXWVq__webchat__bubble__content li {
  margin: 4px 0 !important;
  padding-left: 4px !important;
}

.chatbot-module__DuXWVq__openChat {
  background: var(--brand-color-2);
  cursor: pointer;
  z-index: 998;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  transition: all .2s ease-in-out;
  display: flex;
  position: fixed;
  bottom: 32px;
  right: 32px;
  box-shadow: 0 4px 6px -1px #0000001a;
}

.chatbot-module__DuXWVq__openChat.chatbot-module__DuXWVq__hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(.95)translateY(10px);
}

.chatbot-module__DuXWVq__openChat:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px #0000001a;
}

.chatbot-module__DuXWVq__openChat:focus {
  outline-offset: 2px;
  outline: 3px solid #4f46e580;
}

.chatbot-module__DuXWVq__openChat svg {
  color: #fff;
  width: 28px;
  height: 28px;
  transition: transform .2s;
}

@media (max-width: 768px) {
  .chatbot-module__DuXWVq__chatbotPopup {
    width: 100%;
    height: 100%;
  }
}

/* [project]/src/components/Header/header.module.css [app-client] (css) */
.header-module__nrpHoW__header {
  background-color: #fff;
}

.header-module__nrpHoW__landingPageHeader {
  background-color: #fff;
  padding: 1.25rem 0;
}

.header-module__nrpHoW__headerContainer {
  position: relative;
}

.header-module__nrpHoW__menuIcon {
  cursor: pointer;
  color: #fff;
  background: #ff1fa9;
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
  display: none;
}

.header-module__nrpHoW__socialIcons {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  gap: .3rem;
  transition: background-color .5s, transform .5s;
  display: flex;
}

.header-module__nrpHoW__socialIcons a {
  text-align: center;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin: 0 3px;
  padding: 5px;
  font-size: .79rem;
  display: flex;
  box-shadow: 0 1px 1px #0003;
  color: var(--brand-color-6) !important;
}

.header-module__nrpHoW__socialIcons a:hover {
  background: #0088d0;
  color: #fff !important;
}

.header-module__nrpHoW__headerMenuContainer {
  margin-left: auto;
  margin-right: 1rem;
  display: flex;
}

.header-module__nrpHoW__navbar {
  align-items: center;
  display: flex;
}

.header-module__nrpHoW__menuItemsList {
  text-align: right;
  float: right;
  flex-wrap: wrap;
  justify-content: end;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.header-module__nrpHoW__menuItem {
  cursor: pointer;
  text-align: left;
  display: inline-block;
  position: relative;
}

.header-module__nrpHoW__menuItem:hover .header-module__nrpHoW__label, .header-module__nrpHoW__menuItem:hover .header-module__nrpHoW__label a {
  color: var(--brand-color-1) !important;
}

.header-module__nrpHoW__desktopMegaMenuContainer {
  position: static !important;
}

.header-module__nrpHoW__megaMenuContainer {
  z-index: 1;
  background-color: #fff;
  border-radius: 4px;
  width: auto;
  display: none;
  position: absolute;
  left: -2.5rem;
  right: -2.5rem;
  box-shadow: 0 2px 15px #0000001a;
}

.header-module__nrpHoW__menuItem:hover .header-module__nrpHoW__megaMenuContainer, .header-module__nrpHoW__menuItem:hover .header-module__nrpHoW__subMenuContainer {
  display: block;
}

.header-module__nrpHoW__label {
  color: var(--brand-color-6);
  white-space: normal;
  text-transform: none;
  border-radius: 4px;
  align-items: center;
  padding: .5rem .9rem;
  font-style: normal;
  font-weight: 500;
  display: inline-flex;
  letter-spacing: 0 !important;
  font-size: 1rem !important;
}

.header-module__nrpHoW__menuSubItems .header-module__nrpHoW__label {
  text-transform: none;
  width: auto;
  min-width: 200px;
  font-weight: 400;
  color: var(--brand-color-6) !important;
  background-color: #0000 !important;
}

.header-module__nrpHoW__menuSubItems .header-module__nrpHoW__label a {
  text-transform: none;
  width: auto;
  min-width: 200px;
  font-size: .9em;
  font-weight: 400;
  color: var(--brand-color-6) !important;
}

.header-module__nrpHoW__menuSubItems, .header-module__nrpHoW__subMenu {
  text-align: left;
  z-index: 1000;
  background-color: #fff;
  border-radius: 3px;
  width: auto;
  position: absolute;
  left: 0;
  box-shadow: 0 2px 10px #0000001a;
}

.header-module__nrpHoW__menuSubItem {
  color: var(--brand-color-6);
  text-transform: none;
  cursor: pointer;
  padding: .5rem 1rem;
  font-weight: 400;
}

.header-module__nrpHoW__dropdown {
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  background-color: #fff;
  border-radius: 4px;
  width: auto;
  min-width: 200px;
  padding: .5rem 0;
  transition: opacity .3s, visibility .3s;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 2px 10px #0000001a;
}

.header-module__nrpHoW__arrowTop {
  padding: 1em 0;
  position: absolute;
}

.header-module__nrpHoW__megaMenu {
  display: none;
}

.header-module__nrpHoW__hasChildren .header-module__nrpHoW__dropdown > .header-module__nrpHoW__hasChildren .header-module__nrpHoW__dropdown {
  visibility: hidden;
  opacity: 0;
  border-radius: 3px;
  padding: .5rem 0;
  transition: opacity .3s, visibility .3s;
  top: 25%;
  left: 100%;
}

.header-module__nrpHoW__dropdown:hover .header-module__nrpHoW__subMenuContainer {
  display: block !important;
}

.header-module__nrpHoW__hasChildren:hover > .header-module__nrpHoW__dropdown {
  visibility: visible;
  opacity: 1;
  display: block !important;
}

.header-module__nrpHoW__hasChildren .header-module__nrpHoW__dropdown a {
  text-transform: none;
  align-items: center;
  gap: .8rem;
  padding: .5rem 1rem;
  display: flex;
  color: var(--brand-color-6) !important;
  font-size: .8rem !important;
  font-weight: 400 !important;
}

.header-module__nrpHoW__hasChildren > .header-module__nrpHoW__dropdown > .header-module__nrpHoW__subMenuItem > a:hover {
  color: #ff1fa9 !important;
  background-color: #f7f7f7 !important;
}

.header-module__nrpHoW__megaMenu.header-module__nrpHoW__arrowTop {
  padding: 0 1em 1em !important;
}

.header-module__nrpHoW__hasChildren > .header-module__nrpHoW__megaMenu {
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  background-color: #fff;
  width: auto;
  padding: .5rem 0;
  list-style: none;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 2px 10px #0000001a;
}

.header-module__nrpHoW__menuItem .header-module__nrpHoW__megaMenu.header-module__nrpHoW__productsMegaMenu {
  left: 50%;
  transform: translateX(-50%);
}

.header-module__nrpHoW__megaMenu.header-module__nrpHoW__productsMegaMenu {
  min-width: 520px;
  max-width: 530px;
  padding: .75rem .9rem .9rem !important;
}

@media (min-width: 1400px) {
  .header-module__nrpHoW__megaMenu.header-module__nrpHoW__productsMegaMenu {
    min-width: 540px;
    max-width: 550px;
  }
}

.header-module__nrpHoW__megaMenu.header-module__nrpHoW__productsMegaMenu .header-module__nrpHoW__row {
  margin-left: 0;
  margin-right: 0;
}

.header-module__nrpHoW__megaMenu.header-module__nrpHoW__productsMegaMenu .header-module__nrpHoW__col-lg-6 {
  padding-left: .75rem;
  padding-right: .75rem;
}

.header-module__nrpHoW__dropdown > li.header-module__nrpHoW__hasChildren:hover > a {
  color: #ff1fa9 !important;
}

.header-module__nrpHoW__hasChildren:hover > .header-module__nrpHoW__megaMenu {
  visibility: visible;
  opacity: 1;
  display: block;
}

.header-module__nrpHoW__hasChildren:hover > .header-module__nrpHoW__megaMenu .header-module__nrpHoW__megaMenuList {
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
}

.header-module__nrpHoW__megaMenu .header-module__nrpHoW__megaMenuTitle {
  color: var(--brand-color-6);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-top: 5px;
  padding-bottom: 10px;
  padding-left: 6px;
  font-weight: 600;
  display: block;
  font-size: .95em !important;
}

.header-module__nrpHoW__megaMenuList .header-module__nrpHoW__megaMenuItem a {
  color: var(--brand-color-6);
  text-shadow: none;
  border: 0;
  border-radius: 4px;
  margin: 0 0 3px;
  padding: 3px 8px 3px 6px;
  font-size: .85em;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.header-module__nrpHoW__megaMenuItem:hover a {
  color: #ff1fa9 !important;
}

.header-module__nrpHoW__menuItemsList > li:nth-child(3) .header-module__nrpHoW__megaMenu {
  left: -250px;
  right: -250px;
}

.header-module__nrpHoW__menuItemsList > li:nth-child(6) .header-module__nrpHoW__megaMenu {
  left: auto;
  right: auto;
}

.header-module__nrpHoW__hasChildren .header-module__nrpHoW__dropdown > .header-module__nrpHoW__hasChildren:hover > .header-module__nrpHoW__dropdown {
  visibility: visible;
  opacity: 1;
}

.header-module__nrpHoW__subMenuItem {
  text-align: left;
  min-width: 200px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-module__nrpHoW__subMenuItem a {
  color: var(--brand-color-6);
  letter-spacing: 0;
  border-bottom: 1px solid #f7f7f7;
  padding: 5px 20px;
  font-size: .9em;
  font-weight: 400;
  display: block;
  position: relative;
}

.header-module__nrpHoW__menuSubItem:hover .header-module__nrpHoW__label, .header-module__nrpHoW__menuSubItem:hover a {
  color: #ff1fa9 !important;
}

.header-module__nrpHoW__mobileMegaMenuContainer {
  width: auto;
  position: relative;
}

.header-module__nrpHoW__menuItem:hover > a {
  color: #ff1fa9;
}

.header-module__nrpHoW__topArrow {
  padding: 1em 0;
  position: absolute;
}

.header-module__nrpHoW__megaMenuContainer, .header-module__nrpHoW__dropdown, .header-module__nrpHoW__megaMenu, .header-module__nrpHoW__arrowTop, .header-module__nrpHoW__topArrow {
  border-top: 4px solid !important;
  border-image: linear-gradient(to right, #ff1fa9, #ac34fe) 1 !important;
  border-radius: 4px !important;
}

.header-module__nrpHoW__productsMegaMenuContainer {
  z-index: 1;
  background-color: #fff;
  border-radius: 4px;
  width: auto;
  display: none;
  position: absolute;
  transform: translateX(-50%);
  box-shadow: 0 2px 15px #0000001a;
  border-top: 4px solid !important;
  border-image: linear-gradient(to right, #ff1fa9, #ac34fe) 1 !important;
}

.header-module__nrpHoW__desktopProductsMegaMenuContainer {
  position: static !important;
}

.header-module__nrpHoW__menuItem:hover .header-module__nrpHoW__productsMegaMenuContainer {
  display: block;
}

.header-module__nrpHoW__mobileMenuOverlay {
  z-index: 9999;
  background-color: #00000080;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  display: flex;
  position: fixed;
  inset: 0;
}

.header-module__nrpHoW__mobileMenuContent {
  width: 100%;
  max-width: 100%;
  max-height: 100vh;
  box-shadow: none;
  background-color: #fff;
  border-radius: 0;
  animation: .3s ease-out header-module__nrpHoW__slideInFromTop;
  overflow-y: auto;
}

.header-module__nrpHoW__mobileMenuHeader {
  color: #ff1fa9;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  display: flex;
}

.header-module__nrpHoW__closeButton {
  color: var(--brand-color-6);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 4px;
  padding: .5rem;
  transition: background-color .5s;
}

.header-module__nrpHoW__greatPlaceToWorkImg {
  object-fit: contain;
  align-self: center;
  width: 50px;
  height: auto;
  margin-left: 1rem;
  transition: all .3s;
}

@media screen and (max-width: 992px) {
  .header-module__nrpHoW__headerMenuContainer {
    order: 1;
    margin-left: 1.5em;
    margin-right: 0;
  }

  .header-module__nrpHoW__menuItemsList {
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: none;
  }

  .header-module__nrpHoW__menuIcon {
    cursor: pointer;
    color: #fff;
    background: #ff1fa9;
    border: none;
    border-radius: 6px;
    outline: none;
    justify-content: center;
    align-items: center;
    min-width: 44px;
    min-height: 44px;
    padding: 12px;
    font-size: 1rem;
    display: flex;
  }

  .header-module__nrpHoW__navbar li {
    text-align: center;
    width: 100%;
  }

  .header-module__nrpHoW__navbar a {
    justify-content: center;
    width: 100%;
  }

  .header-module__nrpHoW__socialIcons {
    margin-left: auto;
  }

  .header-module__nrpHoW__menuIcon:active {
    transform: scale(.95);
  }

  .header-module__nrpHoW__greatPlaceToWorkImg {
    display: none !important;
  }
}

@media screen and (max-width: 400px) {
  .header-module__nrpHoW__socialIcons {
    display: none;
  }
}

@keyframes header-module__nrpHoW__slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-color-scheme: dark) {
  .header-module__nrpHoW__mobileMenuContent {
    color: #fff;
    background-color: #2d2d2d;
  }

  .header-module__nrpHoW__mobileMenuHeader {
    border-bottom-color: #555;
  }
}

@media (max-width: 1200px) {
  .header-module__nrpHoW__greatPlaceToWorkImg {
    max-width: 60px;
    max-height: 60px;
  }

  .header-module__nrpHoW__label {
    padding: .5rem !important;
  }
}

/* [project]/src/components/Header/desktopMegaMenu.module.css [app-client] (css) */
.desktopMegaMenu-module__7yor-a__menuTabContainer {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.desktopMegaMenu-module__7yor-a__menuVerticalTabs {
  color: var(--brand-color-6);
  background-color: #f7f7f7;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  padding: 2rem 0;
  list-style: none;
  display: flex;
}

.desktopMegaMenu-module__7yor-a__menuTabContent {
  border: 1px solid #f7f7f7;
  flex: 1;
  padding: 2.5rem 1.5rem;
}

.desktopMegaMenu-module__7yor-a__desktopDropdownMegaSubNav {
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  display: flex;
}

.desktopMegaMenu-module__7yor-a__desktopDropdownMegaSubNav li {
  box-sizing: border-box;
  text-align: left;
  flex: 0 0 33%;
}

.desktopMegaMenu-module__7yor-a__desktopDropdownMegaSubNav li a {
  text-transform: none;
  align-items: center;
  gap: .8rem;
  padding: 1rem;
  display: flex;
  color: var(--brand-color-6) !important;
  font-size: .8rem !important;
  font-weight: 400 !important;
}

.desktopMegaMenu-module__7yor-a__desktopDropdownMegaSubNav li a:hover {
  background-color: #f7f7f7;
  border-radius: 5px;
  color: #ff1fa9 !important;
}

.desktopMegaMenu-module__7yor-a__menuTabItem {
  cursor: pointer;
  text-transform: capitalize;
  background: #f7f7f7;
  border-radius: 5px 0 0 5px;
  align-items: center;
  min-width: 15rem;
  margin: 0;
  font-size: .8rem;
  font-weight: 600;
  transition: background .3s;
  display: flex;
  padding: 1rem !important;
}

.desktopMegaMenu-module__7yor-a__menuTabItem:last-child {
  border-bottom: none;
}

.desktopMegaMenu-module__7yor-a__menuTabItem.desktopMegaMenu-module__7yor-a__menuTabItemActive {
  color: #ff1fa9;
  background-color: #fff;
}

.desktopMegaMenu-module__7yor-a__menuTabItem a {
  color: inherit;
  text-transform: none;
  padding-left: 0;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
}

.desktopMegaMenu-module__7yor-a__menuSubheader {
  color: #374151;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 1rem 0 .5rem;
  padding: 0 1rem .5rem;
  font-size: .875rem;
  font-weight: 600;
}

.desktopMegaMenu-module__7yor-a__menuSubheader:first-child {
  margin-top: 0;
}

.desktopMegaMenu-module__7yor-a__dynamicsSubNav {
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding: 0;
  display: grid;
}

.desktopMegaMenu-module__7yor-a__dynamicsSubNav li {
  width: 100%;
  flex: none !important;
}

.desktopMegaMenu-module__7yor-a__mainLinksContainer {
  gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.desktopMegaMenu-module__7yor-a__dynamicsMainLink {
  text-transform: none;
  background-color: #f1f1f1;
  border-radius: 5px;
  align-items: center;
  gap: .8rem;
  padding: 1rem;
  display: flex;
  color: var(--brand-color-6) !important;
  font-size: .8rem !important;
  font-weight: 600 !important;
}

.desktopMegaMenu-module__7yor-a__dynamicsMainLinkWide {
  flex: 2;
}

.desktopMegaMenu-module__7yor-a__dynamicsMainLinkNarrow {
  flex: 1;
}

.desktopMegaMenu-module__7yor-a__dynamicsMainLink strong {
  color: inherit;
  font-weight: 600 !important;
}

.desktopMegaMenu-module__7yor-a__twoColumnLayout {
  grid-template-columns: 1fr 1fr;
  width: 100%;
  display: grid;
}

.desktopMegaMenu-module__7yor-a__twoColumnLayout li {
  width: 100%;
  flex: none !important;
}

.desktopMegaMenu-module__7yor-a__contentSectionsContainer {
  gap: 1rem;
  display: flex;
}

.desktopMegaMenu-module__7yor-a__dynamicsContentSection {
  flex: 2;
}

.desktopMegaMenu-module__7yor-a__powerPlatformContentSection {
  flex: 1;
}

.desktopMegaMenu-module__7yor-a__powerPlatformSubNav {
  flex-direction: column;
  width: 100%;
  padding: 0;
  display: flex;
}

.desktopMegaMenu-module__7yor-a__powerPlatformSubNav li {
  width: 100%;
  flex: none !important;
}

.desktopMegaMenu-module__7yor-a__dynamicsMainLink:hover {
  background-color: #f1f1f1;
  border-radius: 5px;
  color: #ff1fa9 !important;
}

@media screen and (max-width: 1100px) {
  .desktopMegaMenu-module__7yor-a__desktopDropdownMegaSubNav li a, .desktopMegaMenu-module__7yor-a__dynamicsMainLink {
    padding: .5rem 1rem;
    font-size: .7rem !important;
  }
}

/* [project]/src/components/Header/productsMegaMenu.module.css [app-client] (css) */
.productsMegaMenu-module__xZeh2q__megaMenuContainer {
  background-color: #fff;
  border-radius: 8px;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  box-shadow: 0 4px 6px #0000001a;
}

.productsMegaMenu-module__xZeh2q__menuTabContainer {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
}

.productsMegaMenu-module__xZeh2q__menuVerticalTabs {
  color: var(--brand-color-6);
  background-color: #f7f7f7;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  padding: 2rem 0;
  list-style: none;
  display: flex;
}

.productsMegaMenu-module__xZeh2q__menuTabContent {
  border: 1px solid #f7f7f7;
  flex: 1;
  width: 300px;
  padding: 1.5rem;
}

.productsMegaMenu-module__xZeh2q__desktopDropdownMegaSubNav {
  flex-direction: column;
  width: 100%;
  list-style: none;
  display: flex;
}

.productsMegaMenu-module__xZeh2q__desktopDropdownMegaSubNav li {
  box-sizing: border-box;
  text-align: left;
  width: 100%;
}

.productsMegaMenu-module__xZeh2q__desktopDropdownMegaSubNav li a {
  text-transform: none;
  align-items: center;
  gap: .8rem;
  padding: 1rem;
  display: flex;
  color: var(--brand-color-6) !important;
  font-size: .8rem !important;
  font-weight: 400 !important;
}

.productsMegaMenu-module__xZeh2q__desktopDropdownMegaSubNav li a:hover {
  background-color: #f7f7f7;
  border-radius: 5px;
  color: var(--brand-color-1) !important;
}

.productsMegaMenu-module__xZeh2q__menuTabItem {
  color: var(--brand-color-6);
  cursor: pointer;
  text-transform: capitalize;
  background: #f7f7f7;
  border-radius: 5px 0 0 5px;
  align-items: center;
  min-width: 15rem;
  min-height: 4rem;
  margin: 0;
  font-size: .8rem;
  font-weight: 600;
  transition: background .3s;
  display: flex;
  padding: 1rem !important;
}

.productsMegaMenu-module__xZeh2q__menuTabItem:last-child {
  border-bottom: none;
}

.productsMegaMenu-module__xZeh2q__menuTabItem.productsMegaMenu-module__xZeh2q__menuTabItemActive {
  color: var(--brand-color-1);
  background-color: #fff;
}

.productsMegaMenu-module__xZeh2q__menuTabItem a {
  color: inherit;
  text-transform: none;
  padding-left: 0;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
}

.productsMegaMenu-module__xZeh2q__menuSubheader {
  color: #374151;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 1rem 0 .5rem;
  padding: 0 1rem .5rem;
  font-size: .875rem;
  font-weight: 600;
}

.productsMegaMenu-module__xZeh2q__menuSubheader:first-child {
  margin-top: 0;
}

.productsMegaMenu-module__xZeh2q__dynamicsSubNav {
  grid-template-columns: 1fr 1fr;
  width: 100%;
  display: grid;
}

.productsMegaMenu-module__xZeh2q__dynamicsSubNav li {
  width: 100%;
  flex: none !important;
}

.productsMegaMenu-module__xZeh2q__mainLinksContainer {
  gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.productsMegaMenu-module__xZeh2q__dynamicsMainLink {
  text-transform: none;
  background-color: #f1f1f1;
  border-radius: 5px;
  align-items: center;
  min-height: 4rem;
  padding: .5rem 1rem;
  text-decoration: none;
  display: flex;
  color: var(--brand-color-6) !important;
  font-size: .8rem !important;
  font-weight: 400 !important;
}

.productsMegaMenu-module__xZeh2q__dynamicsMainLinkWide {
  flex: 2;
}

.productsMegaMenu-module__xZeh2q__dynamicsMainLinkNarrow {
  flex: 1;
}

.productsMegaMenu-module__xZeh2q__dynamicsMainLink strong {
  color: inherit;
  font-weight: 600 !important;
}

.productsMegaMenu-module__xZeh2q__twoColumnLayout {
  grid-template-columns: 1fr 1fr;
  width: 100%;
  display: grid;
}

.productsMegaMenu-module__xZeh2q__twoColumnLayout li {
  width: 100%;
  flex: none !important;
}

.productsMegaMenu-module__xZeh2q__contentSectionsContainer {
  gap: 1rem;
  display: flex;
}

.productsMegaMenu-module__xZeh2q__dynamicsContentSection {
  flex: 2;
}

.productsMegaMenu-module__xZeh2q__powerPlatformContentSection {
  flex: 1;
}

.productsMegaMenu-module__xZeh2q__powerPlatformSubNav {
  flex-direction: column;
  width: 100%;
  padding: 0;
  display: flex;
}

.productsMegaMenu-module__xZeh2q__powerPlatformSubNav li {
  width: 100%;
  flex: none !important;
}

.productsMegaMenu-module__xZeh2q__dynamicsMainLink:hover {
  background-color: #f1f1f1;
  color: #ff1fa9 !important;
}

/* [project]/src/components/Header/mobileMegaMenu.module.css [app-client] (css) */
.mobileMegaMenu-module__18DWTq__mobileMegaMenuContainer {
  background-color: #fff;
  width: 100%;
}

.mobileMegaMenu-module__18DWTq__mobileMegaMenuContainer:last-child {
  border-bottom: none;
}

.mobileMegaMenu-module__18DWTq__mobileLabel {
  color: #ff1fa9;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  padding: 1rem !important;
}

.mobileMegaMenu-module__18DWTq__mobileLabel:active {
  background-color: #f5f5f5;
}

.mobileMegaMenu-module__18DWTq__mobileMenuLink {
  text-align: left;
  flex: 1;
  text-decoration: none;
  color: #ff1fa9 !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.mobileMegaMenu-module__18DWTq__mobileToggleButton {
  color: #666;
  appearance: none;
  background: none;
  justify-content: center;
  align-items: center;
  min-width: 30px;
  min-height: 30px;
  transition: all .2s;
  display: flex;
  border: 0 !important;
  outline: none !important;
}

.mobileMegaMenu-module__18DWTq__mobileToggleButton:active {
  background-color: #f8f8f8;
  transform: scale(.95);
}

.mobileMegaMenu-module__18DWTq__mobileSubItems {
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
}

.mobileMegaMenu-module__18DWTq__mobileSubItems ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobileMegaMenu-module__18DWTq__mobileSubItem {
  background-color: #f8f8f8;
  border-bottom: 1px solid #eee;
}

.mobileMegaMenu-module__18DWTq__mobileSubItem:last-child {
  border-bottom: none;
}

.mobileMegaMenu-module__18DWTq__mobileSubItem .mobileMegaMenu-module__18DWTq__mobileMegaMenuContainer {
  background-color: #f8f8f8;
  border-bottom: none;
}

.mobileMegaMenu-module__18DWTq__mobileSubItem .mobileMegaMenu-module__18DWTq__mobileLabel {
  color: #ff1fa9;
  background-color: #f8f8f8;
  padding: 1rem;
  font-size: .9rem;
  font-weight: 400;
  padding-left: 1rem !important;
}

.mobileMegaMenu-module__18DWTq__mobileSubItem .mobileMegaMenu-module__18DWTq__mobileLabel:active {
  color: #333;
  background-color: #f0f0f0;
}

.mobileMegaMenu-module__18DWTq__mobileSubItem .mobileMegaMenu-module__18DWTq__mobileSubItems {
  background-color: #f0f0f0;
}

.mobileMegaMenu-module__18DWTq__mobileSubItem .mobileMegaMenu-module__18DWTq__mobileSubItem .mobileMegaMenu-module__18DWTq__mobileLabel {
  color: #ff1fa9;
  background-color: #f0f0f0;
  padding: 1rem;
  font-size: .85rem;
  padding-left: 1rem !important;
}

@media (max-width: 480px) {
  .mobileMegaMenu-module__18DWTq__mobileLabel {
    padding: 1rem;
    font-size: 1rem;
    padding-left: 1rem !important;
  }

  .mobileMegaMenu-module__18DWTq__mobileSubItem .mobileMegaMenu-module__18DWTq__mobileLabel {
    padding: 1rem;
    font-size: .9rem;
    padding-left: 1rem !important;
  }
}

.mobileMegaMenu-module__18DWTq__mobileLabel:focus, .mobileMegaMenu-module__18DWTq__mobileToggleButton:focus {
  outline-offset: 2px;
  outline: 2px solid #666;
}

/* [project]/src/app/dynamics-365-support/dynamics-365-implementation-rescue/page.module.css [app-client] (css) */
.page-module__6mN0YW__section {
  padding: 90px 0;
}

.page-module__6mN0YW__sectionLight {
  background: var(--brand-color-light-gray);
}

.page-module__6mN0YW__stripe {
  background: linear-gradient(90deg, var(--brand-color-2), var(--brand-color-4), var(--brand-color-5), var(--brand-color-1));
  width: 100%;
  height: 4px;
}

.page-module__6mN0YW__stripe2 {
  background: linear-gradient(90deg, var(--brand-color-2), var(--brand-color-4), var(--brand-color-5), var(--brand-color-1));
  height: 3px;
}

.page-module__6mN0YW__btn {
  cursor: pointer;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
  position: relative;
}

.page-module__6mN0YW__btnPrimary {
  background: linear-gradient(135deg, var(--brand-color-2), var(--brand-color-1));
  color: var(--brand-color-white);
  animation: 3s ease-in-out infinite page-module__6mN0YW__btnPulse;
  box-shadow: 0 4px 15px #ac34fe4d, 0 1px 3px #ff1fa926;
}

.page-module__6mN0YW__btnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #ac34fe66, 0 2px 6px #ff1fa933;
}

.page-module__6mN0YW__btnPrimary:active {
  transform: translateY(1px);
}

.page-module__6mN0YW__btnSecondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px #b775fa6e;
}

.page-module__6mN0YW__btnSecondary {
  z-index: 0;
  border-radius: 30px;
  padding: 12px 28px;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, transform .15s ease-in-out;
  position: relative;
  color: var(--brand-color-white) !important;
  background: none !important;
}

.page-module__6mN0YW__btnSecondary:before {
  content: "";
  background: linear-gradient(45deg, var(--brand-color-2), var(--brand-color-1));
  -webkit-mask-composite: xor;
  z-index: -1;
  pointer-events: none;
  border-radius: 30px;
  padding: 2px;
  transition: background .3s;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-origin: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-source-type: auto, auto;
  mask-mode: match-source, match-source;
}

@keyframes page-module__6mN0YW__btnPulse {
  0%, 100% {
    box-shadow: 0 4px 15px #ac34fe4d, 0 1px 3px #ff1fa926;
  }

  50% {
    box-shadow: 0 4px 20px #ac34fe66, 0 2px 8px #ff1fa940;
  }
}

.page-module__6mN0YW__btnOutline {
  color: var(--brand-color-white);
  background: none;
  border: none;
  padding: 16px 34px;
  transition: all .3s;
  position: relative;
}

.page-module__6mN0YW__btnOutline:before {
  content: "";
  background: linear-gradient(135deg, var(--brand-color-2), var(--brand-color-1));
  -webkit-mask-composite: xor;
  pointer-events: none;
  border-radius: 50px;
  padding: 2px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-source-type: auto, auto;
  mask-mode: match-source, match-source;
}

.page-module__6mN0YW__btnOutline:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #ac34fe33;
}

.page-module__6mN0YW__btnOutline:active {
  transform: translateY(1px);
}

.page-module__6mN0YW__btnOutlineDark {
  color: var(--brand-color-2);
  background: none;
  background-image: linear-gradient(var(--brand-color-white), var(--brand-color-white)), linear-gradient(135deg, var(--brand-color-2), var(--brand-color-1));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid #0000;
  border-radius: 50px;
  transition: all .3s;
}

.page-module__6mN0YW__btnOutlineDark:hover {
  background-image: linear-gradient(135deg, var(--brand-color-2), var(--brand-color-1));
  color: var(--brand-color-white);
  transform: translateY(-2px);
}

.page-module__6mN0YW__btnGroup {
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  display: flex;
}

.page-module__6mN0YW__hero {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-module__6mN0YW__banner {
  z-index: 0;
  pointer-events: none;
  width: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-mask-image: linear-gradient(to right, #0000 0%, #00000059 30%, #0009 100%);
  mask-image: linear-gradient(to right, #0000 0%, #00000059 30%, #0009 100%);
}

.page-module__6mN0YW__banner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-module__6mN0YW__banR:after {
  content: "";
  background: linear-gradient(90deg, var(--brand-color-3) 0%, var(--brand-color-3) 10%, #3a2a8a3d 60%);
  position: absolute;
  inset: 0;
}

.page-module__6mN0YW__heroContent {
  z-index: 1;
  max-width: 760px;
  position: relative;
}

.page-module__6mN0YW__heroContent h1 {
  color: var(--brand-color-white);
  letter-spacing: -.5px;
  font-weight: 800;
  line-height: 1.15;
}

.page-module__6mN0YW__heroSubtitle, .page-module__6mN0YW__hero .page-module__6mN0YW__h1a {
  color: var(--brand-color-5);
  margin-top: 10px;
  margin-bottom: 28px;
  font-size: 20px;
  font-weight: 400;
}

.page-module__6mN0YW__introStrip {
  background: var(--brand-color-white);
  border-bottom: 1px solid var(--brand-color-gray);
  padding: 48px 0;
}

.page-module__6mN0YW__introStrip p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.8;
}

.page-module__6mN0YW__introStrip p:last-child {
  margin-bottom: 0;
}

.page-module__6mN0YW__breadcrumb {
  border-bottom: 1px solid var(--brand-color-gray);
  color: var(--brand-color-dark-gray);
  padding: 16px 0;
  font-size: 13px;
}

.page-module__6mN0YW__breadcrumb a {
  color: var(--brand-color-2);
  text-decoration: none;
}

.page-module__6mN0YW__breadcrumb a:hover {
  text-decoration: underline;
}

.page-module__6mN0YW__breadcrumb span {
  color: var(--brand-color-gray);
  margin: 0 6px;
}

.page-module__6mN0YW__iconSm {
  width: 30px;
  height: 30px;
  color: var(--brand-color-1);
  background: #f8daf6;
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 4px;
  font-size: 20px;
  display: flex;
}

.page-module__6mN0YW__warnGrid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 30px;
  display: grid;
}

.page-module__6mN0YW__warnItem {
  border-bottom: 1px solid var(--brand-color-gray);
  border-right: 1px solid var(--brand-color-gray);
  padding: 24px 28px;
}

.page-module__6mN0YW__warnItem:nth-child(2n) {
  border-right: none;
}

.page-module__6mN0YW__warnItem:last-child {
  border-bottom: none;
}

.page-module__6mN0YW__warnItem__title {
  color: var(--brand-color-3);
  align-items: start;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
}

.page-module__6mN0YW__warnItem p {
  font-size: 15px;
  line-height: 1.6;
}

.page-module__6mN0YW__cause {
  border-bottom: 1px solid var(--brand-color-gray);
  padding: 28px 0;
}

.page-module__6mN0YW__cause:last-child {
  border-bottom: none;
}

.page-module__6mN0YW__cause h4 {
  border-left: 3px solid var(--brand-color-2);
  color: var(--brand-color-3);
  letter-spacing: 0;
  margin-bottom: 8px;
  padding-left: 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4 !important;
}

.page-module__6mN0YW__cause p {
  font-size: 15px;
  line-height: 1.6;
}

.page-module__6mN0YW__checklistCard {
  background: var(--brand-color-white);
  border: 1px solid var(--brand-color-gray);
  border-radius: 12px;
  margin-top: 36px;
  padding: 40px;
  box-shadow: 0 2px 12px #0000000a;
}

.page-module__6mN0YW__checklistCard__intro {
  margin-bottom: 24px;
  font-size: 15px;
}

.page-module__6mN0YW__checkItem {
  border-bottom: 1px solid var(--brand-color-gray);
  cursor: pointer;
  border-radius: 4px;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  transition: background .15s;
  display: flex;
}

.page-module__6mN0YW__checkItem:hover {
  background: var(--brand-color-light-gray);
}

.page-module__6mN0YW__checkItem:last-of-type {
  border-bottom: none;
}

.page-module__6mN0YW__checkItem input {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-color-2);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.page-module__6mN0YW__checkItem label {
  color: var(--foreground);
  cursor: pointer;
  font-size: 15px;
  line-height: 1.5;
}

.page-module__6mN0YW__checklistResult {
  text-align: center;
  border-radius: 8px;
  margin-top: 28px;
  padding: 24px;
  transition: all .3s;
}

.page-module__6mN0YW__checklistResult.page-module__6mN0YW__strong {
  background: linear-gradient(135deg, #ac34fe0f, #ff1fa90a);
  border: 1px solid #ac34fe26;
}

.page-module__6mN0YW__checklistResult.page-module__6mN0YW__soft {
  background: var(--brand-color-light-gray);
  border: 1px solid var(--brand-color-gray);
}

.page-module__6mN0YW__checklistResult p {
  color: var(--brand-color-3);
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
}

.page-module__6mN0YW__checklistCounter {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.page-module__6mN0YW__checklistCounter span {
  color: var(--brand-color-2);
  font-size: 18px;
  font-weight: 700;
}

.page-module__6mN0YW__step {
  cursor: pointer;
  gap: 20px;
  display: flex;
  position: relative;
}

.page-module__6mN0YW__stepMarker {
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  width: 44px;
  display: flex;
}

.page-module__6mN0YW__stepDot {
  width: 40px;
  height: 40px;
  color: var(--brand-color-white);
  z-index: 1;
  border: 3px solid var(--brand-color-white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  transition: transform .2s;
  display: flex;
}

.page-module__6mN0YW__step:hover .page-module__6mN0YW__stepDot {
  transform: scale(1.08);
}

.page-module__6mN0YW__stepLine {
  flex: 1;
  width: 2px;
  min-height: 24px;
}

.page-module__6mN0YW__step:last-child .page-module__6mN0YW__stepLine {
  display: none;
}

.page-module__6mN0YW__stepBody {
  flex: 1;
}

.page-module__6mN0YW__stepTitle {
  color: var(--brand-color-3);
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 700;
}

.page-module__6mN0YW__stepIntro {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.page-module__6mN0YW__stepLabel {
  color: var(--muted);
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 700;
}

.page-module__6mN0YW__stepContent {
  max-height: 0;
  transition: max-height .5s;
  overflow: hidden;
}

.page-module__6mN0YW__step.page-module__6mN0YW__open .page-module__6mN0YW__stepContent {
  max-height: 1200px;
}

.page-module__6mN0YW__stepToggle {
  color: var(--brand-color-2);
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
}

.page-module__6mN0YW__step.page-module__6mN0YW__open .page-module__6mN0YW__stepToggle {
  display: none;
}

.page-module__6mN0YW__stepBullets {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-module__6mN0YW__stepBullets li {
  color: var(--foreground);
  border-bottom: 1px solid #e5e3f080;
  padding: 10px 0 10px 16px;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
}

.page-module__6mN0YW__stepBullets li:last-child {
  border-bottom: none;
}

.page-module__6mN0YW__stepBullets li:before {
  content: "";
  background: var(--brand-color-2);
  border-radius: 1px;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 17px;
  left: 0;
}

.page-module__6mN0YW__stepBullets li strong {
  color: var(--brand-color-3);
}

.page-module__6mN0YW__diffGrid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 36px;
  display: grid;
}

.page-module__6mN0YW__diffItem {
  border-bottom: 1px solid var(--brand-color-gray);
  border-right: 1px solid var(--brand-color-gray);
  padding: 24px 28px;
}

.page-module__6mN0YW__diffItem:nth-child(2n) {
  border-right: none;
}

.page-module__6mN0YW__diffItem:last-child {
  border-bottom: none;
}

.page-module__6mN0YW__diffItem h4 {
  color: var(--brand-color-3);
  letter-spacing: 0;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4 !important;
}

.page-module__6mN0YW__diffItem p {
  font-size: 15px;
  line-height: 1.55;
}

.page-module__6mN0YW__testimonialSection {
  color: var(--brand-color-white);
}

.page-module__6mN0YW__testimonialSection h2 {
  color: var(--brand-color-6) !important;
}

.page-module__6mN0YW__testimonialsCarousal {
  color: #fff;
  background: radial-gradient(circle at 80% 20%, #4a219b 0%, #1a0f3d 100%);
  border: 1px solid #fff3;
  border-radius: 12px;
}

.page-module__6mN0YW__testimonialCarouseInner {
  z-index: 1;
  height: 100%;
}

.page-module__6mN0YW__testimonialCarouselItem {
  z-index: 1;
  color: var(--brand-color-white);
  display: flex;
  align-items: center !important;
  padding: 20px 50px !important;
}

.page-module__6mN0YW__testimonialCarouselIndicator {
  justify-content: center !important;
  align-items: center !important;
  gap: .5rem !important;
  width: 100% !important;
  margin-top: 1rem !important;
  display: flex !important;
  position: absolute !important;
  bottom: 36px !important;
  left: 0% !important;
}

.page-module__6mN0YW__testimonialCarouselIndicator span {
  background-color: var(--brand-color-2) !important;
  border-radius: 50% !important;
  width: 10px !important;
  height: 10px !important;
}

.page-module__6mN0YW__outcomesGrid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 36px;
  display: grid;
}

.page-module__6mN0YW__outcomeItem {
  border-bottom: 1px solid var(--brand-color-gray);
  border-right: 1px solid var(--brand-color-gray);
  padding: 24px 28px;
}

.page-module__6mN0YW__outcomeItem:nth-child(2n) {
  border-right: none;
}

.page-module__6mN0YW__outcomeItem:last-child {
  border-bottom: none;
}

.page-module__6mN0YW__outcomeItem h4 {
  color: var(--brand-color-3);
  letter-spacing: 0;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4 !important;
}

.page-module__6mN0YW__outcomeItem p {
  font-size: 15px;
  line-height: 1.55;
}

.page-module__6mN0YW__engageFlow {
  align-items: stretch;
  gap: 0;
  margin-top: 36px;
  display: flex;
}

.page-module__6mN0YW__engageCard {
  border: 1px solid var(--brand-color-gray);
  background: var(--brand-color-white);
  border-radius: 8px;
  flex: 1;
  padding: 28px;
}

.page-module__6mN0YW__engageCard__head {
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  display: flex;
}

.page-module__6mN0YW__engageCard__num {
  width: 32px;
  height: 32px;
  color: var(--brand-color-white);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.page-module__6mN0YW__engageCard h3 {
  color: var(--brand-color-6);
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35 !important;
}

.page-module__6mN0YW__engageCard p {
  font-size: 15px;
  line-height: 1.6;
}

.page-module__6mN0YW__engageChevron {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 56px;
  display: flex;
}

.page-module__6mN0YW__whyGrid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 36px;
  display: grid;
}

.page-module__6mN0YW__whyItem {
  border-bottom: 1px solid var(--brand-color-gray);
  border-right: 1px solid var(--brand-color-gray);
  padding: 24px 28px;
}

.page-module__6mN0YW__whyItem:nth-child(2n) {
  border-right: none;
}

.page-module__6mN0YW__whyItem h4 {
  color: var(--brand-color-3);
  letter-spacing: 0;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

.page-module__6mN0YW__whyItem p {
  font-size: 15px;
  line-height: 1.55;
}

.page-module__6mN0YW__whyItemFull {
  border-right: none;
  grid-column: 1 / -1;
  padding: 24px 28px;
}

.page-module__6mN0YW__whyItemFull h4 {
  color: var(--brand-color-3);
  letter-spacing: 0;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

.page-module__6mN0YW__whyItemFull p {
  font-size: 15px;
  line-height: 1.55;
}

.page-module__6mN0YW__ctaSection {
  background: linear-gradient(135deg, var(--brand-color-3) 0%, #2a1a5e 50%, #3a2a8a 100%);
  color: var(--brand-color-white);
  padding: 40px 0;
}

.page-module__6mN0YW__ctaSection h2 {
  color: var(--brand-color-white);
  margin-bottom: 16px;
}

.page-module__6mN0YW__ctaSection > div > p {
  color: #ffffffb3;
  font-size: 15px;
  line-height: 1.7;
}

.page-module__6mN0YW__ctaSubtext {
  margin-top: 10px;
}

.page-module__6mN0YW__formGrid {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 700px;
  margin-top: 36px;
  display: grid;
}

.page-module__6mN0YW__formGrid .page-module__6mN0YW__full {
  grid-column: 1 / -1;
}

.page-module__6mN0YW__form .page-module__6mN0YW__input, .page-module__6mN0YW__form .page-module__6mN0YW__select, .page-module__6mN0YW__form .page-module__6mN0YW__textarea {
  background: #ffffff0f;
  border: 1px solid #fff3;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  transition: all .25s;
  color: var(--brand-color-white) !important;
}

.page-module__6mN0YW__form .page-module__6mN0YW__input::placeholder, .page-module__6mN0YW__form textarea::placeholder {
  color: #ffffff59;
}

.page-module__6mN0YW__form .page-module__6mN0YW__input:focus, .page-module__6mN0YW__form .page-module__6mN0YW__select:focus, .page-module__6mN0YW__form .page-module__6mN0YW__textarea:focus {
  border-color: var(--brand-color-2);
  background: #ffffff0f;
  outline: none;
}

.page-module__6mN0YW__form .page-module__6mN0YW__select {
  color: #ffffff80;
}

.page-module__6mN0YW__form .page-module__6mN0YW__select option {
  background: var(--brand-color-3);
  color: var(--brand-color-white);
}

.page-module__6mN0YW__form .page-module__6mN0YW__textarea {
  resize: vertical;
  min-height: 70px;
}

.page-module__6mN0YW__form .page-module__6mN0YW__phoneInput {
  height: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}

.page-module__6mN0YW__formGroup {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.page-module__6mN0YW__faqItem {
  border-bottom: 1px solid var(--brand-color-gray);
}

.page-module__6mN0YW__faqItem:last-child {
  border-bottom: none;
}

.page-module__6mN0YW__faqQ {
  cursor: pointer;
  color: var(--brand-color-3);
  text-align: left;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  display: flex;
}

.page-module__6mN0YW__faqQ:after {
  content: "+";
  color: var(--brand-color-2);
  flex-shrink: 0;
  margin-left: 20px;
  font-size: 22px;
}

.page-module__6mN0YW__faqQ.page-module__6mN0YW__open:after {
  content: "−";
}

.page-module__6mN0YW__faqA {
  max-height: 0;
  font-size: 15px;
  line-height: 1.7;
  transition: max-height .35s, padding .35s;
  overflow: hidden;
}

.page-module__6mN0YW__faqA.page-module__6mN0YW__open {
  max-height: 600px;
  padding-bottom: 22px;
}

.page-module__6mN0YW__sectionSubtext {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
}

.page-module__6mN0YW__subhead {
  color: var(--brand-color-dark-gray);
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.7;
}

.page-module__6mN0YW__rootCausesText, .page-module__6mN0YW__methodologyText {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.page-module__6mN0YW__outcomesSubtext {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
}

@media (min-width: 961px) {
  .page-module__6mN0YW__outcomeItem:nth-child(5), .page-module__6mN0YW__diffItem:nth-child(5), .page-module__6mN0YW__warnItem:nth-child(5), .page-module__6mN0YW__whyItem:nth-child(5) {
    border-bottom: none;
  }
}

@media (max-width: 960px) {
  .page-module__6mN0YW__hero {
    padding: 90px 0 70px;
  }

  .page-module__6mN0YW__warnGrid, .page-module__6mN0YW__diffGrid, .page-module__6mN0YW__outcomesGrid, .page-module__6mN0YW__whyGrid {
    grid-template-columns: 1fr;
    margin-top: 0;
    margin-bottom: 0;
  }

  .page-module__6mN0YW__warnItem, .page-module__6mN0YW__diffItem, .page-module__6mN0YW__outcomeItem, .page-module__6mN0YW__whyItem {
    border-right: none;
  }

  .page-module__6mN0YW__engageFlow {
    flex-direction: column;
  }

  .page-module__6mN0YW__engageChevron {
    justify-content: center;
    width: 100%;
    height: 40px;
    transform: rotate(90deg);
  }

  .page-module__6mN0YW__container {
    padding: 0 24px;
  }

  .page-module__6mN0YW__formGrid {
    grid-template-columns: 1fr;
  }

  .page-module__6mN0YW__checklistCard {
    padding: 28px 20px;
  }
}

@media (max-width: 768px) {
  .page-module__6mN0YW__hero:before {
    background: linear-gradient(135deg, #2a1a5ee4 0%, #2a1a5ee0 50%, #3a2a8aa5 100%);
  }

  .page-module__6mN0YW__banner {
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, #0000 0%, #00000059 100%, #0009 100%);
    mask-image: linear-gradient(to right, #0000 0%, #00000059 100%, #0009 100%);
  }

  .page-module__6mN0YW__heroSubtitle {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
  }

  .page-module__6mN0YW__pageWrapper h1 {
    text-align: center;
    font-size: 26px;
    line-height: 1.5 !important;
  }

  .page-module__6mN0YW__btnGroup {
    justify-content: center !important;
  }

  .page-module__6mN0YW__formPopupTitle {
    text-align: center;
    text-align: left;
    width: 90%;
    font-size: 18px !important;
    line-height: 1.4 !important;
  }

  .page-module__6mN0YW__pageWrapper h2 {
    font-size: 22px;
    line-height: 1.4 !important;
  }

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

  .page-module__6mN0YW__warnItem, .page-module__6mN0YW__diffItem, .page-module__6mN0YW__outcomeItem, .page-module__6mN0YW__whyItem, .page-module__6mN0YW__whyItemFull, .page-module__6mN0YW__cause {
    padding: 20px 0;
  }

  .page-module__6mN0YW__stepTitle {
    font-size: 17px;
  }

  .page-module__6mN0YW__testimonialCarouselItem {
    padding: 20px !important;
  }
}

@media (max-width: 600px) {
  .page-module__6mN0YW__section {
    padding: 56px 0;
  }
}

/* [project]/src/app/dynamics-365-support/contactUs.module.css [app-client] (css) */
.contactUs-module__43GmPG__root {
  position: relative;
}

.contactUs-module__43GmPG__heading {
  color: var(--brand-color-6);
  margin-top: 1rem;
  margin-bottom: .5rem;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  line-height: 1.5rem !important;
}

.contactUs-module__43GmPG__subHeading {
  color: var(--brand-color-6);
  margin-bottom: .5rem;
  font-size: .8rem !important;
  line-height: 1.2rem !important;
}

.contactUs-module__43GmPG__formGroup {
  margin-bottom: 1rem !important;
}

.contactUs-module__43GmPG__multiSelectInput .contactUs-module__43GmPG__dropdown-container {
  width: 100%;
}

.contactUs-module__43GmPG__multiSelectInput .contactUs-module__43GmPG__dropdown-container .contactUs-module__43GmPG__dropdown {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.contactUs-module__43GmPG__regularBorderStyle {
  color: #000;
  background: none;
  border-radius: 4px;
  outline: none;
  width: 100%;
  padding: .5rem;
}

.contactUs-module__43GmPG__company_website {
  display: none;
}

.contactUs-module__43GmPG__submitButtonBaseStyle {
  background: linear-gradient(135deg, var(--brand-color-2) 0%, var(--brand-color-1) 100%);
  color: var(--brand-color-white);
  z-index: 0;
  border-radius: 30px;
  padding: 12px 28px;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, transform .15s ease-in-out;
  animation: 3s ease-in-out infinite contactUs-module__43GmPG__page-module__7LVEWW__btnPulse;
  position: relative;
}

.contactUs-module__43GmPG__submitButtonHover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px #b775fa6e;
}

.contactUs-module__43GmPG__phoneInput {
  height: 100%;
  color: var(--brand-color-white) !important;
  padding-left: 45px !important;
}

.contactUs-module__43GmPG__textareaStyle {
  resize: vertical;
  height: 6rem;
}

.contactUs-module__43GmPG__selectInputWrapper {
  width: 100%;
}

.contactUs-module__43GmPG__selectSearchOuterContainer {
  background: #ffffff0f;
  border: 1px solid #fff3;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--brand-color-white) !important;
  padding: 13px 16px !important;
}

.contactUs-module__43GmPG__selectedItem {
  background-color: var(--brand-color-2);
  gap: .5rem;
  padding: 5px 10px;
}

.contactUs-module__43GmPG__selectedItem button {
  cursor: pointer;
  background: none;
  border: none;
  color: var(--brand-color-white) !important;
}

.contactUs-module__43GmPG__selectSearchOuterContainer input, .contactUs-module__43GmPG__selectSearchOuterContainer input:focus {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  color: var(--brand-color-white) !important;
}

.contactUs-module__43GmPG__onFocus {
  border-color: var(--brand-color-2) !important;
  outline: none !important;
}

@media (max-width: 767px) {
  .contactUs-module__43GmPG__submitButtonBaseStyle {
    width: 100%;
    padding: 12px 0;
    font-size: .9rem;
  }
}

/* [project]/src/components/Slider/slider.module.css [app-client] (css) */
.slider-module__hZJFqW__carousel {
  width: 100%;
  margin: auto;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.slider-module__hZJFqW__carouselInner {
  justify-content: space-around;
  width: 100%;
  transition: transform .5s ease-in-out;
  display: flex;
}

.slider-module__hZJFqW__carouselItem {
  box-sizing: border-box;
  flex: 0 0 100%;
  padding: 1rem;
}

.slider-module__hZJFqW__carouselItem img {
  display: block;
}

.slider-module__hZJFqW__arrow {
  z-index: 10;
  color: #fff;
  cursor: pointer;
  background: #00000080;
  border: none;
  padding: .5rem;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.slider-module__hZJFqW__left {
  left: 10px;
}

.slider-module__hZJFqW__right {
  right: 10px;
}

.slider-module__hZJFqW__indicators {
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 50%;
}

.slider-module__hZJFqW__indicators span {
  background-color: var(--brand-color-3);
  opacity: .5;
  cursor: pointer;
  width: 30px;
  height: 3px;
  display: inline-block;
}

.slider-module__hZJFqW__indicators span.slider-module__hZJFqW__indicatorActive {
  opacity: 1;
}

/*# sourceMappingURL=src_a0fe9996._.css.map*/