/*Theme Name: Core Precision
*/
/* =Notes
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:
$rembase:     14;
$line-height: 24;
---------- Examples
* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
padding: 5px 0;
padding: 0.357142857rem 0; (5 / $rembase)
* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
		line-height: 1.5; ($line-height / 16)
		
---------- Vertical spacing
Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:
.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading
http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/
=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%;
	vertical-align: baseline;
}

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;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

a:focus {
	outline: thin dotted;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}

audio,
canvas,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
}

del {
	color: #333;
}

ins {
	background: #fff9c0;
	text-decoration: none;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

small {
	font-size: smaller;
}

img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}


/* Clearing floats */

.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}

.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns-------------------------------------------------------------- */

/* Small headers */

.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}

/* Shared Post Format styling */

article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}


/* Form fields, general styles first */

button,
input,
textarea,
select {
	border: 1px solid #dfdfdf;
	border-radius: 3px;
	font-family: inherit;
	padding: 8px 10px;
	width: 240px;
	margin-bottom: 3px
}

button,
input {
	line-height: normal;
}

textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}


/* Reset non-text input types */

input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}


/* Buttons */

.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
.bypostauthor cite span {
	padding: 6px 10px;
	padding: 0.428571429rem 0.714285714rem;
	font-size: 15px;
	line-height: 1.428571429;
	font-weight: normal;
	color: #000;
	background-color: #e6e6e6;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}

.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}

button[disabled],
input[disabled] {
	cursor: default;
}

.menu-toggle:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #5e5e5e;
	background-color: #ebebeb;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: linear-gradient(top, #f9f9f9, #ebebeb);
}

.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	border-color: transparent;
}

.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}


/* Responsive images */

.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%;
	/* Fluid images for posts, comments, and widgets */
}

img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto;
	/* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto;
	/* Make sure images with WordPress-added height and width attributes are scaled correctly */
}


/* Make sure videos and embeds fit their containers */

embed,
iframe,
object,
video {
	max-width: 100%;
}

.entry-content .twitter-tweet-rendered {
	max-width: 100% !important;
	/* Override the Twitter embed fixed width */
}


/* Images */

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

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

.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
}

.wp-caption {
	max-width: 100%;
	/* Keep wide captions from overflowing their container. */
	padding: 4px;
}

.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}

img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.entry-content dl.gallery-item {
	margin: 0;
}

.gallery-item a,
.gallery-caption {
	width: 90%;
}

.gallery-item a {
	display: block;
}

.gallery-caption a {
	display: inline;
}

.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}

.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}

.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}


/* Navigation */

.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}

#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}

#nav-above {
	display: none;
}

.paged #nav-above {
	display: block;
}

.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}

.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}

.nav-single+.comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}


/* Author profiles */

.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}

.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}

.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}

.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure-------------------------------------------------------------- */


/* Body, links, basics */

html {
	font-size: 87.5%;
}

body {
	font-size: 14px;
	font-size: 1rem;
	font-family: Helvetica, Arial, sans-serif;
	text-rendering: optimizeLegibility;
	color: #000;
	min-width: 1080px;
	padding-top: 163px;
}

body.custom-font-enabled {
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

a {
	outline: none;
	color: #21759b;
}

a:hover {
	color: #0f3647;
}


/* Assistive text */

.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}

.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000;
	/* Above WP toolbar */
}


/* Page structure */

.site {
	padding: 0 24px;
	padding: 0 1.714285714rem;
	background-color: #fff;
}

.site-content {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}

.widget-area {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}


/* Header */

.site-header {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}

.site-header h1,
.site-header h2 {
	text-align: center;
}

.site-header h1 a,
.site-header h2 a {
	color: #515151;
	display: inline-block;
	text-decoration: none;
}

.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #21759b;
}

.site-header h1 {
	font-size: 24px;
	font-size: 1.714285714rem;
	line-height: 1.285714286;
	margin-bottom: 14px;
	margin-bottom: 1rem;
}

.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}

.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}


/* Navigation Menu */

.main-navigation {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	text-align: center;
}

.main-navigation li {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.42857143;
}

.main-navigation a {
	color: #5e5e5e;
}

.main-navigation a:hover {
	color: #21759b;
}

.main-navigation ul.nav-menu,
.main-navigation div.nav-menu>ul {
	display: none;
}

.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
	display: inline-block;
}


/* Banner */

section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}


/* Sidebar */

.widget-area .widget {
	/*-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;*/
	margin-bottom: 30px;
	word-wrap: break-word;
}

.widget-area .widget h3 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}

.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}

.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}

.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}

.widget-area .widget a {
	/*color: #757575;*/
	color: #000000;
}

.widget-area .widget a:hover {
	color: #21759b;
}

.widget-area .widget a:visited {
	/*color: #9f9f9f;*/
}

.widget-area #s {
	width: 53.66666666666%;
	/* define a width to avoid dropping a wider submit button */
}


/* Footer */

footer[role="contentinfo"] {
	border-top: 1px solid #ededed;
	clear: both;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	max-width: 960px;
	max-width: 68.571428571rem;
	margin-top: 24px;
	margin-top: 1.714285714rem;
	margin-left: auto;
	margin-right: auto;
	padding: 24px 0;
	padding: 1.714285714rem 0;
}

footer[role="contentinfo"] a {
	color: #686868;
}

footer[role="contentinfo"] a:hover {
	color: #21759b;
}


/* =Main content and comment content-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}

.entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

.entry-header .entry-title {
	font-size: 20px;
	font-size: 1.428571429rem;
	line-height: 1.2;
	font-weight: normal;
}

.entry-header .entry-title a {
	text-decoration: none;
}

.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}

.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}

.comments-link a,
.entry-meta a {
	color: #757575;
}

.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}

article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}

.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
}

.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
}

.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.5;
}

.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 18px;
	font-size: 1.285714286rem;
	line-height: 1.6;
}

.entry-content h3,
.comment-content h3 {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.846153846;
}

.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}

.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}

.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}

.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}

.entry-content a:visited,
.comment-content a:visited {
	/*color: #9f9f9f;*/
	color: #000;
	text-decoration: none;
}

.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}

.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}

.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}

.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}

.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 36px;
	margin: 0 0 0 2.571428571rem;
}

.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}

.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}

.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}

.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 24px;
	padding: 1.714285714rem;
}

.entry-content pre code,
.comment-content pre code {
	display: block;
}

.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}

img.alignleft,
.wp-caption.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}

img.alignright,
.wp-caption.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}

img.alignleft2,
.wp-caption.alignleft2 {
	margin: 0px 24px 12px 0;
	float: left;
}

img.alignright2,
.wp-caption.alignright2 {
	margin: 0px 0 12px 24px;
	float: right;
}

img.aligncenter2,
.wp-caption.aligncenter2 {
	clear: both;
	margin-top: 12px;
	margin-top: 0.857142857rem;
	/*margin-bottom: 12px;



    margin-bottom: 0.857142857rem;*/
	margin-left: 12px;
	margin-right: 12px;
}

img.aligncenter,
.wp-caption.aligncenter {
	clear: both;
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}

.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}

.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}

.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

.entry-content table,
.comment-content table {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}

.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}

.entry-content td,
.comment-content td {}

.site-content article {
	/*border-bottom: 4px double #ededed;
	margin-bottom: 72px;
	margin-bottom: 5.142857143rem;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;*/
	word-wrap: break-word;
	/*-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;*/
}

.page-links {
	clear: both;
	line-height: 1.714285714;
}

footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}

.single-author .entry-meta .by-author {
	display: none;
}

.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}

.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}


/* =Single image attachment view-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}

.image-attachment div.attachment {
	text-align: center;
}

.image-attachment div.attachment p {
	text-align: center;
}

.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}

.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}

article.format-aside h1 a:hover {
	color: #2e3542;
}

article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}

article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}

article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats-------------------------------------------------------------- */


/* Image posts */

article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}

article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

article.format-image footer a h2 {
	font-weight: normal;
}


/* Link posts */

article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}

article.format-link .entry-content {
	max-width: 80%;
	float: left;
}

article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}


/* Quote posts */

article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}

article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}


/* Status posts */

.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

.format-status .entry-header header {
	display: inline-block;
}

.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}

.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}

.format-status .entry-header header a {
	color: #757575;
}

.format-status .entry-header header a:hover {
	color: #21759b;
}

.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}

.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}

.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}

.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}

.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}

.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}

.comments-area cite b {
	font-weight: normal;
}

.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}

.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}

.comments-area article header a:hover {
	color: #21759b;
}

.comments-area article header cite a {
	color: #444;
}

.comments-area article header cite a:hover {
	text-decoration: underline;
}

.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}

.comments-area .bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}

.comments-area .bypostauthor cite b {
	font-weight: bold;
}

a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}

a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}

.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}


/* Comment form */

#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}

#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}

#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}

#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}

#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}

#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

#respond form label {
	display: block;
	line-height: 1.714285714;
}

#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}

#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}

.required {
	color: red;
}


