/* Products index page */
.page-hero {
  position: inherit;
  padding: 8px 0;
  height: inherit;
  /* overflow: hidden; */
  background-size: 11vw 11vw;
  background-image:
    linear-gradient(to right, var(--n40) 1px, transparent 1px),
    linear-gradient(to bottom, var(--n40) 1px, transparent 1px);
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--n30);
  z-index: -1;
}

/* Breadcrumbs */
.breadcrumbs {
  position: fixed;
  top: 150px;
  left: 24px;
  z-index: 11;
  transition: .3s ease;
}

.breadcrumbs.fixed {
  padding: 4px 6px;
  top: 76px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: rgba(243, 248, 250, 0.38);
  backdrop-filter: blur(10px);
  /* filter: blur(20px); */
}

.breadcrumbs ol {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.breadcrumbs ol li {
  color: var(--n100);
  font-size: 14px;
  font-family: 'Audi Light';
}

.breadcrumbs.dark ol li {
  color: var(--n500-a);
}

.breadcrumbs ol li a {
  display: flex;
  padding: 6px 8px;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: 'Audi Normal';
  color: var(--n900);
  border-radius: 4px;
  transition: .5s ease;
}

.breadcrumbs ol li.active a {
  color: var(--n400);
}

.breadcrumbs ol li:hover a {
  background-color: var(--n30-a);
}

.breadcrumbs ol li:active a {
  background-color: var(--n50-a);
}

.breadcrumbs:not(fixed).dark {
  background-color: rgba(221, 231, 234, 0.38);
  backdrop-filter: blur(10px);
  padding: 8px;
  border-radius: 3px;
}

.breadcrumbs ol li:last-child a {
  cursor: default;
}

.breadcrumbs ol li:last-child a:hover {
  background-color: transparent;
}

/* end Breadcrumbs */
.hero-content {
  display: flex;
  height: inherit;
  align-items: center;
  position: inherit;
  padding-inline: 15vw;
  padding-bottom: 40px;
}

.page-hero--headline {
  transition: .5s ease;
}

.hero-content h2 {
  color: var(--n300);
  text-align: center;
  font-size: 24px;
  font-family: 'Audi Light';
}

.hero-content h1 {
  color: var(--n900);
  text-align: center;
  font-size: 64px;
  line-height: 120%;
}

.hero-content h3 {
  color: var(--n300);
  text-align: center;
  font-size: 18px;
  font-family: 'Audi Normal';
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
}


.products-hero--cta {
  display: flex;
  gap: 32px;
}

.page-hero--cta_scroll {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  border-radius: 88px;
  background-color: transparent;
  color: var(--n700);
  border: 1px solid var(--n700);
  transition: .5s ease;
}

.page-hero--cta_scroll:hover {
  background-color: var(--n700);
  color: var(--n0);
  transform: translateY(-2px);
}

.page-hero--cta_scroll:active {
  transform: translateY(2px);
  background-color: var(--n900);
  color: var(--n30);
}

.go-to-market-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  border-radius: 88px;
  border: 1px solid var(--b300);
  background-color: transparent;
  color: var(--b300);
  transition: .5s ease;
}

.go-to-market-btn:hover {
  transform: translateY(-2px);
  background-color: var(--b300);
  color: var(--n0);
}

.go-to-market-btn:active {
  transform: translateY(2px);
  background-color: var(--b500);
  color: var(--n10);
}

/* Main */
#page-main {
  margin-top: 0px;
  margin-bottom: 40px;
  margin-inline: auto;
  padding-bottom: 0;
  position: relative;
  width: calc(100vw - 56px);
  border-radius: 22px;
  background-color: var(--n10);
  z-index: 9;
}

/* Services */
section.services {
  padding: 80px 40px 40px 40px;
  border-radius: 22px;
}

/* Solutions */
.solutions {
  border-radius: 22px;
  padding: 0 40px 0 40px;
}

.solution-container {
  position: relative;
  padding: 40px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 120px;
  width: 100%;
  border-top: 1px solid var(--n800);
}

.solution-container:first-child {
  border-top: none;
}

.solution-info {
  padding: 80px 40px 0 0;
  position: sticky;
  top: 120px;
  left: 0;
  min-width: 30vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution-info a {
  font-size: 16px;
  font-family: 'Extended Normal';
  color: var(--n200);
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 6px;
  background-color: transparent;
  /* border: 1px solid var(--n30-a); */
  transition: .5s ease;
}

.solution-info a:hover {
  /* background-color: var(--n30-a); */
  color: var(--n900);
}

.solution-info a.active {
  font-size: 20px;
  color: var(--b900);
  white-space: nowrap;
  font-family: 'Extended Bold';
  /* border: 1px solid var(--b300); */
  /* background-color: var(--n0); */
}

.solution-info a:not(.active):active {
  background-color: var(--n30-a);
}

.solution-info p {
  font-size: 18px;
  font-family: 'Audi Normal';
  line-height: 155%;
  color: var(--n500);
}

.solutions-lists-container {
  display: flex;
  flex-direction: column;
  max-width: 55vw;
}
.solution-list--container {
  padding: 80px 40px;
  border-bottom: 1px dashed var(--n50);
  border-left: 1px dashed var(--n50);
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* background-color: var(--n30); */
}
.solution-list--container:last-child {
  border-bottom: none;
}
.solutions-desc {
  font-size: 32px;
  font-family: 'Audi Normal';
  line-height: 130%;
  color: var(--n900);
}

.solutions--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.solution-list--item {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: var(--n10);
  border-radius: 4px;
  box-shadow: 0px 8px 16px rgba(221, 231, 234, 0.38);
  border: 1px solid transparent;
  overflow: hidden;
  transition: .5s ease;
}

.solution-list--item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--b300);
  transition: .5s ease-in-out;
}

