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

	Theme Name: Deck
	Theme URI: https://styledthemes.com/free-themes/deck-wordpress-theme/
	Description: A uniquely crafted WordPress theme for creatives and individuals. Stay in the creative flow with this minimal, yet boldly beautiful theme.
	Author: Styled Themes
	Author URI: https://styledthemes.com/
	Version: 1.0.5
	Text Domain: deck
	Tags: two-columns, threaded-comments, microformats, translation-ready, theme-options, post-formats, custom-menu, featured-images, blog

	License: GNU General Public License version 3.0
	License URI: http://www.gnu.org/licenses/gpl-3.0.html
	
-------------------------------------------------------------------

 TABLE OF CONTENTS
	 
	0. RESET
	1. LAYOUT & STRUCTURE
	2. HEADER
	   - Logo
	   - Nav
	3. FRONT PAGE
	   - Hero
	   - Columns
	   - Portfolio
	   - Clients
	   - Blog
	   - eNews
	4. CONTENT
	   - Page
	   - Post
	   - Article
	   - Author Bio
	   - Comments
	   - Respond
	   - Pagination
	   - Post Formats
	   - Sidebar
	   - Widgets
	5. PAGE TEMPLATES
	   - Page
	   - Archives & Search
	   - 404
	   - Contact
	   - Portfolio Archive
	   - Portfolio Single
	6. FOOTER
	   - Links
	   - Copyright
	7. BROWSERS
	   - Firefox
   
------------------------------------------------ */



/*-------------------------------------
   0. 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, 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 { 
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	}
	
section, article, aside, 
footer, header, nav, hgroup {
  display:block;
	}

header.entry-header {
    overflow: hidden;
}

body {
	line-height: 1;
	}
	
ol, ul {
	list-style: none;
	}
	
blockquote, q { 
	quotes: none;
	}
	
blockquote:before,
blockquote:after,
q:before, q:after {
	content: '';
	content: none;
	}
	
:focus {
	outline: 0;
	}
	
ins { 
	text-decoration: none;
	}
	
del {
	text-decoration: line-through;
	}
	
table {
	border-collapse: collapse;
	border-spacing: 0;
	}

.screen-reader-text{
	
}

/*-------------------------------------
   1. LAYOUT & STRUCTURE
-------------------------------------*/

body {
	font-family: 'Merriweather', Georgia, serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	color: #303030;
	text-align: center;
	}

@-webkit-keyframes fadeDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-3px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-3px);
	}
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-ms-keyframes fadeDown {
	0% {
		opacity: 0;
		-ms-transform: translateY(-3px);
	}
	100% {
		opacity: 1;
		-ms-transform: translateY(0);
	}
}

@-o-keyframes fadeDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-3px);
	}
	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeDown {
	0% {
		opacity: 0;
		transform: translateY(-3px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeDown {
	-webkit-animation:fadeDown 250ms ease;
	   -moz-animation:fadeDown 250ms ease;
	    -ms-animation:fadeDown 250ms ease;
	     -o-animation:fadeDown 250ms ease;
	        animation:fadeDown 250ms ease;
}

		
a {
	color: #e9242e;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}
	
a:hover {
	border-bottom: 1px solid #e9242e;
	}
	
::selection { 
	background: #e9242e;
	color: #FFF;
	}
	
input, textarea, button {
	font-family: 'Merriweather', Georgia, serif;
	font-size: 15px;
	line-height: 23px;
	color: #303030;
	}

button {
	font-weight: 700;
	}

hr {
	height: 3px;
	display: block;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	border-left: none;
	border-right: none;
	margin-bottom: 55px;
	}

a.btn,
input[type="submit"],
button.btn,
.more-link {
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
	line-height: 16px;
	padding: 15px 30px;
	border: none;
	border-radius: 4px;
	background-color: #e9242e;
	display: inline-block;
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
	background-image: linear-gradient( rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15) );
	}

a.btn:hover,
input[type="submit"]:hover,
button.btn:hover,
.more-link:hover {
	cursor: pointer;
	border: none;
	background-image: linear-gradient( rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0) );
	}

.alignleft { float: left; }

.alignright { float: right; }

.aligncenter {
	margin-left: auto;
	margin-right: auto;
	display: block;
	clear: both;
	}

header, main, footer, aside, section,
.clearfix {
	*zoom: 1;
	}

header:before, main:before, footer:before, aside:before, section:before,
header:after, main:after, footer:after, aside:after, section:after,
.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
	line-height:0;
	}

header:after, main:after, footer:after, aside:after, section:after,
.clearfix:after {
	clear:both;
	}

.wrap {
	width: 980px;
	padding: 0 10px;
	margin: 0 auto;
	}

.full-width {
	width: 980px !important;
	}



/*-------------------------------------
   2. HEADER
-------------------------------------*/

#header {
	padding: 45px 0 30px 0;
	}


/* Logo */

#header .logo {
	float: left;
	}

/* Logo > Plain */
#header .logo a {
	font-size: 34px;
	font-weight: 900;
	letter-spacing: -1px;
	line-height: 34px;
	color: #000;
	display: block;
	margin-bottom: 20px;
	border-bottom: 2px solid transparent;
	}

#header .logo a:after {
	content: ".";
	color: #e9242e;
	}

#header .logo a:hover {
	border-bottom: 2px solid #e9242e;
	}

/* Logo > Custom */
#header .logo a.custom {
	font-size: 0;
	font-weight: normal;
	letter-spacing: normal;
	line-height: 0;
	display: block;
	border-bottom: none;
	margin-bottom: 20px;
	border-bottom: none;
	}

#header .logo a.custom:after {
	content: none;
	}

#header .logo a.custom:hover {
	border-bottom: none;
}


/* Navigation */