/* =Front page template-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}

.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}

.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}

.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}

.template-front-page .widget-area .widget li a {
	color: #757575;
}

.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}

.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}

.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}

.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}

#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}

#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}

#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}

.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}

.widget_twitter li {
	list-style-type: none;
}

.widget_twitter .timesince {
	display: block;
	text-align: right;
}


/* =Plugins----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}


/* =Media queries-------------------------------------------------------------- */


/* Does the same thing as <meta name="viewport" content="width=device-width">,
 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
 * the meta tag. See http://core.trac.wordpress.org/ticket/25888.
 */

@-ms-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}


/* Minimum width of 600 pixels. */

@media screen and (min-width: 10px) {
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site {
		margin: 0 auto;
		max-width: 1000px;
		overflow: hidden;
		-webkit-border-radius: 7px;
		-moz-border-radius: 7px;
		border-radius: 7px;
		position: relative;
		z-index: 99;
	}
	.site-content {
		float: left;
		width: 69%;
	}
	body.template-front-page .site-content,
	body.attachment .site-content,
	body.full-width .site-content {
		width: 100%;
	}
	.widget-area {
		float: right;
		width: 29.041666667%;
	}
	.site-header h1,
	.site-header h2 {
		text-align: left;
	}
	.site-header h1 {
		font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.846153846;
		margin-bottom: 0;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu>ul {
		display: inline-block !important;
		text-align: left;
		width: 100%;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
	}
	.main-navigation li a {
		border-bottom: 0;
		color: #fff;
		line-height: 55px;
		height: 60px;
		white-space: nowrap;
		font-weight: bold;
		font-size: 15px;
		padding: 0 20px;
	}
	.main-navigation li a:hover {
		background: url(/wp-content/uploads/menu-active.png) repeat-x left 15%;
		color: #fff
	}
	.main-navigation li {
		margin: -2px 0px 0 0;
		position: relative;
		margin-left: -5px
	}
	.main-navigation li ul {
		display: none;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 1;
		background: #6A0D0F
	}
	.main-navigation li ul ul {
		top: 0;
		left: 100%;
	}
	.main-navigation ul li:hover>ul {
		border-left: 0;
		display: block;
		width: 438px;
		padding: 10px;
		-webkit-border-bottom-right-radius: 7px;
		-webkit-border-bottom-left-radius: 7px;
		-moz-border-radius-bottomright: 7px;
		-moz-border-radius-bottomleft: 7px;
		border-bottom-right-radius: 7px;
		border-bottom-left-radius: 7px;
		margin-top: -10px;
		border: 1px solid #000;
		border-top: none;
		z-index: 999
	}
	.main-navigation li ul li a {
		display: block;
		font-size: 15px;
		line-height: 30px;
		padding: 6px 0 6px 20px;
		width: 200px;
		white-space: normal;
		font-weight: normal;
		height: auto
	}
	.main-navigation li ul li a:hover {
		background: none;
		color: #EA1A1A
	}
	.main-navigation .current-menu-item>a,
	.main-navigation .current-menu-ancestor>a,
	.main-navigation .current_page_item>a,
	.main-navigation .current_page_ancestor>a {
		/*color: #636363;
		font-weight: bold;*/
		background: url(/wp-content/uploads/menu-active.png) repeat-x left 15%;
	}
	.main-navigation li ul li.current_page_item a {
		color: #fff
	}
	.menu-toggle {
		display: none;
	}
	.entry-header .entry-title,
	.entry-title {
		font-size: 34px !important;
		color: #b20a0a;
		text-transform: uppercase
	}
	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets+.front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}
}


/* Minimum width of 960 pixels. */

@media screen and (min-width: 960px) {
	body {
		background: url(images/bg.png) repeat-x #908e8f;
		/* background: url(/wp-content/uploads/2017/03/landscape-design-services-2.jpg) repeat #908e8f; */
	}
	body .site {
		padding: 0 20px;
		box-shadow: 0 0px 30px rgba(0, 0, 0, 0.5);
	}
	body.custom-background-empty {
		background-color: #908e8f;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
}


/* =Print----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] ";
		/* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}
	.singular .entry-header .entry-meta {
		position: static;
	}
	.singular .site-content,
	.singular .entry-header,
	.singular .entry-content,
	.singular footer.entry-meta,
	.singular .comments-title {
		margin: 0;
		width: 100%;
	}
	.entry-header .entry-title,
	.entry-title,
	.singular .entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}
	/* Comments */
	.commentlist>li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}

.head-wrap {
	background: url(/wp-content/uploads/landscape-design-head-bg.png) repeat-x;
	/*height:147px;*/
	width: 100%;
	min-width: 1080px;
	float: left;
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #000;
	position: fixed;
	z-index: 2000;
	top: 0;
}

.head {
	width: 1040px;
	margin: 0 auto;
}

.head-left {
	width: 375px;
	float: left
}

.head-right {
	width: 625px;
	float: right
}

ul#menu-left {
	list-style: disc !important;
	margin-top: 10px;
}

ul#menu-left li {
	display: inline;
}

ul#menu-left li a {
	text-decoration: none;
	color: #3f3f3f;
	font-weight: bold;
	font-size: 15px;
	padding: 10px 5px 0 0
}

.menu-main-container {
	background: url(/wp-content/uploads/hardscape-design-contractor-menu-bg.png) no-repeat;
	height: 58px;
	width: 658px;
	margin-left: -35px
}

.phone-wrap {
	background: url(images/phone-icon.png) no-repeat left center;
	padding-left: 30px;
	float: right
}

span.callus {
	color: #6c6c6c;
	font-size: 20px;
	font-weight: bold;
}

span.num {
	font-size: 30px;
	font-weight: bold;
	color: #a2050a;
}

.text-gradient {}

#menu-item-10678 {
	margin-left: 1px
}

#menu-item-10678 a {
	-webkit-border-top-left-radius: 7px;
	-webkit-border-bottom-left-radius: 7px;
	-moz-border-radius-topleft: 7px;
	-moz-border-radius-bottomleft: 7px;
	border-top-left-radius: 7px;
	border-bottom-left-radius: 7px
}

#menu-item-10680 {
	-webkit-border-top-right-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-radius-topright: 7px;
	-moz-border-radius-bottomright: 7px;
	border-top-right-radius: 7px;
	border-bottom-right-radius: 7px;
}

#menu-item-10680 a {
	-webkit-border-top-right-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-radius-topright: 7px;
	-moz-border-radius-bottomright: 7px;
	border-top-right-radius: 7px;
	border-bottom-right-radius: 7px;
	padding: 0 25px
}

.foot-wrap {
	width: 100%;
	min-width: 1000px;
	background: url(images/foot-bg.png) repeat-x #221f1f;
	min-height: 354px;
	border-bottom: 1px solid #393636;
	float: left;
	padding-top: 45px
}

.copyright-wrap {
	background: url(images/copy-bg.png) repeat-x #191616;
	width: 100%;
	min-width: 1000px;
	min-height: 90px;
	float: left;
	text-align: center;
	color: #908e8f;
	font-size: 15px;
	padding-top: 45px;
	padding-bottom: 45px;
}

.copyright-wrap a {
	text-decoration: none;
	color: #908e8f;
}

.wrap {
	width: 1000px;
	margin: 0 auto;
	min-width: 1000px;
}

.col1,
.col2,
.col3,
.col4 {
	float: left
}

.col1 {
	width: 225px;
}

.col2 {
	width: 285px;
}

.col3 {
	width: 190px;
	margin-right: 70px;
}

.col4 {
	width: 230px;
}

.foot-wrap .widget-title {
	color: #fff;
	font-size: 20px;
	font-weight: normal;
	text-transform: none;
	margin-bottom: 15px
}

.foot-wrap li a {
	color: #908e8f;
	text-decoration: none;
	font-size: 15px;
	line-height: 25px
}

.foot-wrap .textwidget {
	font-size: 15px;
	line-height: 25px;
	color: #908e8f;
}

.social img {
	margin-right: 5px;
	margin-bottom: 5px
}

.sub-title {
	color: #b20a0a;
	font-size: 20px !important;
	font-weight: bold;
	margin-top: -10px !important;
}

.entry-title {
	margin: 0 !important
}

.opt-wrap {
	background: url(/wp-content/uploads/landscape-construction-company-opt-bg.png) no-repeat #7f0404;
	min-height: 540px;
	border: 1px solid #7f0404;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	/*border-bottom:7px solid #7f0404;*/
	padding: 15px;
}

#secondary .textwidget {
	box-shadow: 0 0px 17px rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	text-align: center;
}

.opt-des {
	color: #fff;
	font-size: 15px !important;
	line-height: 20px !important;
	font-family: arial;
	margin-bottom: 5px !important
}

.wpcf7-form p {
	margin-bottom: 2px !important
}

select {
	width: 262px
}

.subbtn {
	background-color: none !important;
	background: url(/wp-content/uploads/landscape-design-get-started.png) no-repeat !important;
	width: 100% !important;
	height: 58px !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: none !important;
	color: transparent !important;
	background-size: contain !important;
}

.wid-title {
	color: #000;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
}

.testi {
	border-top: 1px solid #bdbdbd;
	border-bottom: 1px solid #bdbdbd
}

