/*
 * ly-custom.css - Custom CSS overrides
 * This file is loaded after all theme styles for safe customization
 */

/* Add your custom styles below */
/* custom  Gradient */
.block--bgPurple_Gradient {
  background: linear-gradient(to bottom, #5a5faf 0%, #282a61 50%, #0e0f41 100%);
}
.bg--white .color--dark_blue a:not(.btn) {
    color: #5e68b2;
    text-decoration: none;
}
@media (prefers-color-scheme: dark) {
main .block--bgdeep_violet .bg--white .color--dark_blue p{
  color: #0e0f41 !important;
}
}
/* custom  Gradient End*/

/* Sub menu css */
.mega-menu {
  display: grid;
  grid-template-columns: 2fr 1fr;
  /* font-family: 'Work Sans'; */
}

.section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #5e5adb;
  letter-spacing: 0.0625rem;
  margin-bottom: 1.25rem;
}

.nav-sectionTitle.section-title.dark {
  color: #0e0f41;
  text-transform: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.0125rem;
  margin: 0.725rem 0 0.625rem;
  padding: 0;

}

/* Products Layout */
.products-section {
  padding: 1.875rem;
  font-family: 'Work Sans';
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4375rem 1.875rem;
  margin-bottom: 1.25rem;
}

.product-item p {
  font-size: .83333rem;
  font-weight: 600;
  color: #1a1b3d !important;
  padding-bottom: 0.25rem;
  border-bottom: 0.0625rem solid #e2e2f0;
  cursor: pointer;
  transition: color 0.2s;
  margin: 0;
  font-family: 'Work Sans';
}

.product-item p:hover {
  color: #5e68b2 !important;
}

/* AI Banner */
.ai-banner {
  background-color: #dee0f3;
  border: 0.0625rem solid #5e5adb;
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.ai-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #0e0f41;
  margin-bottom: 5px;
}

.ai-content p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.2;
  font-weight: 400;
  font-family: 'Work Sans';
  color: #0e0f41;
}

.ai-arrow {
  background: #1a1b3d;
  color: white;
  width: 100%;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 2rem;
}

