

/*------- Service Section Start  -----*/
 

.header3{
	min-height: 55vh;
	width: 100%;
	background-image: linear-gradient(rgba(4, 9, 30, 0.5),rgba(4, 9, 30, 0.315)),url(image/g1.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
}


.services{
    margin: 6rem 0 3rem 0;
}


.services h2{
    font-weight: 550;
    color: rgb(56, 53, 53);
    margin-bottom: 0.7rem;
    font-size: 28px;
}

.services p{
    color: rgb(56, 53, 53);
    font-size: 1rem;
}


.services-container{
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 80%;

}

.service-img{
    margin: auto;
    width: 90%;

}

.shrink img{
    transition: 1s ease;
}

.shrink img:hover{
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    transition: 1s ease;

}

.service{
    border: 1px solid transparent;
    text-align: center;
    margin-bottom: 2rem;
}  

.service:hover{
    border: 1px solid black;
}  

.service-info{
    padding: 1.5rem;
}

.service-info h4{
    color: rgb(56, 53, 53);
}

.service-info p{
    color: rgb(56, 53, 53);
    margin: 1.2rem 0 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.btn3{
	display: inline-block;
	text-decoration: none;
	color: white;
	padding: 10px 30px;
	font-size: 10px;
    background: rgb(49, 51, 51);
	position: relative;
	cursor: pointer;
} 

.btn3:hover {
    background: rgb(93, 95, 212);
	transition: 0.3s;
}




/*------- Service Section End  -----*/












/*------- Tablet mode for services start  -----*/


@media(max-width: 1024px){
    
.services{
    margin: 6rem 0 6rem 0;
}
    

.services h2{
    font-weight: 550;
    margin-bottom: 3.5rem;
    font-size: 28px;
    margin-bottom: 0.5rem;
}

.services p{
    font-size: 1.2rem;
}


.services-container{
    margin-top: 1.5rem;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
}

.service-img{
    margin: auto;
    height: 160px;
}


.service-info{
    padding: 0.8rem;
}

.service-info h4{
    font-size: 1rem;
}


.service-info p{
    margin: 1rem 0 1.5rem;
    text-align: left;
    font-size: 1rem;
}

.btn3{
	font-size: 14px; 
} 





}

/*------- Tablet mode for services end  -----*/







/*------- Phone mode for services start  -----*/


@media(max-width: 700px){

    .services h2{
        font-weight: 520;
        font-size: 25px;
        margin-bottom: 0.7rem;
    }

    .services p{
        text-align: center;
        font-size: 0.9rem;
    }
    
    
    .services-container{
        margin-top: 1rem;
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
    
    .service-img{
        margin: auto;
        height: 220px;
    }
    
    
    .service-info{
        padding: 0.5rem;
    }
    
    .service-info h4{
        font-size: 1rem;
    }
    
    
    .service-info p{
        margin: 0.8rem 0 1.4rem;
        text-align: center;
        font-size: 0.8rem;
    }
    
    .btn3{
        font-size: 12px; 
    } 


 
    
}

    /*------- Phone mode for services end  -----*/

 