.testimonial_body p {
	font-style: italic;
	font-size: 15px !important;
	line-height: 18px !important;
	color: #000;
}

.testimonial_author {
	font-style: italic;
	font-size: 15px !important;
	line-height: 18px !important;
	color: #000;
	font-weight: bold
}

blockquote.easy_testimonial {
	padding: 0 20px !important;
	margin: 0 !important;
	margin-bottom: 20px !important
}

.cycle-slideshow {
	/*margin-top:-10px;*/
}

#text-5 .textwidget {
	border: 1px solid #bfbfbf;
	border-bottom: 4px solid #dbdbdb;
	padding: 5px 0
}

.bottom-wrap {
	-webkit-border-bottom-right-radius: 7px;
	-webkit-border-bottom-left-radius: 7px;
	-moz-border-radius-bottomright: 7px;
	-moz-border-radius-bottomleft: 7px;
	border-bottom-right-radius: 7px;
	border-bottom-left-radius: 7px;
	/*background:#780505;*/
	background: #221f1f;
	width: 1000px;
	margin: 0 auto;
	padding: 35px 20px 20px;
	position: relative;
	margin-top: -5px;
	margin-bottom: 50px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.6)
}

.foot-top img {
	margin: 0 15px 0 0
}

.body-wrap {
	/*background: url(images/cont-bg.png) repeat-x #908e8f;*/
	width: 100%;
	min-width: 1040px;
	padding-top: 45px
}

.st_sharethis_custom {
	background: url(images/share.png) no-repeat;
	padding: 0 6px 27px 0 !important;
	color: transparent !important;
	position: relative !important;
	top: -37px !important;
	margin-left: -1px
}


/****** RESOURCE PAGE ****/

.resource-page .postentry {
	border-bottom: none !important;
	border-top: 1px solid #eee;
}

.resource-page .post-list .postentry:first-child {
	border-top: none !important;
}

.categorylist {
	margin-bottom: 20px;
}

.categorylist ul {
	display: inline-block;
	margin: 0;
	margin-left: 5px;
	width: 100%;
}

.categorylist li {
	list-style: none;
	padding-left: 20px;
	-webkit-transition-property: background-color color;
	-webkit-transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-moz-transition-property: background-color color;
	-moz-transition-duration: .3s;
	-moz-transition-timing-function: ease;
	-o-transition-property: background-color color;
	-o-transition-duration: .3s;
	-o-transition-timing-function: ease;
	-ms-transition-property: background-color color;
	-ms-transition-duration: .3s;
	-ms-transition-timing-function: ease;
	transition-property: background-color color;
	transition-duration: .3s;
	transition-timing-function: ease;
	width: 26%;
	line-height: 27px;
	float: left;
	margin-left: 15px;
	border-bottom: 1px dotted #ddd;
	margin-right: 0;
}

.categorylist li a {
	color: #B10909;
	font-size: 15px;
	font-weight: bold;
	display: block;
	-webkit-transition-property: background color;
	-webkit-transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-moz-transition-property: background color;
	-moz-transition-duration: .3s;
	-moz-transition-timing-function: ease;
	-o-transition-property: background color;
	-o-transition-duration: .3s;
	-o-transition-timing-function: ease;
	-ms-transition-property: background color;
	-ms-transition-duration: .3s;
	-ms-transition-timing-function: ease;
	transition-property: background color;
	transition-duration: .3s;
	transition-timing-function: ease;
	text-decoration: none;
}

.categorylist li a:hover,
.categorylist li.current-menu-item a {
	color: #363437;
	text-shadow: 1px 1px #fff;
}

.categorylist li:hover,
.categorylist li.current-menu-item {
	background-color: #F5E0C5;
}

.date-posted {
	display: inline-block;
	width: 45px;
	padding: 8px 5px;
	line-height: 18px;
	text-align: center;
	font-size: 15px;
	text-transform: uppercase;
	background: #F5E0C5;
	color: #444;
	font-weight: bold;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border: 1px solid #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, .2);
	margin-right: 25px;
	margin-bottom: 15px;
	text-shadow: -1px 1px #f9f9f9;
	float: left;
}

.post-entry-summary a {
	color: #B10909;
	-webkit-transition-property: color;
	-webkit-transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-moz-transition-property: color;
	-moz-transition-duration: .3s;
	-moz-transition-timing-function: ease;
	-o-transition-property: color;
	-o-transition-duration: .3s;
	-o-transition-timing-function: ease;
	-ms-transition-property: color;
	-ms-transition-duration: .3s;
	-ms-transition-timing-function: ease;
	transition-property: color;
	transition-duration: .3s;
	transition-timing-function: ease;
	text-decoration: none;
}

.more-link {
	font-size: 14px;
	font-weight: bold;
	color: #7C6493!important;
}

.post-entry-summary .more-link:hover {
	color: #7C6493!important;
}

.post-entry-summary a:hover {
	color: #363437!important;
}

.post-entry-title {
	float: left;
	clear: none;
	font-size: 24px;
	margin-top: 10px;
	width: 600px;
}

.post-entry-summary {
	float: left;
}

.post-entry-thumb {
	float: right;
	margin-left: 8px;
	margin-bottom: 20px;
	margin-top: 3px;
}

.meta {
	margin: 0 0 20px 0;
	font-size: 11px;
}

.singlepost .post-entry-thumb img {
	max-width: 250px !important;
}

.post-entry-thumb img {
	max-width: 150px;
	-webkit-transition-property: box-shadow;
	-webkit-transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-moz-transition-property: box-shadow;
	-moz-transition-duration: .3s;
	-moz-transition-timing-function: ease;
	-o-transition-property: box-shadow;
	-o-transition-duration: .3s;
	-o-transition-timing-function: ease;
	-ms-transition-property: box-shadow;
	-ms-transition-duration: .3s;
	-ms-transition-timing-function: ease;
	transition-property: box-shadow;
	transition-duration: .3s;
	transition-timing-function: ease;
	border: 1px solid #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.post-entry-thumb img:hover {
	box-shadow: 0 0 10px rgba(150, 221, 38, .7);
	-webkit-box-shadow: 0 0 10px rgba(150, 221, 38, .7);
	-moz-box-shadow: 0 0 10px rgba(150, 221, 38, .7);
}

.post-entry-desc p {
	font-size: 14px;
	line-height: 20px;
}

.post-entry-desc {
	clear: left;
	margin: 0 0 20px 0;
}

.postentry {
	border-bottom: 1px solid #eee;
	padding-top: 23px;
	float: left;
}


/*********** END RESOURCE PAGE *********/

#menu-left li {
	background: url(images/bullet.png) no-repeat left center;
	padding-left: 10px;
}

#menu-item-13 {
	background: none !important;
	padding-left: 0 !important
}

.entry-content h1.headpage {
	font-size: 36px;
	font-weight: bold;
	text-transform: none;
	line-height: 40px;
	margin: 0px 0 20px
}

.sub-title1 {
	font-size: 32px !important;
	color: #FFDC73;
	font-weight: normal !important
}

.af-content span.wpcf7-checkbox {
	width: 600px
}

.af-content span#message {
	width: 100%
}

span.wpcf7-checkbox span.wpcf7-list-item {
	float: left;
	width: 140px;
}

.af-content {
	font-size: 14px;
	color: #555;
	line-height: 25px;
	padding: 0 30px 30px;
	background: #f5f5f5;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: 1px solid #ACA8A5;
}

.af-content span strong {
	color: rgb(236, 18, 18);
	font-size: 15px;
}

.af-content span {
	display: inline-block;
	width: 250px;
	font-weight: bold;
	font-size: 13px;
	float: left;
}

.af-content span .wpcf7-list-item-label {
	display: inline-block;
	width: auto;
	font-weight: bold;
	font-size: 13px;
	float: none;
}

.af-fields {
	margin-bottom: 10px;
	float: left;
	display: block;
	clear: both;
	width: 100%;
	font: 13px/20px Arial, Helvetica, sans-serif;
}

.af-content select {
	padding: 10px !Important;
	width: 285px !important;
	border: 1px solid #ddd !important;
}

.af-content textarea {
	width: 605px !Important;
	border: 1px solid #ddd !important;
	padding: 10px !Important;
}

.af-content input[type="checkbox"] {
	width: auto !important
}

#wpcf7-f186-p24-o1 div.wpcf7-validation-errors,
div.wpcf7-validation-errors {
	color: red !important
}

#wpcf7-f186-p24-o1 div.wpcf7-mail-sent-ok,
div.wpcf7-mail-sent-ok {
	color: green !important
}

.call-to-action {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	/* border-bottom: 8px solid #7F0404; */
	background: #d10f0a;
	color: #fff;
	padding: 0 25px;
	box-shadow: 0 0px 17px rgba(0, 0, 0, 0.8);
}

.entry-content .testimonial_body p {
	margin-bottom: 20px !important;
	font-size: 18px !important;
	line-height: 24px !important;
}

.entry-content p.testimonial_author {
	font-size: 18px !important;
	line-height: 24px !important;
}

