
/*
Theme Name: U-Buggin, LLC
Theme URI: 
Author: the Development team
Author URI: https://wordpress.org/
Description: A theme for WordPress 5.
Requires at least: WordPress 4.9.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wp5default
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

WP5 Default is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Layouts
# Fonts
# Buttons
# Search Box
# Flexbox
# Forms
	## Quick Form
		### Responsive
	## Contact Us Form
		### Responsive
# Menus
	## Main Menu
		### Responsive
	## Sub Menu
		### Responsive
	## Footer Menu
		### Responsive
	## Social Menu
		### Responsive
# Header
# Banner
# Contents
	## Welcome Section
		### Responsive
	## Practice Areas Section
		### Responsive
	## Profile Section
		### Responsive
	## Gallery Section
		### Responsive
	## Contact Us Section
		### Responsive
	## Badges Section
		### Responsive
# Footer
# Sidebar Section
	## Responsive
# Inner Pages
	## Blog Page
		### Responsive
	## Search Page
		### Responsive
	## Error Page
		### Responsive
	## Attorney Profile Page

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

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: 'Oswald', sans-serif;
	margin: 0 auto;
	width: 100%;
}

* {
	box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	html {
		/* for 60px height WP Responsive Menu */
		padding-top: 60px !important;
	}
}

/*###################################
## Layouts
###################################*/
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	word-wrap: normal !important;
	overflow: hidden;
	height: 1px;
	margin: -1px;
	padding: 0;
	width: 1px;
	border: 0;
}

.wp-block-column,
.blocks-gallery-item {
	margin: 0 !important;
}

.has-1-columns .wp-block-column {
	flex-basis: 100%;
}

.container {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 15px;
}

.row {
	max-width: 1440px;
	margin: 0 auto;
}

.grecaptcha-badge {
	z-index: 999999;
}

.tl {
	text-align: left;
}

.tc {
	text-align: center;
}

.tr {
	text-align: right;
}


/*###################################
## Fonts
###################################*/
a {
	font-family: 'Oswald', sans-serif;
}

a,
a:visited {
	-webkit-transition: all .5s ease;
	text-decoration: none !important;
	text-decoration: none;
	transition: all .5s ease;
	color: #333333;
}

/*a:hover {text-shadow: 0px 0px 5px #000;}*/
a:focus {
	outline: none !important;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	line-height: 110%;
	margin: 0 auto;
}

h1 {
	font-size: 70px;
	color: #6A7A64;
}

h2 {
	font-size: 60px;
}

h3 {
	font-size: 25px;
	font-weight: 700;
}

p,
ul,
ol {
	font-family: 'Open Sans', sans-serif;
	letter-spacing: .03em;
	line-height: 180%;
	font-weight: 400;
	font-size: 15px;
}

p:last-of-type {
	margin: 0 !important;
}


/*###################################
## Buttons
###################################*/
.btn {
	max-width: 125px;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	display: inline-block;
	background: #017500;
	font-weight: 400;
	text-align: center;
	color: #FFFFFF !important;
	padding: 12px 0;
	box-sizing: border-box;
	font-family: 'Oswald', sans-serif;
	border: none;
	font-size: 15px;
	text-transform: uppercase;
	line-height: 1;
	border-radius: 25px;
}

.btn:hover {
	-webkit-box-shadow: 0px 10px 20px -10px #000;
	box-shadow: 0px 10px 20px -10px #000;
	text-decoration: none !important;
	text-shadow: 0px 0px 5px #000;
}

.btn::after {
	content: "";
	background: #FD920E;
	-webkit-transition: all .2s linear;
	-o-transition: all .2s linear;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: -1;
	left: 0;
	top: 0;
	border-radius: 25px;
}

.btn:hover::after {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}



/*###################################
## Search
###################################*/
.sidebar form,
.error-404 form {
	position: relative;
	max-width: 700px;
	margin: 10px auto;
}

.sidebar input[type="search"],
.error-404 input[type="search"] {
	width: 100%;
	padding: 5px 10px;
}

