.hizmetContainer .hizmetlerimizBaslik {
    text-align: center;
    margin: 50px auto;
    color: #eee;
    font-size: 3rem;
    margin-top: 80px;
  }
  
  .hizmetContainer {
    width: 100%;
    height: auto;
  }
  
  .hizmet {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  
  .hizmetContainer .card {
    width: 300px;
    height: 500px;
    margin-right: 50px;
    margin-top: 50px;
    background-color: #d1d0d0;
    text-align: center;
    border-radius: 2rem;
    box-shadow: rgba(196, 196, 197, 0.25) 0px 50px 100px -20px,
      rgba(223, 220, 220, 0.3) 0px 30px 60px -30px,
      rgba(124, 178, 231, 0.35) 0px -2px 6px 0px inset;
    cursor: pointer;
    transition: transform 0.4s ease;
  }
  
  .hizmetContainer .card:hover {
    transform: scale(1.1);
  }
  
  .hizmetContainer .card img {
    width: 100%;
    height: 450px;
    border-radius: 2rem 2rem 0 0;
    background-size: cover;
  }

  .hizTanYazi{
    color: #eee;
    align-items: center;
    text-align: center;
    padding: 50px 200px;
    font-size: 18px;
    
  }

.butonContainer{
  width: 100%;
  padding: 50px;
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: center;

}
.buton{
  text-align: center;
  display: flex;
  background-color: #eee;
  color: #202020;
  padding: 8px 55px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  transition: all .4s ease;
}

.buton:hover{
  background-color: #202020;
  color: #eee;
  border: #eee 1px solid;
}

  @media (max-width: 1250px) {
    .hizTanYazi{
      padding: 20px;
    }

  }
  
  @media (max-width: 800px) {
    .hizTanYazi{
      padding: 20px;
      font-size: 16px;
    }
    .hizmetContainer {
      height: auto;
    }
    .hizmetContainer .hizmet {
      display: flex;
      flex-direction: column;
      gap: 50px;
      align-items: center;
    }
    .hizmetContainer .card {
      margin: 0;
      padding: 0;
    }

    .buton{
      padding: 5px 20px;
      font-size: 16px;
      font-weight: normal;
    }

  }
  