.entry-content blockquote.easy_testimonial {
	padding: 20px !important;
	border: 1px solid #ddd;
	border-bottom: 5px solid #7F0404;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}

.pagination {
	font-size: 18px;
	text-align: center
}

.flexslider ul.slides li {
	width: 100%;
	height: 592px;
	position: relative;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	-moz-background-size: cover;
}

.flexslider .slides img {
	width: auto;
	position: absolute;
	bottom: 30px;
}

.flexslider .slides div {
	width: 1080px;
	margin: 0 auto;
	min-width: 1080px;
}

.flexslider {
	margin: 0 0 0px;
	position: relative;
	zoom: 1;
	/* border-bottom: 5px solid #000; */
	box-shadow: 0px 0px 120px 0px #fff;
}

span.wpcf7-not-valid-tip {
	display: none
}

.wpcf7-not-valid {
	border: 2px solid red
}

.entry-content p,
.entry-content li {
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
}

#jquery-overlay,
#jquery-lightbox {
	min-width: 1080px !important;
	margin-left: auto;
	margin-right: auto
}

.ngg-navigation a.next {
	background: url(images/next.jpg) no-repeat center !important;
	color: transparent !important
}

.ngg-navigation a.next:hover {
	background: url(images/next-hover.jpg) no-repeat center #0066cc !important;
	color: transparent !important
}

.ngg-navigation a.prev {
	background: url(images/prev.jpg) no-repeat center !important;
	color: transparent !important
}

.ngg-navigation a.prev:hover {
	background: url(images/prev-hover.jpg) no-repeat center #0066cc !important;
	color: transparent !important
}

.page-id-18 div#lightbox-container-image-box {
	width: 60% !important;
	height: auto !important;
}

.page-id-18 img#lightbox-image {
	width: 100% !important;
	height: auto !important;
}

.page-id-18 div#lightbox-container-image-data-box {
	width: 58.5% !important;
}

.page-id-18 #lightbox-loading {
	position: inherit !important;
}

.city-img {
	width: auto;
	height: 80px;
	border: 0;
	padding: 12px;
	margin: 12px;
	text-align: center;
}

.city-img:hover {
	box-shadow: 0px 0px 5px #686868;
	border-radius: 10px;
}

.phone-wrap2 {
	padding-left: 30px;
	float: left;
	padding-top: 10px;
}

.footer-img {
	margin: 30px;
}

.title-h1 {
	font-size: 32px !important;
	color: #FFFFFF;
	font-weight: normal !important;
	text-transform: none;
	line-height: 40px;
	padding: 0px 0 20px;
	font-style: italic;
}

.title-h1:a {
	color: #FFFFFF;
}

.entry-content h1 {
	font-size: 36px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 40px;
	margin: 0px 0 20px;
	padding-bottom: 20px;
}

.entry-content h2 {
	font-size: 24px;
	font-weight: bold;
	text-transform: none;
	line-height: 40px;
	margin: 0px 0 20px;
}

.entry-content h3 {
	font-size: 24px;
	font-weight: bold;
	text-transform: none;
	line-height: 40px;
	margin: 0px 0 20px;
}

.entry-content h4 {
	font-size: 24px;
	font-weight: bold;
	text-transform: none;
	line-height: 40px;
	margin: 0px 0 20px;
}

.entry-content h5 {
	font-size: 18px;
	font-weight: bold;
	text-transform: none;
	line-height: 40px;
	margin: 0px 0 20px;
}

.entry-content h6 {
	font-size: 12px;
	font-weight: bold;
	text-transform: none;
	line-height: 40px;
	margin: 0px 0 20px;
}

.call-to-action-img {
	box-shadow: 0 0px 6px rgba(0, 0, 0, 0.8);
	margin: 40px 0px 30px 0px;
	width: 680px;
	display: block;
	/*-webkit-border-radius: 10px;*/
	/*-moz-border-radius: 10px;*/
	/*margin-left: auto;*/
	/*margin-right: auto;*/
}

.call-to-action-img:hover {
	/*-webkit-border-radius: 10px;*/
	-moz-border-radius: 10px;
	box-shadow: 0 0px 12px rgba(0, 0, 0, 0.8);
}

.call-to-action-img-2 {
	/*box-shadow: 0 0px 6px rgba(0, 0, 0, 0.8);*/
	/*margin: 10px 0px 30px 0px;*/
	width: 680px;
	display: block;
	/*-webkit-border-radius: 10px;*/
	/*-moz-border-radius: 10px;*/
	/*margin-left: auto;*/
	/*margin-right: auto;*/
}

.call-to-action-img-2:hover {
	/*-webkit-border-radius: 10px;*/
	-moz-border-radius: 10px;
	box-shadow: 0 0px 12px rgba(0, 0, 0, 0.8);
}

.content-a {
	color: #000;
	text-decoration: none;
}

a {
	text-decoration: none !important;
}

.orig-h1 {
	color: #000;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
}

.widget_ptc_widget {
	display: none;
}

.widget_tag_cloud {
	display: none;
}

.side-social {
	/*width: 32px;


.home {
     padding-top: 10px:
}
	height: auto;*/
}

.side-logo {
	padding-top: 10px;
	padding-bottom: 10px;
}

.none {
	display: none;
}

#fancybox-title {
	display: none !important;
}

.microdata {
	margin-bottom: 30px;
	word-wrap: break-word;
}

.schema {
	box-shadow: 0 0px 17px rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	margin: 10px 0px 30px 0px;
	text-align: center;
	float: left;
	/*background: #D3D3D3;*/
	width: 680px;
}

.schema-col1 {
	width: 50%;
	float: left;
}

.schema-col2 {
	width: 50%;
	float: left;
}

.slicknav_menu {
	display: none;
}

