/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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: inherit;
	vertical-align: baseline;
}
/* 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;
}

body{

	font-family: Ariel, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	padding:0;
	margin: 0;
	background-color: #f4f4f4;
}
/* variables */

:root {
--container-color: #1a1e21;
--second-color: #fd8f44;
--text-color: #172317;
--bg-color: #fff;
}
/* global effects */
.container{
	width: 80%;
	margin: auto;
	overflow: hidden;
}
.flexbox-container{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  min-height: 0px;
  justify-content: space-around;
  background-color: DodgerBlue;
}

ul{
	margin: 0;
	padding: 0;
}
.button-1{
	height: 38px;
	background: #e8491d;
	border: 0;
	padding-left: 20px;
	padding-right: 20px;
	color: var(--bg-color);
}
.dark{
	padding: 15px;
	background: #35424a;
	color: #ffffff;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 5px;
}
/* headers */
header{
	background: #35442a;
	color: #fff;
	padding-top: 30px;
	min-height: 70px; 
	border-bottom: #e8491d 3px solid;
}

header a{
	color:#ffffff; 
	text-decoration:none;
	text-transform:uppercase;
	font-size: 16px;
}
header li{
	float: left;
	display: inline;
	padding: 0 20px 0 20px;
}
header #branding{
	float: left;
}
header #branding h1{
	margin: 0;
}

header nav{
	float: right;
	margin-top: 10px;
}

header .highlight, header .current-item a{
	color: #cccccc;
	font-weight: bold;
}
header a:hover{
/*	color: #e8491d; */
	color: var(--text-color);
	font-weight: bold;
	background: hsl(24, 98%, 58%);
	transform: 0.3s;
}
/* showcase */
cover-image{
 	/* padding-top: 75;  */
    /* padding-bottom: 50px; */
    height: 100vh;
    width: 100vw;
    margin: 10px auto;
	background-image: url(../IMG/AuthCover2.jpeg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#showcase p{
	font-size: 60px;
	text-align: left;
	text-shadow: darkblue;
}
/* Contact me area */
#contact{
	padding: 15px;
	color: #ffffff;
	background: #35424a;
}

#contact .container hi{
	float: left;
}
#contact form{
	float: right;
	margin-top: 15px;
}
#contact input[type=email]{
	padding: 4px;

	width: 250;
	color: #ffffff;
	background-color: #e8491d;
}
contact input[type=email]{
	padding: 4px;
/*	height: 25px; */
	width: 250;
	color: #ffffff;
	background-color: #e8491d;
}
/* services */
#services{
	margin-top: 20px;
}

#services .box{
	float: left;
	text-align: center;
/*	width: 30%; */
	padding: 10px;
	background-color: #e8491d;
}
#services .box img{
	width: 90px;
	height: 100px;
}

/* main col in About */
#main-col{
	float:left;
	width: 65%;
	margin: 5px;

}
/* sidebar in Services */
#sidebar .dark{
	float: right;
	width: 100%;
	margin-right: 10px;
	text-align: center;
}
/* sidebar in About */
#sidebar{
	float: right;
	width: 30%;
	margin-top: 10px;
	margin-left: 10px;
	border-spacing: 5px;
}
#sidebar .quote input, #sidebar .quote textarea{

	padding: 5px;
}
#sidebar img{
	padding:0 0 0 15%;

	
}

/* services */
#services li{
	list-style: none;
	padding: 20px;
	border: #cccccc;
	margin-bottom: 5px;
	background: #e6e6e6;
}
footer{
	padding: 20px;
	margin-top: 20px;
	color: #ffffff;
	background-color: #e8491d;
	text-align: center;;
}

/* media queries */
@media(max-width: 768px){
	header #branding,
	header nav,
	header nav li,
/*	#contact h1, */
	#contact form,
	#contact .box,
	#main-col,
	#sidebar{
		float: none;
		text-align: center;
		width: 100%
	}
	header{
		padding-bottom: 20px;
	}
/*	#showcase h1{   */
/*		margin-top: 40px;   */
/*	}          */
	#contact button, .quote button{
		display: block;
		width: 100%;
	}
	#contact form input[type="text"], .quote input, .quote textarea{
		width: 100%;
		margin: 5px;
	}
	#contact form input[type="email"], .quote input, .quote textarea{
		width: 100%;
		margin: 5px;
	}
}












