@charset "UTF-8";

/*-----------------------------------------------------------------------------------

	Author: Ben Bate
	Author URL: http://benbate.com
	
-----------------------------------------------------------------------------------*/

/*------ 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;
	-webkit-font-smoothing: antialiased; 
	font-smoothing: antialiased;
}
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;
}


/*------ BEGIN MAIN CSS ------*/


/*------ GENERAL ------*/

body {
	background: #EDEBE6;
	font-family: "Open Sans";
	-webkit-animation-name: bodyAnim;
    -moz-animation-name: bodyAnim;
    -ms-animation-name: bodyAnim;
	-o-animation-name: bodyAnim;
	animation-name: bodyAnim;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-ms-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
	animation-delay: 0.5s;
	-webkit-animation-duration: 0.5s;
	-moz-animation-duration: 0.5s;
	-ms-animation-duration: 0.5s;
	-o-animation-duration: 0.5s;
	animation-duration: 0.5s; 
}

@-webkit-keyframes bodyAnim {
	0%   { opacity: 0;}
	100% { opacity: 1;}
}

@-moz-keyframes bodyAnim {
	0%   { opacity: 0;}
	100% { opacity: 1;}
}

@-o-keyframes bodyAnim {
	0%   { opacity: 0;}
	100% { opacity: 1;}
}

@keyframes bodyAnim {
	0%   { opacity: 0;}
	100% { opacity: 1;}
}

a {
	text-decoration: none;
	color: #9099A3;
	font-size: 14px;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased; 
	font-smoothing: antialiased;
	-o-transition:all .2s ease-out, background 0.5s ease-in;
	-ms-transition:all .2s ease-out, background 0.5s ease-in;
	-moz-transition:all .2s ease-out, background 0.5s ease-in;
	-webkit-transition:all .2s ease-out, background 0.5s ease-in;
	transition:all .2s ease-out, background 0.5s ease-in;
}

a:hover {
	color: #c77000;
}

p {
	line-height: 1.8;
	color: #5f5d58;
}

#container {
	width: 1028px;
	margin: 0 auto;
}


/*------ HEADER ------*/

header {
	height: 205px;
	font-weight: 700;
	text-shadow: 0 1px 0 #eee;
}

#leftlinks {
	float: left;
	margin: 81px 0 0 39px;
}

#leftlinks a {
	float: left;
}

a#logo {
	position: absolute;
	left: 50%;
	margin: 85px 0 0 -64px;
	width: 128px;
	height: 83px;
	background: url(images/logo.svg);
	background-size: 128px 83px;
}

a#logo:hover {
	opacity: 0.7;
}

#rightlinks {
	float: right;
	margin: 81px 39px 0 0;
}

#rightlinks a {
	float: right;
}


/*------ MAIN ------*/

#main {
	width: 100%;
	border: 6px solid #EDEBE6;
	background: #f8f6f2;
	margin-left: -6px;
}

#intro {
	position: relative;
	font-size: 16px;
	width: 100%;
	text-align: center;
	margin-top: 50px;
	margin-bottom:50px;
	font-family: 'Merriweather', serif;
	font-weight: 300;
}

#divider {
	position: absolute;
	left: 50%;
	margin: 33px 0 0 -23px;
	width: 46px;
	height: 1px;
	background: #848a91;
	opacity: 0.3;
}

#work {
	padding: 0 0px 0 0px;
	margin-top: 50px;
}

#work > :last-child {
	margin-bottom: 50px;
}

.portfolioitem {
	position: relative;
	margin-bottom: 15px;
	-o-transition:all .2s ease-out, background 0.5s ease-in;
	-ms-transition:all .2s ease-out, background 0.5s ease-in;
	-moz-transition:all .2s ease-out, background 0.5s ease-in;
	-webkit-transition:all .2s ease-out, background 0.5s ease-in;
	transition:all .2s ease-out, background 0.5s ease-in;
}

.portfolioitem a {
	opacity: 1;
}

.portfolioitem img {
	opacity: 1;
}

.portfolioitem:hover .overlay {
	opacity: 0.6;
}

.overlay {
	cursor: pointer;
	position: absolute;
	background: rgba(255, 255, 255, 1);
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	-o-transition:opacity .3s ease-out, background 0.5s ease-in;
	-ms-transition:opacity .3s ease-out, background 0.5s ease-in;
	-moz-transition:opacity .3s ease-out, background 0.5s ease-in;
	-webkit-transition:opacity .3s ease-out, background 0.5s ease-in;
	transition:opacity .3s ease-out, background 0.5s ease-in;
}

