@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body {
	background: #f1f3f3;
}
.contact-wrapper{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}
.heading{
    padding: 30px 0px;
    font-size: 50px;
    color: #115ea6;
}
.single-service {
	padding: 25px;
	transition: all .5s ease;
}
.single-service i {
	font-size: 60px;
}
.single-service h2 {
	font-size: 30px;
	font-weight: 500;
}
.single-service:hover {
	background: radial-gradient(circle, #00bbff, #0190f4);
	color: #fff;
}
