.partner-products {
  position: relative;
}

.partner-products .partner-products__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.partner-products .partner-products__header {
  display: flex;
  justify-content: flex-start;
}

.partner-products .partner-products__title {
  color: #24394b;
  font-family: "Geologica", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 128.023%;
  letter-spacing: -0.32px;
  margin: 0;
  max-width: 645px;
}

.partner-products .partner-products__title .partner-products__title-highlight {
  color: #5691c8;
}

.partner-products .partner-products__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.partner-products .partner-products__item {
  position: relative;
  border-radius: 16px;
  border: 1px solid #def2ff;
  background-repeat: no-repeat;
  background-size: cover;
}

.partner-products .partner-products__item-link {
  display: flex;
  width: 100%;
  height: 100%;
  text-decoration: none !important;
}

.partner-products .partner-products__item-content {
  padding: 40px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.partner-products .partner-products__item-title {
  color: #24394b;
  font-family: "Geologica", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 128.023%;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}

.partner-products .partner-products__item-description {
  color: #24394b;
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 128.023%;
  letter-spacing: 0.14px;
  margin: 0;
}

@media (width <= 1024px) {
  .partner-products .partner-products__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 768px) {
  .partner-products .partner-products__list {
    grid-template-columns: 1fr;
  }
}
