/*!
Theme Name: Thoroughbred
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: thoroughbred
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.

Thoroughbred is based on Underscores http://underscores.me/, (C) 2012-2016 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 http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700');
html {
	font-family: 'Open Sans', sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

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

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

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

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

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

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
	margin-top: 0px;
	margin-bottom: 0px;
}

/* p {
	margin-bottom: 20px;
} */

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

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

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
	line-height: 30px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover, a:focus, a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

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

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

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

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

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

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


                /* ============================================================
                                    Home page
                ============================================================ */

.content_alignment{
	width: 70%;
	float: left;
	border-right: 1px solid #ccc;
	padding-left: 30px;
	padding-right: 10px;
}
.featured_image{
	position: relative;
	margin-bottom: 30px;
}
.yellow{
	color: #ff6c00;
}
.white{
	color: #fff;
}
.banner_text_homepage{
	position: absolute;
    left: 50%;
    top: 15%;
    text-align: right;
    padding-right: 2%;
}
.banner_text_homepage .white,
.banner_text_homepage .yellow{
    font-weight: 700;	
}
.sidebar_alignment{
	width: 30%;
	float: left;
	padding-left: 40px;
	padding-right: 20px;
}
body{
	background-color: #ff6c00!important;
}
#main_wrap{
    max-width: 980px;
    margin: 0 auto;
    font: normal 1.2em/1.5em Arial , Verdana, sans-serif;
    padding: 0px 10px;
    background: #fff;
}
.header_container{
	background-color: #ff6c00;
	padding: 20px;
	font-family: 'Open Sans', sans-serif;

}
.header_main_logo{
	float: right;
}
.main_logo_align{
	float: right;
}
.header_text{
	font-family: 'Open Sans', sans-serif;
	color: #fff	
}
.header_text a{
	color: #fff	;
	text-decoration: underline;	
}
.navbar-default{
	background-color: #fff;
	border: none;
}
.navbar{
	min-height: 30px;
	margin-bottom: 0px;
}
.navbar-nav > li > a{
	padding-top: 5px;
	padding-bottom: 5px;

}
.navbar-default .navbar-nav > li > a{
	color: #ff8d00;	
}
.nav > li > a:first-child {
	padding-left: 0px;
}
.nav > li > a{
	padding: 10px 20px;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus{
	color: #000;
    background-color: transparent;
}
/* #homepage_main_content{
	padding-left: 30px;
}
.homepage_list,
.monthly_retainer_service,
.thoroughbred_links{
	padding-left: 30px;
} */
#homepage_main_content h1{
    font-size: 24px;
    line-height: 28px;
    padding-bottom: 35px;
    color: #ff6c00;	
}
#homepage_main_content a{
	color: #ff6c00;	
}
.homepage_list ul,
.monthly_retainer_service ul{
    padding-left: 0px;
    margin-left: 0px;
}
.homepage_list ul li,
.monthly_retainer_service ul li{
	list-style:none;
}
.homepage_list ul li::before,
.monthly_retainer_service ul li::before {
	content: "\f111";
	font-family: 'FontAwesome';
	color: #ff7000; /* or whatever color you prefer */
	margin-right: 5px;
	font-size: 8px;
	left: -1px;
    position: absolute;
    top: 0px;
}