#header nav {
	float: right;
	padding-top: 8px;
	position: relative;
	}

#header #nav  {
	float: left;
	list-style: none;
	}

#header #nav li {
	float: left;
	margin-left: 30px;
	position: relative;
	}

#header #nav li:first-child {
	margin-left: 0;
	}

#header #nav li:hover {
	visibility: inherit;
	}

#header #nav li a {
	color: #000;
	font-size: 18px;
	font-weight: 700;
	line-height: 18px;
	display: block;
	border-bottom: 2px solid transparent;
	}

#header #nav li a:hover {
	border-bottom: 2px solid #e9242e;
	}

#header #nav li.current_page_item a, 
#header #nav li.current-menu-parent a,
#header #nav > li.current-menu-parent > a {
	color: #e9242e;
	font-weight: 900;
	}

#header #nav li.menu-item-has-children a,
#header #nav li.menu-item-has-children a:hover {
	border-bottom: none;
	margin-bottom: 12px;
	}


/* Navigation > Dropdown Menus */

#header #nav .sub-menu,
#header #nav .children {
	display: none;
	padding: 0;
	position: absolute;
	left: -10px;
	z-index: 99999;
	border: 1px solid #CCC;
	border-radius: 4px;
	background: #FFF;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.15);
	}

#header #nav li:hover > ul,
#header #nav ul li:hover > ul {
	display: inline-block;
	-webkit-animation: fadeDown 250ms ease;
	-moz-animation: fadeDown 250ms ease;
	-ms-animation: fadeDown 250ms ease;
	-o-animation: fadeDown 250ms ease;
	animation: fadeDown 250ms ease;
	}

#header #nav .sub-menu ul,
#header #nav .children ul {
	left: 99.75%;
	top: -1px;
	}

#header #nav ul li,
#header #nav ul ul li {
	margin-left: 0;
	border-top: 1px solid #DDD;
	}

#header #nav ul li:first-child,
#header #nav ul ul li:first-child {
	border-top: none;
	}

#header #nav ul a,
#header #nav ul ul a {
	font-size: 14px;
	line-height: 18px;
	text-align: left;
	padding: 10px;
	display: inline-block;
	min-width: 125px;
	border-bottom: none;
	margin-bottom: 0 !important;
	}

#header #nav ul a:hover,
#header #nav ul ul a:hover {
	color: #e9242e !important;
	border-bottom: none;
	}

#header #nav li.current_page_item ul a, 
#header #nav li.current-menu-parent ul a,
#header #nav li.current-menu-parent ul a {
	color: #000;
	font-weight: 700;
	}

#header #nav ul li.current-menu-item a {
	color: #e9242e !important;
	}


/* Header Meta */

#header-meta {
	background-color: #F3F3F3;
	padding: 50px 0 30px 0;
	margin-bottom: 70px;
	}

#header-meta h1 {
	color: #000;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 42px;
	margin-bottom: 20px;
	}

#header-meta h2 {
	font-size: 18px;
	font-weight: 400;
	line-height: 29px;
	width: 85%;
	margin: 0 auto 30px auto;
	}



/*-------------------------------------
   3. FRONT PAGE
-------------------------------------*/

/* Hero */

body.home #hero {
	background-image: -webkit-gradient(linear, left top, left bottom, from( rgba(0,0,0,.0) ), to( rgba(0,0,0,.06) ));
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,.0), rgba(0,0,0,.06));
	background-image:    -moz-linear-gradient(top, rgba(0,0,0,.0), rgba(0,0,0,.06));
	background-image:      -o-linear-gradient(top, rgba(0,0,0,.0), rgba(0,0,0,.06));
	background-image:         linear-gradient(to bottom, rgba(0,0,0,.0), rgba(0,0,0,.06));
	border-bottom: 1px solid #DDD;
	box-shadow: 0 4px 4px -4px rgba(0,0,0,.15);
	padding-bottom: 70px;
	margin-bottom: 65px;
	}

body.home #hero .poster {
	line-height: 0;
	margin-bottom: 45px;
	}
body.home #hero .poster img{
	width: 100%;
}
body.home #hero h1 {
	color: #000;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 46px;
	margin: 0 auto 18px auto;
	width: 80%;
	}

body.home #hero h1:after {
	content: ".";
	color: #e9242e;
	}

body.home #hero h2 {
	font-size: 19px;
	font-weight: 400;
	line-height: 30px;
	margin: 0 auto 35px auto;
	width: 80%;
	}


/* Columns */

body.home #columns {
	margin-bottom: 45px;
	}

body.home #columns .column  {
	width: 300px;
	float: left;
	margin-right: 40px;
	}

body.home #columns .last  {
	margin-right: 0;
	}

body.home #columns h2 {
	font-size: 22px;
	font-weight: 900;
	line-height: 32px;
	margin-bottom: 10px;
	}

body.home #columns p {
	margin-bottom: 10px;
	}

body.home #columns p a:hover {
	border-bottom: 2px solid #e9242e;
	}


/* Portfolio */

#portfolio {
	margin-bottom: 50px;
	}

#portfolio h1 {
	color: #000;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 42px;
	margin-bottom: 40px;
	}

#portfolio h1:after {
	content: ".";
	color: #e9242e;
	}

#portfolio .post {
	float: left;
	width: 300px;
	line-height: 0;
	margin-right: 40px;
	margin-bottom: 45px;
	}

#portfolio .last {
	margin-right: 0;
	}

#portfolio .post a {
	height: 300px;
	width: 300px;
	position: relative;
	display: block;
	z-index: 100;
	}

#portfolio .post a:hover {
	border-bottom: none;
	}

#portfolio .post img {
	z-index: 101;
	}

