@charset "UTF-8";

/*--ZERO OUT--*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight: normal;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}




/*--GLOBAL--*/
body {
	background-color: rgba(146,146,146,1.00);
    font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 16px;
/*    font-family: 'Roboto', sans-serif;*/
}

/*
header, logo, nav, section, article, footer, figure, text, private, public, title, p {
	border: 2px solid rgba(168,213,169,1.00);
	box-sizing: border-box;
	padding: 20px;
	margin: 0;
}
*/
/*
section {
		padding: 100px 0;
}
*/

h1 {
	font-size: 30px;
	font-weight: 900;
	letter-spacing: 1px;
}

h2 {
	font-size: 26px;
	font-weight: 700;

}

h3 {
	font-size: 22px;
	font-weight: 400;
}

p {
	font-size: 16px;
	font-weight: 300;
	line-height: 22px;
}

strong {
  font-weight: bold;
}

img {
	max-width: 100%;
	height: auto;
}

/*--CONTAINER--*/
.container {
  transition: all .25s linear; 
  -o-transition: all .25s linear; 
  -moz-transition: all .25s linear; 
  -webkit-transition: all .25s linear; 
	background-color: rgba(255,255,255,1.00);
	max-width: 1200px;
/*	height: 100vh;*/
	margin: 0 auto;
	display: grid;
	justify-content: center;
	align-items: center;
	grid-template-columns: 1fr 1fr 1fr 1fr ;
	grid-template-rows: 0.1fr 30px 400px 300px 360px 250px;
	grid-template-areas: 
		". logo logo ."
		"nav nav nav nav"
		"hero hero hero hero"
		"f1-text f1-text f1-img f1-img"
		"services services services services"
		"f2-text f2-text f2-img f2-img"
		"clients clients clients clients"
		"footer footer footer footer"
		;
	gap: 10px;

	
}

/*--LOGO--*/
logo {
/*	background: rgba(191,148,148,1.00);*/
	grid-area: logo;
	display: grid;
	justify-content: center;
	align-items: center;
	padding-top: 10px;

}

/*--NAV--*/
#main-nav {
/*	background-color: rgba(148,191,171,1.00);*/
	grid-area: nav;
	display: grid;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 30px;
	padding: 0;
	
}

#main-menu {
	padding: 0;
	display:inline-flex;
	flex-direction: row;
}

#main-menu ul {
	justify-content: center;
	align-items: center;

}

#main-menu a{
	text-decoration: none;
	background: #245B8D;
	display: block;
	width: 150px;
	height: 30px;
	text-align: center;
/*	line-height: 16px;*/
	padding: 8px;
/*	text-transform: uppercase;*/
	text-shadow: 0px 1px 4px rgba(0,0,0,0.60);
    font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 2px;
	color: #F7F7F7;


}

#main-menu a:hover, #main-menu a:focus{
	background: #388ed1;
}

button.mobile-menu {
	text-decoration: none;
	background: #245B8D;
	display: block;
	width: 150px;
	height: 30px;
	text-align: center;
/*	line-height: 16px;*/
	padding: 8px;
/*	text-transform: uppercase;*/
	text-shadow: 0px 1px 4px rgba(0,0,0,0.60);
    font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 2px;
	color: #F7F7F7;
	border: none;
	display: none;
}

button.mobile-menu:hover, button.mobile-menu:focus {
	background: #388ed1;
}


/*--HERO--*/
section.hero {
	background-image:url("../images/hero-1.jpg");
	background-position: 72% center;
	height: 400px;
	background-size: cover;
	grid-area: hero;
	display: grid;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin-top: -20px;
}

herotext {
	color: #F4F4F4;
	position: absolute;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.60);
	padding-left: 50px;
}

section h1{
	font-size: 50px;
}

/*--FIGURE1--*/
section.feature1-text {
/*		background: rgba(191,148,148,1.00);*/
	grid-area: f1-text;
	display: grid;
	justify-content: center;
	align-items: center;
	padding: 0;
	padding-left: 50px;
	width: 100%;
}

section.feature1-image {
/*		background: rgba(191,148,148,1.00);*/
	grid-area: f1-img;
	display: grid;
	justify-content: center;
	align-items: center;
	padding: 0;
}


/*--SERVICES--*/
section.services p {
	padding: 10px;
}

section.services {
/*		background: rgba(191,148,148,1.00);*/
	grid-area: services;
	display: grid;
	grid-template-columns: subgrid;
	padding: 40px;
	justify-content: center;
	text-align: center;
	background: #388ED1;
	color: #F4F4F4;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.60);

}