.homepage_list ul li {
    font-size: 12px;
    line-height: 24px;
    padding-left: 15px;
    position: relative;
}
.homepage_list h4{
	color: #808080;
	padding-bottom: 25px;
	font-size: 15px;
	font-weight: bold;
	line-height: 22px;
}
.monthly_retainer_service h5{
	font-size: 14px;
	color: #ff6600;
	padding-bottom: 20px;
}
.monthly_retainer_service p{
	font-size: 12px;
	color: #808080;
	margin-bottom: 10px;	
}
.monthly_retainer_service h6{
	font-size: 11px;
}
.monthly_retainer_service ul li{
    font-size: 12px;
    line-height: 24px;
    padding-left: 15px;
    position: relative;
	color: #808080;
}
.thoroughbred_links{
	padding-bottom: 140px;
}
.thoroughbred_links h4{
	font-size: 16px;
	color: #808080;
	padding-bottom: 50px;
	font-weight: bold;
}
.thoroughbred_links h5{
	font-size: 16px;
	color:  #ff6600;
	margin-bottom: 10px;
}
.thoroughbred_links a{
	color: #808080;
}
.sidebar_content img{
	padding-bottom: 10px;
}
.sidebar_content{
	color: #808080;
}
.sidebar_content strong{
	font-size: 14px;
	line-height: 22px;
	color: #ff6c00;
}
.sidebar_content a{
	color: #ff6c00;	
}
/* for list items */

#content_alignment ul{
    padding-left: 0px;
    margin-left: 0px;
}
#content_alignment ul li{
	list-style:none;
}
#content_alignment ul li::before {
	content: "\f111";
	font-family: 'FontAwesome';
	color: #ff7000; /* or whatever color you prefer */
	margin-right: 5px;
	font-size: 8px;
	left: -1px;
    position: absolute;
    top: 0px;
}
#content_alignment ul li{
    font-size: 12px;
    line-height: 24px;
    padding-left: 15px;
    position: relative;
	color: #808080;
}
/* till here */

   @media only screen and (max-width: 767px){
	   	#main_wrap{
	   		font: normal;
	   	}
   	   .header_container{
   	   	padding: 10px;
   	   }
	   .header_main_logo{
	   	text-align: center;
	   	float: none;
	   	margin-bottom: 2%;
	   }
	   .main_logo_align{
	   	 float: none;
	   }
	   .header_text_mobile{
	   	width: 50%;
	   	float: left;
	   }
	   .navbar{
	   	min-height: 0px;
	   }
	   .navbar-header{
	   	width: 50%;
	   	float: left;
	   }
	   .banner_text_homepage {
	    left: 1%;
	    top: 16%;
	    padding-right: 2%;
	   }
	   .banner_text_homepage .white, 
	   .banner_text_homepage .yellow{
	   	font-size: 16px;
	   }
	   .banner_text_homepage .yellow{
	   	text-shadow: 2px 2px black;
	   }
	   .content_alignment {
	    width: 100%;
	    padding-left: 10px;
	    padding-right: 10px;
	    float: none;
        border-right: none;
	   }
	   .sidebar_alignment{
	   	display: none;
	   }
	   .thoroughbred_links{
	   	padding-bottom: 60px;
	   }
	   .homepage_banner_img{
	   	height: 120px;
	   }
	   .navbar-nav {
	    margin: 0.5px 0px;
	   }
	   .thoroughbred_links a{
	   	font-size: 11px;
	   }
	   .navbar-toggle{
	   	border: 1px solid #fff;
	   	margin-right: 0px;
	   }
	   .navbar-toggle .icon-bar{
	   	border: 1px solid #fff;
	   }
	   
}
   @media only screen and (max-width: 400px){
		.thoroughbred_links a{
			font-style: 10px;
		}
}

                /* ============================================================
                                    Services page
                ============================================================ */
.banner_text_service_page{
	position: absolute;
    left: 2%;
    width: 71%;
    top: 15%;
    padding-right: 3%;
}
.banner_text_service_page .white{
	font-size: 16px;
	margin-bottom: 20px;
	font-weight: 700;
}
.banner_text_service_page .yellow{
	font-size: 12px;
	font-weight: 700;
}

