/*
 Table Of Contents
 1.) Eric Meyer's Reset
 2.) Global Typography
 2.0.2) Global Headings
 2.0.3) Form Elements
 2.0.4) List styles
 2.0.5) General Text Formatting
 2.0.6) Link elements
 2.0.7) Table Elements
 2.0.8) Button Styles
 3.) Site Wide Content
 4.) Header Style
 5.) Footer Style
 ===============================================*/
/*
 1.) Eric Meyer's Reset
 ----------------------------------------*/
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
big {
	font-size: larger;
}
tt {
    font-family: monospace;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*
 1.) Global Typography
 ----------------------------------------*/
*, :before, :after {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 100%;
}
body {
	font-family: 'Roboto', 'Roboto Slab', sans-serif;
}
/*
 2.0.2) Global Headings
 -----------------------------*/
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	color: #161e21;
	line-height: 1.5;
}
h1, .h1, h2, .h2, h3, .h3 {
	margin: 0;
	line-height: 1;
	font-family: 'Roboto', sans-serif;
}
h1 {
	font-size: 60px;
	color: #433e3e;
	line-height: 1.3;
	font-weight: 700;
	margin-top: 8px;
}
h2 {
	font-size: 36px;
	padding-bottom: 30px;
	letter-spacing: 7px;
}
h3 {
	font-size: 30px;
	line-height: 1.3;
	text-transform: capitalize;
	margin-bottom:30px;
}
h4 {
	font-size: 20px;
	color: #1c2022;
	font-weight: 400;
	margin-bottom: 25px;
	text-transform: capitalize;
}
/*
 2.0.3) Form Elements
 -----------------------------*/
button, input, optgroup, textarea {
	margin: 0;
	padding: 12px 25px;
	font-size: 16px;
	line-height: 31px;
	color: #fff;
	background: #e08e79;
	border: 2px solid #fff;
	font-family: 'Roboto Slab', serif;
	-webkit-appearance: none;
}
 select{
	margin: 0;
	padding: 12px 25px;
	font-size: 16px;
	line-height: 31px;
	color: #fff;
	background: #e08e79;
	border: 2px solid #fff;
	font-family: 'Roboto Slab', serif;
}
input {
	line-height: normal;
}
input:focus, select:focus, textarea:focus, button:focus {
	border: 1px #ece5ce solid;
	outline: 0;
}
input[type="checkbox"], input[type="radio"] {
	padding: 0;
	border: none;
}
button, input[type="button"], input[type="reset"], input[type="submit"], input[type="file"] {
	-webkit-appearance: none;
	cursor: pointer;
	line-height: normal;
	overflow: visible;
}
input[type="text"] {
	border-radius: 0;
	width: 312px;
	padding: 0px 12px 0px;
	border: 1px solid #ece5ce;
	float: left;
	height: 52px;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	background: #e08e79;
}
textarea {
	font-size: 16px;
	color: #fff;
	text-transform: capitalize;
	padding: 16px 0 0 12px;
	margin-top: 0px;
	background: #e08e79;
	font-weight: 400;
	border: 2px solid #ece5ce;
	margin-bottom: 30px;
}
label {
	font-size: 16px;
	color: #1c2022;
	font-weight: 400;
}
button[disabled], input[disabled] {
	cursor: default;
	color: #999;
	border-color: #ccc;
}
button::-moz-focus-inner, input::-moz-focus-inner {
	padding: 0;
	border: 0;
}
input::-webkit-input-placeholder {
	color: #fff;
	font-family: roboto;
	font-weight: 400;
	font-size: 16px;
	opacity: 1;
}
input:-moz-placeholder {/*/ Firefox 18- /*/
	color: #fff;
	font-family: roboto;
	font-weight: 400;
	font-size: 16px;
	opacity: 1;
}
input::-moz-placeholder {/*/ Firefox 19- /*/
	color: #fff;
	font-family: roboto;
	font-weight: 400;
	font-size: 16px;
	opacity: 1;
}
input:-ms-input-placeholder {
	color: #fff;
	font-family: roboto;
	font-weight: 400;
	font-size: 16px;
	opacity: 1;
}
textarea::-moz-placeholder {
	color: #fff;
	font-size: 16px;
	opacity: 1;
	font-weight: 400;
}
textarea::-webkit-input-placeholder {
	color: #fff;
	font-size: 16px;
	opacity: 1;
	font-weight: 400;
}
textarea::-ms-input-placeholder {
	color: #fff;
	font-size: 16px;
	opacity: 1;
	font-weight: 400;
}
/*
 2.0.4) List Styles
 ---------------------------------*/
