.wgt-other-products.other-container {
  width: 80%;
  margin: auto auto 160px;
}
.wgt-other-products .other-title {
  text-align: center;
}
.wgt-other-products .other_cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 40px;
}
.wgt-other-products .other_cards-card {
  background-color: var(--primary-color-4);
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 40px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.wgt-other-products .info-description {
  color: var(--grayscale-color-2);
}
.wgt-other-products .info-title {
  text-decoration: none;
  color: var(--bs-body-color);
}
.wgt-other-products .info-title:hover {
  color: var(--bs-body-color);
}
@media (max-width: 1024px) {
  .wgt-other-products .other_cards-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .wgt-other-products .other_cards-card {
    padding: 50px 15px;
  }
}
@media (max-width: 425px) {
  .wgt-other-products.other-container {
    width: 100%;
    padding: 20px;
    margin: 0 0 100px;
  }
  .wgt-other-products .other-title {
    text-align: left;
  }
}

.wgt-other-products .info-title :is(h1, h2, h3, h4, h5, h6) {
  font-size: var(--title-font-size-4);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
  text-decoration: none;
  color: var(--bs-body-color);
}
.wgt-other-products .info-title :is(h1, h2, h3, h4, h5, h6):hover {
  color: var(--bs-body-color);
}