.overlay span {
	width: 100%;
	position: absolute;
	top: 50%;
	margin-top: -20px;
	opacity: 1;
	text-align: center;
	color: #9099A3;
	font-weight: 600;
	text-transform: uppercase;
}

#split {
	width: 80%;
	text-align: center;
	margin: 0 0 75px 0;
}

#hireme {
	width: 100%;
	text-align: center;
	margin: 75px 0 75px 0;
	clear: both ;
}

#hireme a {
	font-weight: 700;
	font-size: 13px;
	color: #949ba3;
	border: 2px solid #9FA7B0;
	border-radius: 60px;
	padding: 11px 19px 12px 19px;
	-o-transition:all .2s ease-out, background 0.5s ease-in;
	-ms-transition:all .2s ease-out, background 0.5s ease-in;
	-moz-transition:all .2s ease-out, background 0.5s ease-in;
	-webkit-transition:all .2s ease-out, background 0.5s ease-in;
	transition:all .2s ease-out, background 0.5s ease-in;
	text-shadow: 0 1px 0 #eee;
}

#hireme a:hover {
	border: 2px solid #c77000;
	color: #c77000;
}

#twoparts {
  float: right ;
  width: 50% ;
  text-align:center;
}

#onepart {
  float: right;
  width: 30%;
    text-align:center;
}


/*------ FOOTER ------*/

footer {
	width: 100%;
	text-align: center;
	margin: 40px 0 75px 0;
	font-size: 14px;
	font-weight: 600;
	text-shadow: 0 1px 0 #eee;
}


/*------ MEDIA QUERIES ------*/

@media only screen and (max-width: 1100px) {

  #container {
  	width: 90%;
  }

  #intro {
  	width: 80%;
  	padding: 0 10%;
  }

  #work a img {
	width: 100%;
  }  
        
}

@media only screen and (max-width: 480px) {

  header {
  	height: 140px;
  }

  a#logo {
	margin: 40px 0 0 -64px;
  }

  #leftlinks {
	float: left;
	margin: 45px 0 0 5%;
  }

  #rightlinks {
	float: right;
	margin: 45px 5% 0 0;
  }

  .overlay span {
  	width: 100%;
  	padding: 0 5%;
  }

  #work > :last-child {
	margin-bottom: 50px;
  }

  #hireme {
	margin: 0 0 60px 0;
  }
  
  footer {
	margin: 25px 0 35px 0;
  }

}

/* MailChimp Form Embed Code - Classic - 12/17/2015 v10.7 */
#mc_embed_signup{clear:both; text-align: center; width:35%; margin: auto; color: #5f5d58; font-family: 'Merriweather', serif;}
#mc_embed_signup form {display:block; position:relative;}
#mc_embed_signup h2 {padding:0; margin:15px 0; }
#mc_embed_signup input {border: 1px solid #ABB0B2; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;}
#mc_embed_signup input[type=checkbox]{-webkit-appearance:checkbox;}
#mc_embed_signup input[type=radio]{-webkit-appearance:radio;}
#mc_embed_signup input:focus {border-color:#333;}
#mc_embed_signup .button {clear:both; background-color: #aaa; border: 0 none; border-radius:4px; transition: all 0.23s ease-in-out 0s; color: #FFFFFF; cursor: pointer; display: inline-block; font-size:15px; font-weight: normal; height: 32px; line-height: 32px; margin: 0 5px 10px 0; padding: 0 22px; text-align: center; text-decoration: none; vertical-align: top; white-space: nowrap; width: auto;}
#mc_embed_signup .button:hover {background-color:#777;}
#mc_embed_signup .small-meta {font-size: 11px;}
#mc_embed_signup .nowrap {white-space:nowrap;}

#mc_embed_signup .mc-field-group {clear:left; position:relative; width:100%; padding-bottom:3%; min-height:50px; font-size:0.8em;}
#mc_embed_signup .size1of2 {clear:none; float:left; display:inline-block; width:46%; margin-right:4%;}
* html #mc_embed_signup .size1of2 {margin-right:2%; /* Fix for IE6 double margins. */}
#mc_embed_signup .mc-field-group label {display:block; margin-bottom:3px;}
#mc_embed_signup .mc-field-group input {display:block; width:100%; padding:8px 0; text-indent:2%;}
#mc_embed_signup .mc-field-group select {display:inline-block; width:99%; padding:5px 0; margin-bottom:2px;}