/* Sidebar Layout */
.sidebar-section {
  background-color: #f2f2fa;
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.sidebar-block p {
  font-size: .83333rem;
  color: #0e0f41c9;
  line-height: 1.2;
  margin: 0;
  font-weight: 500;
  font-family: 'Work Sans';
}

.link-action {
  color: #5e5adb;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom: 0.0625rem solid #d1d1d1;
  padding-bottom: 0.625rem;
  display: inline-block;
  width: 100%;
}

.demo-btn {
  color: #272665 !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  font-family: 'Work Sans';
}

.nav-link--mega_menu .sublinksContainer {
  padding: 0;
  max-width: 43.75rem;
  width: 100%;

}

.nav-link--mega_menu .nav-sectionTitle {
  padding-left: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #5e68b2;
  letter-spacing: 0.0625rem;
  margin-bottom: 0.9375rem;
  font-weight: 700;
  text-align: left;
}

.sidebar-footer {
  border-top: 0.0625rem solid #d1d1d1;
  padding-top: 0.625rem;
}

.sidebar-block a {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.625rem 0 0.675rem;
  color: #272665 !important;
  /* letter-spacing: 0.03125rem; */
  display: flex;
  align-items: center;
  font-family: 'Work Sans';
}

.sidebar-block a:hover,
.demo-btn:hover {
  color: #5e68b2 !important;
}

.ai-arrow:hover {
  background: #5e68b2;
}

.sidebar-footer a {
  font-weight: 700;
  font-size: 0.9rem;
}

.ai-banner svg {
  color: #fff;
}

@media (max-width: 1023px) {
  .nav-sectionTitle.section-title.dark {
    font-size: 0.9rem;
  }

  .nav-link--mega_menu .sublinksContainer {
    max-width: 100%;
  }

  .mega-menu {
    background: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .products-section {
    padding: 1.25rem;
  }

  .sidebar-section {
    padding: 1.25rem;
    gap: 0.9375rem;
  }

  .ai-banner {
    gap: 1.25rem;
    padding: 0.875rem;
  }

  .product-grid {
    gap: 0.375rem 1.25rem;
  }

  .product-item p {
    font-size: 0.8rem;
  }

  .ai-content p {
    font-size: 0.8375rem;
  }

  .ai-arrow {
    height: 1.5625rem;
    max-width: 1.5625rem;
  }

  .sidebar-block p {
    font-size: 0.8375rem;
  }
}

@media (max-width: 650px) {
  .mega-menu {
    grid-template-columns: 100%;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 100%;
  }
}

/* sub menu css end */

.h1_bold h1,
.h1_bold .h1,
.h1_bold h2 {
  font-weight: 600 !important;
}

.custom_text_left {
  text-align: left;
}

.custom_text_right {
  text-align: right;
}

.custom_text_center {
  text-align: center;
}

.custom_text_justify {
  text-align: justify;
}

.block--bgLight_Purple {
  background-color: #eaebf5;
}

.three_box_sec .block-subTitle {
  max-width: 980px;
}

.three_box_sec .iconItem-title {
  font-weight: 700;
}

.three_box_sec .iconItem {
  max-width: calc((100% - 32px*4)/3);
  width: 100%;
}

.three_box_sec .iconItems,
.two-border-box .iconItems {
  display: flex !important;
  gap: 32px;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.two-border-box .iconItems {
  max-width: 1024px;
  margin: 0 auto;

}

.block-preheading {
  font-size: 20px;
  line-height: 25px;
  color: #0e0f41;
  /* text-decoration: underline; */
  text-transform: uppercase;
  border-bottom: 2px solid #6068b3;
  max-width: fit-content;
  margin: 0 auto 40px;
}

.two-border-box .iconItem-title {
  font-weight: 700;
}

.two-border-box .iconItem {
  max-width: calc((100% - 32px*2)/2);
  border: 0;
  border-left: 10px solid;
}

.bg--Violet {
  background-color: #6068b3;
}

.bottom_cta .block-title--hasSubTitle {
  font-size: 40px !important;
  line-height: 40px;
  font-weight: 300 !important;
}

.bottom_cta .block-subTitle {
  font-weight: 600;
  margin-bottom: 20px !important;
}

.three_box_sec h2 {
  margin-bottom: 20px !important;
}

.three_box_sec .iconItem-text,
.two-border-box .iconItem-text {
  font-family: 'Work Sans';
}

.page-id-16142,
.page-id-16142 * {
  font-family: 'Work Sans', sans-serif !important;
}

.block--media-with-content.rounded .mediaContainer img {
  border-radius: 10pt;
}

.section_title_with_link a {
  color: #ffffff;
  text-decoration: none;
}

.footer-nav__title.section_title_with_link {
  margin-bottom: 0 !important;
}

@media (min-width: 1366px) {

  .width801.block--media-with-content--widest .grid.grid--ivwc {
    grid-template-columns: repeat(24, 1fr);
  }

  .width801.block.block--media-with-content--widest .ivwc-content {
    grid-column: span 7;
  }

  .width801.block.block--media-with-content--widest .ivwc-media {
    grid-column: span 17;
  }

}

@media (max-width: 1023px) {
  .three_box_sec .iconItem {
    max-width: calc((100% - 32px*2)/2);
  }
}

@media (max-width: 680px) {
  .three_box_sec .iconItem {
    max-width: 100%;
  }

  .two-border-box .iconItem {
    max-width: 100%;
  }

  .nav-menu.active {
    background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.580956 0.580712C1.08864 0.0730309 1.91175 0.0730309 2.41943 0.580712L8.0002 6.16147L13.581 0.580712C14.0886 0.0730309 14.9118 0.0730309 15.4194 0.580712C15.9271 1.08839 15.9271 1.91151 15.4194 2.41919L9.83867 7.99995L15.4194 13.5807C15.9271 14.0884 15.9271 14.9115 15.4194 15.4192C14.9118 15.9268 14.0886 15.9268 13.581 15.4192L8.0002 9.83843L2.41943 15.4192C1.91175 15.9268 1.08864 15.9268 0.580956 15.4192C0.073275 14.9115 0.073275 14.0884 0.580956 13.5807L6.16172 7.99995L0.580956 2.41919C0.073275 1.91151 0.073275 1.08839 0.580956 0.580712Z" fill="white"/></svg>');
  }
}