#portfolio .post a .overlay {
	height: 300px;
	width: 300px;
	position: absolute;
	top: 0;
	display: block;
	background: #e9242e;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 102;
	}

#portfolio .post a:hover .overlay {
	background: #e9242e;
	opacity: 0.6;
	}

#portfolio .post span {
	color: #FFF;
	font-size: 14px;
	line-height: 14px;
	padding: 10px 15px;
	background: #000;
	border-top-left-radius: 4px;
	position: absolute;
	bottom: 0;
	right: 0;
	display: block;
	z-index: 103;
	}

#portfolio h2 {
	font-size: 18px;
	font-weight: 400;
	line-height: 29px;
	margin: 0 auto 50px auto;
	width: 80%;
	}

#portfolio h2 a {
	color: #e9242e;
	font-weight: 700;
	}

#portfolio h2 a:hover {
	border-bottom: 2px solid #e9242e;
	}


/* Clients */

body.home #clients {
	background-color: #F3F3F3;
	padding: 60px 0;
	margin-bottom: 90px;
	}

body.home #clients h1 {
	color: #000;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 42px;
	margin-bottom: 50px;
	}

body.home #clients h1:after {
	content: ".";
	color: #e9242e;
	}


/* Blog */

#blog {
	margin-bottom: 55px;
	}

#blog h1 {
	color: #000;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 42px;
	margin-bottom: 20px;
	}

#blog h1:after {
	content: ".";
	color: #e9242e;
	}

#blog h2 {
	font-size: 18px;
	font-weight: 400;
	line-height: 29px;
	margin: 0 auto 55px auto;
	width: 100%;
	}

#blog h2 a:hover {
	border-bottom: 2px solid #e9242e;
	}

#blog .post {
	float: left;
	width: 300px;
	line-height: 0;
	margin-right: 40px;
	}

#blog .last {
	margin-right: 0;
	}

#blog .post i {
	color: #9F9f9f;
	font-size: 38px;
	line-height: 38px;
	display: block;
	margin-bottom: 20px;
	}

#blog .post h2 {
	font-size: 20px;
	font-weight: 900;
	line-height: 30px;
	margin-bottom: 12px;
	}

#blog .post h2 a {
	color: #000;
	font-weight: 900;
	}

#blog .post h2 a:hover,
#blog .post p a:hover {
	border-bottom: 2px solid #e9242e;
	}

#blog .post p {
	font-size: 15px;
	line-height: 23px;
	display: block;
	margin-bottom: 15px;
	}


/* eNews */

#enews {
	margin-bottom: 65px;
	}

#enews h1 {
	color: #000;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 42px;
	margin-bottom: 30px;
	}

#enews h1:after {
	content: ".";
	color: #e9242e;
	}

#enews h2 {
	font-size: 18px;
	font-weight: 400;
	line-height: 29px;
	margin: 0 auto 5px auto;
	width: 80%;
	}

#enews h2 a:hover {
	border-bottom: 2px solid #e9242e;
	}

#enews form {
	background: #F4F4F4;
	padding: 32px 35px;
	width: 910px;
	border-bottom: 1px solid #CCC;
	border-radius: 3px;
	height: 37px;
	margin-bottom: 35px;
	}

#enews form i {
	color: #9F9f9f;
	font-size: 32px;
	margin-right: 30px;
	float: left;
	}

#enews form label {
	font-size: 20px;
	font-weight: 900;
	line-height: 35px;
	margin-right: 30px;
	float: left;
	}

#enews form input[type="email"] {
	padding: 11px 20px;
	border: 1px solid #CCC;
	border-radius: 5px;
	box-shadow: inset 0 5px 5px -5px rgba(0,0,0,0.16);
	width: 445px;
	float: left;
	position: relative;
	top: -8px;
	}

#enews form input[type="email"]:focus {
	border: 1px solid #AAA;
	}

#enews form input[type="submit"] {
	float: right;
	position: relative;
	top: -8px;
	}



/*-------------------------------------
   4. CONTENT
-------------------------------------*/

#content {
	float: left;
	width: 640px;
	text-align: left;
	}

/* Page */

body.page #content .entry-header h1.entry-title {
	margin-bottom: 20px;
	}

body.page #content .entry-header {
	margin-bottom: 0;
	}


/* Post */

#content .post .entry-header h1.entry-title {
	margin-bottom: 15px;
	}


/* Article */

#content article {
	margin-bottom: 90px;
	}

#content article.sticky {
	background: #fffef5;
	border-bottom: 2px solid #f5f4e8;
	}

#content .entry-header {
	margin-bottom: 20px;
	}

/* Article > Header */

#content article .entry-header h1.entry-title {
	color: #000;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 42px;
	}

#content article .entry-header .entry-image {
	line-height: 0;
	display: block;
	margin-bottom: 25px;
	}

#content article .entry-header .entry-image,
#content article .entry-header .entry-image:hover {
	border-bottom: none !important;
	}

#content article .entry-header .entry-image a {
	display: block;
	border-bottom: none !important;
	}

#content article .entry-header .entry-image,
#content article .entry-header .entry-image a:hover {
	border-bottom: none !important;
	}

#content article .entry-header h2.entry-title {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0px;
	line-height: 34px;
	margin-bottom: 5px;
	}

#content article .entry-header h2.entry-title a {
	color: #000;
	}

#content article h2.entry-title a:hover {
	border-bottom: 2px solid #e9242e;
	}

body.single #content article .entry-header .entry-meta {
	margin-bottom: 15px;
	}


/* Article > Content */

#content article .entry-content a.more-link {
	font-size: 15px;
	font-weight: 700;
	line-height: 15px;
	padding: 14px 18px;
	}

