/* ============================================================
  RESET - http://meyerweb.com/eric/tools/css/reset/
============================================================ */
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;
}

/* ============================================================
  BOX SIZING & CLEARFIX
============================================================ */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* ============================================================
  HTML & BODY
============================================================ */
body {
  background-color: #b4b4b4;
  color: #454545;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* ============================================================
  PRIMARY STRUCTURE
============================================================ */
.wrapper {
  width: 100%;
  margin: 0 auto;
}

main {
  display: block;
  background-color: #fff;
  padding-top:60px;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 20px;
	height:100%;
}
.infocontainer {
	width:100%;
	margin:0;
	padding:0 20px;
}
.contactcontainer {
	width:100%;
	margin:0 auto;
	padding:0 20px;
}
.contactcontainer h2 {
	display:none;
}
.aligncenter {
	text-align:center;
}
.bold {
	font-weight:600;
}

.blue {
	color: #0cdaf2;
}
.gray {
	background-color: #f6f9fd;
}

.list {
	padding: 5px 20px;
}
.skills { 
	width: 100%;
	margin: 0 auto;
	display: block;
}
.headertxt {
  margin-bottom: 10px;
  font-family: "Exo 2", serif;
  font-size: 28px;
}
.listsection {
	margin-top: 10px;
}	
.marginbottom {
	margin-bottom: 20px;
}	
.logocontainer {
	width:200px;
}	
.uxicon {
	display: none;
}	
.uxicondesktop {
	margin-right: 10px;
}	
/* ============================================================
  INFO BAR
============================================================ */
.info-bar {
  padding: 5px 0;
  background-color: #000;
  height:80px;
  color:aqua;
  width:100%;
  position:fixed;
  z-index:100;
}
.info-bar-logo {
	width:200px;
}


/* ============================================================
  TEXT LEVEL SEMANTICS
============================================================ */
a {
  text-decoration: none;
  color: #00B2D2;
}

a:hover {
  color: #818181;
}

/* ============================================================
  NAVIGATION
============================================================ */
.nav__bar {
  position: fixed;
  z-index: 100;
  top:0;
  width: 100%;
  font-size:1.3	em;
}

.nav__bar > ul {
    color:#0cdaf2;
    display:block;
    float:right;
    list-style-type:none;
    padding-right:5%;
    padding-top:30px;
}
.nav__bar > ul > li {
    display:inline;
    padding:5px 10px;
	font-size:1.2em;
	height:35px;
	line-height: 35px;
}
.nav__bar > ul > li:active,
.nav__bar > ul > li:focus {
    background-color:white;
}
.nav__bar > ul > li:hover {
	background-color:white;
	color:black;
}

.nav__mob {
	display:none;
}
/* ============================================================
  FLEX 
============================================================ */
.flexcontainer {
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	-webkit-flex-flow:row wrap;
	-moz-flex-flow:row wrap;
	-ms-flex-flow:row wrap;
	-o-flex-flow:row wrap;
	flex-flow:row wrap;
	align-items:flex-start;
	height:auto;
}
.flexperson {
	justify-content:space-around;
	text-align:center;
}
.flexitem {
	width:300px;
	height:auto;
	padding:10px;
}
.flexitemwide {
	width:50%;
	height:auto;
	padding:10px;
}
.rentopic {
	display:block;
	width:100px;
	margin:0 auto;
}
.introslogan {
	font-size:18pt;
	font-family: "Exo 2", serif;
	font-weight:600;
	top:80%;
	left:50%;
	position: relative;
	display:inline-block;
	color:black;
	background-color:aqua;
	border-radius:4px;
	padding:10px;
}
.textoverlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 3em;
	text-align: center;
	width: 100%;
  }

.vert-align-middle {
	vertical-align: middle;
}

/* Tablet portrait */
@media all and (max-width: 770px) {
	.container {
		padding: 0 20px;
	}	
	.info-bar {
		height:auto;
	}
	.nav__bar {
		display:none;
	}
	.rentopic {
		display:block;
		width:150px;
		margin:0 auto;
	}
	.nav__mob {
		display:block;
		position: fixed;
		z-index: 100;
		top:0;
		width: 100%;
		font-size:1.3em;
		padding-top:2%;
	}
	.alignright{
		float:right;
		padding-right:20px;
	}
	main {
		padding-top:80px;
	}
	.contactcontainer h2 {
		display:block;
	}
	
	#mobmenu {
		display:none;
		width:100%;
		text-align:center;
		background-color:black;
		padding:10px;
		margin-top:30px;
		clear:both;
		border:solid 1px #b4b4b4;
	}
	#mobmenu li {
		margin-top:15px;
		list-style-type: none;
	}
	
	.nav__mob i {
		margin-top:10px;
	}
	.introslogan {
		padding-top:30px;
		padding-bottom:30px;
		text-align:center;
		color:black;
		font-size:50px;
	}
	.info-bar-logo {
		width:200px;
	}
	.textoverlay {
		display: none;
	  }
	.flexitemwide {
		width:100%;
		text-align: center;
	}
	.uxicondesktop {
		display: none;
	}	
	.uxicon {
		display: block;
	}	
}
