* {
  font-family: 'Roboto', sans-serif;
  font-family: 'Ubuntu', sans-serif;
}
.tedaviler-header {
  font-size: 40px;
  text-align: center;
  margin: auto;
  font-weight: 400;
  margin-top: 80px;
  margin-bottom: 30px;
  color: #0CB39F;
}
.tedaviler-wrapper {
  margin: 0px 10px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  width: 1200px;
  max-width: calc(100% - 20px);
  margin: auto;
}
.tedaviler-wrapper .tedavi {
  width: 320px;
  max-width: 320px;
  height: 190px;
  background-color: #ffff;
  background-repeat: no-repeat;
  background-size: cover;
  color: #000000;
  margin: 20px;
  background-position: center;
  border-radius: 25px;
  border: 3px solid darkgoldenrod;
  position: relative;
  padding: 0px;
  text-align: center;
  overflow: hidden;
}
.tedaviler-wrapper .tedavi .text-wrapper {
  transition: all 0.3s linear;
  bottom: 0px;
  background-color: #ffff;
  border-top-left-radius: 50% 80%;
  border-top-right-radius: 50% 80%;
  position: absolute;
  padding: 15px 0px;
  width: 100%;
  opacity: 0.8;
}
.tedaviler-wrapper .tedavi:hover {
  cursor: pointer;
}
.tedaviler-wrapper .tedavi:hover .text-wrapper {
  transition: all 0.3s linear;
  transform: scale(1.15);
  padding: 25px 0px;
  opacity: 0.9;
}