#content article .entry-content p,
#content article .entry-content pre,
#content article .entry-content ul,
#content article .entry-content ol,
#content article .entry-content dl,
#content article .entry-content dd,
#content article .entry-content address,
#content article .entry-content table,
#content article .entry-content fieldset,
#content article .entry-content form {
	margin-bottom: 35px;
	}

#content article .entry-content ul li,
#content article .entry-content ol li {
	padding-left: 15px;
	list-style-position: inside;
	}

#content article .entry-content ul li {
	list-style-type: disc;
	}

#content article .entry-content ul ul li {
	list-style-type: circle;
	}

#content article .entry-content ul ul ul li {
	list-style-type: square;
	}

#content article .entry-content ol li {
	list-style-type: decimal;
	}

#content article .entry-content ol ol li {
	list-style-type: decimal-leading-zero;
	}

#content article .entry-content ol ol ol li {
	list-style-type: lower-roman;
	}

#content article .entry-content blockquote {
	font-style: italic;
	padding-left: 20px;
	margin-left: 10px;
	border-left: 3px solid #e93242;
	}

#content article .entry-content h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	margin-bottom: 25px;
	}

#content article .entry-content h1 { font-size: 26px; line-height: 28px; }
#content article .entry-content h2 { font-size: 21px; line-height: 24px; }
#content article .entry-content h3 { font-size: 17px; line-height: 23px; }
#content article .entry-content h4 { font-size: 15px; line-height: 20px; }
#content article .entry-content h5 { font-size: 12px; line-height: 18px; }
#content article .entry-content h6 { font-size: 10px; line-height: 16px; }

#content article .entry-content pre {
	font-weight: 700;
	background: #F4F4F4;
	border-radius: 4px;
	padding: 20px;
	max-width: 100%;
	overflow: scroll;
	}

#content article .entry-content table thead {
	font-weight: 700;
	background: #F4F4F4;
	margin-bottom: 8px;
	}

#content article .entry-content table th,
#content article .entry-content table tbody td {
	padding: 8px;
	}


/* Article > Content > WordPress Classes */

.alignnone {
    margin: 5px 20px 20px 0;
    max-width: 100%;
    width: auto;
    height: auto;	}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
    max-width: 100%;
    width: auto;
    height: auto;
	}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
    max-width: 100%;
    width: auto;
    height: auto;
	}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
    max-width: 100%;
    width: auto;
    height: auto;
	}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
    max-width: 100%;
    width: auto;
    height: auto;
	}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
	}

a img.alignnone {
    margin: 5px 20px 20px 0;
	}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
	}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
	}

.wp-caption {
    background: #F4F4F4;
    border: 1px solid #EFEFEF;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
	}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
	}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
	}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
	}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
	}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0 !important;
    padding: 0;
	}


/* Article > Content > WordPress Gallery */

.gallery {
	margin: 0 auto 18px;
	}

.gallery .gallery-item {
	float: left;
	margin-top: 0;
	text-align: center;
	width: 33%;
	}

.gallery-columns-2 .gallery-item {
	width: 50%;
	}

.gallery-columns-4 .gallery-item {
	width: 25%;
	}

.gallery img,
#gallery-1 img {
	border: 1px solid #EFEFEF !important;
	background: #F4F4F4; 
	padding: 8px;
	line-height: 0;
	}

.gallery img:hover {
	background: white;
	}

.gallery-columns-2 .attachment-medium {
	max-width: 92%;
	height: auto;
	}

.gallery-columns-4 .attachment-thumbnail {
	max-width: 84%;
	height: auto;
	}

.gallery .gallery-caption {
	color: #888;
	font-size: 12px;
	margin: 0 0 12px;
	}

.gallery dl,
.gallery dt {
	margin: 0;
	}

.gallery br+br {
	display: none;
	}


/* Entry Links */

#content .entry-links {
	margin-bottom: 35px;
	}

#content .entry-links a {
	background: #F4F4F4;
	padding: 5px 10px;
	margin: 0 5px;
	border-radius: 3px;
	border-bottom: none;
	}

#content .entry-links a:hover {
	color: #000;
	border-bottom: none;
	}


/* Author Bio */

#content .author-bio {
	margin-top: -8px;
	}

#content .author-bio .avatar {
	border-radius: 45px;
	margin: 2px 25px 50px 0;
	float: left;
	}

#content .author-bio .author-name {
	margin-bottom: 5px;
	}

#content .author-bio .author-description {
	margin-bottom: 40px;
	}


/* Comments */

#content #comments h3 {
	font-size: 21px;
	margin-bottom: 45px;
	}

#content #comments .comments-closed {
	margin-bottom: 50px;
	}

#content #comments .comment .bypostauthor {
	overflow: auto;
	}

#content #comments .comment article {
	margin-bottom: 50px;
	}

#content #comments .comment .avatar {
	border-radius: 45px;
	margin: 2px 25px 0 0;
	width: 90px;
	height: 90px;
	float: left;
	}

#content #comments .comment-author,
#content #comments .comment-content,
#content #comments .comment-reply {
	float: right;
	width: 525px;
	}

#content #comments .comment-author {
	margin-bottom: 5px;
	}

#content #comments .comment-author cite {
	font-style: normal;
	margin-right: 10px;
	}

#content #comments .comment-author time {
	font-style: italic;
	font-size: 14px;
	color: #777;
	}

#content #comments .comment-content p {
	margin-bottom: 10px;
	}

#content #comments .comment-reply {
	font-size: 13px;
	}

/* Threaded comments */
#content #comments ol .children {
	margin-left: 115px;
	}

#content #comments .children .avatar {
	border-radius: 37px;
	width: 75px;
	height: 75px;
	float: left;
	}

#content #comments .children .comment-author,
#content #comments .children .comment-content,
#content #comments .children .comment-reply {
	float: right;
	width: 425px;
	}

