.home-features-section .main_heading h2 {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  margin-bottom: 5px;
}

.home-features-section .main_heading h5 {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
}

/* FLEX ROW */
.home-features-section .features-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  align-items: center;
  justify-content: center;
}

/* LEFT ICON COLUMN */
.home-features-section .features-row .features-icon {
  padding: 15px;
  max-width: 20%;
  width: 100%;
}

.home-features-section .features-row .features-icon .icone-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  justify-items: center;
}

.home-features-section .features-row .features-icon .icone-row .icone a {
  display: flex;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--rv-secondary);
  padding: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.home-features-section .features-row .features-icon .icone-row .icone a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.home-features-section .features-row .features-icon .icone-row .icone a.active {
  background: var(--rv-primary);
}

.home-features-section .features-row .features-icon .icone-row .icone a img {
  width: 55px;
  filter: drop-shadow(2px 4px 6px #999);
}

/* CENTER IMAGE */
.home-features-section .features-row .features-image {
  padding: 15px;
  max-width: 35%;
  width: 100%;
  text-align: center;
}

.home-features-section .features-row .features-image .image img {
  height: 540px;
  max-width: 100%;
  filter: drop-shadow(2px 4px 6px #888);
  margin: 0 auto;
}

/* RIGHT TEXT CONTENT */
.home-features-section .features-row .features-content {
  padding: 15px;
  max-width: 45%;
  width: 100%;
}

.home-features-section .features-row .features-content .text {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.home-features-section .features-row .features-content h5 {
  font-weight: 700;
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

/* STORE BUTTONS */
.home-features-section .stores {
  display: flex;
  gap: 15px;
  align-items: center;
}

.home-features-section .stores img {
  width: 160px;
  transition: 0.3s;
}

.home-features-section .stores img:hover {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .home-features-section .features-row {
    flex-direction: column;
  }
  .home-features-section .features-row .features-icon,
  .home-features-section .features-row .features-image,
  .home-features-section .features-row .features-content {
    max-width: 100%;
    text-align: center;
  }
  .home-features-section .stores {
    justify-content: center;
  }
}
