*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main_img{
    background-image: url('../img/book\ keeping.jpg');
    height: 345px;
    background-position: center center;            
    box-shadow: 0px 0px 0px 400px rgba(0, 0, 0, 0.752) inset;
    background-repeat: no-repeat;
    background-size: cover;
}

.heading{
    text-align: center;
    position: relative;
    top: 34px;
    font-size: 3rem;

}
.para{
    text-align: center;
    color: white;
    width: 790px;
    display: block;
    margin: auto;
    margin-top: 105px;
    font-weight: 400;
}

/* accounting services style */

.accounting_services h3{
    color: #273d71;
}


.servicesParents{
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* display: flex; */
    gap: 3rem;
}

.iconcontent{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    border: 2px solid #2c997a;
    border-radius: 5px;
    padding: 5px 8px;
}

.iconcontent:hover{
    background-color: #2c997a;
    color: white;
}

.icon img{
    width: 44px;
}
.content h4{
    width: 185px;
}



/* click content handle by js */

.click_content{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 8rem;
    margin-top: 34px;
}

.left{
    width: 500%;
}

.right img{
    width: 80%;
}
.left ul li{
    margin: 34px;
}


.testing{
    height: 133px;
}




/* media queries for tablet device */

@media screen and (max-width: 1260px) {
    
.servicesParents{
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.click_content{
    display: flex;
   
    flex-wrap: wrap;
}

.right img{
    width: 74%;
    margin-top:-54px;
}

    
}


@media screen and (max-width: 900px) {
    .navlinks{
        display: none;
        width: 100%;
    }
    .servicesParents{
        overflow: hidden;
        margin-top: 64px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .para{
        width: 494px;
    }
   

    
}

@media screen and (max-width: 620px) {
    /* .para {
        width: 303px;
    } */

    .heading{
        font-size: 2rem;
    }

    .para {
        width: 241px;
        margin-top: 40px;
    }
    .content h4 {
        width: 145px;
    }
    .icon img {
        width: 38px;
    }
    .servicesParents{
        overflow: hidden;
        margin-top: 64px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
    .right img {
        width: 102%;
        margin-top: -108px;
    }
    
}