@media only screen and (min-width: 767px) and (max-width: 1000px) {
	#content {
		margin: 0px 10px;
	}
	#page {
		padding: 0px !important;
	}
	p.normal img {
		text-align: center;
		margin: auto !important;
	}
	.schema span {
		display: inline-block !important;
	}
	.side-logo {
		width: auto !important;
	}
	.schema,
	.schema-col2,
	.schema-col1 {
		width: 100%;
		float: none !important;
		text-align: center;
	}
	.schema-col2 img,
	.schema-col1 img {
		display: inline-block !important;
		width: auto !important;
	}
	#content img {
		text-align: center;
		margin: auto !important;
	}
	#menu-main {
		display: none !important;
	}
	.slicknav_menu {
		display: block;
	}
	.slicknav_btn {
		position: relative;
		display: block;
		vertical-align: middle;
		float: right;
		padding: 0.438em 0.625em 0.438em 0.625em;
		line-height: 1.125em;
		cursor: pointer
	}
	.slicknav_menu .slicknav_menutxt {
		display: block;
		line-height: 1.188em;
		float: left
	}
	.slicknav_menu .slicknav_icon {
		float: left;
		margin: 0.188em 0 0 0.438em
	}
	.slicknav_menu .slicknav_no-text {
		margin: 0
	}
	.slicknav_menu .slicknav_icon-bar {
		display: block;
		width: 1.125em;
		height: 0.125em;
		-webkit-border-radius: 1px;
		-moz-border-radius: 1px;
		border-radius: 1px
	}
	.slicknav_btn .slicknav_icon-bar+.slicknav_icon-bar {
		margin-top: 0.188em
	}
	.slicknav_nav {
		clear: both
	}
	.slicknav_nav ul,
	.slicknav_nav li {
		display: block
	}
	.slicknav_nav .slicknav_arrow {
		font-size: 0.8em;
		margin: 0 0 0 0.4em
	}
	.slicknav_nav .slicknav_item {
		display: block;
		cursor: pointer
	}
	.slicknav_nav a {
		display: block
	}
	.slicknav_nav .slicknav_item a {
		display: inline
	}
	.slicknav_menu:before,
	.slicknav_menu:after {
		content: " ";
		display: table
	}
	.slicknav_menu:after {
		clear: both
	}
	.slicknav_menu {
		zoom: 1
	}
	.slicknav_menu {
		font-size: 25px
	}
	.slicknav_btn {
		margin: 5px 5px 6px;
		text-decoration: none;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px
	}
	.slicknav_menu .slicknav_menutxt {
		color: #FFF;
		font-weight: bold;
		text-shadow: 0 1px 3px #000
	}
	.slicknav_menu .slicknav_icon-bar {
		background-color: #70a9ab;
		border-radius: 3px
	}
	.slicknav_menu {
		background: #4c4c4c;
		padding: 5px
	}
	.slicknav_nav {
		color: #fff;
		margin: 0;
		padding: 0;
		font-size: 0.875em
	}
	.slicknav_nav,
	.slicknav_nav ul {
		list-style: none;
		overflow: hidden
	}
	.slicknav_nav ul {
		padding: 0;
		margin: 0 0 0 20px
	}
	.slicknav_nav .slicknav_item {
		padding: 5px 10px;
		margin: 2px 5px
	}
	.slicknav_nav a {
		padding: 5px 10px;
		margin: 2px 5px;
		text-decoration: none;
		color: #fff
	}
	.slicknav_nav .slicknav_item a {
		padding: 0;
		margin: 0
	}
	.slicknav_nav .slicknav_item:hover {
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		border-radius: 6px;
		background: #ccc;
		color: #fff
	}
	.slicknav_nav a:hover {
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		border-radius: 6px;
		background: #ccc;
		color: #222
	}
	.slicknav_nav .slicknav_txtnode {
		margin-left: 15px
	}
	.slicknav_menu {
		right: 0;
		width: 100%;
		z-index: 10;
		top: 35px;
		background: none;
		position: relative;
		padding: 0;
		margin: 0
	}
	.slicknav_menu .slicknav_btn {
		top: -34px;
		margin: 0;
		z-index: 2;
		padding: 0;
		background: none
	}
	.slicknav_menu .slicknav_btn .slicknav_menutxt {
		display: none
	}
	.slicknav_menu .slicknav_btn .slicknav_icon {
		margin-top: 17px;
		margin-right: 30px !important;
	}
	.slicknav_menu .slicknav_btn .slicknav_icon .slicknav_icon-bar {
		width: 1.25em;
		height: 0.25em;
		background: #fff;
		-moz-transition: -moz-transform 0.2s ease-in-out;
		-o-transition: -o-transform 0.2s ease-in-out;
		-webkit-transition: -webkit-transform 0.2s ease-in-out;
		transition: transform 0.2s ease-in-out
	}
	.slicknav_menu .slicknav_btn:hover .slicknav_icon .slicknav_icon-bar:first-of-type,
	.slicknav_menu .slicknav_btn:focus .slicknav_icon .slicknav_icon-bar:first-of-type {
		-moz-transform: translateY(-2px);
		-ms-transform: translateY(-2px);
		-webkit-transform: translateY(-2px);
		transform: translateY(-2px)
	}
	.slicknav_menu .slicknav_btn:hover .slicknav_icon .slicknav_icon-bar:last-of-type,
	.slicknav_menu .slicknav_btn:focus .slicknav_icon .slicknav_icon-bar:last-of-type {
		-moz-transform: translateY(2px);
		-ms-transform: translateY(2px);
		-webkit-transform: translateY(2px);
		transform: translateY(2px)
	}
	.slicknav_menu .slicknav_nav {
		top: 25px;
		z-index: 1;
		width: 100%;
		background: #741010;
		position: absolute;
		border-top: 4px solid #741010;
		padding: 0
	}
	.slicknav_menu .slicknav_nav a {
		text-transform: uppercase;
		font-family: inherit;
		-moz-transition: none;
		-o-transition: none;
		-webkit-transition: none;
		transition: none
	}
	.slicknav_menu .slicknav_nav a:hover,
	.slicknav_menu .slicknav_nav a:focus {
		color: white;
		background: #741010
	}
	.slicknav_menu .slicknav_nav>li {
		border-bottom: 4px solid #741010
	}
	.slicknav_menu .slicknav_nav>li:first-of-type {
		border-top: 4px solid #741010
	}
	.slicknav_menu .slicknav_nav>li.slicknav_open .slicknav_item {
		background: #741010
	}
	.slicknav_menu .slicknav_nav>li.slicknav_open .slicknav_item .topLevelNav {
		color: white
	}
	.slicknav_menu .slicknav_nav li a {
		margin: 0;
		padding: 0;
		font-family: inherit;
		text-transform: uppercase
	}
	.slicknav_menu .slicknav_nav li a:hover {
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		border-radius: 0
	}
	.slicknav_menu .slicknav_nav li .topLevelNav {
		padding: 5px 10px;
		display: block
	}
	.slicknav_menu .slicknav_nav li .topLevelNav:hover,
	.slicknav_menu .slicknav_nav li .topLevelNav:focus {
		background: #741010
	}
	.slicknav_menu .slicknav_nav li .secondLevelNav {
		background: #741010
	}
	.slicknav_menu .slicknav_nav li .slicknav_item {
		margin: 0;
		padding: 0;
		width: 100%;
		overflow: hidden;
		position: relative
	}
	.slicknav_menu .slicknav_nav li .slicknav_item:hover,
	.slicknav_menu .slicknav_nav li .slicknav_item:focus {
		background: #741010
	}
	.slicknav_menu .slicknav_nav li .slicknav_item .slicknav_arrow {
		top: 0;
		right: 0;
		height: 100%;
		position: absolute;
		display: inline-block;
		padding: 6px 10px 11px 12px;
		background: #741010
	}
	.slicknav_menu .slicknav_nav li ul {
		margin: 0;
		padding: 0
	}
	.slicknav_menu .slicknav_nav li ul .secondLevelNav a {
		padding: 10px 10px 10px 20px
	}
	.body-wrap {
		min-width: 100% !important;
	}
	.entry-content img {
		max-width: 100%;
		display: block;
		height: auto;
		margin: auto;
		text-align: center;
	}
	.foot-wrap {
		float: none !important;
		text-align: center;
	}
	.bottom-wrap {
		padding: 0px !important;
	}
	.foot-wrap img {
		max-width: 100% !important;
	}
	body,
	.foot-wrap,
	.copyright-wrap {
		min-width: 100% !important;
	}
	.entry-content span {
		display: grid;
		max-width: 100%;
	}
	.bottom-wrap,
	.col1,
	.col2,
	.col3,
	.col4 {
		width: 100%;
	}
	.main-navigation li ul {
		position: relative !important;
	}
	.head-left {
		text-align: center;
	}
	.wrap {
		width: 100% !important;
		min-width: 100% !important;
	}
	.head-left img {
		max-width: 100% !important;
	}
	.head-wrap {
		padding: 0px !important;
		background-size: contain;
	}
	.head-left,
	.head-right,
	.menu-main-container {
		width: 100%;
		float: none;
	}
	.head,
	.head-wrap {
		width: 100% !important;
		float: none;
		max-width: 100%;
		min-width: 100% !important;
	}
	.menu-main-container {
		background-size: cover !important;
		margin-left: 0px;
	}
	.main-navigation {
		margin-top: 8px;
	}
	.site-content,
	.widget-area {
		width: 100% !important;
		float: none !important;
	}
	.site {
		padding: 0px !important;
		max-width: 100% !important;
	}
	#text-17 p[style="padding-bottom: 28px;"] img {
		width: auto;
		max-width: inherit;
	}
	p[style="margin-bottom:-25px !important;"] {
		margin-bottom: 0px !important;
	}
	.phone-wrap {
		background: url(images/phone-icon.png) no-repeat !important;
		float: none;
		text-align: center;
		display: inline-block;
	}
	.schema {
		width: 100%;
	}
	.schema-col2,
	.schema-col1 img {
		max-width: auto !important;
		width: auto !important;
	}
	.phone-wrap2 {
		padding-left: 30px;
		float: none;
		padding-top: 10px;
		display: inline-block;
	}
	.head-right {
		text-align: center;
	}
}

.phone-wrap {
	display: block;
}

.phone-wrap_mobile {
	display: none;
}

.address_table {
	margin-bottom: 20px;
	background: #F5F5F5;
	padding: 20px 20px 0;
	position: relative;
	float: left;
	border: 1px solid #ACA8A5;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	width: 650px;
}

.divTable {
	display: table;
	width: 100%;
	margin: 0 0 1.714285714rem;
}

.divTableRow {
	display: table-row;
}

.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
}

.divTableCell,
.divTableHead {
	/*border: 1px solid #999999;*/
	display: table-cell;
	padding: 3px 10px;
}

.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}

.divTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}

.divTableBody {
	display: table-row-group;
}

