.solutions-section {
  padding: 60px 0px;
}

.solutions-section .card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
      padding-bottom: 30px;
}

@media screen and (hover: hover) {
    .solutions-section .card:hover .card-img {
        background: var(--black);
    }
}
.solutions-section .card .card-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: var(--all-medium);
        border-radius: 20px;
}

@media screen and (hover: hover) {
    .solutions-section .card:hover img {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.solutions-section .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--all-slow);
}

.solutions-section .card h3 {
  font-size: 20px;
  margin: 20px 0 10px;
  text-align: center;
}

.solutions-section .card p {
  font-size: 15px;
  text-align: center;
  color: #333;
  line-height: 1.6;
  padding: 0 20px;
  margin-bottom: 25px;
}

.solutions-section .p3 {
    padding-left: 40px;
    position: relative;
}

.solutions-section .p3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: calc(100% - 16px);
    background: #90e0f0;
}

@media screen and (max-width: 767px) {
    .solutions-section .p3 {
        padding-left: 20px;
    }
}

/* Button */
/* .button.secondary {
  background-color: #4dc7d9;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button.secondary:hover {
  background-color: #38b4c8;
}
 */
