.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: auto;
}

.card {
  margin-top: 40px;
  background: white;
  width: 100%;
  height: 150px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-top-right-radius: 5px;
  border-top:6px solid #31544b;
}

body[lang="en"] {
    .card {
        border-top-right-radius: 0px;
        border-top-left-radius: 5px;
    }
}



.number {
  position: absolute;
  right: 0;
  top: 0% !important;
  transform: translateY(-50%) !important;
  background: #7a8985;
  color: white;
  width: 90px;
  height: 90px;
  background: #31544b;
  top: -90px;
  transform: translateY(40px);
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: white;
  position: absolute;
  border-radius: 100%;
  font-size: 30px ;
}

.text {
  text-align: center;
  font-weight: bold;
  color: #333333;
  font-size: 20px;
  padding: 20px;
  z-index: 0;
  margin-top: 10px;
}
.padding-top-bottom {
  margin-top: 50px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    width: 100%;
  }
  .padding-top-bottom {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

.number-english {
  display: none;
}
body[lang="en"] {
  .number-english {
    display: inline;
  }
  .number {
    left: 0;
  }
}