p.btnsb {
	margin-bottom: 0px !important;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
	body {
		padding-top: 10px;
	}
	.phone-wrap {
		display: none;
	}
	.phone-wrap_mobile {
		display: block;
		text-align: center;
	}
	.phone-wrap_mobile ul {
		display: inline-block;
	}
	.phone-wrap2 {
		float: none;
		display: none;
		text-align: center;
	}
	.phone-wrap_mobile li {
		margin: 10px 0;
		display: inline-block;
	}
	.phone-wrap_mobile .fa {
		margin-right: 10px;
		display: inline-block !important;
		font-family: FontAwesome !important;
		font-style: normal !important;
		font-weight: normal !important;
		line-height: 1 !important;
		font-size: 20px !important;
	}
	#menu-main {
		display: none !important;
	}
	.slicknav_menu {
		display: block;
	}
	.slicknav_btn {
		position: relative;
		display: block;
		vertical-align: middle;
		float: right;
		padding: 0.438em 0.625em 0.438em 0.625em;
		line-height: 1.125em;
		cursor: pointer
	}
	.slicknav_menu .slicknav_menutxt {
		display: block;
		line-height: 1.188em;
		float: left
	}
	.slicknav_menu .slicknav_icon {
		float: left;
		margin: 0.188em 0 0 0.438em
	}
	.slicknav_menu .slicknav_no-text {
		margin: 0
	}
	.slicknav_menu .slicknav_icon-bar {
		display: block;
		width: 1.125em;
		height: 0.125em;
		-webkit-border-radius: 1px;
		-moz-border-radius: 1px;
		border-radius: 1px
	}
	.slicknav_btn .slicknav_icon-bar+.slicknav_icon-bar {
		margin-top: 0.188em
	}
	.slicknav_nav {
		clear: both
	}
	.slicknav_nav ul,
	.slicknav_nav li {
		display: block
	}
	.slicknav_nav .slicknav_arrow {
		font-size: 0.8em;
		margin: 0 0 0 0.4em
	}
	.slicknav_nav .slicknav_item {
		display: block;
		cursor: pointer
	}
	.slicknav_nav a {
		display: block
	}
	.slicknav_nav .slicknav_item a {
		display: inline
	}
	.slicknav_menu:before,
	.slicknav_menu:after {
		content: " ";
		display: table
	}
	.slicknav_menu:after {
		clear: both
	}
	.slicknav_menu {
		zoom: 1
	}
	.slicknav_menu {
		font-size: 25px
	}
	.slicknav_btn {
		margin: 5px 5px 6px;
		text-decoration: none;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px
	}
	.slicknav_menu .slicknav_menutxt {
		color: #FFF;
		font-weight: bold;
		text-shadow: 0 1px 3px #000
	}
	.slicknav_menu .slicknav_icon-bar {
		background-color: #70a9ab;
		border-radius: 3px
	}
	.slicknav_menu {
		background: #4c4c4c;
		padding: 5px
	}
	.slicknav_nav {
		color: #fff;
		margin: 0;
		padding: 0;
		font-size: 0.875em
	}
	.slicknav_nav,
	.slicknav_nav ul {
		list-style: none;
		overflow: hidden
	}
	.slicknav_nav ul {
		padding: 0;
		margin: 0 0 0 20px
	}
	.slicknav_nav .slicknav_item {
		padding: 5px 10px;
		margin: 2px 5px
	}
	.slicknav_nav a {
		padding: 5px 10px;
		margin: 2px 5px;
		text-decoration: none;
		color: #fff
	}
	.slicknav_nav .slicknav_item a {
		padding: 0;
		margin: 0
	}
	.slicknav_nav .slicknav_item:hover {
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		border-radius: 6px;
		background: #ccc;
		color: #fff
	}
	.slicknav_nav a:hover {
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		border-radius: 6px;
		background: #ccc;
		color: #222
	}
	.slicknav_nav .slicknav_txtnode {
		margin-left: 15px
	}
	.slicknav_menu {
		right: 0;
		width: 100%;
		z-index: 10;
		top: 35px;
		background: none;
		position: relative;
		padding: 0;
		margin: 0
	}
	.slicknav_menu .slicknav_btn {
		top: -34px;
		margin: 0;
		z-index: 2;
		padding: 0;
		background: none
	}
	.slicknav_menu .slicknav_btn .slicknav_menutxt {
		display: none
	}
	.slicknav_menu .slicknav_btn .slicknav_icon {
		margin-top: 17px;
		margin-right: 30px !important;
	}
	.slicknav_menu .slicknav_btn .slicknav_icon .slicknav_icon-bar {
		width: 1.25em;
		height: 0.25em;
		background: #fff;
		-moz-transition: -moz-transform 0.2s ease-in-out;
		-o-transition: -o-transform 0.2s ease-in-out;
		-webkit-transition: -webkit-transform 0.2s ease-in-out;
		transition: transform 0.2s ease-in-out
	}
	.slicknav_menu .slicknav_btn:hover .slicknav_icon .slicknav_icon-bar:first-of-type,
	.slicknav_menu .slicknav_btn:focus .slicknav_icon .slicknav_icon-bar:first-of-type {
		-moz-transform: translateY(-2px);
		-ms-transform: translateY(-2px);
		-webkit-transform: translateY(-2px);
		transform: translateY(-2px)
	}
	.slicknav_menu .slicknav_btn:hover .slicknav_icon .slicknav_icon-bar:last-of-type,
	.slicknav_menu .slicknav_btn:focus .slicknav_icon .slicknav_icon-bar:last-of-type {
		-moz-transform: translateY(2px);
		-ms-transform: translateY(2px);
		-webkit-transform: translateY(2px);
		transform: translateY(2px)
	}
	.slicknav_menu .slicknav_nav {
		top: 25px;
		z-index: 1;
		width: 100%;
		background: #741010;
		position: absolute;
		border-top: 4px solid #741010;
		padding: 0 !important;
	}
	.slicknav_menu .slicknav_nav a {
		text-transform: uppercase;
		font-family: inherit;
		-moz-transition: none;
		-o-transition: none;
		-webkit-transition: none;
		transition: none
	}
	.slicknav_menu .slicknav_nav a:hover,
	.slicknav_menu .slicknav_nav a:focus {
		color: white;
		background: #741010
	}
	.slicknav_menu .slicknav_nav>li {
		border-bottom: 4px solid #741010
	}
	.slicknav_menu .slicknav_nav>li:first-of-type {
		border-top: 4px solid #741010
	}
	.slicknav_menu .slicknav_nav>li.slicknav_open .slicknav_item {
		background: #741010
	}
	.slicknav_menu .slicknav_nav>li.slicknav_open .slicknav_item .topLevelNav {
		color: white
	}
	.slicknav_menu .slicknav_nav li a {
		margin: 0;
		padding: 0;
		font-family: inherit;
		text-transform: uppercase
	}
	.slicknav_menu .slicknav_nav li a:hover {
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		border-radius: 0
	}
	.slicknav_menu .slicknav_nav li .topLevelNav {
		padding: 5px 10px;
		display: block
	}
	.slicknav_menu .slicknav_nav li .topLevelNav:hover,
	.slicknav_menu .slicknav_nav li .topLevelNav:focus {
		background: #741010
	}
	.slicknav_menu .slicknav_nav li .secondLevelNav {
		background: #741010
	}
	.slicknav_menu .slicknav_nav li .slicknav_item {
		margin: 0;
		padding: 0;
		width: 100%;
		overflow: hidden;
		position: relative
	}
	.slicknav_menu .slicknav_nav li .slicknav_item:hover,
	.slicknav_menu .slicknav_nav li .slicknav_item:focus {
		background: #741010
	}
	.slicknav_menu .slicknav_nav li .slicknav_item .slicknav_arrow {
		top: 0;
		right: 0;
		height: 100%;
		position: absolute;
		display: inline-block;
		padding: 6px 10px 11px 12px;
		background: #741010
	}
	.slicknav_menu .slicknav_nav li ul {
		margin: 0;
		padding: 0
	}
	.slicknav_menu .slicknav_nav li ul .secondLevelNav a {
		padding: 10px 10px 10px 20px
	}
	.body-wrap {
		min-width: 100% !important;
	}
	.entry-content img {
		max-width: 100%;
		display: block;
		height: auto;
		text-align: center;
		margin: auto;
		float: none;
	}
	.foot-wrap {
		float: none !important;
		text-align: center;
	}
	.bottom-wrap {
		padding: 0px !important;
	}
	.foot-wrap img {
		max-width: 100% !important;
	}
	body,
	.foot-wrap,
	.copyright-wrap {
		min-width: 100% !important;
	}
	.bottom-wrap,
	.col1,
	.col2,
	.col3,
	.col4 {
		width: 100%;
	}
	.main-navigation li ul {
		position: relative !important;
	}
	.head-left {
		text-align: center;
	}
	.wrap {
		width: 100% !important;
		min-width: 100% !important;
	}
	.head-left img {
		max-width: 100% !important;
	}
	.head-wrap {
		padding: 0px !important;
		background-size: contain;
		position: relative;
	}
	.head-left,
	.head-right,
	.menu-main-container {
		width: 100%;
		float: none;
	}
	.head,
	.head-wrap {
		width: 100% !important;
		float: none;
		max-width: 100%;
		min-width: 100% !important;
	}
	.menu-main-container {
		background-size: cover !important;
		margin-left: 0px;
	}
	.main-navigation {
		margin-top: 8px;
	}
	.site-content,
	.widget-area {
		width: 100% !important;
		float: none !important;
		padding-top: 10px;
	}
	.site {
		width: 100% !important;
		max-width: 100% !important;
		z-index: inherit !important;
	}
	#text-17 p[style="padding-bottom: 28px;"] img {
		width: auto;
		max-width: inherit;
	}
	p[style="margin-bottom:-25px !important;"] {
		margin-bottom: 0px !important;
	}
	.phone-wrap {
		background: url(images/phone-icon.png) no-repeat !important;
		float: none;
		text-align: center;
	}
	.main-navigation li ul li a,
	.main-navigation ul li:hover>ul {
		width: 100% !important;
	}
	#content {
		margin: 0px 10px;
	}
	#page {
		padding: 0px !important;
	}
	p.normal img {
		text-align: center;
		margin: auto !important;
	}
	.schema span {
		display: inline-block !important;
	}
	.side-logo {
		width: auto !important;
	}
	.schema,
	.schema-col2,
	.schema-col1 {
		width: 100%;
		float: none !important;
		text-align: center;
	}
	.schema-col2 img,
	.schema-col1 img {
		display: inline-block;
		width: auto !important;
	}
	.entry-content div {
		width: 100% !important;
	}
	.divTableCell,
	.divTableHead {
		display: inline-block !important;
		text-align: center;
	}
	.call-to-action {
		padding: 0px !important;
	}
	.af-fields {
		padding: 0px 20px;
	}
	.af-content,
	.address_table {
		padding: 0px !important;
	}
	.wpcf7-form-control-wrap span {
		display: inline-block !important;
	}
	.af-content textarea,
	.af-content select {
		width: 100% !important;
	}
	.call-to-action p {
		padding: 0px 3px;
	}
	.flexslider .slides img {
		width: 100%;
		position: absolute;
		bottom: 0;
		max-width: 100%;
		top: 50%;
	}
	.home #primary .entry-content p {
		display: inline-grid;
		text-align: left;
	}
	.page #primary .entry-content p {
		text-align: left;
	}
	.page #primary .entry-content p {
		width: 100%;
		text-align: left;
		display: inline-grid;
	}
	.wp-image-590 {
		margin-bottom: 0px !important;
	}
	.opt-wrap {
		background-size: cover !important;
	}
	.body-wrap {
		padding-top: 0px;
	}
	.sub-title1 {
		text-align: center;
	}
	body {
		overflow-x: hidden;
		padding-top: 0px !important;
	}
	p.btnsb {
		margin-bottom: 0px !important;
	}
	.schema .none {
		display: none !important;
	}
	.wpcf7-form p {
		display: inline-block !important;
	}
	.af-content span.wpcf7-checkbox,
	.af-content textarea {
		width: 100% !important;
	}
	.home #primary .entry-content p img,
	.page-id-10621 #primary .entry-content p img {
		margin: auto !important;
		float: none !important;
	}
	#primary {
		padding-top: 0px !important;
	}
	.schema-col2 p {
		text-align: center !important;
	}
}

