@charset "utf-8";
/* CSS Document */
	
	* {
		box-sizing: border-box;
	}
	
	body {
		margin: 0;
		font-family: system-ui;
	}
	
	header {
		width: 100%;
		height: 136px;
		background: url(images/header_bg.jpg);
		margin: 0;
		display: flex;
/*		justify-content: space-between;*/
	}
	
	h1#logo {
		width: 260px;
		height:150px;
		background: url("images/Mat165 P3 iPoint logo.png");
		text-indent: -9999px;
		margin: 74px auto 0 40px;
	}
	
	nav {
		margin-right: 30px;
	}
	
	#main_menu {
		height: 136px;
		margin: 0;
		padding: 0;
		list-style: none;
		display: flex;
		align-items: flex-end;
	}
	
	#main_menu a {
		text-transform: uppercase;
		font-weight: 600;
		letter-spacing: 1px;
		color: black;
		display: block;
		background: #4694E6;
		padding: 15px;
		margin: 10px 10px 0 10px;
		text-decoration: none;
		border-radius: 10px 10px 0 0;
	}
	
	.services #main_menu a {
		background: #6BCFE8;
	}
	
	.team #main_menu a {
		background: #3552E6;
	}
	
	.clients #main_menu a {
		background: #A3C3E6;
	}
	
	.contact #main_menu a {
		background: #7D6AE6;
	}
	
	#main_menu a:hover {
		background-color: #F79811;
    	color: #fff;
		transition: all 300ms ease;
	}
	
	#main_menu li:last-child a {
		background-color: #000;
		color: white;
	}
	
	section.hero {
		background-color: #4694E6;
		height: 400px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.services section.hero {
		background-color: #6BCFE8;
		height: 300px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.team section.hero {
		background-color:#3552E6;
		height: 300px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.clients section.hero {
		background-color: #A3C3E6;
		height: 300px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.contact section.hero {
		background-color: #7D6AE6;
		height: 300px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	article {
		max-width: 1280px;
		margin: -100px auto 0 auto;
		background: white;
		padding: 25px 50px;
		box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
	}
	
	.services article {
		column-count: 2;
	}
	
	.services article.servicepublic {
		margin-top: 50px;
	}
	
	.clients article p {
		margin-top: 28px;
		text-align: center;
	}
	
	.contact article {
		text-align: center;
	}
	
	
	
	
	