#services_content h3,
#faq_content h3{
    font-size: 24px;
    line-height: 28px;
    padding-bottom: 35px;
    color: #ff6c00;
}
#services_content h4,
#faq_content h4{
    color: #808080;
    padding-bottom: 25px;
    font-size: 15px;
    font-weight: bold;
    line-height: 22px;
}
#services_content p,
#faq_content p{
    font-size: 12px;
    color: #808080;
    margin-bottom: 10px;
}
#services_list,
#faq_content{
	padding-bottom: 80px;
}
#services_list h4{
    color: #808080;
    padding-bottom: 20px;
    font-size: 15px;
    font-weight: bold;
    line-height: 22px;
}
#services_list ul{
    padding-left: 0px;
    margin-left: 0px;
}
#services_list ul li{
	list-style:none;
}
#services_list ul li::before {
	content: "\f111";
	font-family: 'FontAwesome';
	color: #ff7000; /* or whatever color you prefer */
	margin-right: 5px;
	font-size: 8px;
	left: -1px;
    position: absolute;
    top: 0px;
}
#services_list ul li{
    font-size: 12px;
    line-height: 24px;
    padding-left: 15px;
    position: relative;
	color: #808080;
}
#services_list p{
    font-size: 12px;
    color: #808080;
    margin-bottom: 10px;
}
#services_list a,
#faq_content a,
#faq_content em{
	color: #ff6c00;		
}
   @media only screen and (max-width: 767px){
	.service_page_banner_img{
		height: 250px;
	}
	.banner_text_service_page{
		width: 100%;
	}
	.banner_text_service_page .white{
		font-size: 14px;
	    margin-bottom: 10px;
	    font-weight: 500;
	   	text-shadow: 2px 2px black;
	}
	#services_list, #faq_content{
		padding-bottom: 40px;
	}
	#services_content h3, 
	#faq_content h3{
		padding-bottom: 20px;
	}
	#services_content h4,
    #faq_content h4{
    	padding-bottom: 10px;
    	padding-top: 10px;
    	line-height: 20px;
    }

}

                /* ============================================================
                                   LEGAL FINANCE JOB
                ============================================================ */
.banner_text_legal{
	position: absolute;
    left: 4%;
    top: 43%;
}
.banner_text_legal .white{
	font-size: 30px;
	font-weight: 700;
}
.banner_text_legal .yellow{
	font-size: 30px;
	font-weight: 700;
}
.banner_text_legal .grey{
	color: #f1f1f1;
	font-size: 20px;
}
#legal_first_section h3{
    font-size: 16px;
    line-height: 22px;
    padding-bottom: 20px;
    color: #808080;
}
#legal_first_section h4{
    color:#ff6c00;
    font-size:14px;
    margin-bottom: 10px;
}
#legal_first_section h5{
    font-size:16px;
    margin-bottom: 20px;
    color:  #808080;
    font-weight: bold;
}
#legal_first_section a{
	color: #ff6c00;	
}
#legal_first_section p{
    color: #808080;	
}
#legal_first_section .orange{
	color: #ff6c00;
}
#legal_first_section ul{
    padding-left: 0px;
    margin-left: 0px;
}
#legal_first_section ul li{
	list-style:none;
}
#legal_first_section ul li::before {
	content: "\f111";
	font-family: 'FontAwesome';
	color: #ff7000; /* or whatever color you prefer */
	margin-right: 5px;
	font-size: 8px;
	left: -1px;
    position: absolute;
    top: 0px;
}
#legal_first_section ul li{
    font-size: 12px;
    line-height: 24px;
    padding-left: 15px;
    position: relative;
	color: #808080;
}
#legal_second_section h3{
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 20px;
    color: #808080;	
}
#legal_second_section h4{
    color:#ff6c00;
    font-size:14px;
    margin-bottom: 10px;
}
#legal_second_section h5{
    font-size:16px;
    margin-bottom: 20px;
    color:  #808080;
    font-weight: bold;
}
#legal_second_section a{
	color: #ff6c00;	
}
#legal_second_section p{
    color: #808080;	
}
#legal_second_section .orange{
	color: #ff6c00;
}
#legal_second_section ul{
    padding-left: 0px;
    margin-left: 0px;
}
#legal_second_section ul li{
	list-style:none;
}
#legal_second_section ul li::before {
	content: "\f111";
	font-family: 'FontAwesome';
	color: #ff7000; /* or whatever color you prefer */
	margin-right: 5px;
	font-size: 8px;
	left: -1px;
    position: absolute;
    top: 0px;
}
#legal_second_section ul li{
    font-size: 12px;
    line-height: 24px;
    padding-left: 15px;
    position: relative;
	color: #808080;
}
.legal_sidebar h3 {
    font-size: 14px;
    line-height: 22px;
    color: #ff6c00;
    margin-bottom: 10px;
}
.legal_sidebar p {
    font-size: 12px;
    line-height: 18px;
    color: #808080;
}

