.main{
    width: 100%;
    height: 30vh;
    background: url('../images/3414647331010-793-sayfa-header.jpg');
    background-size: cover;
    display: flex;
    align-items:end;
    justify-content: center;
    filter: brightness(45%);
}

.header::before{
    background-color: transparent;
}

.container{
    display: flex;
    flex-direction: column;
    width: 75%;
    margin-left: 12.5%;
    margin-top: 5rem;
}

.container h1{
    text-align: center;
    font-size: 3.5rem;
}

.service{
    display: flex;
    align-items: center;
    gap: 10rem;
    padding: 5rem 3rem;
}

.service .serviceText h2{
    font-size: 2.5rem;
}

.service .serviceText p{
    font-size: 1.6rem;
    margin-top: 2rem;
}

.service .serviceImg img{
    height: 35rem;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

@media (max-width:1366px) {
    .service .serviceImg img{
        height: 25rem;
    }

    .container{
        width: 90%;
        margin-left: 5%;
        margin-top: 5rem;
    }
}


@media (max-width:800px) {

    .container{
        width: 100%;
        margin-left: 0;
    }

    .service{
        flex-direction: column;
        gap: 5rem;
    }
    .service .serviceText h2{
        text-align: center;
    }
    .service:nth-child(2) {
        flex-direction: column-reverse
    }
    .service:nth-child(4) {
        flex-direction: column-reverse
    }

    .service .serviceImg img{
        height: 23rem;
        width: 32rem;
    }
}