.sidebar input[type="submit"],
.error-404 input[type="submit"] {
	background: linear-gradient(to bottom, #FFF, #ccc);
	border: 1px solid #000;
	position: absolute;
	padding: 6px;
	right: 0;
	top: 0;
}

.sidebar .widget:not(:nth-of-type(1)) {
	background: rgba(255, 255, 255, .5);
	border-bottom: 1px solid #CCC;
	padding-bottom: 20px;
	margin-bottom: 20px;
	padding: 10px 20px;
}

.sidebar input[type="submit"],
.error-404 input[type="submit"] {
	transition: all .4s linear;
}

.sidebar input[type="submit"]:hover,
.error-404 input[type="submit"]:hover {
	box-shadow: 0px 0px 20px #000;
}

/*###################################
## Flexbox
###################################*/
.flex {
	display: flex;
}

.flexs {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.flexc {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flexe {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

/*###################################
## Forms
###################################*/

form p {
	margin: 0 0 10px !important;
	width: 100%;
}

form label {
	display: inline-block;
	color: #FFF;
	line-height: 0.5 !important;
	width: 100%;
}

form input[type="submit"] {
	-webkit-transition: all .5s linear;
	-o-transition: all .5s linear;
	transition: all .5s linear;
}

.ctc-hide {
	display: none !important;
}

/*.formLabel { display: inline-block; } */
/*.formLabel label { width: 32.52%; position: relative; }*/
.formLabel input[type="text"],
.formLabel input[type="email"],
.formLabel input[type="tel"] {
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #888888;
	padding: 5px 10px;
	box-sizing: border-box;
	height: 40px;
}

.formLabel span.wpcf7-not-valid-tip {
	color: red;
	font-size: 10px;
	font-weight: 400;
	display: block;
	position: absolute;
	top: -10%;
	right: 3%;
}

.formTextarea textarea {
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Oswald';
	font-weight: 400;
	font-size: 16px;
	color: #888888;
	padding: 10px;
	box-sizing: border-box;
	height: 120px;
	margin-top: 0;
	position: relative;
}

.formConsent {
	text-align: center;
	padding: 5px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.formConsent .wpcf7-list-item-label {
	color: #111111;
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 120%;
}

.formTextarea span.wpcf7-not-valid-tip {
	color: red;
	font-size: 10px;
	font-weight: 400;
	display: block;
	position: absolute;
	bottom: 115px;
	right: 1%;
}

span.wpcf7-list-item {
	margin: 0 !important;
}

/*Quick Form*/


/*###################################
## Menus
###################################*/

/*Main Menu*/
.main-navigation {}

.main-navigation ul {
	-webkit-justify-content: space-between;
	justify-content: space-between;
	display: -webkit-flex;
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}

.main-navigation ul li {
	padding: 0;
}

.main-navigation ul li:first-of-type {
	padding-left: 0;
}

.main-navigation ul li:last-of-type {
	padding-right: 0;
}

.main-navigation ul li.menu-item-has-children a::after {
	content: "\f0d7";
	font-family: 'FontAwesome';
	color: #FFF;
	transition: all .2s linear;
	display: inline-block;
	vertical-align: middle;
	font-size: 18px;
	margin-left: 10px;
	position: relative;
	top: -2px;
}

.main-navigation ul li.menu-item-has-children a:hover::after {
	transform: rotateZ(180deg);
}

.main-navigation ul li a {
	font-weight: 400;
	font-size: 15px;
	color: #222222;
	line-height: 120%;
	padding: 10px 20px;
	border-radius: 25px;
	text-transform: uppercase;
	display: block;
	position: relative;
}

/*.main-navigation ul li a::before {content: ""; background: #FFF; width: 100%; max-width: 50px; height: 4px; border-radius: 3px; position: absolute; bottom: 0; left: 0; right: 0; margin: 0 auto; transition: all .3s linear; transform: scaleX(0); transform-origin: left;}
.main-navigation ul li a:hover::before,
.main-navigation .current-menu-item a::before {transform: scaleX(1);}*/
.main-navigation ul li a:hover,
.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
	background: #017500;
	color: #FFFFFF;
}

.main-navigation ul li:hover ul {
	visibility: visible;
	opacity: 1;
	margin-top: 0;
}

/* WP Responsive Menu Custom Styles */
@media screen and (max-width: 768px) {
	#wprmenu_bar {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	#wprmenu_bar .menu_title {
		width: 200px;
		top: 0 !important;
		line-height: 1 !important;
	}

	#wprmenu_bar .menu_title a {
		top: 0 !important;
		line-height: 1 !important;
	}

	#wprmenu_bar .menu_title img {
		width: 100%;
		max-width: 150px;
		height: auto;
	}
}

/*Sub Menu*/
.main-navigation ul ul {
	background: rgba(106, 123, 100, .9);
	transition: all .3s linear;
	box-shadow: 0px 0px 2px #555;
	box-sizing: border-box;
	padding: 10px 5px;
	position: absolute;
	visibility: hidden;
	margin-top: 50px;
	width: 250px;
	display: block;
	opacity: 0;
}

.main-navigation ul ul li {
	display: block;
	margin-right: 0;
}

.main-navigation ul ul li a {
	padding: 10px;
	display: block;
	box-sizing: border-box;
}

.main-navigation ul ul li a::after,
.main-navigation ul ul li a::before {
	display: none !important;
}

.main-navigation ul ul li a:hover {
	background: #D7BA5A;
}

/*Sub Sub Menu*/
/*.main-navigation ul ul ul {visibility: hidden !important; margin-top: -48px !important; opacity: 0 !important; position: absolute; margin-left: 240px; 	}
.main-navigation ul ul li:hover ul {visibility: visible !important; opacity: 1 !important; margin-left: 182px;  }
.main-navigation ul ul ul li {}*/

/*Footer Menu*/
.footer-navigation {
	max-width: 920px;
	width: 100%;
	margin: 0 auto;
}

.footer-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex !important;
}

