#acServiceNav{
    background-color: var(--secondary-color);
}
.Services{
    padding: 50px 60px;
    font-size: xx-large; 
}
.subservice{
    color: darkred;
}
.sub1{
    font-size: large;
}
.image img {
    padding: 20px;
    border-radius: 5px;
    width: 60%;
    height: 300px;
    transition: transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.image img {
    max-width: 100%;
}

.image img:hover{
    transform: scale(1.2);
}
.Services .sub3{
   font-size: large;
}

/* media qureries */
@media screen and (max-width:450px) {
    
    .Services {
        padding: 1rem 1rem;
        font-size: 1.7rem;
    }
    .Services h1{
        font-size: 1.7rem;
    }
    .Services>:first-child{
        margin-bottom: 1rem;
    }
    .Services h2{
        font-size: 1.4rem;
    }
    .sub1{
        font-size: 1rem;
        text-align: justify;
    }
    .Services .sub3{
        font-size: 1rem;
        text-align: justify;
    }
    .image img {
        padding: 0;
        border-radius: 0;
        width: 100%;
        height: auto;
        transform: none;
        margin-bottom: 2rem;
        margin-top: 1rem;
    }
    .image img:hover{
        transform: none;
    }
}