.col-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 auto 30px;
}
.col-box div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border-radius: 15px;
  padding: 25px;
  background-color: #ffffff;
  line-height: 1.6;
  position: relative;
  /* box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); */
  z-index: 10;
  color: #000000;
  flex: 22%;
  border: 1px solid #f0f0f1;
}
.col-box h4 {
    text-align: center;
    padding-top: 0rem;
    text-transform: uppercase;
    color: #1b3a28;
    font-size: 18px;
}
.col-box .pros-card {
  border: 1px solid #277a54;
  border-radius: 15px;
  padding: 25px;
}
.col-box .cons-card {
  border: 1px solid #d4311d;
  border-radius: 15px;
  padding: 25px;
}
.col-box .pros-card ul, 
.col-box .cons-card ul {
  margin: 0px !important;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 0px;
}
.col-box .pros-card ul li, 
.col-box .cons-card ul li {
  display: flex;
  align-items: center;
}
.col-box .pros-card ul li::before, 
.col-box .cons-card ul li::before {
  margin-right: 1rem;
  margin-left: 0.5rem;
  display: flex;
  height: 1rem;
  width: 1rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0;
  line-height: 0rem !important;
}
.col-box .pros-card ul li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 32 32'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0H64V64H0z'/%3E%3Cpath fill='white' fill-rule='nonzero' d='M13.333 20.229L25.589 7.972 27.469 9.852 13.32 23.987 4.827 15.493 6.707 13.6z'/%3E%3C/g%3E%3C/svg%3E") !important;
      background-color: rgba(92, 184, 92, 1);
      box-shadow: 0 0 0 0px #fff, 0 0 0 calc(4px + 0px) rgba(92, 184, 92, 0.3), 0 0 #0000;
}
.col-box .cons-card ul li::before {
  content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 32 32'><g fill='none' fillRule='evenodd'><path d='M0 0H64V64H0z'/><path fill='white' fillRule='nonzero' d='M16 14.115L22.6 7.515 24.48 9.395 17.88 15.995 24.48 22.595 22.587 24.475 15.987 17.875 9.387 24.475 7.493 22.581 14.093 15.981 7.493 9.381 9.373 7.488z'/></g></svg>") !important;
    background-color: rgba(255, 0, 0, 1);
    box-shadow: 0 0 0 0px #fff, 0 0 0 calc(4px + 0px) rgba(255, 0, 0, 0.3), 0 0 #0000;
}

@media (max-width: 1199px) {
  .col-box {
    flex-direction: column;
  }
}