.orig-h3 {
	color: #fff;
	font-size: 20px;
	font-weight: normal;
	text-transform: none;
	padding-bottom: 20px;
}

.entry-meta {
	display: none;
}

button,
input,
textarea,
select {
	width: 90%;
}

.wpcf7-form {
	background: url(/wp-content/uploads/landscape-construction-company-opt-bg.png) no-repeat #7f0404;
	/*border: 1px solid #b20a0a;*/
	padding: 8px;
	-webkit-border-top-left-radius: 0px;
	-webkit-border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-topright: 0px;
	border-radius: 7px;
	/*box-shadow: 0 0px 17px rgba(0, 0, 0, 0.8);*/
	margin-top: 12px;
}

select {
	width: 99% !important;
}

.opt-head {
	font-size: 50px;
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
}

.contact-form-home {
	/*display: grid;*/
	margin: 0px auto;
	text-align: center;
}

.contact-form-home p {
	width: auto;
	display: inline-block;
	/*margin: 0 13px;*/
	text-align: center;
	padding-bottom: 20px;
}

.postid-178 #text-4 {
	display: none;
}

.wpcf7-form-control-wrap {
	text-align: -webkit-center;
}

.employment-form {
	margin-top: -30px !important;
	text-align: center !important;
	max-width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.core-captcha {
	transform: scale(0.85);
	-webkit-transform: scale(0.85);
	transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
}

@media screen and (max-width: 650px) {
	.employment-form {
		margin-top: -20px !important;
	}
}


/* home banner style */
.hero_banner{
    position: relative;
    background-image: url('/wp-content/uploads/home-bg.jpg');
}
.hero_banner_bottom{
	    position: absolute;
    bottom: 0px;
    z-index: 9;
    transform: rotate(180deg);
    color: #fff;
    width: 100%;
}

.hero_banner::after{
    content: '';
    background-color: #000000b3;
    background-image: url('/wp-content/uploads/home-overlay.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero_banner_content{
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
	gap:60px;
    padding: 310px 0px 200px;
    max-width: 1230px;
    margin-inline: auto;
}
.hero_banner_content .hero-text {
    z-index: 2;
	width:55%;
  }
.hero_banner_content .form-box{
	width:40%;
}
  .hero-text h5 {
    color: #ee212b;
    font-size: 21px;
    margin-bottom: 10px;
  }

.hero_banner_content .hero-text h1{
    font-size: 59px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 0px;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #EEEEEE;
  }

  .hero-text .btn {
    background: #ee212b;
    color: #fff;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
    border-radius: 0px;
    display: inline-block;
  }

  .hero-text .btn:hover {
    background: #c53030;
  }
.hero_banner_content .form-box{
	background:#ffffff;
		    padding: 40px 40px;
    border-radius: 10px;
	    background-image: url(https://core.clickstarmarketing.ca/wp-content/uploads/form-bg-bottom.jpg);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: contain;
}
.hero_banner_content .form-box .wpcf7-form{
	background:transparent;
	padding:0px;
}
.hero_banner_content .form-box h2{
	font-size:28px;
	color:#000000;
	margin-bottom:30px;
	text-align:center;
}
.form_input_container {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 10px;
}
.hero_banner_content .form-box input, .hero_banner_content .form-box select{
	    padding: 18px 20px;
		width: -webkit-fill-available;
}
.hero_banner_content .form-box select{
	margin-top:10px;
}
 .form-box .form_submit_btn input{
    background-image: none !important;
	    width: max-content !important;
    background-image: none !important;
    color: #ffffff !important;
    background-color: #ee212b !important;
    margin-top: 10px;
    padding: 18px 60px;
    text-transform: uppercase;
    border-radius: 0px;
}

/* who we are css */


.who-we-are {
    padding: 70px 0px;
	background: #ffffff;
  
}
.who-we-are-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.who-left {
    flex: 1;
    position: relative;
}

.who-left img {
    width: 90%;
    border-radius: 8px;
    display: block;
}

.who-right {
    flex: 1;
}

.who-right h5 {
    display: inline-block;
    padding: 4px 22px;
    border: 3px solid #eee9e3;
    font-size: 14px;
    font-weight: bold;
	line-height: 30px;
	letter-spacing: 0.2em;
    margin-bottom: 15px;
	position: relative;
}
.who-right h5::after{
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 19px;
    height: 14px;
    background-image: url(/wp-content/uploads/subtitle-before.png);
    transform: translateX(-50%);
}
.who-right h2 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 40px;
	    line-height: normal;
}


.who-right a {
    font-size: 20px;
    color: #e63939;
    text-decoration: underline!important;
    margin-bottom: 20px;
    display: inline-block;
	line-height: 30px;
}

.who-right p {
    margin-bottom: 40px;
    font-size: 16px;
    color: #707173;
	    line-height: 25px;
}

.who-right .features {
    margin-top: 20px;
    display: flex;
    gap: 40px;
}

.who-right .feature {
    gap: 10px;
    max-width: 280px;
}

.who-right .feature i {
    font-size: 28px;
    color: #e63939;
}

.who-right .feature h4 {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 16px;
    margin-top: 20px;
}

.who-right .feature p {
    font-size: 16px;
    color: #707173;
    margin: 0px;
}

.page-container {
    max-width: 1230px;
    margin-inline: auto;
}
.request_quote_box{
	align-items: center;
    display: flex;
    border: 1px solid #F70101;
    padding: 10px 10px;
    margin: 70px auto 0px;
    max-width: 80%;
    justify-content: space-between;
}
.request_quote_text{
	font-size: 18px;
    color: #707173;
    font-weight: 500;
    padding-left: 50px;
	font-family: 'Roboto', sans-serif;
}
.request_quote_text a{
	color:#ee212b;
}
.request_quote_box .number_box {
    background: #ee212b;
    padding: 10px 50px;
    display: flex;
    gap: 10px;
    font-size: 21px;
    color: #fff;
	align-items: center;
	transition: all 0.4s ease;
}
.request_quote_box .number_box_icon{
    height: 50px;
    width: 50px;
    border-radius: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ed3833;
    margin-left: -80px;
    box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.29);
	transition: all 0.3s ease;
}
.request_quote_box .number_box:hover{
	background-color: #000;
}
.request_quote_box .number_box:hover .number_box_icon{
	transform: rotateY(180deg);
}
/* what we do css */
.services-section {
  background: #f9f9f9;
  padding: 110px 0 140px;
  text-align: center;
  position: relative;
  background-image: url(https://dev24.kodesolution.com/roofting/wp-content/uploads/2024/02/bg20.jpg);
	background-position: center left;
	background-repeat: no-repeat;
	background-size: cover;
}
.services-section::after{
	content:'';
	width: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(270deg, #F3F4F7FA 69%, #E01119CF 54%);
}
.services-section-content{
	position: relative;
	z-index: 2;
}

.services-section .section-heading h5, .sec_sub_heading {
	display: inline-block;
    padding: 4px 22px;
    border: 3px solid #eee9e3;
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    position: relative;
}
.services-section .section-heading h5::after, .sec_sub_heading::after {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 19px;
    height: 14px;
    background-image: url(/wp-content/uploads/subtitle-before.png);
    transform: translateX(-50%);
}

.services-section .section-heading h2, .sec_main_heading {
 	font-size: 50px;
    font-weight: bold;
    margin-bottom: 60px;
    line-height: normal;
}
.services-section .section-heading h2{
    max-width: 595px;
    margin-inline: auto;
}

.services-slider {
  margin: 0 auto;
}
.services-slider .slick-dots{
	    bottom: -45px;
}
.services-slider .slick-dots li button:before{
	content: '';
	width: 11px;
	height: 4px;
	background-color: #e7e7e7;
	border-radius: 10px;
    transition: all 0.3s ease-in-out 0s;
	    opacity: 1;
}
.services-slider .slick-dots li.slick-active button:before{
	background-color: #ee212b;
}
.service-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.08);
  margin: 0 15px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.services-section .card-img {
  position: relative;
}

.services-section .card-img img {
  width: 100%;
  display: block;
}

.services-section .icon-box {
  background: #ed3833;
    color: #fff;
    font-size: 24px;
    width: 90px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -40px;
	    margin-bottom: 30px;
}

.services-section .card-content {
  	text-align: left;
	background: #f3f4f7;
	position: relative;
	display: inline-block;
	border-top: 4px solid #ee212b;
	margin: 20px 20px;
	margin-top: -56px;
}
.services-section .card-content-inner{
	padding: 10px 15px 30px 20px;
}
.services-section .card-content::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 65px;
    width: 44px;
    height: 64px;
    background-image: url(https://core.clickstarmarketing.ca/wp-content/uploads/icon-arrow.png);
    z-index: 3;
    pointer-events: none;
}

.services-section .card-content h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 28px;
}

.services-section .card-content p {
      font-size: 16px;
    color: #707173;
    margin-bottom: 20px;
    line-height: 26px;
}

.services-section .read-more {
      color: #ffffff;
    padding: 10px 20px;
    transition: 0.3s;
    width: -webkit-fill-available;
    background: #111111;
    display: block;
    text-align: center;
    font-size: 12px;
    line-height: 24px;
    text-transform: uppercase;
}
.services-section .read-more span{
	color:#ee212b;
	transform: rotate(-45deg);
    display: inline-block;
}

.services-section .read-more:hover {
  background-color: #ee212b;
}
.services-section .read-more:hover span{
	color:#ffffff;
}

/* why us css start */
.why-us-sec {
  	padding: 115px 0px 120px;
	background: #fff;
	background-image: url(/wp-content/uploads/why-us-bg.png);
	background-position: bottom right;
	background-repeat: no-repeat;
}
.why_us_content{
	display: grid;
    gap: 130px;
    grid-template-columns: 44% 50%;
}
.why-us-sec .left {
  flex: 1;
}
.why-us-sec .right {
  flex: 1;
  position: relative;
}
.why_us_content_left{
	display: flex;
	gap: 40px;
	align-items: center;
}
.experience-box {
    border: 2px solid #DDDDDD;
    padding: 20px;
    animation-duration: 20s;
    background-image: url(https://dev24.kodesolution.com/roofting/wp-content/uploads/2024/03/about1h3.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.why_us_content_left h2{
	font-size: 110px;
	line-height: 5rem;
	margin: 12px 0px 16px;
	-webkit-text-stroke-width: 1.1px;
    -webkit-text-stroke-color: #070707;
}
.why_us_content_left .experience-box p{
    font-size: 23px;
    color: #707173;
    line-height: 1.2em;
	-webkit-text-stroke-width: 1.1px;
    -webkit-text-stroke-color: #070707;
}
.why_us_content_left .feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.why_us_content_left .feature:last-child{
	margin-bottom: 0px;
}
.why_us_content_left .feature img{
	    width: 50px!important;
    height: 40px!important;
}
.why_us_content_left .feature h4{
    font-size: 17px;
    margin-bottom: 5px;
        line-height: 28px;
	color: #000;
}
.why_us_content_left .feature p{
	font-size: 16px;
    margin-bottom: 5px;
    line-height: 28px;
	color: #707173;
}
/* Hide radio buttons */
.why-us-sec input[type="radio"] {
  display: none;
}

/* Tabs */
.why-us-sec .tabs_outer {
    position: relative;
}
.why-us-sec .tabs_outer img{
	 width: 100%;
}

.why-us-sec .tabs {
     display: flex;
    position: absolute;
    bottom: 0px;
    width: 90%;
    gap: 10px;
}
.why-us-sec .tabs label {
     flex: 1;
    text-align: center;
    padding: 14px 20px;
    cursor: pointer;
    background: #f3f4f7;
	font-size: 14px;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	border-top: 1px solid #EE212B;
	line-height: 28px;
}
.why-us-sec #tab1:checked ~ .tabs_outer .tabs label[for="tab1"],
.why-us-sec #tab2:checked ~ .tabs_outer .tabs label[for="tab2"],
.why-us-sec #tab3:checked ~ .tabs_outer .tabs label[for="tab3"] {
  background: #EE212B;
  color: #fff;
}

/* Content */
.why-us-sec .content .tab-content {
  display: none;
  padding-top: 25px;
  background: #fff;
}
.why-us-sec .content .tab-content p{
	    font-size: 16px;
    color: #707173;
    line-height: 30px;
	    margin-bottom: 30px;
}

.why-us-sec #tab1:checked ~ .content #content1,
.why-us-sec #tab2:checked ~ .content #content2,
.why-us-sec #tab3:checked ~ .content #content3 {
  display: block;
}