/* Reply form in comments */
#content #comments ol #respond {
	margin-left: 115px;
	}

#content #comments ol .children #respond {
	margin-left: 100px;
	}

#content #cancel-comment-reply-link {
	font-size: 14px;
	margin-left: 10px;
	}


/* Respond */

#content #respond {
	margin-bottom: 55px;
	}

#content #respond h3 {
	font-size: 21px;
	}

#content #respond p {
	margin-bottom: 25px;
	}

#content #respond label {
	position: relative;
	top: 10px;
	}

#content #respond label .required {
	color: red;
	font-size: 12px;
	}

#content #respond input[type="text"] {
	float: left;
	margin-right: 20px;
	font-size: 13px;
	line-height: 26px;
	padding: 5px 8px;
	border: 1px solid #CCC;
	border-radius: 4px;
	box-shadow: inset 0 5px 5px -5px rgba(0,0,0,0.16);
	width: 300px;
	}

#content #respond textarea {
	font-size: 13px;
	line-height: 26px;
	padding: 5px 8px;
	border: 1px solid #CCC;
	border-radius: 4px;
	box-shadow: inset 0 5px 5px -5px rgba(0,0,0,0.16);
	width: 390px;
	min-height: 125px; 
	}

#content #respond textarea:focus,
#content #respond input[type="text"]:focus {
	border: 1px solid #AAA;
	}


/* Pagination */

#content .pagination {
	margin-bottom: 50px;
	}

#content .pagination .prev {
	float: left;
	}

#content .pagination .next {
	float: right;
	}


/* Article > Post Format > Quote */

#content article.format-quote .entry-header {
	margin-bottom: 0;
	}

body.blog #content article.format-quote .entry-meta {
	text-align: center;
	margin-bottom: 15px;
	}

body.blog #content article.format-quote .entry-title {
	text-align: center;
	margin-bottom: 0 !important;
	}

#content article.format-quote .entry-title a:hover blockquote p {
	color: #e93242;
	}

#content article.format-quote .entry-title cite {
	font-size: 18px;
	letter-spacing: -1px;
	margin-top: 10px;
	display: block;
	}

#content article.format-quote .entry-header h2.entry-title {
	text-align: center;
	margin-bottom: 30px;
	}


/* Article > Post Format > Link */

#content article.format-link .entry-image {
	position: relative;
	}

#content article.format-link .entry-image a {
	border-bottom: none !important;
	}

#content article.format-link .entry-image a:hover {
	border-bottom: none !important;
	}

#content article.format-link .entry-image p {
	margin-bottom: 35px;
	}

#content article.format-link.post-thumb .entry-image p {
	display: block;
	position: absolute;
	top: 42%;
	width: 100%;
	text-align: center;
	margin-bottom: 0;
	border-bottom: none !important;
	}

#content article.format-link.post-thumb .entry-image p:hover {
	border-bottom: none !important;
	}

#content article.format-link .entry-image p a {
	color: #FFF;
	font-size: 24px;
	line-height: 24px;
	padding: 12px 15px;
	background: #e93242;
	border-radius: 4px;
	display: inline-block;
	border-bottom: none !important;
	}

#content article.format-link .entry-image p a:hover {
	color: #000;
	background: #FFF;
	border-bottom: none !important;
	}


/* Article > Post Format > Audio */

.mejs-time-loaded {
	background: #484848 !important;
	}

.mejs-time-current {
	background: #e93242 !important;
	}

/* eliminate the yellow border around the play button during playback */
.mejs-controls .mejs-button button:focus {
	outline: none !important;
	}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	background: #e93242 !important;
	}

.mejs-container .mejs-controls .mejs-time {
	padding-top: 9px !important;
	}

.mejs-container .mejs-controls .mejs-time span {
	color: #BBB !important;
	text-shadow: 1px 1px 0px rgba(0,0,0,.6);
	}

#content article.format-audio.post-thumb .mejs-container,
#content article.format-audio.post-thumb .mejs-controls {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	}


/* Article > Post Format > Gallery */

/* Flexslider */

.flexslider { 
	margin: 0 0 30px 0;
	padding: 0;
	position: relative;
	}

.flexslider .slides > li {
	display: none; 
	-webkit-backface-visibility: hidden;
	}

.flexslider .slides img {
	width: 100%; display: block;
	}

.flex-pauseplay span {
	text-transform: capitalize;
	}

.slides:after {
	content: "."; 
	display: block; 
	clear: both; 
	visibility: hidden; 
	line-height: 0; 
	height: 0;
	}

html[xmlns] .format-gallery .slides {
	display: block;
	}

* html .format-gallery .slides {
	height: 1%;
	}

.no-js .slides > li:first-child {
	display: block;
	}

.flex-control-paging {
	display: none;
	}

.flex-direction-nav {
	position: absolute;
	width: 640px;
	bottom: 54%;
	}

.flex-direction-nav a {
	color: #FFF;
	background-color: #000;
	display: block;
	padding: 10px 15px;
	position: absolute;
	border-bottom: 0;
	-webkit-transition: background-color .1s linear;
	-moz-transition: background-color .1s linear;
	-o-transition: background-color .1s linear;
	-ms-transition: background-color .1s linear;
	transition: background-color .1s linear;
	}

.flex-direction-nav a:hover {
	color: rgba(255,255,255,1);
	background-color: #e93242;
	border-bottom: 0;
	}

.flex-direction-nav .flex-prev {
	left: 0px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	}

.flex-direction-nav .flex-next {
	right: 0px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	}


/* Sidebar */

#sidebar {
	float: right;
	width: 300px;
	text-align: left;
	}

#sidebar-footer {
	background-color: #F3F3F3;
	padding: 60px 0 10px 0;
	margin-bottom: 60px;
	text-align: left;
	}


