.row-gap {
  row-gap: 35px;
}

/* Style 1 CSS */
.feature-card.style_1 {
  text-align: left;
  padding: 35px;
  border-radius: var(--border-radius-18);
  border-bottom: 5px solid var(--primary-color);
}

.feature-card.style_1 .text-left .feature-title {
  font-size: var(--font-32);
  font-weight: 800;
  line-height: 110%;
  margin-bottom: 10px;
}

.feature-card.style_1 .text-center .feature-title {
  font-size: var(--font-24);
  font-weight: 900;
}

.feature-card.style_1 .feature-description p {
  margin-bottom: 0;
  color: var(--light-black-color);
  line-height: 120%;
}

.feature-card.style_1 .feature-icon {
  margin-bottom: 30px;
}

.feature-card.style_1 .feature-content{
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card.style_1 .feature-description{
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card.style_1 .custom-buttons-wrapper{
      margin-top: auto;
      justify-content: center;
}


/* Style 2 CSS */
.feature-card.style_2 .feature-icon img,
.feature-card.style_2 .feature-icon i,
.feature-card.style_2 .feature-icon span {
  max-height: 86px;
  max-width: 86px;
  height: 100%;
  width: 100%;
}

.feature-card.style_2 {
  border-radius: var(--border-radius-18);
  padding: 20px;
}

.feature-card.style_2 .feature-title {
  font-size: var(--font-24);
  font-weight: 500;
  font-family: var(--prompt-font);
  color: var(--light-black-color);
  margin-bottom: 5px;
}

.feature-card.style_2 .feature-description p {
  margin-bottom: 0;
  color: var(--light-black-color);
  line-height: 100%;
  font-size: var(--font-16);
}


.feature-card.style_2 .feature-layout-side {
  gap: 10px;
}

.feature-card.style_2 .feature-icon img,
.feature-card.style_2 .feature-icon i,
.feature-card.style_2 .feature-icon span {
  max-height: 40px;
  max-width: 40px;
  height: 100%;
  width: 100%;
}

.feature-card.style_2 .feature-content {
  flex: 1;
}


/* Style 3 */
.feature-cards-section.style_3 {
  background-color: var(--primary-color);
}

.feature-card.style_3 {
  background-color: transparent !important;
  padding: 10px;
}

.feature-cards-section.style_3 .feature-title {
  color: var(--white-color);
  padding-bottom: 10px;
  font-family: var(--secondary-font);
  font-size: var(--font-28);
  font-weight: 700;
}

.feature-cards-section.style_3 .feature-icon {
  padding-bottom: 14px;
}

.feature-cards-section.style_3 .feature-description {
  color: var(--white-color);
  line-height: 140%;
  font-weight: 300;
}

.feature-cards-section.style_3 .feature-description a {
  color: var(--white-color);
}

/* .feature-cards-section.style_3 .row>.col-lg-4>.feature-card.style_3 {
  border-right: 1px solid var(--white-color);
}

.feature-cards-section.style_3 .row>.col-lg-4:last-child>.feature-card.style_3 {
  border-right: none;
} */

.feature-cards-section.style_3 .row>.col-lg-4 {
  border-right: 1px solid var(--white-color);
}

.feature-cards-section.style_3 .row>.col-lg-4:last-child {
  border-right: none;
}



@media screen and (max-width: 767px) {
  .feature-cards-section.style_3 .row>.col-lg-4:nth-child(2n) {
    border-right: none;
  }
}

@media screen and (max-width: 640px) {
  .feature-cards-section.style_3 .row>.col-lg-4:not(:last-child)>.feature-card.style_3 {
    border-bottom: 1px solid var(--white-color);
  }
  .feature-cards-section.style_3 .row-gap{
    row-gap: 10px;
  }
}