.footer-navigation ul li {
	display: inline-block;
	padding: 0 20px;
	border-right: 1px solid #D6D6D6;
}

.footer-navigation ul li:last-of-type {
	border-right: 0;
}

.footer-navigation ul li a {
	font-weight: 400;
	font-size: 15px;
	color: #222222;
	line-height: 120%;
	padding: 10px 20px;
	border-radius: 25px;
	text-transform: uppercase;
	display: block;
	position: relative;
}

.footer-navigation ul li a:hover,
.footer-navigation .current-menu-item a,
.footer-navigation .current_page_item a {
	background: #017500;
	color: #FFFFFF;
}

@media screen and (max-width: 768px) {
	.footer-navigation ul {
		flex-wrap: wrap;
	}

	.footer-navigation ul li {
		flex-basis: 100%;
		border: 0;
		text-align: center;
	}
}

/*Social Menu*/
.social-navigation {}

.social-navigation .svg-icon {
	display: none;
}

.social-navigation ul {
	margin: 0 !important;
	list-style: none;
	display: block;
	padding: 0;
}

.social-navigation ul li {
	transition: all .4s linear;
	border-radius: 50%;
	margin: 0 5px 0 0;
	height: 40px;
	width: 40px;
	background: #444444;
}

.social-navigation ul li:hover {
	box-shadow: 0px 0px 20px #000;
	transform: rotateZ(360deg);
}

.social-navigation ul li a {
	color: #FFF;
}

.social-navigation ul li a::before {
	font-size: 18px;
	position: relative;
	top: 12px;
}

/*###################################
## HEADER
###################################*/

.site-header {
	position: relative;
	padding: 25px 0 15px;
}

.site-header .container {
	max-width: 100%;
	width: 100%;
}

.header-wrap {
	max-width: 1160px;
	width: 100%;
	margin: 0 auto;
}

.header-left {
	width: 28.44%;
}
/* 
.header-left .header-logo img {
	width: 100%;
	height: 100%;
	display: block;
} */

.header-right .header-info .header-logo img {
    width: 108px;
    height: 100%;
    display: block;
    margin: auto 0 auto auto;
}

.header-right {
	width: 62.93%;
	margin: auto;
}

.header-right .header-info {
/* 	max-width: 500px;
	margin-left: auto; */
/* 	align-items: center; */
	padding-bottom: 20px;
}

.header-right .header-info h5 {
	font-size: 13px;
	text-transform: uppercase;
}

.header-right .header-info span,
.header-right .header-info .tel a {
	color: #007200;
}

.header-right .header-info .mail,
.header-right .header-info .tel {
	position: relative;
	padding-left: 30px;
}