/* Widgets */

.widget {
	font-size: 14px;
	line-height: 23px;
	margin-bottom: 50px;
	width: 300px;
	float: left;
	}

#sidebar-footer .widget {
	margin-right: 40px;
	}

#sidebar-footer .widget:nth-child(3n) {
	margin-right: 0px;
	}

.widget-title {
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 10px;
	}


/* Recent Posts Widget */

.widget_recent_entries li {
	margin-bottom: 15px;
	}

.widget_recent_entries li span {
	font-size: 13px;
	display: block;
	}


/* Recent Comments Widget */

.widget_recent_comments li {
	margin-bottom: 15px;
	}


/* Search Form / Widget */

.search-form {
	background: #F4F4F4;
	padding: 12px;
	border-radius: 4px;
	max-width: 281px;
	}

.search-form .search-input {
	font-size: 13px;
	line-height: 26px;
	padding: 5px;
	border: 1px solid #CCC;
	border-radius: 4px;
	box-shadow: inset 0 5px 5px -5px rgba(0,0,0,0.16);
	width: 218px;
	}

.search-form .search-input:focus {
	border: 1px solid #AAA;
	}

.search-form .search-submit {
	font-size: 15px;
	line-height: 17px;
	padding: 10px 15px;
	margin-left: 7px;
	}


/* Calendar */

#calendar_wrap {
	border: 1px solid #DDD;
	border-radius: 4px;
	}

.widget_calendar #wp-calendar {
	width: 100%;
	}

.widget_calendar caption {
	font-size: 18px;
	font-style: italic;
	color: #777;
	background: #F4F4F4;
	padding: 5px 0 8px 0;
	margin-bottom: 10px;
	border-bottom: 1px solid #DDD;
	}

.widget_calendar th,
.widget_calendar td {
	text-align: center;
	}

.widget_calendar #today {
	background: #F4F4F4;
	border-radius: 4px;
	}

.widget_calendar #prev,
.widget_calendar #next {
	padding: 5px 0;
	}


/* RSS Widget */

.widget_rss ul li {
	margin-bottom: 15px;
	}

.widget_rss ul li span.rss-date {
	display: block;
	font-style: italic;
	color: #777;
	}


/* Text Widget */

.textwidget p {
	margin-bottom: 15px;
	}

.textwidget img {
	max-width: 100%;
	height: auto;
	}

.textwidget a img {
	border-bottom: none !important;
	}

.textwidget a:hover img {
	border-bottom: none !important;
	}

.textwidget form select,
.textwidget form input,
.textwidget form textarea {
	max-width: 97%;
	}


/* Text Widget */

.widget_nav_menu ul ul {
	margin-left: 20px;
	}


/* Recent Tweet Widget */

.deck_tweet_widget ul,
.deck_tweet_widget ul li {
	margin-bottom: 25px;
	}

.deck_tweet_widget .twitter-time-stamp {
	display: block;
	font-size: 13px;
	font-weight: 900;
	color: #000;
	border-bottom: none;
	margin-top: 8px;
	}

.deck_tweet_widget .twitter-time-stamp:hover {
	border-bottom: none;
	}


/* Recent Project Widget */

.deck_project_widget .post {
	float: left;
	width: 300px;
	line-height: 0;
	margin-bottom: 10px;
	}

.deck_project_widget .last {
	margin-right: 0;
	}

.deck_project_widget .post a {
	height: 300px;
	width: 300px;
	position: relative;
	display: block;
	z-index: 100;
	border-bottom: none;
	}

.deck_project_widget .post a:hover {
	border-bottom: none;
	}

.deck_project_widget .post img {
	z-index: 101;
	}

.deck_project_widget .post a .overlay {
	height: 300px;
	width: 300px;
	position: absolute;
	top: 0;
	display: block;
	background: #e9242e;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 102;
	}

.deck_project_widget .post a:hover .overlay {
	background: #e9242e;
	opacity: 0.6;
	}

.deck_project_widget .post span {
	color: #FFF;
	font-size: 14px;
	line-height: 14px;
	padding: 10px 15px;
	background: #000;
	border-top-left-radius: 4px;
	position: absolute;
	bottom: 0;
	right: 0;
	display: block;
	z-index: 103;
	}


/* Dribbble Widget */

.deck_dribbble_widget li {
	line-height: 0;
	margin-bottom: 15px;
	}

.deck_dribbble_widget li a {
	line-height: 0;
	border-bottom: none;
	display: block;
	}

.deck_dribbble_widget li a:hover {
	border-bottom: none;
	}

.deck_dribbble_widget a img {
	width: 300px;
	}

.deck_dribbble_widget p {
	padding-top: 10px;
	}


/* Instagram & Flickr Widgets */

.deck_instagram_widget ul,
.deck_flickr_widget ul {
	float: left;
	}

.deck_instagram_widget li,
.deck_flickr_widget li {
	line-height: 0;
	margin: 0 15px 15px 0;
	float: left;
	}

.deck_instagram_widget li a,
.deck_flickr_widget a {
	line-height: 0;
	border-bottom: none;
	display: block;
	}

.deck_instagram_widget li a:hover,
.deck_flickr_widget li a:hover {
	border-bottom: none;
	}

.deck_instagram_widget li img,
.deck_flickr_widget li img {
	width: 85px;
	height: 85px;
	}

.deck_instagram_widget p {
	padding-top: 10px;
	}


/* Social Links */

.deck_social_widget ul {
	float: left;
	}

.deck_social_widget li {
	float: left;
	line-height: 0;
	margin: 0 15px 15px 0;
	}

.deck_social_widget li:nth-child(5n) {
	margin-right: 0;
	}