ul, ol, dl {
	font-size: 100%;
	line-height: 1.5;
}
li, dt {
	line-height: 1.5em;
}
dl {
	margin: 0 0 1em 0;
}
dd {
	margin: 0 0 1em 0.8em;
}
ul {
	list-style-type: none;
}
ol {
	list-style-type: decimal;
	margin: 0 0 1em 0;
}
ul ul, ol ul {
	margin-top: 0;
}
ol ol {
	list-style-type: lower-latin;
	margin-top: 0;
}
/*
 2.0.5) General Text Formatting
 -----------------------------------*/
p {
	font-size: 100%;
	line-height: 1.7;
}
blockquote, cite, q, var, dfn {
	font-style: italic;
}
blockquote {
	background: transparent;
	color: #666666;
}
small {
	font-size: 85.71429%;
	line-height: 1.75;
}
pre, code, kbd, tt, samp, var {
	font-size: 100%;
}
pre {
	font-size: 100%;
	line-height: 1.5;
	margin: 0 0 1.5em 0;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
pre, code {
	color: #880000;
}
kbd, samp, var {
	color: #666666;
	font-weight: bold;
}
acronym, abbr {
	border-bottom: 1px #aaa dotted;
	font-variant: small-caps;
	cursor: help;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
img {
	max-width: 100%;
	height: auto;
}
/*
 2.0.6) Link style
 -------------------------*/
a {
	color: #e08e79;
	text-decoration: none;
}
a:hover{
	color:#ce5030;
}
a:hover, a:focus {
	text-decoration: none;
	outline: none;
}
a:active {
	outline: none;
}
.btn-default:active, .btn-default.active{
	color: inherit;
	border-color: inherit;
	box-shadow: none;
	-webkit-box-shadow: none;
}
/*
 2.0.7) Table Elements
 --------------------------*/
table {
	width: 100%;
	border-collapse: collapse;
	color: #444444;
	border-top: 1px #ccc solid;
	border-bottom: 1px #ccc solid;
	margin: 0 0 1.35714em 0;
}
caption {
	font-variant: small-caps;
}
th, td {
	line-height: 1.5em;
	vertical-align: top;
	padding: 0.71429em 0.5em;
}
th *:first-child, td *:first-child {
	margin-top: 0;
}
thead th {
	text-align: left;
	color: #000;
	border-bottom: 2px #000 solid;
}
tbody th {
	text-align: left;
	border-top: 1px solid #ccc;
}
tbody td {
	text-align: left;
	border-top: 1px solid #ccc;
}
/*
 2.0.8) Button Styles
 -------------------------*/
.btn, input.btn, button.btn {
	display: inline-block;
	font-size: 12px;
	color: #000;
	line-height: normal;
	vertical-align: middle;
	padding: 0 5px;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	border: 1px solid #ccc;
	background: #eee;
	letter-spacing: 1px;
}
button.btn-submit {
	padding: 0px 28px;
	line-height: 44px;
	font-size: 13px;
	color: #fff;
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	text-align: center;
	background: #0e111a;
	text-transform: uppercase;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	border: none;
}
/* Clear Floated Elements
 ----------------------------------------------------------------------------------------------------*/
/* http://sonspring.com/journal/clearing-floats */
.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}
/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */
.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}
.clearfix {
	display: inline-block;
}
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/*
 3.) Site Wide Content
 ------------------------------*/
#wrapper {
	overflow: hidden;
	position: relative;
}
p {
	color: #757575;
	font-size: 16px;
	font-weight: 300;
}
.btn, button {
	font-size: 14px;
	color: #fff;
	font-family: 'Karla', sans-serif;
	font-weight: 700;
	border: 2px solid #f3dbbd;
	background: none;
	padding: 16px 32px 16px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	display: inline-block;
	letter-spacing: 1px;
	text-transform: uppercase;
}
/*
 4.) Header Styles
 ------------------------------*/
/*==== Header one======*/
.header {
	background: rgba(255,255,255,1);
	position: static;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 999999;
	right: 0;
}
#header ul{
	list-style-type: none;
	margin-bottom:0;
	padding-left:0;
}
.header-cont {
	padding-top: 24px;
	padding-bottom: 0px;
}
.logo {
	float: left;
	margin-top: 2px;
	margin-left: 0px;
	position: relative;
}
.logo i {
	border-radius: 50%;
	color: #ffffff;
	font-size: 14px;
	height: 28px;
	left: 0;
	margin: 0 auto;
	padding-top: 8px;
	position: absolute;
	right: 0;
	text-align: center;
	width: 28px;
	top: 6px;
    }