.header-right .header-info .mail::before {
	content: "\f003";
	font-family: 'FontAwesome';
	font-size: 25px;
	color: #000000;
	position: absolute;
	top: 0;
	left: 0;
}

.header-right .header-info .tel::before {
	content: "\f095";
	font-family: 'FontAwesome';
	font-size: 25px;
	color: #000000;
	position: absolute;
	top: 0;
	left: 0;
}
/* 
.header-right .header-info .mail::before, .header-right .header-info .tel::before {
    top: 20px;
} */

.header-right .header-info .mail, .header-right .header-info .tel {
    top: 20px;
}

.header-right .header-info .mail a {
	font-size: 18px;
}

.header-right .header-info .tel a {
	font-size: 30px;
}

/*###################################
## BANNER
###################################*/

.site-banner {
	position: relative;
}

.banner-container img {
	width: 100%;
	height: 100% !important;
	display: block;
}

/*###################################
## Content
###################################*/

.site-content {
	position: relative;
}

.content-text h2 {
	font-size: 50px;
	color: #FFFFFF;
}

.content-text h3 {
	font-size: 25px;
	color: #FFFFFF;
}

.content-text h4 {
	font-size: 20px;
	color: #017500;
	margin-bottom: 20px;
}

.content-text h5 {
	font-size: 13px;
	color: #017500;
	text-transform: uppercase;
	padding-bottom: 5px;
}

.content-text p,
.content-text ul li,
.content-text ol li {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	font-size: 15px;
	color: #FFFFFF;
	line-height: 1.6;
}

.content-img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: 25px;
}

@media screen and (max-width: 768px) {
	.content-text h2 {
		font-size: 40px;
	}
}

/*###################################
## TAG
###################################*/

#tag {
	position: relative;
	padding: 40px 0 20px;
}

#tag .row {
	max-width: 1160px;
	width: 100%;
	margin: 0 auto;
}

#tag .content-text {
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
}

#tag .content-text h2 {
	font-family: 'Impact', sans-serif;
	font-weight: 400;
	font-size: 55px;
	color: #FFFFFF;
	-webkit-text-fill-color: #22B346;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #FFFFFF;
}

@media screen and (max-width: 768px) {
	#tag .content-text h2 {
		font-size: 40px;
	}
}

/*###################################
## SERVICES
###################################*/

#services {
	position: relative;
	padding: 20px 0 40px;
}

#services .row {
	max-width: 1170px;
	width: 100%;
	margin: 0 auto;
}

.services-cell {
	padding: 40px 0;
}

.services-cell>div {
	width: 31.62% !important;
}

.services-cell.alt {
	max-width: 560px;
	width: 100%;
	margin: 0 auto;
	padding: 40px 0 0;
}

.services-cell.alt>div {
	width: 48% !important;
}

.services-cell.alt .content-img {
	max-width: 100%;
	width: 100%;
}

.services-cell .content-img {
	max-width: 83.24%;
	width: 100%;
	margin: 0 auto;
}

.services-cell .content-img img {
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.services-cell .content-img:hover img {
	transform: scale(1.1)
}

/*.services-cell .content-img img { border-radius: 25px; }*/
.services-box .content-text,
.services-cell .widget-title {
	color: #FFFFFF;
}

.services-box .content-text h3,
.services-cell .widget-title {
	margin: 30px 0;
	text-transform: uppercase;
}

.services-box .content-text p {
	min-height: 145px;
}

@media screen and (max-width: 768px) {
	.services-cell>div,
	.services-cell.alt>div {
		width: 100% !important;
		margin: 15px 0;
	}

	.services-box .content-text {
		padding: 0 15px;
	}
}

/*###################################
## REVIEWS
###################################*/

#reviews {
	position: relative;
	padding: 50px 0 190px;
}

#reviews .row {
	max-width: 1170px;
	width: 100%;
	margin: 0 auto;
}

.reviews-box {
	background: #FFFFFF;
	padding: 50px 15px;
	box-shadow: 5px 5px 10px #d3d3d3;
	border-radius: 25px;
}

.reviews-cell {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
}

.reviews-cell .content-img {
	padding-right: 30px;
}