.deck_social_widget a {
	float: left;
	padding: 15px;
	height: 17px;
	width: 17px;
	border-radius: 3px;
	border-bottom: none;
	background: #F4F4F4;
	color: #777;
	font-size: 18px;
	line-height: 18px;
	text-align: center;
	}

#sidebar-footer .deck_social_widget a {
	background: #FFF;
	}

.deck_social_widget a:hover,
#sidebar-footer .deck_social_widget a:hover {
	background: #e9242e;
	color: #FFF;
	border-bottom: none;
	}



/*-------------------------------------
   5. PAGE TEMPLATES
-------------------------------------*/

/* Page */

body.page #content article {
	margin-bottom: 60px;
	}

body.page .entry-image {
	line-height: 0;
	margin-bottom: 40px;
	}

body.page #content article .entry-content {
	padding-top: 10px;
	}

body.page #sidebar {
	margin-top: 10px;
	}


/* Archives & Search */

body.archive h2.archive-title,
body.search h2.archive-title {
	font-size: 24px;
	margin-bottom: 60px;
	}

body.archive #header-meta .avatar {
	border-radius: 37px;
	width: 75px;
	height: 75px;
	display: block;
	margin: 0 auto 20px auto;
	}


/* 404 */

body.error404 #content {
	text-align: center;
	}

body.error404 span.big {
	font-size: 125px;
	line-height: 125px;
	display: block;
	margin-bottom: 50px;
	}

body.error404 .search-form  {
	display: inline-block;
	margin: 20px 0 35px;
	}


/* Archive Page Template */

body.page-template-template-archives-php .archive-list h4 {
	margin-bottom: 15px;
	}

body.page-template-template-archives-php .archive-list ul {
	margin-bottom: 35px;
	}


/* Contact */

body.page-template-template-contact-php #contact-form li {
	margin-bottom: 10px;
	}

body.page-template-template-contact-php #contact-form label {
	font-size: 14px;
	font-weight: 700;
	display: block;
	}

body.page-template-template-contact-php #contact-form input[type="text"],
body.page-template-template-contact-php #contact-form textarea {
	font-size: 13px;
	line-height: 26px;
	padding: 5px 8px;
	border: 1px solid #CCC;
	border-radius: 4px;
	box-shadow: inset 0 5px 5px -5px rgba(0,0,0,0.16);
	width: 300px;
	}

body.page-template-template-contact-php #contact-form textarea {
	font-size: 13px;
	line-height: 26px;
	padding: 5px 8px;
	border: 1px solid #CCC;
	border-radius: 4px;
	box-shadow: inset 0 5px 5px -5px rgba(0,0,0,0.16);
	width: 400px;
	}

body.page-template-template-contact-php #contact-form .success,
body.page-template-template-contact-php #contact-form .check {
	color: #FFF;
	font-weight: 700;
	padding: 12px;
	display: inline-block;
	border-radius: 4px;
	}

body.page-template-template-contact-php #contact-form .success {
	background: #339933;
	}

body.page-template-template-contact-php #contact-form .check {
	background: #cb2020;
	margin-bottom: 30px;
	}

body.page-template-template-contact-php #contact-form i {
	padding-right: 5px;
	}


/* Portfolio Archive */

body.page-template-template-portfolio-sortable-php #header-meta {
	margin-bottom: 60px;
	}

body.page-template-template-portfolio-sortable-php .portfolio-filter {
	margin-bottom: 60px;
	text-align: center;
	}

body.page-template-template-portfolio-sortable-php .portfolio-filter ul,
body.page-template-template-portfolio-sortable-php .portfolio-filter li {
	display: inline-block;
	}

body.page-template-template-portfolio-sortable-php .portfolio-filter li {
	margin-left: 20px;
	}

body.page-template-template-portfolio-sortable-php .portfolio-filter li.filter-heading {
	font-weight: 700;
	margin-left: 0;
	}

body.page-template-template-portfolio-sortable-php .portfolio-filter li a {
	color: #000;
	}

body.page-template-template-portfolio-sortable-php .portfolio-filter li a.active {
	color: #e9242e;
	}

/* Isotope */

.isotope-item {
  z-index: 2;
  position: relative;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:      -o-transform, opacity;
          transition-property:         transform, opacity;
}

body.page-template-template-portfolio-sortable-php .portfolio-container {
	width: 105%;
	overflow: hidden;
	}

body.page-template-template-portfolio-sortable-php .post {
	width: 300px;
	margin-right: 40px;
	margin-bottom: 30px !important;
	text-align: center;
	}

body.page-template-template-portfolio-php .post,
body.archive-portfolio .post {
	width: 300px;
	margin-right: 40px;
	margin-bottom: 30px !important;
	float: left;
	text-align: center;
	}

body.page-template-template-portfolio-php .last,
body.archive-portfolio .last {
	margin-right: 0;
	}

body.page-template-template-portfolio-php .item,
body.page-template-template-portfolio-sortable-php .item,
body.archive-portfolio .item {
	margin-bottom: 22px;
	}

body.page-template-template-portfolio-php .item a,
body.page-template-template-portfolio-sortable-php .item a,
body.archive-portfolio .item a {
	height: 300px;
	width: 300px;
	position: relative;
	display: block;
	z-index: 100;
	border-bottom: none !important;
	}

body.page-template-template-portfolio-php .item a:hover,
body.page-template-template-portfolio-sortable-php .item a:hover,
body.archive-portfolio .item a:hover {
	border-bottom: none;
	}

body.page-template-template-portfolio-php .item img,
body.page-template-template-portfolio-sortable-php .item img,
body.archive-portfolio .item img {
	z-index: 101;
	}

