.HizmetlerCont{
    width: 100%;
    height: 100%;
    background-color: transparent;

    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;

    position: absolute;
    left: 50%; right: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.HizmetlerCont .HizmetCard{
    width: 20rem;
    height: 28rem;
    border-radius: 1rem;

    margin: 1rem;
    transition: .2s;

    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;

    background-color: rgba(245, 245, 245, .9);
    box-shadow: 0 0 10px -3px black;
    cursor: pointer;
}

.HizmetlerCont .HizmetCard img{
    width: 65%;
}

.HizmetlerCont .HizmetCard:hover{
    width: 24rem;
}

.HizmetlerCont .HizmetCard h1{
    width: 100%;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}












.TamirCont{
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;

    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

.TamirTitle{
    color: white;
    text-shadow: 0 0 7px black;
    font-weight: 800;
    font-size: 5rem;
    margin-top: 10rem;
    margin-bottom: 6rem;
}



.TamirBox{
    width: 90%;
    height: auto;
    padding: 3rem;
    background-color: rgba(255, 255, 255, .8);
    border-radius: 1rem;
    box-shadow: 0 0 5px 0 black;
    margin-bottom: 18rem;
}

.TamirBox p{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
}


footer {
    width: 100%;
    height: 3rem;
    color: white;
    background-color: rgba(0, 0, 83, .7);
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}







@media only screen and (max-width: 1100px) {
    .TamirTitle{
        font-size: 4rem;
    }
}

@media only screen and (max-width: 770px) {
    .TamirTitle{
        font-size: 3rem;
    }
}

@media only screen and (max-width: 500px) {
    .TamirTitle{
        font-size: 2rem;
    }
}