.card-simple-module .dvr_ln {
  margin-bottom: 20px;
}

.card-simple-module .flex {
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  -o-flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  margin-right: -10px;
}
.card-simple-module .flex .flex-item {
  flex-basis: 33.33%;
  -moz-flex-basis: 33.33%;
  -webkit-flex-basis: 33.33%;
  -o-flex-basis: 33.33%;
  align-self: stretch; 
  padding: 10px;
}
.card-simple-module .box .image img {
  display: block;
  margin-bottom: 20px!important;
  width: 30px;
  height: 30px!important;
  object-fit: cover;
  border-radius: 0!important;
}
.card-simple-module .box .box-spacing {
  padding: 30px;
}
.card-simple-module .box:hover {
  transform: none;
}
.card-simple-module .box:hover {
  transform: scale(1.02);
}
.card-simple-module .box .box-content {
  display: flex;
  flex-direction: column;
  /*   justify-content: space-between; */
  align-items: flex-start;
  height: 100%;
}
.card-simple-module .box .desc,
.card-simple-module .box .long-desc {
  font-size: 18px;
}
.card-simple-module .box .title {  
  display: block;
  margin-bottom: 20px;
}
.card-simple-module .box .btn-area .rounded-btn {
  /*   background-color: #fff;
  color: #000; */
  width: 52px;
  height: 53px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media (max-width: 767px) {
  .card-simple-module .top-content {
    padding-bottom: 30px;
  }  
}

{#
.card-simple-module .flex {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(33.333%, 1fr));
/*   grid-gap: 20px; */
}

.card-simple-module .flex .flex-item {
  display: flex;
  align-items: stretch; /* Ensure all flex-items have the same height */
}
#}

/* .card-simple-module .box {
padding: 30px 30px 40px 30px;
height: 100%;
} */

/* .card-simple-module .box .box-content {
display: flex;
flex-direction: column;
gap: 10px;
justify-content: space-between;
align-items: flex-start;
} */

@media (max-width: 767px) {
  .card-simple-module .flex {
    display: block;
  }
  .card-simple-module .flex .flex-item {
    display: block;
  }
  .card-simple-module .box .box-spacing {
    padding: 30px;
  }
}