nav {
	float: right;
	margin-top: 10px;
}
.home-menu {
	position: absolute;
	right: 0;
	top: 30px;
	display: none;
	padding: 9px 10px;
}
nav .icon-bar {
	display: block;
	height: 2px;
	width: 22px;
	color: #774f38;
	background: rgba(0,0,0,0.6);
}
.home-menu .icon-bar + .icon-bar {
	margin-top: 4px;
}
.menu-block {
    float: right;
    margin-top: 10px;
}
.menu-block nav{
	float:none;
	margin-top:0;
	margin-left:-15px;
	margin-right:-15px;
}
.navigation > li {
	float: left;
	position: relative;
	padding: 0 14px 38px;
	margin-bottom:0;
	font-size:16px;
}
.navigation li a {
	font-size: 16px;
	color: #774f38;
	font-family: 'roboto';
	font-weight: 400;
	text-transform: uppercase;
}
.navigation li.active a,.navigation li a:hover{
	color:#e08e79;
}
.navigation li:last-child {
	padding-right: 0;
}
.sub-menu {
	position: absolute;
	top: 100px;
	width: 160px;
	z-index: 999;
	left: -9999px;
	opacity: 0;
	-webkit-transition: top .2s ease, opacity .2s ease;
	-moz-transition: top .2s ease, opacity .2s ease;
	-ms-transition: top .2s ease, opacity .2s ease;
	-o-transition: top .2s ease, opacity .2s ease;
	transition: top .2s ease, opacity .2s ease;
}
.sub-menu li {
	list-style: none;
	border-bottom: 1px solid rgba(119,79,56,0.3);
	background: rgba(236, 231, 210, 0.9);
	margin-bottom:0;
}
.sub-menu li a {
	color: #774f38;
	text-transform: capitalize;
	padding: 8px 15px;
	display: block;
}
.sub-menu li:last-child {
	border-bottom: none;
}
.navigation > li:hover .sub-menu, .error .navigation > li:hover .sub-menu {
	left: auto;
	top: 62px;
	opacity: 1;
	right: 0;
}
.home-agency .navigation > li:hover  .sub-menu {
	top: 59px;
}
.inner-header .navigation > li:hover  .sub-menu {
	top: 75px;
}
/*======Header Two===========*/
.home-agency nav {
	margin-top: 2px;
}
.home-agency .logo {
	border: 1.5px solid #e29582;
}
.home-agency .logo img {
	padding: 11px 14px;
	margin: 5px;
	display: block;
}
.home-agency .header {
	height: 97px;
}
.home-agency .navigation li a {
	font-size: 16px;
}
.home-agency .header-cont {
	padding-bottom: 19px;
	padding-top: 20px;
}
.home-agency .navigation > li {
	padding: 16px 0px 36px 26px;
}
.home-agency .navigation > li:first-child{
	padding-left:0
}
.inner-header{
	font-family: "Roboto",sans-serif;
}
.inner-header .navigation li a {
	font-size: 16px;
}
.inner-header .header-cont{
	padding-top:20px;
}
/*.inner-header .logo{
	border: 1.5px solid #e29582;
}*/
.inner-header .logo img {
	/*padding: 11px 14px;
	margin: 4px;*/
	display: block;
}
.inner-header nav {
	margin-top: 0;
}
.inner-header .menu-block{
	margin-top: 2px;
}
.inner-header .header {
	height: 97px;
}
.inner-header .navigation > li {
	padding: 15px 0 36px 27px;
}
.inner-header .navigation > li:first-child{
	padding-left:0
}
body.home .home .header{
	position:absolute;
	background: rgba(255, 255, 255, 0.7);
}
.btn-default:focus, .btn-default.focus{
	color:#fff !important;
}
.error404 .header{
	position: relative;
}
.navigation > li:hover .sub-menu .sub-menu{
	top:0;
	left:100%;
}

/*
 5.)   Footer Styles
 ------------------------------*/