#mc_embed_signup .datefield, #mc_embed_signup .phonefield-us{padding:5px 0;}
#mc_embed_signup .datefield input, #mc_embed_signup .phonefield-us input{display:inline; width:60px; margin:0 2px; letter-spacing:1px; text-align:center; padding:5px 0 2px 0;}
#mc_embed_signup .phonefield-us .phonearea input, #mc_embed_signup .phonefield-us .phonedetail1 input{width:40px;}
#mc_embed_signup .datefield .monthfield input, #mc_embed_signup .datefield .dayfield input{width:30px;}
#mc_embed_signup .datefield label, #mc_embed_signup .phonefield-us label{display:none;}

#mc_embed_signup .indicates-required {text-align:right; font-size:11px; margin-right:4%;}
#mc_embed_signup .asterisk {color:#e85c41; font-size:150%; font-weight:normal; position:relative; top:5px;}     
#mc_embed_signup .clear {clear:both;}

#mc_embed_signup .mc-field-group.input-group ul {margin:0; padding:5px 0; list-style:none;}
#mc_embed_signup .mc-field-group.input-group ul li {display:block; padding:3px 0; margin:0;}
#mc_embed_signup .mc-field-group.input-group label {display:inline;}
#mc_embed_signup .mc-field-group.input-group input {display:inline; width:auto; border:none;}

#mc_embed_signup div#mce-responses {float:left; top:-1.4em; padding:0em .5em 0em .5em; overflow:hidden; width:90%; margin: 0 5%; clear: both;}
#mc_embed_signup div.response {margin:1em 0; padding:1em .5em .5em 0; font-weight:bold; float:left; top:-1.5em; z-index:1; width:80%;}
#mc_embed_signup #mce-error-response {display:none;}
#mc_embed_signup #mce-success-response {color:#529214; display:none;}
#mc_embed_signup label.error {display:block; float:none; width:auto; margin-left:1.05em; text-align:left; padding:.5em 0;}

#mc-embedded-subscribe {clear:both; width:auto; display:block; margin:1em 0 1em 5%;}
#mc_embed_signup #num-subscribers {font-size:1.1em;}
#mc_embed_signup #num-subscribers span {padding:.5em; border:1px solid #ccc; margin-right:.5em; font-weight:bold;}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {display:inline-block; margin:2px 0 1em 0; padding:5px 10px; background-color:rgba(255,255,255,0.85); -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; font-size:14px; font-weight:normal; z-index:1; color:#e85c41;}
#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {border:2px solid #e85c41;}