body.page-template-template-portfolio-php .item a .overlay,
body.page-template-template-portfolio-sortable-php .item a .overlay,
body.archive-portfolio .item a .overlay {
	height: 300px;
	width: 300px;
	position: absolute;
	top: 0;
	display: block;
	background: #e9242e;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 102;
	}

body.page-template-template-portfolio-php .item a:hover .overlay,
body.page-template-template-portfolio-sortable-php .item a:hover .overlay,
body.archive-portfolio .item a:hover .overlay {
	background: #e9242e;
	opacity: 0.6;
	}

body.page-template-template-portfolio-php .item .view,
body.page-template-template-portfolio-sortable-php .item .view,
body.archive-portfolio .item .view {
	background: #000;
	color: #FFF;
	border-radius: 4px;
	padding: 5px 15px;
	display: block;
	position: absolute;
	top: 46%;
	left: 40%;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 103;
	}

body.page-template-template-portfolio-php .item a:hover .view,
body.page-template-template-portfolio-sortable-php .item a:hover .view,
body.archive-portfolio .item a:hover .view {
	opacity: 1;
	}

body.page-template-template-portfolio-php #content .entry-header,
body.page-template-template-portfolio-sortable-php  #content .entry-header,
body.archive-portfolio #content .entry-header {
	margin-bottom: 7px;
	}


/* Portfolio Single */

body.single-portfolio #content article {
	margin-bottom: 50px;
	}

body.single-portfolio .flexslider { 
	margin: 0;
	}

body.single-portfolio .flex-direction-nav {
	width: 980px;
	top: 46%;
	}

body.single-portfolio .flex-direction-nav a {
	line-height: 23px;
	}

body.single-portfolio .entry-image {
	margin-bottom: 45px;
	line-height: 0;
	}

body.single-portfolio .portfolio-meta {
	float: left;
	width: 300px;
	margin-right: 40px;
	}

body.single-portfolio .portfolio-meta p {
	font-weight: 900;
	margin-bottom: 25px;
	}

body.single-portfolio .portfolio-meta p span {
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	color: #777;
	display: block;
	margin-top: 2px;
	}

body.single-portfolio .portfolio-meta p a {
	display: inline-block;
	padding-top: 5px;
	}

body.single-portfolio .entry-content,
body.single-portfolio .entry-header {
	float: right;
	width: 640px;
	}

/* Portfolio Single > Other Projects */

body.single-portfolio #portfolio {
	background-color: #F3F3F3;
	padding: 60px 0;
	margin-bottom: 60px;
	}

body.single-portfolio #portfolio a {
	border-bottom: none !important;
	}

body.single-portfolio #portfolio a {
	border-bottom: none !important;
	}

body.single-portfolio #portfolio a:hover {
	border-bottom: none !important;
	}



/*-------------------------------------
   6. FOOTER
-------------------------------------*/


/* Links */

#footer nav {
	text-align: center;
	display: inline-block;
	margin-bottom: 15px;
	}

#footer nav ul {
	text-align: center;
	list-style: none;
	display: inline-block;
	}

#footer nav li {
	font-size: 15px;
	font-weight: 700;
	line-height: 15px;
	display: inline-block;
	margin-left: 30px;
	}

#footer nav li:first-child {
	margin-left: 0;
	}

#footer nav li a:hover {
	border-bottom: 2px solid #e93242;
	}


/* Copyright */

#footer .copyright {
	font-size: 13px;
	line-height: 27px;
	margin-bottom: 50px;
	}

#footer .copyright a {
	color: #000;
	font-weight: 700;
	}

#footer .copyright a:hover {
	border-bottom: 2px solid #e9242e;
	}



/*-------------------------------------
   7. BROWSERS
-------------------------------------*/

/* Firefox */

@-moz-document url-prefix() {

	hr {
		height: 5px;
		}

	.search-form .search-input {
		padding: 10px 5px;
		width: 200px;
		}

	#content article.format-quote .entry-title cite {
	    font-weight: 400;
		}

	.flex-direction-nav a {
	    padding: 10px 15px 15px;
		}

}

/*page left sidebar*/
main#content.page-with-right-sidebar {
    float: right;
}

#sidebar.page-left-sidebar {
    float: left;
    width: 300px;
    text-align: left;
}

/*blog left sidebar*/
#content.blog-with-left-sidebar {
    float: right;
    width: 640px;
    text-align: left;
}

#sidebar.sidebar-blog-left {
    float: left;
    width: 300px;
    text-align: left;
}

/*blog wide*/

#content.blog-with-no-sidebar {
    float: left;
    width: 100%;
    text-align: left;
}

.blog-with-no-sidebar .flex-direction-nav {
    position: absolute;
    width: 100%;
    bottom: 54%;
}

/*woocomerce styling*/
.woocommerce ul.products li.product .star-rating {
    font-size: .857em;
    display: inline-block;
}

/*contact form 7*/

.wpcf7-form label {
    font-size: 14px;
    font-weight: 700;
    display: block;
}

.wpcf7-form input[type="text"], .wpcf7-form input[type="email"],  .wpcf7-form textarea {
    font-size: 13px;
    line-height: 26px;
    padding: 5px 8px;
    border: 1px solid #CCC;
    border-radius: 4px;
    box-shadow: inset 0 5px 5px -5px rgba(0,0,0,0.16);
    width: 100%;
    box-sizing: border-box;
}

form.wpcf7-form p {
    margin-bottom: 0 !important;
}

input.wpcf7-text.wpcf7-email.wpcf7-validates-as-required.wpcf7-validates-as-email.deck-form-control {
    width: 100%;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 26px;
    padding: 5px 8px;
    border: 1px solid #CCC;
    border-radius: 4px;
    box-shadow: inset 0 5px 5px -5px rgba(0,0,0,0.16);
    width: 100%;
    box-sizing: border-box;
}