.solution-list--item:hover::before {
  left: 0;
  top: 0;
  height: 100%;
}

.solution-list--item h3 {
  color: var(--n700);
  font-size: 16px;
  text-transform: uppercase;
  transition: .5s ease;
}

.solution-list--item svg {
  width: 32px;
  transition: .5s ease;
}

.solution-list--item svg path {
  fill: var(--n500);
  transition: .5s ease;
}

.solution-list--item:hover {
  background-color: var(--n0);
  transform: translate(4px, 0px);
  box-shadow: none;
}

.solution-list--item:hover h3 {
  color: var(--b300);
}

.solution-list--item:hover svg path {
  fill: var(--b300);
}

.solution-tools {
  padding: 12px;
  border-radius: 4px;
  background-color: var(--n10-a);
  border: 1px dashed var(--n50-a);
  display: flex;
  gap: 12px;
  align-items: center;
  overflow: hidden;
}

.solution-tools h5 {
  position: relative;
  color: var(--n400);
  font-size: 14px;
  white-space: nowrap;
}
.solution-tools .splide::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  border-left: 2px solid var(--n50);
  width: 2px;
  height: 250%;
  background: transparent;
}.solution-list--container
.solution-tools .splide::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 64px;
  height: 250%;
  background: linear-gradient(to right, var(--n40), var(--n20-a) 25%, rgba(128, 128, 128, 0));
}
.solution-tools ul {
  display: flex;
  gap: 20px;
}

.solution-tools img {
  height: 16px !important;
  display: inline-block;
}

/* EULA */
.policy-hero-content {
  margin-top: 120px;
  padding: 0 40px;
}

.policy-hero--headline {
  color: var(--n900);
  text-align: left;
  font-size: 56px;
  line-height: 120%;
}

.policy-hero--subheadline {
  margin-top: 12px;
  color: var(--n900);
  text-align: left;
  font-size: 24px;
  font-family: 'Audi Normal';
  line-height: 120%;
}

.policy-main {
  margin: 40px auto;
  padding: 40px 24px;
  width: calc(100% - 40px);
  background-color: var(--n0);
  border-radius: 12px;
}

.pociy-reading {
  margin: 0 auto;
  max-width: 40em;
  max-width: 100ch;
}

.pociy-reading h3 {
  margin: 40px 0 12px 0;
  font-size: 28px;
  color: var(--n900);
}

.pociy-reading h4 {
  margin: 40px 0 12px 0;
  font-size: 20px;
  color: var(--n900);
}

.pociy-reading p {
  margin-bottom: 24px;
  font-family: 'Audi Normal';
  font-size: 14px;
  line-height: 155%;
  color: var(--n600);
}

.pociy-reading strong {
  color: var(--n900);
}

.pociy-reading a {
  text-decoration: underline;
  color: var(--b400);
  transition: .5s ease;
}

.pociy-reading a:hover {
  color: var(--b300);
}

.pociy-reading ul {
  margin-left: 24px;
  list-style-type: disc;
}

.pociy-reading ul li {
  font-family: 'Audi Normal';
  margin-bottom: 12px;
}

.pociy-reading ul li strong {
  font-family: 'Audi Bold';
}

/* Cookie Policy */
.cookie-policy__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.cookie-policy__text {
  max-width: 40em;
  max-width: 100ch;
}

.cookie-policy__text p {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 200%;
  font-family: 'Audi Normal';
  color: var(--n700);
}

.cookie-policy__text p a {
  color: var(--b400);
  transition: .5s ease;
}

.cookie-policy__text p a:hover {
  color: var(--b300);
  text-decoration: underline;
  transition: .5s ease;
}

.cookie-policy__table {
  padding: 24px 16px;
  border: 1px solid var(--n100-a);
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-self: flex-start;
  transition: .5s ease;
}

.cookie-policy__table:hover {
  background-color: var(--n20-a);
}

.cp-table--section h3 {
  font-size: 16px;
  color: var(--n900);
}

.cp-table--desc {
  margin-top: 8px;
  font-size: 13px;
  line-height: 20px;
  color: var(--n500);
  font-family: 'Audi Normal';
}

.cp-table {
  margin-top: 12px;
  width: 100%;
  border-collapse: collapse;
}

.cp-table th, .cp-table td {
  padding: 8px;
  text-align: left;
}

.cp-table th {
  font-size: 13px;
  color: var(--n900);
  border-bottom: 1px solid var(--n500);
}