section.services service-title {
	grid-column: 1 / -1; 
	display: grid;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	margin-bottom: 20px;
	
}


section.services private {
	grid-column: 1 / span 2; 
	display:inline-flex;
	flex-direction: column;
	background: #245B8D;
	border-radius: 20px;
		padding: 20px 10px;
	line-height: 26px;

}
section.services public {
	grid-column: 3 / span 2; 
	display:inline-flex;
	flex-direction: column;
	background: #245B8D;
	border-radius: 20px;
		padding: 20px 10px;
	line-height: 26px;

}


/*--FIGURE2--*/
section.feature2-text {
/*		background: rgba(232,232,232,1.00);*/
	grid-area: f2-text;
	display: grid;
	justify-content: center;
	align-items: center;
/*	padding: 0;*/
	width: 100%;
}

section.feature2-image {
/*		background: rgba(232,232,232,1.00);*/
	grid-area: f2-img;
	display: grid;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
/*	padding: 0;*/
}

/*--CLIENTS--*/
section.clients {
/*		background: rgba(191,148,148,1.00);*/
	grid-area: clients;
	display: grid;
	grid-template-columns: subgrid;
	justify-content: center;
	align-items: center;
	padding: 40px;
/*	padding: 0;*/
	 border-top: 2px solid rgba(235,235,235,1.00);
	
	

}

section.clients clients-title {
	grid-column: 1 / -1; 
	display: grid;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

section.clients clients-Img {
	grid-column: 1 / -1; 
	display:inline-flex;
	flex-direction: column;
	justify-content: center;
}


/*FOOTER-------------*/
footer {
	background-color: rgba(62,62,62,1.00);
	grid-area: footer;
	height: 300px;
	display: grid;
	grid-template-columns: subgrid;
	padding: 0;
/*	border: none;*/
	color: #F4F4F4;
	font-weight: 300;
}

footer p {
	line-height: 2px;
}

footer1, footer2, footer3 p{
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0;
/*	padding: 12px;*/
}

footer1 {
	grid-column: 1 / -1;
	padding-top: 10px;
		display: inline-flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

footer1 img{
	padding: 10px;
}

footer2 {
	grid-column: 1 / -1;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 20px;
	padding: 0;
}

footer3 {
	grid-column: 1 / -1;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}



/*--MEDIA QUERIES--*/
@media only screen and (max-width: 600px) {
	#main-nav.open {
	height: 180px;
	display:inline-flex;
	flex-direction: column;
	}
	
	#main-menu {
	display:inline-flex;
	flex-direction: column;
	height: 180px;
	width: 480px;
		
	opacity: 0;
	height: 0;
	}
	
	#main-nav.open, #main-menu {
	display:inline-flex;
	flex-direction: column;
	height: 180px;
	opacity: 1;
	}

	#main-menu a{
	width: 480px;
	float:none;
	}
	
	button.mobile-menu {
	width: 480px;
	display: block;


	}
	
}


@media only screen and (max-width: 550px) {
	.container {
		
/*	height: 100vh;*/
/*	width: 480px;*/
	display: grid;
/*	border: 20px solid rgba(168,213,169,1.00);*/
	grid-template-columns: 480px;
	grid-template-rows: 0.1fr 0.1fr 0.4fr 216px 216px 610px 56px 106px;
	grid-template-areas: 
		"logo"
		"nav"
		"hero"
		"f1-text"
		"f1-img"
		"services"
		"f2-text"
		"f2-img"
		"clients"
		"footer"
		;
	gap: 20px;
	}
	
	section.hero {
	background-image:url("../images/hero-524x400.jpg");
			margin-top: -24px;
	}
	
	herotext {
	color: #F4F4F4;
	position: absolute;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.60);
	padding-left: 0;
	padding: 0 20px;


	}
	
	section h1{
	font-size: 40px;
	}
	
	section.feature1-text {
	display: grid;
	justify-content: center;
	align-items: center;
	height: 120px;
	text-align: center;
	padding-left: 0;
	padding: 0 20px;
	}
	
	section.services private {
	margin-bottom: 20px;
	}
	
	section.services public {
	margin-bottom: 20px;
	}
	
	section.clients clients-title {
	padding-bottom: 20px;
	}

	footer3 {
		font-size: 14px;
		padding: 0 60px;
	}

}