.legal_sidebar ul{
    padding-left: 0px;
    margin-left: 0px;
}
.legal_sidebar ul li{
	list-style:none;
}
.legal_sidebar ul li::before {
	content: "\f111";
	font-family: 'FontAwesome';
	color: #ff7000; /* or whatever color you prefer */
	margin-right: 5px;
	font-size: 8px;
	left: -1px;
    position: absolute;
    top: 0px;
}
.legal_sidebar ul li{
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
	color: #808080;
}
   @media only screen and (max-width: 767px){
   	        .banner_text_legal{
   	        	top: 15%;
   	        }
			.legal_page_banner_img{
				height: 200px;
			  }
			  .banner_text_legal .white,
			  .banner_text_legal .yellow{
                font-size: 24px;
                margin-bottom: 10px;
			  }
			  .banner_text_legal .grey{
			  	padding-top: 2px;
			  	font-size: 18px;
			  }
			  #legal_first_section h5,
			  #legal_second_section h5{
			  	line-height: 22px;
			  }
}
             /* ============================================================
                                  ABOUT PAGE
                ============================================================ */
.banner_text_about_page{
    position: absolute;
    left: 28%;
    top: 15%;
    padding-right: 2%;
    text-align: right;	
}
.banner_text_about_page .black{
	font-size :17px;
	margin-bottom: 10px;
	font-weight: 600;
}
.banner_text_about_page .yellow{
	 font-size: 16px;
	 margin-bottom: 10px;
	 font-weight: 600;
}
.banner_text_about_page .light_black{
	 font-size: 14px;
	 font-weight: 700;
}
#aboutpage_heading h2{
    font-size: 24px;
    line-height: 28px;
    color: #ff6c00;
}
#about_description p{
	font-size: 12px;
    color: #808080;
    margin-bottom: 10px;
}
#about_list h4{
    color: #808080;
    padding-bottom: 20px;
    font-size: 15px;
    font-weight: bold;
    line-height: 22px;
}
#about_list ul{
    padding-left: 0px;
    margin-left: 0px;
}
#about_list ul li{
	list-style:none;
}
#about_list ul li::before {
	content: "\f111";
	font-family: 'FontAwesome';
	color: #ff7000; /* or whatever color you prefer */
	margin-right: 5px;
	font-size: 8px;
	left: -1px;
    position: absolute;
    top: 0px;
}
#about_list ul li{
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
	color: #808080;
}
#about_key_sector_experience h4{
	color: #808080;
    padding-bottom: 20px;
    font-size: 15px;
    font-weight: bold;
    line-height: 22px;
}
#about_key_sector_experience p{
    font-size: 12px;
    color: #808080;
    margin-bottom: 10px;
}
#about_page_hobbies p{
    font-size: 12px;
    color: #808080;
    margin-bottom: 10px;	
}
#aboutpage_charity h4{
	color: #808080;
    padding-bottom: 20px;
    font-size: 15px;
    font-weight: bold;
    line-height: 22px;
}
#aboutpage_charity p{
    font-size: 12px;
    color: #808080;
    margin-bottom: 10px;
}
#about_page_hobbies a,#aboutpage_charity a{
	color: #ff6c00;
}
   @media only screen and (max-width: 767px){
   	     .about_page_banner_img{
   	     	height: 110px;
   	     }
         .banner_text_about_page {
			top: 5%;
			padding-right: 2%;
           }
           .banner_text_about_page .black {
		    font-size: 10px;
		    margin-bottom: 2px;
		    font-weight: 600;
          }
          .banner_text_about_page .yellow {
			    font-size: 10px;
			    margin-bottom: 2px;
			    font-weight: 500;
			}
			.banner_text_about_page .light_black {
			    font-size: 10px;
			    font-weight: 700;
			}
}
                /* ============================================================
                                   Contact Form
                ============================================================ */