/*----------------------------------------------*/
/* 1.10 Forms */
/*----------------------------------------------*/
fieldset{
	padding:20px;
	border:1px solid #e0e0e0;}
form .row {
	padding:5px 0}
input[type=text],input[type=password],textarea{
	color:#666;
	padding:5px;
	border:1px solid #dad7d4;
	background:#fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	resize:none}
	
textarea{
	width:90%;
	font-size:12px;
	background:#fff;
	overflow:auto;}
	
input, textarea,input[type="submit"]:focus{
	outline:0 none;}
	
input[type="radio"],input[type="checkbox"]{
	margin-right:10px; margin-left:10px;}
	
button::-moz-focus-inner {
	border: 0;
	padding: 0;}
	
input[type="reset"],input[type="submit"],input[type="button"], button{
	border:none;
	color:#2f3850;
	margin:10px 0;
	outline-width:0;
	padding:3px 35px 15px 35px;
	height:49px;
	font-size:18px;
	line-height:19px;
	text-align:center}	
	
input[type="button"]:hover, input[type="button"]:focus,input[type="reset"]:hover,
input[type="reset"]:focus,input[type="submit"]:hover,input[type="submit"]:focus,
button:hover,button:focus{
	color:#653c17;
	cursor:pointer;}
	
/*----------------------------------------------*/
/* 6.4 Comment form */
/*----------------------------------------------*/
.comment-form {
	padding:15px 0;}

.comment-form .row {
	padding:7px 0}

.comment-form .row label {
	color:#777;
	font-size:13px;
	display:block;
	float:left;
	line-height:30px;
	width:70px;
	padding-right:5px;
	text-align:right;
	margin:5px 0}

.comment-form .inputtext, .comment-form .textarea {
	font-size:13px;
	font-family:Arial, Helvetica, sans-serif;
	color:#595959;
	line-height:20px;
	border:1px solid #dad7d4;
	background:#ffffff;
	width:305px;
	margin:5px 0}

.comment-form .inputtext:focus, .comment-form .textarea:focus {
	border:1px solid #bbbbbb}

.comment-form .inputtext {
	margin-right:20px;
	height:20px}

.comment-form .textarea {
	width:305px;
	height:130px;
	padding:5px;
	overflow:auto;}

.grid_10 .comment-form .textarea {
	width:380px}

.field-notice {
	display:block;
	padding:0 0 0 75px;
	color:#a2a2a2;
	font-size:12px}

.btn-submit, 
.contact-form .btn-submit,
.contact-form-footer .btn-submit, 
.comment-form .btn-submit {
	clear:both; background-color: #aaa; border: 0 none; border-radius:4px; transition: all 0.23s ease-in-out 0s; color: #FFFFFF; cursor: pointer; display: inline-block; font-size:15px; font-weight: normal; height: 32px; line-height: 32px; margin: 0 5px 10px 0; padding: 0 22px; text-align: center; text-decoration: none; vertical-align: top; white-space: nowrap; width: auto;}
		
.btn-submit:hover, 
.contact-form .btn-submit:hover,
.contact-form-footer .btn-submit:hover, 
.comment-form .btn-submit:hover {
	background-color:#777;
	color: #FFFFFF;
}

/*----------------------------------------------*/
/* 4.6 Contact Form  */
/*----------------------------------------------*/
.contact-form {
	margin:0;
	padding:20px 0 20px 0;
	
	font-size:13px}

.contact-form h2 {
	font-size:18px;
	color:#1a1a1a;
	font-family: 'HeroRegular', Arial, Helvetica, sans-serif;
	text-transform:uppercase}

.contact-form .row {
	padding:10px 0}

.contact-form .inputtext, .contact-form select, .contact-form textarea {
	color:#070707;
	background:#ececee;
	border:1px solid #dcdcdc;
	margin:5px 0;
	padding:7px 9px;
	font-size:13px;
	font-family:Arial, Helvetica, sans-serif}

.contact-form .field_text .inputtext {
	width:250px;
	margin-right:40px}

.contact-form .omega .inputtext {
	margin-right:0}
	
.contact-form .ui-selectmenu {
	margin-right:40px}

.contact-form .field_select .select_styled {
	width:270px;
	padding:0}

.contact-form .field_textarea textarea {
	width:560px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	margin-bottom:0;
	resize:none}

.contact-form label {
	font-size:13px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-style:italic}

.contact-form .reset-link {
	display:block;
	float:right;
	padding:10px 30px 0 0;
	font-size:13px;
	color:#4ad2f2}
	
.contact-form .reset-link a {
	color:#4ad2f2;
	text-decoration:none;}

.contact-form .reset-link a:hover {
	color:#000;}

.contact-form .field_submit {
	padding:0}

.contact-form .contact-submit, .contact-submit {
	
	width:217px;
	height:49px;
	font-weight:bold}

.map_address {
	font-size:14px;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#595959;
	font-style:italic}

/*----------------------------------------------*/
/* 4.6 Contact Form Footer */
/*----------------------------------------------*/
.contact-form-footer {
	padding:20px 0 0px 0;
	margin:0;
	color:#FFF}

.contact-form-footer h2 {
	display:block;
	float:left;
	background:url(images/icons/icon_mail.gif) 0 13px no-repeat;
	padding:10px 20px 0 40px;
	width:120px;
	height:150px;
	font-size:19px;
	color:#fff !important;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:normal;
	font-style:italic;}

.contact-form-footer .row {
	padding:7px 0}

.contact-form-footer .inputtext, 
.contact-form-footer select, 
.contact-form-footer textarea {	
	background:#f8f8f8;
	margin:5px 0;
	font-size:14px;
	font-family:sans-serif;
	border:1px solid #383d3e;
	border-bottom:1px solid #585f60;
	height:20px;
	padding:5px 10px;}

.contact-form-footer .inputtext:focus, 
.contact-form-footer select:focus, 
.contact-form-footer textarea:focus {
	background:#ffffff}

.contact-form-footer .field_text .inputtext {
	width:300px;}

.contact-form-footer .omega .inputtext {
	margin-right:0}
	
.contact-form-footer .field_textarea textarea {
	width:300px;
	height:200px;
	resize:none}

.contact-form-footer .reset-link {
	font-size:13px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-style:italic;
	color:#6f6f6f;
	border-bottom:1px dotted #6f6f6f}
	
.contact-form-footer .reset-link a {
	color:#7b7b7b;
	text-decoration:none;}

.contact-form-footer .reset-link a:hover {
	color:#999 !important;}

.contact-form-footer .btn-submit {
	margin-top:10px;
	margin-bottom:5px;}
	
	/*----------------------------------------------*/
/* 3.3 Styled Boxes */
/*----------------------------------------------*/
.sb {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin:10px 0 20px 0}

.sb_border {
	border:1px solid #dedede;}
	
.sb_shadow {
	box-shadow: 0 0 3px black; 
	-moz-box-shadow: 0 0 3px rgba(0,0,0,0.1); 
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.1);}

.sb .box_title {
	background:#efefef;
	padding:10px 30px;
	color:#121212;
	font-size:16px;
	font-weight:normal;
	font-family: 'HeroLight', Arial, Helvetica, sans-serif;
	background: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#e3e3e3));
	background: -moz-linear-gradient(top,  #f4f4f4,  #e3e3e3);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4', endColorstr='#e3e3e3');}

.sb.notitle .box_title {
	display:none}

.sb .box_content {
	padding:20px 30px;
	background:#fff;
	color:#63696c;
	margin:1px}

.sb_gray .box_title {
	background: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#e3e3e3));
	background: -moz-linear-gradient(top,  #f4f4f4,  #e3e3e3);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4', endColorstr='#e3e3e3');}

.sb_white .box_title {
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ececec));
	background: -moz-linear-gradient(top,  #ffffff,  #ececec);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ececec');}

.sb_brown.sb_border {
	border:1px solid #a15f26;}

.sb_brown .box_title {
	background: -webkit-gradient(linear, left top, left bottom, from(#ae6628), to(#7a481d));
	background: -moz-linear-gradient(top,  #ae6628,  #7a481d);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ae6628', endColorstr='#7a481d');
	color:#fff}

.sb_blue.sb_border {
	border:1px solid #1e507b;}

.sb_blue .box_title {
	background: -webkit-gradient(linear, left top, left bottom, from(#2d7cbe), to(#1e507b));
	background: -moz-linear-gradient(top,  #2d7cbe,  #1e507b);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#2d7cbe', endColorstr='#1e507b');
	color:#fff}

.sb_green_apple.sb_border {
	border:1px solid #6e771c;}

.sb_green_apple .box_title {
	background: -webkit-gradient(linear, left top, left bottom, from(#9aa725), to(#6e771c));
	background: -moz-linear-gradient(top,  #9aa725,  #6e771c);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#9aa725', endColorstr='#6e771c');
	color:#fff}
	
.sb_dark_gray.sb_border {
	border:1px solid #303030;}

.sb_dark_gray .box_title {
	background: -webkit-gradient(linear, left top, left bottom, from(#63696c), to(#303030));
	background: -moz-linear-gradient(top,  #63696c,  #303030);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#63696c', endColorstr='#303030');
	color:#fff}

.sb_purple.sb_border {
	border:1px solid #7d2461;}

.sb_purple .box_title {
	background: -webkit-gradient(linear, left top, left bottom, from(#aa2e84), to(#7d2461));
	background: -moz-linear-gradient(top,  #aa2e84,  #7d2461);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#aa2e84', endColorstr='#7d2461');
	color:#fff}

.sb_brown.sb_shadow,
.sb_blue.sb_shadow,
.sb_green_apple.sb_shadow,
.sb_dark_gray.sb_shadow,
.sb_purple.sb_shadow  {
	box-shadow: 0 0 3px black; 
	-moz-box-shadow: 0 0 3px rgba(0,0,0,0.3); 
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);}
	
/*-----------Ultimate Page Ends-------------------*/
.valid{border:1px solid #70A41B!important; }
.error { border:1px solid red!important; }.appname {
	color: #FFF;
	font-size: 36px;
}