.feature {
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
  padding-left: 80px;
  padding-right: 80px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.feature-heading {
  font-size: 26px;
  color: #222222;
  font-weight: 600;
  line-height: 1.43;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 25px;
  position: relative;
}

.feature .row {
     display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  width: 100%;
  position: relative;
}

.feature .card {
width:100%;
  position: relative;
  border: 1px solid rgb(221, 221, 221);
  border-radius: 12px;
  overflow: hidden;
  text-decoration:none;
  transition:all 0.3s ease;
}

.feature .card:nth-child(4n) {
  margin-right: 0;
}

.feature .card .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  position:relative;
  overflow:hidden;
}

.feature .card:hover {
    box-shadow:0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature .card .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}
.feature .card .content {
  width: 100%;
  padding: 24px;
}

.feature .card .content .heading {
  color: #222222;
  font-weight: 600;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-font-smoothing: antialiased;
  font-family: Gilroy-Regular;
}