/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/

.border { border: 1px solid red; }
.hide { display: none; }
.thepadding { padding: 75px 40px; }
.logo { height: 350px; padding-top: 25%; width: 350px; }

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
	position: relative;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.column,
.columns {
	width: 100%;
	float: left;
	box-sizing: border-box;
}

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html { font-size: 62.5%; height:100%; }

body {
	color: #222;
	font-size: 2em; /* currently ems cause chrome bug misinterpreting rems on body element */
	font-weight: 300;
	font-family: 'Open sans', Helvetica, Arial, sans-serif;
	height: 100%;
	line-height: 1.25;
	width: 100%;
}

/* fullscreen background */
.background {
	background-repeat: no-repeat;
	/* custom background-position */
	background-position: 50% 50%;
	/* ie8- graceful degradation */
	background-position: 50% 50%\9 !important;
}

.fullscreen, .splash { width: 100%; min-height: 100%; }

.not-fullscreen,
.not-fullscreen .splash,
.fullscreen.not-overflow,
.fullscreen.not-overflow .splash {
	height: 100%;
	overflow: hidden;
}

.splash { display: table; }

.splashtext {
	color: #fff;
	display: table-cell;
	position: relative;
	text-align: center;
	vertical-align: middle;	
}

.mouse {
	border-radius: 13px;
	border: 2px solid #fff;
	bottom: 80px;
	display: inline-block;
	height: 46px;
	left: 50%;
	margin: 0 auto;
	margin-left: -13px;
	position: absolute;
	width: 26px;
}

.mouse span {
	background: #fff;
	border-radius: 4px;
	border: 2px solid transparent;
	display: inline-block;
	height: 2px;
	margin: 6px auto;
	width: 2px;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: scroll;
	animation-name: scroll;
}

.mousetext {
	bottom: 40px;
	color: #fff;
	display: inline-block;
	left: 50%;
	margin: 0 auto;
	margin-left: -75px;
	position: absolute;
	text-align: center;
	width: 150px;
}

@-webkit-keyframes scroll {
0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
}

@keyframes scroll {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}
}

.not-fullscreen { height: 50%; }

.fullwidth { width: 100%; }

