*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Open Sans", "Arial", sans-serif;
	font-size: 15px;
}
.container{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-image: url(images/banner.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	min-height: 100vh;
}
header{
	display: flex;
	justify-content: center;
	height: 80px;
	padding: 10px 0;
	z-index: 10;
}
.header{
	display: flex;
	width: 60%;
	padding: 0 20px;
	align-items: center;
	justify-content: space-between;
	background-color: black;
	border-radius: 30px;
}
.header img{
	height: 40px;
}
nav a{
	margin-left: 10px;
	text-decoration: none;
	color: white;
}
nav a:hover{
	color: indianred;
}
.jumbotron{
	align-content: center;
	text-align: center;
}
.jumbotron h1{
	font-size: 3.5vw;
	margin: 10px 0;

	background: rgb(11,11,232);
	background: linear-gradient(30deg, rgba(11,11,232,1) 0%, rgba(249,244,229,1) 35%, rgba(115,214,235,1) 100%);
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
/*  	-webkit-text-stroke: 1px white;*/
}
.contact{
	margin: 20px 0;
}
.contact a{
	background-color: darkred;
	display: inline-block;
	width: 150px;
	padding: 5px;
	border-radius: 5px;
	color: white;
	border: 1px solid white;
}
.contact a:hover{
	border-color: darkred;
	color: darkred;
	background-color: white;
}
.service{
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: cadetblue;
	text-align: center;
	min-height: 30vh;
	padding: 20px 0;
	justify-content: space-evenly;
}
.service h1{
	font-size: 2rem;
	margin: 20px
}
.service h2{
	font-size: 1.2rem;
}
.service-group{
	width: 90%;
	display: flex;
	justify-content: space-evenly;
}
.service-list{
	width: 24%;
	margin: 10px 0;
	padding: 20px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: inherit;
	border: 1px solid #CCC;
	background-color: #F0F0F0;
	border-radius: 5px;
}
.service-list:hover{
	background-color: lightcyan;
}
.icon{
	color: cadetblue;
	margin: 10px;
}
#toggle{
	display: none;
	z-index: 2;
	background-color: unset;
	border: none;
	color: white;
}
@media screen and (max-width:1000px){
	.header{
		width: 80%;
	}
	.service-group{
		width: 100%;
	}
}
@media screen and (max-width:768px){
	header{
		padding: 0;
		height: 60px;
	}
	.header{
		width: 100%;
		padding: 0 10px;
		border-radius: unset;
	}
	.jumbotron{
		padding: 0 10px;
	}
	.service h1, .jumbotron h1{
		font-size: 4vw;
	}
	.service-group{
		flex-wrap: wrap;
	}
	.service-list{
		width: 45%;
	}
}
@media screen and (max-width:500px){
	nav{
		display: none;
		position: fixed;
		right: 0;
		top: 0;
		padding-top: 60px;
		width: 60%;
		height: 100vh;
		flex-direction: column;
		background-color: rgba(0, 0, 0, 0.8);
		z-index: -1;
	}
	nav a{
		display: block;
		align-content: center;
		margin: 0;
		padding-left: 10px;
		height: 50px;
		border-bottom: 1px solid white;
	}
	.jumbotron{
		height: 50vh;
	}
	.jumbotron img{
		width: 70%;
	}
	.service-list{
		width: 90%;
	}
	#toggle{
		display: unset;
	}
}