.reviews-cell .content-text h2,
.reviews-cell .content-text p {
	color: #212121;
}

.reviews-cell .content-text .star {
	font-size: 30px;
	color: #FFBF00;
	letter-spacing: 3px;
	margin-right: 15px;
}

.reviews-cell .button {
	margin-top: 25px;
}

.wpcr3_review_item p {
    color: #000;
}

/*###################################
## CONTACT
###################################*/

#contact {
	position: relative;
}

#contact .row {
	max-width: 1070px;
	width: 100%;
	margin: -125px auto 0;
}

/*.contact-cell > div:last-child { margin-top: 5%; }*/
.contact-cell {
	padding-bottom: 30px;
}

.contact-cell .content-img {
	max-width: 460px;
	width: 100%;
}

.form-box {
	position: relative;
	background: #FFFFFF;
	border-radius: 25px;
	box-shadow: 5px 5px 20px #000;
	margin-right: -5%;
}

.form-box .content-text {
	max-width: 490px;
	width: 100%;
	margin: 0 auto;
	padding: 40px 15px;
}

.form-box .content-text h2 {
	color: #212121;
}

@media screen and (max-width: 768px) {
	.form-box {
		margin-right: 0;
	}
	.contact-cell .content-img {
		max-width: 100%;
	}
}

/*###################################
## GALLERY
###################################*/

#gallery {
	position: relative;
	padding: 40px 0;
}

#gallery .row {
	max-width: 1070px;
	width: 100%;
	margin: 0 auto;
}

.gallery-cell {
	padding: 30px 0;
}

.gallery-cell>div {
	width: 23.64% !important;
}

@media screen and (max-width: 768px) {
	.gallery-cell>div {
		width: 100% !important;
	}
}

/*###################max################
## FOOTER
###################################*/

.site-footer {
	position: relative;
	background: #EEEEEE;
	padding: 50px 0 0;
}

.site-footer .container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.footer-box {
	background: #FFFFFF;
	padding: 50px 0;
	border-radius: 25px;
	box-shadow: 5px 5px 10px #d3d3d3;
}

.footer-wrap {
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px 30px;
	border-bottom: 1px solid #DDDDDD;
	margin-bottom: 30px;
}

.footer-links .content-text h2 {
	color: #212121;
	margin-bottom: 10px;
}

@media screen and (max-width: 990px) {
	.footer-wrap {
		flex-wrap: wrap;
		text-align: center;
	}
}

/*FOOTER LINKS*/

.footer-links {
	width: 26.66%;
}

.footer-links .socials {
	margin: 20px 0;
}

.footer-links .logo .content-img {
/* 	max-width: 245px; */
	max-width:102px;
	width: 100%;
	margin: 0 auto;
}

.footer-links .cards .content-img img {
	border-radius: 0;
}

@media screen and (max-width: 990px) {
	.footer-links {
		width: 100%;
		margin: 10px 0;
	}

	.footer-links .content-text {
		text-align: center;
	}
}

/*FOOTER INFO*/

.footer-info {
	width: 18.91%;
}

.footer-info .info {
	padding-bottom: 10px;
}

.footer-info .tel a {
	font-size: 35px;
}

.footer-info .mail a {
	font-size: 25px;
}

.footer-info .loc {
	font-size: 16px;
}

@media screen and (max-width: 990px) {
	.footer-info {
		width: 100%;
		margin: 10px 0;
	}
}

/*FOOTER MAP*/

.footer-map {
	width: 40.54%;
}

.footer-map iframe {
	width: 100%;
	height: 300px;
	display: block;
	border: none;
}

@media screen and (max-width: 990px) {
	.footer-map {
		width: 100%;
		margin: 10px 0;
	}
}

/*COPYRIGHT*/

.copyright {
	position: relative;
	padding: 30px 0 10px;
}

.copyright p,
.copyright a {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	font-size: 13px;
	color: #525252;
	letter-spacing: 2px;
}

.copyright .td img {
	width: 30px;
	display: inline-block;
	vertical-align: middle;
}

/*###################################
## Sidebar Blog
###################################*/
.sidebar {
	border: 1px solid #535353;
	box-sizing: border-box;
	flex-basis: 30%;
	padding: 20px;
}