.banner { background: #518dd6; color: #fff; padding: 150px 0; }

.banner p { font-size: 5rem; line-height: 4rem; margin-bottom: 20px; text-transform: uppercase; }

.banner .light { font-weight: 300; }

.banner .heavy { font-weight: 700; }

.about { background: #f5f5f5; padding: 150px 0 150px 0; text-align: center; }

.about h3 { color: #518dd6; line-height: 1.25; }

.about p { padding: 0 10px; }

.quoteicon { padding: 10px 10px; }

blockquote { padding: 0 10px; font-style: italic; font-weight: 400; }

.profilepic { height: 180px; width: 180px; margin: 100px 0 10px 0; margin-bottom: 10px; }

.profile h3 { color: #222; margin: 10px 0; }

.contact { padding: 150px 0 100px 0; text-align: center; }

.contact button, input[type="submit"] { width: 100%; }

.portfolio { background: #f5f5f5; padding: 250px 0 150px 0; text-align: center; }

.portfoliospacing { padding-top: 150px; }

.portfolio h3 { color: #518dd6; line-height: 1.25; }

.portfolio p { padding: 0 10px; }

.videoRow { padding-top: 100px; }

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.portfolioImages { padding-top: 25px; }

.footer { font-size: 1.5rem; height: 100px; margin-top: 100px; padding: 40px 0; text-align: center; }

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: rem;
	font-weight: 300; }

h1 { font-size: 6rem; line-height: 1;  letter-spacing: 0rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
h2 { font-size: 3.6rem; line-height: 1; letter-spacing: 0rem; }
h3 { font-size: 2.4rem; line-height: 1;  letter-spacing: 0rem; font-weight: 700; text-transform: uppercase; }
h4 { font-size: 2.4rem; line-height: 1; letter-spacing: 0rem; color: #518dd6; font-style: italic; }

p { margin-top: 0; }



/* Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */

nav { width: 100%; height: 40px; position: fixed; top: 0; background: #fff; z-index: 1; }

nav ul { padding: 10px 0; margin: 0 auto; list-style: none; text-align: center; }

nav ul li { display: inline-block; margin: 0 10px; }

nav ul li a { color: #222; }

nav ul li a:hover { color: #34495E; text-decoration: underline; }

a.active { border-bottom: 2px solid #ecf0f1; }

section {
  width: 100%;
  padding: 50px;
  background: #fff;
  border-bottom: 1px solid #ccc;
  height: 500px;
  text-align: center;
}

section.active {}

.thec{ background-color: rgba(0,0,0, 0.2); }
.thed { background-color: rgba(255,255,255, 0.9); }
/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a { color: #fff; text-decoration: none; }

a:hover { color: #fff; }

#underline:hover { color: #fff; text-decoration: underline; }
  
.hi-icon-wrap { display: inline; font-size: 2.4rem; }

.hi-icon {
	cursor: pointer;
	margin: 20px 15px 0 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
	position: relative;
	z-index: 99;
	color: #fff;
	border: 2px solid #fff;
}

.hi-icon:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	content: '';
	-webkit-box-sizing: content-box; 
	-moz-box-sizing: content-box; 
	box-sizing: content-box;
}

.hi-icon:before {
	font-family: ;
	speak: none;
	font-size: 50px;
	line-height: 50px;
	vertical-align: middle;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	display: inline;
	-webkit-font-smoothing: antialiased;
}

.hi-icon-mobile:before {
	content: ;
}

.hi-icon-effect-1 .hi-icon {
	background: none;
	-webkit-transition: background 0.2s, color 0.2s;
	-moz-transition: background 0.2s, color 0.2s;
	transition: background 0.2s, color 0.2s;
}

.hi-icon-effect-1 .hi-icon:after {
	top: -7px;
	left: -7px;
	padding: 7px;
	box-shadow: 0 0 0 4px #fff;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(.8);
	-moz-transition: -moz-transform 0.2s, opacity 0.2s;
	-moz-transform: scale(.8);
	-ms-transform: scale(.8);
	transition: transform 0.2s, opacity 0.2s;
	transform: scale(.8);
	opacity: 0;
}

.hi-icon-effect-1a .hi-icon:hover {
	background: rgba(255,255,255,1);
	color: #518dd6;
}

.hi-icon-effect-1a .hi-icon:hover:after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}




/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 80px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  line-height: 80px;
  letter-spacing: rem;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 0px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #fff;
  background-color: #518dd6;
  border-color: #518dd6; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #fff;
  background-color: #222;
  border-color: #222; }




/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 0px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 0px;
  border-bottom: 1px solid #d1d1d1;
  border-radius: 0px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 150px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 0px;
  border-bottom: 1px solid #222;
  border-radius: 0px;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-size: 2rem;
  font-weight: 300; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }




/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }

.tagline { border-top: 1px solid #fff; color: #fff; list-style: none; margin: 0 auto; padding-top: 10px; text-transform: uppercase; width: 250px; }

.tagline li { display: inline; }

.tagline li:nth-child(1) { text-align: left; float: left; }

.tagline li:nth-child(2) { text-align: center; }

.tagline li:nth-child(3) { text-align: right; float: right; }

.social { font-size: 2rem; list-style: none; margin-top: 40px; }

.social li { display: inline; padding: 0px 15px; }

.social li:first-child { padding-left: 0px; }

.social li a { color: #222; }

.icontwitter a:hover { color: #4099ff; }

.iconyoutube a:hover { color: #e52d27; }

.iconlinkedin a:hover { color: #4875b4; }

.iconemail a:hover { color: #d08831; }




/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }




/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }




/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }




/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }




/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }




/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.clear { clear: both; }

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }




/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/

/* Larger than mobile */
@media (min-width: 400px) {

	iframe, .youtuber { width: 70%; height: 165px; }
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
	nav ul li a { font-size: 2rem; }
	.tagline { width: 500px; }
	.tagline li:nth-child(1) { text-align: left; float: left; }
	.tagline li:nth-child(2) { text-align: center; }
	.tagline li:nth-child(3) { text-align: right; float: right; }
	.profilepic { height: 140px; width: 140px; }
	
	.taglineportfolio { width: 450px; }
	.logo { height: 350px; padding-top: 25%; width: 350px; }


}

/* Larger than tablet */
@media (min-width: 750px) {
	nav { height: 60px; }
	nav ul { padding: 20px 0; }
	h1 { font-size: 8.0rem; }
	.tagline { width: 675px;}
	.tagline li:nth-child(1) { text-align: left; float: left; }
	.tagline li:nth-child(2) { text-align: center; padding-left: 55px;}
	.tagline li:nth-child(3) { text-align: right; float: right; }
	.about p { padding: 0 80px; }
	blockquote { padding: 0 50px; }
	.quoteicon { padding: 10px 50px; }
	.profilepic { height: 180px; width: 180px; }
	.hide { display: inline; }
	.footer { }

	.taglineportfolio { width: 450px; }
	.logo { height: 350px; padding-top: 25%; width: 350px; }


}

/* Larger than desktop */
@media (min-width: 1000px) {
	nav { height: 60px; }
	nav ul { padding: 20px 0; }
	h1 { font-size: 11.0rem; }
	.tagline { width: 920px;}
	.tagline li:nth-child(1) { text-align: left; float: left; }
	.tagline li:nth-child(2) { text-align: center; padding-left: 55px;}
	.tagline li:nth-child(3) { text-align: right; float: right; }
	.thepadding { display: table-cell; position: relative; text-align: left; vertical-align: middle; padding: 0 180px 0 225px; }

	.taglineportfolio { width: 450px; }
	.logo { height: 500px; padding-top: 25%; width: 500px; }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) { }
