.services {
  width: var(--section-width);
  flex-direction: column;
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.services-heading {
  font-size: 2rem;
}
.services-carder {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 1rem;
  width: 90%;
}
.services-cards-container {
  /* border-radius: 5px; */

  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(#ffffff 50%, var(--secondary-color) 50%);
  background-size: 100% 200%;
  background-position: 0 0%;
  cursor: pointer;
  transition: 0.5s;
  flex: 1;
  min-width: 350px;
}
.services-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
  padding: 1em;
  text-align: justify;
}

.services h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary-color);
}
.services p {
  color: #575a7b;
  font-size: 13px;
  letter-spacing: 0.03em;
}
.img-sevicescard {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.services-cards-container:hover {
  background-position: 0 1%;
}

@media (max-width: 800px) {
}