.sidebar h2 {
	font-size: 25px;
	margin: 0;
}

.sidebar .widget_search {
	box-sizing: border-box;
	background: #6A7A64;
	margin-bottom: 25px;
	padding: 20px;
	width: 100%;
}

.sidebar .widget:last-of-type {
	margin-bottom: 0;
}

/*###################################
## Inner Pages
###################################*/

.inner .site-header {
	border-bottom: 1px solid #DDDDDD;
}

.inner #content {
	padding: 30px 0;
	min-height: 600px;
}

.inner #content h1 {
	font-weight: 400;
	font-size: 50px;
	margin: 10px auto 30px;
	color: #212121;
	text-align: center;
}

.inner #content .row {
	max-width: 1170px;
	width: 100%;
	margin: 0 auto;
}

/*ABOUT PAGE*/

.inner-about .inner-cell {
	padding-bottom: 40px;
}

.inner-about .inner-cell>div {
	width: 49% !important;
	background: #FFFFFF;
	box-sizing: border-box;
	box-shadow: 0 0 14px #444;
	padding: 30px 10px;
	border: 3px solid #017500;
	min-height: 195px;
}

.inner-about .content-text h2 {
	font-weight: 800;
	font-size: 40px;
	color: #017500;
	margin-bottom: 10px;
}

.inner-about .content-text h3 {
	font-weight: 400;
	font-size: 40px;
	color: #017500;
	margin: 20px 0;
}

.inner-about .content-text p,
.inner-about .content-text ol li {
	color: #212121;
}

.inner-about .content-img {
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
	padding: 0 0 20px;
}


/*###################################
## Blog Page
###################################*/
.blog-container {
	padding-right: 5%;
	flex-basis: 65%;
}

.blog-list article {
	transition: all .3s linear;
	border: 1px solid #535353;
	box-sizing: border-box;
	padding: 20px;
}

.blog-list article:not(:last-of-type) {
	margin-bottom: 40px;
}

.blog-list article:hover {
	box-shadow: 0px 0px 20px #000;
}

.blog-title h2 {
	margin: 0 0 20px !important;
	font-size: 30px;
}

.blog-header {
	-webkit-align-items: flex-end;
	align-items: flex-end;
	margin-bottom: 10px;
}

.blog-header p {
	margin: 0;
}

.blog-header p span {
	font-style: italic;
}

.blog-image {
	text-align: center;
}

.blog-image img {
	transition: all .5s linear;
	max-width: 500px !important;
	height: auto !important;
}

.blog-container .btn {
	margin-top: 10px !important;
	padding: 10px 20px;
	font-size: 13px;
}

.pagination-n {
	text-align: right;
	margin-top: 15px;
}

.pagination-n a {
	background: #D7BA5A;
	padding: 2px 10px;
}

.pagination-n .current {
	background: #6A7A64;
	padding: 2px 10px;
	color: #FFF;
}


/*###################################
## Search Page
###################################*/
.page-description {
	text-align: center;
	margin-bottom: 40px;
	font-weight: 700;
	font-size: 25px;
	display: block;
}

.page-description::after {
	content: ' "';
}

.page-description::before {
	content: '" ';
}

.search article {
	transition: all .5s linear;
	border: 1px solid #000;
	margin-bottom: 30px;
	padding: 20px;
	display: block;
}

.search article:hover {
	box-shadow: 0px 0px 20px #000;
}

.search article:last-of-type {
	margin-bottom: 0;
}

.search article h2 {
	margin: 0 0 20px;
	font-size: 35px;
}

.search-con {
	padding-right: 5%;
	flex-basis: 65%;
}


/*###################################
## Error Page
###################################*/
.error-404 {
	text-align: center;
}

.cta {
	display: none;
}

@media screen and (max-width: 850px) {
	.cta {
		background: #22B346 url(assets/images/phonecall.png) no-repeat center center;
		border-top-left-radius: 40px;
		border-bottom-left-radius: 40px;
		bottom: 10px;
		display: block;
		height: 80px;
		position: fixed;
		right: 0;
		text-decoration: none;
		text-indent: -9999em;
		width: 100px;
		z-index: 999;
	}

	.grecaptcha-badge {
		bottom: 95px !important;
	}
}