/* Reset default browser CSS.
-------------------------------------------------------------- */
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, font, 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 {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline; }

body {
  line-height: 1; }

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-weight: normal; }

ol, ul {
  list-style: none; }

blockquote {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

del {
  text-decoration: line-through; }

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0; }

a img {
  border: none; }

-------------------------------------------------------------- */
/* =Global
-------------------------------------------------------------- */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

body {
  background-color: #555555;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
	color: #FF6633;
	font-family: 'Dancing Script', cursive;
	letter-spacing: 2px;
  line-height: 1;
  font-weight: 400; }

a {
  text-decoration: none;
  color: #fff; }

a:hover {
  color: #ffCC33; 
	transition: all 0.3s;
	border:none;
}

/* =Template
-------------------------------------------------------------- */
#wrapper {
  width: 100%;
  margin: 0 auto; }

#main {
  background-color: #555555; }

.container {
  width: 80%;
  margin: 0 auto;
}

section {
  padding: 100px 0;
	text-align: center;
}
  section h1 {
    font-weight: 700;
    margin-bottom: 10px;
		font-size: 2em; }
  section p {
    margin-bottom: 30px;
    font-size: 1.3em;
  }
    section p:last-child {
      margin-bottom: 0; }
  section.color {
    background-color: #f2f2f2;
    color: #556270;
		font-size: 1em;
		line-height: 2;
	}	
	section.color a {
    color: #ff6633;
	}
  section.color a:hover {
    color: #fff;
	}

	#home {
    padding: 250px 0 100px;
		font-weight: 700;
	}
/*#home h1 {
  color: #ffCC33;
}*/
.btn-big {
	font-size: 0.875em;
	text-transform: uppercase;
	font-weight: 600;
	padding: 12px 40px;
}

.btn-outline-white {
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 2px solid #FF6633;
}
		a:hover.btn-big.btn-outline-white {
    background: #ff6633;
		}
	.profile {
    width: 250px;
    height: 250px;
    background: url("../img/profile.png") top center;
    background-size: cover;
    border-radius: 150px;
		margin: 0 auto 20px;
	}
	div.gallery {
    position: relative;
    display: block;
    float: left;
    width: 25%;
    height: 25%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    background-size: cover;
    background-position: 50% 50%;
    -webkit-transition: all .1s ease-in;
    -moz-transition: all .1s ease-in;
    -ms-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    transition: all .1s ease-in;
		content:" "
	}
    div.gallery a {
      display: block;
      overflow: hidden;
    }
      .gallery a:hover img {
        transform: scale(1.5);
        transition: transform .5s ease;
      }
	div.gallery img {
		width: 100%;
		height: 100%;
	}
	#thumbnailContainer {
    position: relative;
    padding: 0px 0px 0px 0px;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    font-size: 0;
	}

	#contact form input, #contact form textarea {
		background-color: #23323a;
		color: #fff;
		border: none;
		-webkit-border-radius: 4px;
		border-radius: 4px;
		-moz-background-clip: padding;
		-webkit-background-clip: padding-box;
		background-clip: padding-box;
		-webkit-transition: all 0.2s ease-out;
		-moz-transition: all 0.2s ease-out;
		-o-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
		cursor: default;
	}

/* =Info Bar
-------------------------------------------------------------- */
#info-bar {
  background-color: #FF6633; }
  #info-bar p, #info-bar a {
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    margin: 0;
    padding: 10px; 
		transition: all 0.3s
	}
    #info-bar a:hover {
      background-color: #f2f2f2; 
			color: #FF6633; 
		}
  #info-bar span.copyright,
  #info-bar span.back-to-top {
    display: block;
    width: 50%; }
  #info-bar span.copyright {
    float: left;
    text-align: left; }
  #info-bar span.back-to-top {
    float: right;
    text-align: right; }

/* =Header
-------------------------------------------------------------- */
header {
  width: 100%;
  height: 150px;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
	-webkit-box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
   box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
  z-index: 999;
  background-color: #F2F2F2;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  -ms-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: all 0.3s; }
	header .container {transition: all 0.3s}
  header h1#logo {
    display: inline-block;
    height: 150px;
    line-height: 150px;
    float: left;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
	header h1#logo img { height: 45px; }
  header nav {
    display: inline-block;
    float: right; }
    header nav a {
      line-height: 150px;
      margin-left: 20px;
      color:#556270;
      font-weight: 700;
      font-size: 18px;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
      header nav a:hover {
        color: #ffCC33; }
  header.smaller {
		background: rgba(242, 242, 242, 1);
    height: 75px;
		}
    header.smaller h1#logo {
      line-height: 66px;
      font-size: 28px; 
		}
		header.smaller h1#logo img {
			height: 30px;
		}
    header.smaller nav a {
      line-height: 75px; }
		
	#logo img { vertical-align: middle }



/* =Footer
-------------------------------------------------------------- */
/* =Extras
-------------------------------------------------------------- */
.clearfix:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0; }

#section6 {
	background-color: #19242a;
	text-align: center;
	padding: 100px 0;
	-webkit-box-shadow: inset 0 4px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 4px 0 rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 4px 0 rgba(0, 0, 0, 0.1);
}
	#section6 h1 {
    margin: 0 0 40px 0;
    color: #fff;
	}

	#work {
		padding: 0;
	}
	#work .container {
		padding: 0;
		width: 100%;
	}

/* =Media Queries
-------------------------------------------------------------- */
@media all and (max-width: 900px) {
	header .container {
		width: 100%;
	}
}


@media all and (max-width: 660px) {
		/* =Header
		-------------------------------------------------------------- */
		header h1#logo {
			display: block;
			float: none;
			margin: 0 auto;
			height: 100px;
			line-height: 100px;
			text-align: center; }
		header nav {
			display: block;
			float: none;
			height: 50px;
			text-align: center;
			margin: 0 auto; }
			header nav a {
				line-height: 50px;
				margin: 0 10px; }
		header.smaller {
			height: 75px; }
			header.smaller h1#logo {
				height: 40px;
				line-height: 40px;
				font-size: 30px; }
			header.smaller nav {
				height: 35px; }
				header.smaller nav a {
					line-height: 35px; } 

			div.gallery {
				width: 50%;
				height: 50%;
			}
		}
@media all and (max-width: 600px) {
  .container {
    width: 100%; }

  #info-bar a {
    display: block; }
  #info-bar span.copyright,
  #info-bar span.back-to-top {
    width: 100%; }
  #info-bar span.copyright,
  #info-bar span.back-to-top {
    float: none;
    text-align: center; }
  #info-bar span.copyrght {
    border-bottom: solid 1px #0793e2; } }

@media all and (max-width: 500px) {
		div.gallery {
			width: 100%;
			height: 100%;
		}
