.wheelServiceNav{
    background-color: var(--secondary-color);
}
.Services{
    padding: 50px 60px;
    margin: left;
    font-size: large; 
}
.Wheelsubservice{
    color: darkred;
}
.sub1{
    font-size: large;
}
.image img{
padding: 20px 20px;
    border-radius:5px;
    width: 60%;
    height: 300px;
    transition: all 0.4s ease;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.image img:hover{
    transform: scale(1.2);
}
.Services .sub3{
   font-size: large;
}
.sub4 .sub4b{
    font-size: large
}

/* media queries */
@media screen and (max-width:768px) {
    .Services h1{
        font-size: 2rem;
    }
    .Services h2{
        font-size: 1.5rem;
    }
}

@media screen and (max-width:450px) {
    
    .Services {
        padding: 1rem 1rem 2rem 1rem;
        font-size: 1rem;
    }
    Services h1{
        font-size: 1.8rem;
    }
    .Services>:first-child{
        margin-bottom: 1rem;
    }
    .Services h2{
        font-size: 1.1rem;
    }
    .sub h1{
        font-size: 1.2rem;
    }
    .sub2 h1{
        font-size: 1.2rem;
    }
    .Services p{
        text-align: justify;
        font-size: 1rem;
    }
    .image img {
        padding: 0;
        border-radius: 0;
        width: 100%;
        height: auto;
        padding: 1rem 0 2rem 0;
    }
    .image img:hover{
        transform: none;
    }
}