/* List styling */
.why-us-sec .tab-content ul {
  list-style: none;
  padding: 0;
}
.why-us-sec .tab-content li {
    font-size: 18px;
    color: #707173;
    font-weight: 600;
    margin-bottom: 14px;
	display: flex;
	align-content: center;
	gap: 8px;
}
.why-us-sec .tab-content li span{
	background-color: #EE212B;
	font-size: 7px;
	height: 18px;
	width: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	color: #fff !important;
}

/* why choose sec css  */
.why-choose-us {
  padding: 110px 0px;
  background: #F8F9FD;
  text-align: center;
  position: relative;
}
.why-choose-us::after{
	content: '';
	background-image: url(/wp-content/uploads/icon-dots.png);
	background-position: top left;
    background-repeat: no-repeat;
	position: absolute;
	top: 0px;
	width: 700px;
    height: 550px;
    left: 0px;
}

.why-choose-us .content-box {
    display: grid;
    align-items: center;
    grid-template-columns: 46% 50%;
    gap: 90px;
	background-image: url(/wp-content/uploads/icon-dotted-map.png);
	background-position: bottom center;
    background-repeat: no-repeat;
}

.why-choose-us .left-image {
  position: relative;
}
.why-choose-us .left-image img{
	width: 100%;
	padding: 30px;
}

.why-choose-us .left-image::before{
	content: '';
	position: absolute;
	left: 0px;
	width: 40%;
	height: 100%;
	border: 5px solid #e41f1a;
	border-right:none;
	    top: 0px;
}
.why-choose-us .right-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-choose-us .feature-box {
 	position: relative;
    display: flex;
    align-items: center;
    padding: 20px 20px;
    min-height: 75px;
    overflow: hidden;
    background-color: #ffffff;
    transform: skewX(-2deg);
    box-shadow: 0 0 76px rgba(0, 0, 0, 0.28);
    z-index: 3;
}
.why-choose-us .feature-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 90px;
    height: 100%;
    transform: skewX(-5deg);
    background-color: #ee212b;
    transform-origin: top right;
    transition: all 400ms ease;
    z-index: 1;
}

.why-choose-us .feature-box:hover::before {
  	width: 110%;
}

.why-choose-us .feature-box .icon {
	width: 45px;
	height: 45px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
    position: relative;
    z-index: 2;
	margin-right: 50px;
	transition: all 300ms ease;
}
.why-choose-us .feature-box:hover .icon{
	transform: rotateY(180deg);
}

.why-choose-us .feature-box h4 {
    font-size: 21px;
    font-weight: 600;
    margin: 0;
    line-height: 30px;
	position: relative;
    z-index: 2;
	max-width: 100px;
    text-align: left;
}
.why-choose-us .feature-box:hover h4{
	color: #fff;
}
.right-features-outer .note {
  margin-top: 50px;
  font-size: 16px;
  line-height: 30px;
  color: #707173;
}
.right-features-outer .note a {
  color: #ee212b;
  text-decoration: none;
}

/* latest project css */
.latest_project_sec {
    background-color: #fff;
	background-image: url(/wp-content/uploads/explore-project-bg.png);
	padding: 110px 0px;
	position: relative;
}

.latest_project_sec .section-heading{
	text-align: center;
	max-width: 510px;
    margin-inline: auto;
}
.lates_project_box{
	position: relative;
}
.latest_project_sec .lates_project_box:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 155px;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    background-color: var(--theme-color1);
    transition: all 300ms ease;
    transform: translateX(-150px);
    z-index: 3;
}
.lates_project_box .content_box {
    position: absolute;
    left: 29px;
    bottom: 26px;
    z-index: 3;
}
.lates_project_box .content_box h4 {
    position: relative;
    font-weight: 700;
    margin-bottom: 0;
    padding: 6px 18px;
    margin-bottom: 1px;
    opacity: 0;
    background-color: #ffffff;
    transform: translateY(-40px);
    transition: all 300ms ease;
}
.lates_project_box .content_box ul{
	    position: relative;
    font-weight: 400;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 300ms ease;
    list-style: none;
    display: inline-flex;
}
.projects-current-theme1 .content-box .cat li {
    background-color: #ffffff;
    padding: 4px 12px 4px 0px;
}