/*=======footer one ========*/
/*#footer {
	text-align: center;
}*/
#footer ul {
	list-style-type: none;
	margin-bottom:0;
	padding-left:0;
}
#footer ul li{
	list-style-type: none;
	margin-bottom:0;
}
.primary-footer {
	background: #3f3f3f;
	padding: 69px 0px 85px;
	text-align: center;
}
.primary-footer h4 {
	font-size: 60px;
	line-height: 1.4;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 3px;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 5.5px;
}
.primary-footer h4 span {
	font-family: 'Playfair Display', serif;
	display: inline-block;
	margin: 0 28px;
}
.main-footer {
	background: #323232;
	padding: 13px 10px 18px;
}
.right-footer .menu li:last-child{
	margin-right:0;
}
.oct-class {
	color: rgba(255,255,255,0.6);
	font-size: 24px;
	text-transform: uppercase;
	font-family: 'Roboto slab', sans-serif;
	letter-spacing: 4px;
}
.left-footer {
	float: left;
	color: #898989;
	font-size: 14px;
}
.psd-temp-class {
	padding: 11px 0 0;
	display: block;
	font-family: roboto;
	font-weight: 400;
	font-size: 16px;
}
.right-footer {
	float: right;
}
.psd-temp-class .fa-heart {
	color: #e08e79;
	font-size: 16px;
}
.macro-class {
	color: #898989;
	font-weight: 500;
	font-family: 'Maven Pro', sans-serif;
	font-size: 16px;
}
.footer-logo figure{
	margin-bottom:3px;
}
.macro-class:hover {
	color: #898989;
}
.right-footer .menu li{
	float: left;
	margin-right: 6px;
}
.circle-class {
	width: 38px;
	height: 38px;
	border-radius: 50px;
	background: #3f3f3f;
	display: block;
}
.right-footer .fa-facebook, .right-footer .fa-twitter, .right-footer .fa-instagram, .right-footer .fa-pinterest,.right-footer .fa-google-plus {
	font-size: 18px;
	color: #fff;
	padding-top: 10px;
}
/*========footer two=========*/
.home-agency .primary-footer {
	padding: 114px 20px 122px;
}
.home-agency .circle-class {
	width: 37px;
	height: 37px;
}
.home-agency .right-footer .menu li{
	margin-right: 6px;
}
.home-agency .sec-block {
	width: 230px;
	float: left;
	text-align: left;
	margin-left: 218px;
	margin-top:4px;
}
.home-agency .sec-block.sec-block-right{
	 margin-left: 170px;
    margin-top: 0;
}
.home-agency .sec-block.sec-block-right .mail{
	margin-left:8px;
	padding-left:0;
}
.home-agency .sec-block.sec-block-right .call{
	margin-left:9px;
}
.home-agency .sec-block h5 {
	font-size: 16px;
	color: #e08e79;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	padding-bottom: 7px;
	margin-bottom:0;
	text-transform: capitalize;
}
.home-agency .footer-logo > a {
	float: left;
	margin-top:7px;
}
.home-agency .footer-logo .sec-block span,.home-agency .footer-logo .sec-block .call,.home-agency .footer-logo .sec-block address p {
	font-size: 16px;
	color: #fff;
	line-height: 1.4;
	font-weight: 300;
}
.home-agency .sec-block address p{
	padding-left:0;
	padding-right:0;
}
.home-agency .attending-class {
	padding-top: 113px;
}
.home-agency .right-footer {
	float: none;
	text-align: center;
	padding-top: 17px;
}
.home-agency .right-footer .circle-class {
	background: #323232;
}
.home-agency .right-footer .circle-class:hover {
	background: #e08e79;
	-webkit-transition: ease 0.5s;
	-moz-transition: ease 0.5s;
	-ms-transition: ease 0.5s;
	-o-transition: ease 0.5s;
	transition: ease 0.5s;
}
.home-agency .main-footer {
	text-align: center;
	padding: 28px 0 39px;
}
.home-agency .left-footer {
	float: none;
}
.home-agency .footer-logo .sec-block .email-info {
    color: #e08e79;
    font-size: 16px;
    text-transform: capitalize;
    font-weight:400;
    line-height: 1.45;
}
.home-agency .sec-block .mail {
    display: inline-block;
    font-size: 16px;
    padding-left: 8px;
	color: #fff;
	line-height: 1.4;
	font-weight: 300;
        text-transform: none;
}
.sec-block address{
	margin-bottom:0;
}
.sec-block address p{
	padding-bottom:0;
}
.left-footer .psd-temp-class .psd-temp-class{
	padding-top:0;
}
/*sticky header style
===================*/
body #header {
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

body #header.fixed, body .home-agency #header.fixed {
	left: 0;
	margin: 0 auto;
	position: fixed !important;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 9999;
}
body #header.fixed {
	background: rgba(255,255,255,0.6);
	width: 100%;
}
body.logged-in #header.fixed .container{
	margin-top: 32px;
}
body.logged-in #header.intelligent .container{
	margin-top: 32px;
}
body .top-m {
	margin-top: 97px;
}
body #header.intelligent {
	left: 0;
	position: fixed !important;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 9999;
}
body #header.up {
	opacity: 0;
	top: -162px;
	visibility: hidden;
}
.alignleft,
.alignright {
	margin-bottom: 25px;
}