.cp-table td {
  padding: 8px;
  border-bottom: 1px solid var(--n50-a);
  font-size: 12px;
  font-family: 'Audi Normal';
  color: var(--n500);
}

.cp-table tr {
  transition: .5s ease;
}

.cp-table tr:hover {
  background-color: var(--n0);
}

.cp-table td a {
  color: var(--b400);
  transition: .5s ease;
}

.cp-table td a:hover {
  color: var(--b300);
  text-decoration: underline;
}

#set-cookie {
  padding: 8px 12px;
  font-size: 13px;
  line-height: 14px;
  border-radius: 4px;
  background-color: var(--n30-a);
  display: inline-flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  will-change: transform;
  transition: .5s ease;
}

#set-cookie:hover {
  background-color: var(--n40-a);
}

#set-cookie:active {
  transform: scale(.98);
  background-color: var(--n50-a);
}

/* end Cookie Policy */

/* 404 */
.hero-404 .policy-hero-content {
  margin-top: 80px;
}

.hero-404 h1 {
  text-align: center;
  font-family: 'Extended Bold';
  font-size: 80px;
}

.hero-404 .policy-hero--subheadline {
  text-align: center;
}

.hero-404 .policy-hero--subheadline {
  font-family: 'Extended Normal';
  padding-bottom: 40px;
}
.text-404 {
  margin-top: 24px;
  text-align: center;
  font-family: 'Audi Normal';
  font-size: 18px;
}
.text-404-help {
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 16px;
  text-align: center;
  padding: 40px auto;
  font-family: 'Audi Normal';
}
.text-404-help a {
  color: var(--b400);
  text-decoration: underline;
  transition: .5s ease;
}
.text-404-help a:hover {
  color: var(--b300);
}
/* 404 */

/* Responsive */
@media (width < 1025px) {
  .page-hero {
    height: inherit;
    padding-bottom: 40px;
  }

  .hero-content {
    position: inherit;
    padding-top: 40px;
    top: inherit;
    left: inherit;
    transform: none;
    padding-inline: 3%;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    height: inherit;
  }

  .breadcrumbs {
    top: 120px;
  }

  .breadcrumbs.fixed {
    left: 3%;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content h2 {
    margin-top: 0;
    font-size: 20px;
  }

  .hero-content h3 {
    font-size: 14px;
  }

  .products-hero--cta {
    margin-top: 24px;
    flex-direction: column;
    gap: 24px;
  }

  .products-top-ribon {
    display: none;
  }

  #page-main {
    /* margin-top: -10vh; */
    width: calc(100vw - 24px);
  }

  section.services {
    padding: 32px 12px;
    gap: 40px;
  }

  .services--header {
    flex-direction: column;
    gap: 24px;
  }

  .services-title h2 {
    font-size: 24px;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item {
    padding: 12px;
    max-width: 100%;
    overflow: hidden;
  }

  .service-item--icon svg {
    width: 32px;
  }

  .service-item--top {
    align-items: center;
  }

  .service-item--name h3 {
    font-size: 16px;
  }

  .service-item--name strong {
    display: none;
  }

  section.solutions {
    position: inherit;
    gap: 40px;
  }

  .solutions {
    padding: 0 12px;
    gap: 40px;
  }

  .solution-info {
    padding: 12px 0;
    top: inherit;
    gap: 12px;
    position: inherit;
  }

  .solution-container {
    position: inherit;
    gap: 24px;
    flex-direction: column;
  }

  .solution-list--container {
    padding: 0;
    border-left: none;
    max-width: 100vw;
  }

  .solutions-lists-container {
    max-width: calc(100vw - 56px);
  }
  .solution-info {
    width: 90vw;
  }
  .solution-info a {
    font-size: 14px;
    padding: 4px 8px;
  }

  .solution-info a {
    word-wrap: break-word;
    white-space: break-spaces;
  }
  .solution-info a.active {
    font-size: 18px;
    word-wrap: break-word;
    white-space: break-spaces;
  }

  .solutions-desc {
    font-size: 16px;
  }

  .solutions--list {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-tools {
    overflow: hidden;
  }

  .cookie-policy__container {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 24px;
  }
}

@media (width < 768px) {
  .services-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .solutions--list {
    grid-template-columns: repeat(1, 1fr);
  }

  .policy-hero--headline {
    font-size: 28px;
  }

  .policy-main {
    padding: 12px 12px 24px 12px;
    max-width: 100%;
    overflow: hidden;
  }
 

  .pociy-reading h4 {
    margin-top: 20px;
  }
  .cookie-policy__text {
    width: 100%;
    max-width: 100%;
  }
  .cookie-policy__text p {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 155%;
    white-space: inherit;
  }
  .cookie-policy__table {
    max-width: 100%;
    overflow-x: auto;
  }
  .pociy-reading p {
    white-space: pre-line;
    display: inline-block;
    max-width: 100%;
  }
  .pociy-reading a {
    white-space: pre-line;
    word-break: break-all;
    display: inline-block;
    max-width: 100%;
  }
}

@media (width < 300px) {
  .services-title h2 {
    font-size: 20px;
  }

}