.banner_text_contact_page{
    position: absolute;
    left: 4%;
    top: 15%;
    padding-right: 2%;	
    width: 63%;
}
.banner_text_contact_page .white{
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
}
.banner_text_contact_page .yellow{
	font-size: 12px;
	line-height: 16px;
	font-weight: 700;
}
#contact_page h3{
	font-size: 24px;
	color: #ff7000;
	font-weight: 700;
	margin-bottom: 20px;
}
.contact_form_email{
	margin-bottom: 15px;
}
.contact_form_email img,
.contact_form_number img{
	margin-right: 2%;
}
.email_copy {
	margin: -12px;
}
.contact_form_submit .wpcf7-submit{
    width: 20%;
    height: 25px;
    color: #fff;
    border: none;
    font-size: 12px;
    background-color: #ff6c00;
}
   @media only screen and (max-width: 767px){
		.banner_text_contact_page{
			width: 98%;
			top: 10%;
			padding-right: 4%;
		}
		.contact_page_banner_img{
			height: 220px;
		}
		.banner_text_contact_page .white {
		    font-size: 14px;
		    font-weight: 600;
		    margin-bottom: 15px;
		}
		.banner_text_contact_page .yellow{
			font-weight: 600;
		}
}
                /* ============================================================
                                   FOOTER
                ============================================================ */
.site-footer{
	margin-top: 20px;
	padding-bottom: 20px;
}
.site-info{
	border-top: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
	padding: 8px 25px;
}
.footer_copyright{
	float: right;
	font-size: 12px;
	color: #aaa;
}
.site-info span{
	font-size: 13px;
}
.footer_orange{
	color: #ff6c00;
	font-size: 13px;
}
.footer_black{
	color: #000;
	font-size: 13px;
}
.site-info a{
	color: #666;
}
.copyright_mobile{
	display: none;
}
   @media only screen and (max-width: 767px){
   		.site-info{
   	     padding: 10px 10px;
         padding-bottom: 5px;
   		}

   		.site-info span:first-child  {
         display: block;
   		}
   		.footer_email_mobile{
   			display: inline-flex;
   		}
   		.site-footer{
   			padding-bottom:  0px;
   		}
   		.copyright_links a{
	      line-height: 20px;
	      font-size: 12px;
	    }
	    .footer_copyright{
	    	display: none;
	    }
	    .copyright_mobile{
	      background-color: #ff6c00;
	      display: block;
	      font-size: 12px;
	      color: #fff;
	      text-align: center;
	      padding: 1%;
	      line-height: 22px;
	    }
}


.error_page_alignment{
    text-align: center;
}
.error-404 h1{
    font-size: 200px;
    font-weight: 500;
    line-height: 220px;
    color: #686868;
}
.error_button{
    color: #fff !important;
    font-size: 18px;
    padding: 11px 30px;
    text-decoration: none;
    letter-spacing: 1px;
    background: #f7941d;
    font-weight: 400;
}
.not_found_paragrapgh p {
    padding-bottom:15px;
}
.page-header{
    border-bottom:none;
}

.color-orange{
    color: #ff6c00;
}
.heading-h2{
    font-size: 24px;
    line-height: 28px;
}
.p-style p{
    font-size: 12px;
    color: #808080;
    margin-bottom: 10px;
}