.serviceSection {
  min-height: 80vh;
  height: fit-content;
  padding: 100px 40px 100px 40px;
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.serviceSection .servicesCard {
  width: 400px;
  height: 400px;
  border-radius: 20px;
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 4px 8px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 40px;
}

.serviceSection .servicesCard button {
  background-color: #172A46;
  height: 100px;
  width: 100px;
  border-radius: 50px;
  border: none;
  overflow: hidden;
}

.serviceSection .servicesCard button img {
  object-fit: contain;
  height: 50%;
  width: 50%;
}

.serviceSection .servicesCard h2 {
  font-weight: normal;
  font-size: 20px;
  text-align: center;
  font-family: ms;
  line-height: 1.5;
}
.serviceSection .servicesCard p {
  font-family: mr;
  color: #172A46;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;;
}

@media (max-width: 576px) {
  .serviceSection .servicesCard button {
    width: 80px;
    height: 80px;
  }
  .serviceSection .servicesCard {
    height: 400px;
  }
}
