/*
Theme Name: eRealty Advisors
Author: Smartsites
Author URI: http://www.smartsites.com/
Description: Customize Theme
Version: 1.0.0
Text Domain: erealty-advisors
Tags:

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.

eRealty Advisors 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
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@import url('//fonts.googleapis.com/css?family=Open+Sans:400,400i,600,600i,700');
@import url('//fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');
@import url('//fonts.googleapis.com/css?family=Oswald:300,400,500,600,700');

@font-face {
	font-family: 'SegoeUI-Bold';
	src: url('fonts/SegoeUI-Bold.eot');
	src: url('fonts/SegoeUI-Bold.eot#iefix') format('embedded-opentype'),
		url('fonts/SegoeUI-Bold.woff') format('woff2'),
		url('fonts/SegoeUI-Bold.woff') format('woff'),
		url('fonts/SegoeUI-Bold.ttf') format('truetype'),
		url('https://erealtyadvisors.com/wp-content/themes/erealty-advisors/fonts/SegoeUI-Bold.svg#SegoeUI-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'SegoeUI-Semibold';
	src: url('fonts/SegoeUI-Semibold.eot');
	src: url('fonts/SegoeUI-Semibold.eot#iefix') format('embedded-opentype'),
		url('fonts/SegoeUI-Semibold.woff') format('woff2'),
		url('fonts/SegoeUI-Semibold.woff') format('woff'),
		url('fonts/SegoeUI-Semibold.ttf') format('truetype'),
		url('https://erealtyadvisors.com/wp-content/themes/erealty-advisors/fonts/SegoeUI-Semibold.svg#SegoeUI-Semibold') format('svg');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'SegoeUI-Regular';
	src: url('fonts/SegoeUI-Regular.eot');
	src: url('fonts/SegoeUI-Regular.eot#iefix') format('embedded-opentype'),
		url('fonts/SegoeUI-Regular.woff') format('woff2'),
		url('fonts/SegoeUI-Regular.woff') format('woff'),
		url('fonts/SegoeUI-Regular.ttf') format('truetype'),
		url('https://erealtyadvisors.com/wp-content/themes/erealty-advisors/fonts/SegoeUI-Regular.svg#SegoeUI-Regular') format('svg');
	font-weight: normal;
	font-style: normal;
}


/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
	background: #fff;
	font-family:'Poppins', 'Arial', sans-serif;
	color: #2f2f2f;
}

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;
	text-decoration: none;
	transition: 0.2s all ease-in-out;
}

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;
	margin: 0.67em 0;
}

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;
	vertical-align: top;
}

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,
textarea {
	color: #404040;
	font-size: 16px;
	line-height: 1.5;
}

h1,
h3,
h4,
h5,
h6 {
	clear: both;
}
h2 {
	font-size: 25px;
	font-family: 'SegoeUI-Semibold', sans-serif;
	color: #000;
	text-transform: uppercase;
}

p {
	margin-bottom: 1.5em;
}

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;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

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: border-box;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
	font-size: 16px;
	color: #000;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

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

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


ol {
	list-style: none;
}

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. */
	vertical-align: top;
}

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, .8);
	font-size: 12px;
	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:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	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;
}

select {
	border: 1px solid #ccc;
}

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

textarea {
	width: 100%;
}

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

a:focus,
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 li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: inline-block;
	text-decoration: none;
	vertical-align: top;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	list-style: none;
	top: 30px;
	padding: 10px;
	left: -999em;
	z-index: 99999;
}

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

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

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

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

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

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

.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-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 20px;
}

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

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

.single .byline,
.group-blog .byline {
	display: inline;
}

.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, /* Older / Newer Posts Navigation (always hidden) */
.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%;
}

/*--------------------------------------------------------------
## 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;
}


/* Helping CSS */

.clearfix:after,
.clearfix:before{
	clear: both;
	display: block;
	content: '';
}

.relative-holder {
	position: relative;
}

.overlay {
	position: relative;
}

.overlay:after{
	position: absolute;
	content: '';
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.6);
}

.title-style1 {
	font-size: 72px;
	font-family: 'SegoeUI-Bold', sans-serif;
	color: #fff;
	font-weight: bold;
	margin: 0 0 5px;
	line-height: 1.2;
}

.title-style2 {
	position: relative;
	font-size: 42px;
	font-family: 'SegoeUI-Regular', sans-serif;
	color: #000;
	padding-bottom: 20px;
	text-transform: uppercase;
	margin: 0 0 30px;
}

.title-style2:after {
	content: "";
	width: 60px;
	height: 4px;
	background: #000;
	position: absolute;
	left: 0;
	bottom: 0;
}

.title-style3 {
	position: relative;
	font-size: 42px;
	font-family: 'SegoeUI-Regular', sans-serif;
	color: #000;
	text-transform: uppercase;
	margin: 0 0 30px;
}

.title-style4 {
	font-size: 25px;
	font-family: 'SegoeUI-Semibold', sans-serif;
	color: #000;
	margin-bottom: 0;
	text-transform: uppercase;
}

.title-style5 {
	 position: relative;
    font-size: 42px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #000;
    padding-bottom: 12px;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.title-style5:after {
    content: "";
    width: 220px;
    height: 4px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
}

.title-style6 {
	font-size: 30px;
	font-family: 'SegoeUI-Bold', sans-serif;
	color: #000;
	margin: 0 0 15px;
	text-transform: uppercase;
}

.btn-style1 {
	display: inline-block;
	font-size: 24px;
	font-family: 'SegoeUI-Semibold', sans-serif;
	color: #eeeeee;
	padding: 10px 15px;
	background: #72ad51;
	transition: 0.2s all ease-in-out;
	border: 1px solid #72ad51;
	text-decoration: none;
	line-height: 1.3;
	font-weight: bold;
	text-transform: uppercase;
}

.btn-style1:hover{
	background: transparent;
	color: #72ad51;
}

.btn-style2 {
	display: inline-block;
	font-size: 20px;
	font-family: 'SegoeUI-Bold', sans-serif;
	color: #000;
	padding: 15px 20px;
	background: #fff;
	transition: 0.2s all ease-in-out;
}

.btn-style2:hover{
	background: #000;
	color: #fff;
}

.btn-style3 {
	display: inline-block;
	font-size: 20px;
	font-family: 'SegoeUI-Bold', sans-serif;
	text-transform: uppercase;
	color: #fff;
	padding: 10px 40px;
	margin-bottom: 5px;
	background: #000;
	border: 1px solid #000;
	transition: 0.2s all ease-in-out;
}

.btn-style3:hover{
	background: #fff;
	color: #000;
}

.col4-layout {
	letter-spacing: -4px;
	font-size: 0;
}

.col4-layout .col {
	display: inline-block;
	vertical-align: top;
	letter-spacing: 0;
	font-size: 16px;
	width: 25%;
	overflow: hidden; 
}
.gutter-style1 {
	padding: 60px 0; 
}

.top-btn-gutter1 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.d-t {
    display: table;
    width: 100%;
}

.d-tc {
    display: table-cell;
    vertical-align: middle;
}

.full-container	{
	width: 100%;
	padding: 0 100px;
}

.container-style1 {
	max-width: 1630px;
	margin: 0 auto;
	padding: 0 15px;
}

.container-style2 {
	max-width: 1430px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Style Start */

/* Home Page Start */

#page {
	position: relative;
	overflow: hidden;
	padding-top: 142px; 
}

.logged-in #page {
	padding-top: 120px;
}

.home #page,
.page-template-tpl-about #page,
.page-template-tpl-refer-agent  #page {
	padding: 0;
}

.site-header {
	/*background: url(images/header-banner-image.jpg);*/
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: top !important;
    transition: all 0.3s ease-in;
}


.home .site-header,
.page-template-tpl-about .site-header,
.page-template-tpl-refer-agent .site-header {
	background: none;
}

.site-header .header {
	z-index: 10;
	/*background: rgba(0, 0, 0, 0.3);*/
    transition: all 0.3s ease-in;
}

.home .site-header .header,
.page-template-tpl-about .site .header,
.page-template-tpl-refer-agent .site .header {
	background-image: none;
	background-color: transparent !important;
    transition: all 0.3s ease-in;
}

.home .sticky .header,
.page-template-tpl-about .sticky .header,	
.page-template-tpl-refer-agent .sticky .header {	
	background-color: rgba(0, 0, 0, 0.8) !important;
}

.site-header .header-top {
	letter-spacing: -4px;
	font-size: 0;
	padding: 35px 0 26px 0;
    -o-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.site-header.sticky .header-top{
    padding: 5px 0;
}
.header-top {
	z-index: 10;
	position: relative;
}

.logo {
	display: inline-block;
	letter-spacing: 0;
	font-size: 16px;
	width: 17%;
	vertical-align: middle;
	text-align: center;
}

.single-agent .logo {
	width: 25%;
}

.logo a,
.logo a:hover {
	text-decoration: none;
}

.logo img {
	width: 100%;
}

.logo span.slogan {
	display: block;
	padding: 5px 0;
	font-size: 12px;
	color: #fff;
	font-family: 'SegoeUI-Bold', sans-serif;
	text-transform: uppercase;
}

.logo span.slogan .text{
	display: inline-block;
}

.main-navigation {
	display: inline-block;
	letter-spacing: 0;
	font-size: 16px;	
	width: 83%;
	float:  none;
	vertical-align: middle;
}

.main-navigation .block-left {
	float: left;
	padding: 20px 20px 0;
}

.main-navigation .block-right {
	float: right;
	padding: 14px 0;
}

.main-navigation .block-left li {
	padding: 0 15px;
}

.main-navigation a {
	color: #fff;
	font-family: 'SegoeUI-Bold', sans-serif;
	text-transform: uppercase;
	padding: 5px 0;
	line-height: 1.2;
	font-size: 19px;
	font-weight: bold;
}

.main-navigation .block-left a{
	display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;

}

.main-navigation .block-left a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #fff;
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.main-navigation .block-left a:hover:before, .main-navigation .block-left a:focus:before, .main-navigation .block-left a:active:before {
  right: 0;
}

.main-navigation .block-right a.btn-style2 {
	color: #000;
	padding: 10px 20px;
	margin-right: 25px;
}

.main-navigation .block-right a.btn-style2:hover {
	color: #fff;
}

.main-navigation .block-right a.phone {
	position: relative;
	padding-left: 25px;
	padding-top: 10px;
}

.main-navigation .block-right a.phone:after {
	position: absolute;
	content: '';
	top: 15px;
	left: 0;
	height: 18px;
	width: 17px;
	background: url(images/icon-phone.png) no-repeat;
}

.main-navigation .block-right a.phone{
	display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;

}

.main-navigation .block-right a.phone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #fff;
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.main-navigation .block-right a.phone:hover:before, .main-navigation .block-right a.phone:focus:before, .main-navigation .block-right a.phone:active:before {
  right: 0;
}

.home .banner {
	background: none !important;
}

.banner .panel-text {
	position: absolute;
	bottom: 320px;
    left: 173px;
	max-width: 800px;
}

.home-page-title,
.banner .panel-text p {
	color: #fff;
	font-size: 22px;
	margin: 0 0 30px;
	font-weight: 300;
}

.col4-layout.site-pages {
	margin: 3px -2px;
}

.col4-layout.site-pages .col {
	position: relative;
	padding: 0 2px;
}

.col4-layout.site-pages .col:hover .overlay:after {
	background: rgba(0, 0, 0, 0.4);
}

.col4-layout.site-pages .col a {
	font-size: 31px;
	line-height: 1.2;
	color: #fff;
	font-family: 'SegoeUI-Semibold', sans-serif;
	text-decoration: none;
	text-transform: uppercase;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	padding: 90px 0;
}

.col4-layout.site-pages .col a.play-icon {
    font-size: 40px;
    top: 20%;
    bottom: auto;
    z-index: 10;
    padding: 0;
}

.col4-layout.site-pages .col a.play-icon .fa:hover {
    color: #72ad51;
}

#fancybox-content {
	background: #000 !important;
    border-color: #000 !important;
}

#fancybox-content iframe {
    width: 640px;
    height: 360px;
}

#fancybox-content .bottom-block {
    background: #000;
    padding: 0 15px;
}

#fancybox-content .bottom-block span {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    text-transform: uppercase;
    color: #72ad51;
    padding: 5px 0 0;
}

#fancybox-content .bottom-block .btn-style1 {
    padding: 10px 20px;
    text-decoration: none;
    vertical-align: middle;
    margin: 0 15px;
	font-size: 19px;
	text-transform: uppercase;
	line-height: 1;
}

#fancybox-content .bottom-block .btn-style2:hover {
    color: #fff;
    border: 1px solid #fff;
}

#fancybox-content .bottom-block .phone {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
    padding-left: 25px;
    padding-top: 0;
    color: #72ad51;
    font-family: 'SegoeUI-Bold', sans-serif;
    text-transform: uppercase;
    font-size: 19px;
    font-weight: bold;
    text-decoration: none;
}

#fancybox-content .bottom-block .phone:hover {
    color: #fff;
}

#fancybox-content .bottom-block .phone:after {
    position: absolute;
    content: '';
    top: 5px;
    left: 0;
    height: 18px;
    width: 17px;
    background: url(images/icon-phone-g.png) no-repeat;
    transition: all 0.2s ease-in-out;
}

#fancybox-content .bottom-block .phone:hover:after {
    background: url(images/icon-phone.png) no-repeat;
}

.site-footer {
	background: #000;
	min-height: 400px;
}
.site-footer.footer-agent {
	min-height: 0;
}

.footermenu-holder {
	max-width: 1130px;
	padding: 60px 0;
}

.footermenu-holder ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget_nav_menu {
	letter-spacing: -4px;
	font-size: 0;
}

.widget_nav_menu .menu-footer{
	display: inline-block;
	vertical-align: top;
	letter-spacing: 0;
	font-size: 16px;
	margin-right: 100px;
}

.menu-footer a {
	display: block;
	text-decoration: none;
	color: #fff;
	font-family: 'SegoeUI-Semibold', sans-serif;
	font-size: 19px;
	margin-bottom: 10px;
	letter-spacing: 0;
}

.menu-footer a{
	display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
}

.menu-footer a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #fff;
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.menu-footer a:hover:before, .menu-footer a:focus:before, .main-navigation .block-right a.phone:active:before {
  right: 0;
}

.site-footer .footer-form {
	position: absolute;
	top: 63px;
	right: 0;
	max-width: 338px;
	padding: 0 15px;
}

.site-footer .footer-form .gform_title {
	color: #fff;
	font-size: 26px;
	text-transform: uppercase;
	margin: 0;
}

.site-footer .footer-form ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer .footer-form ul label.gfield_label, 
.validation_error, .validation_message {
	display: none;
}

.site-footer .footer-form ul input {
	width: 100%;
	height: 40px;
	border: none;
	outline: none;
	border-radius: 0;
	padding: 10px;
	background: #1a1a1a;
	color: #fff;
	margin-bottom: 10px;
}

.site-footer .footer-form ul textarea{
	height: 75px;
	border: none;
	outline: none;
	border-radius: 0;
	padding: 10px;
	background: #1a1a1a;
	color: #fff;
	margin-bottom: 10px;
}
li#field_1_5 {
	margin-bottom: 10px;
}
input#choice_1_5_1 {
	display: inline;
	width: 18px;
	float: left;
	margin-right: 10px;
	height: 20px;
}
label#label_1_5_1 {
	color: #fff;
	display: inline;
	overflow: hidden;
	font-weight: 400;
	font-size: 15px;
}

/* do not group these rules */
.site-footer .footer-form ul input::-webkit-input-placeholder,
.site-footer .footer-form ul textarea::-webkit-input-placeholder {
    color: #fff;
}
.site-footer .footer-form ul input:-moz-placeholder,
.site-footer .footer-form ul textarea:-moz-placeholder {
    /* FF 4-18 */
    color: #fff;
}
.site-footer .footer-form ul input::-moz-placeholder,
.site-footer .footer-form ul textarea::-moz-placeholder {
    /* FF 19+ */
    color: #fff;
}
.site-footer .footer-form ul input:-ms-input-placeholder,
.site-footer .footer-form ul textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}

.site-footer .footer-form input[type="submit"] {
	font-size: 28px;
	font-family: 'SegoeUI-Bold', sans-serif;
	color: #000;
	background: #fff;
	border: 1px solid #fff;
	width: 100%;
	text-align: center;
	padding: 5px 0;
	text-transform: uppercase;
	outline: none;
	border-radius: 0;
	line-height: 1.2;
	transition: 0.2s all ease-in-out
}

.site-footer .footer-form input[type="submit"]:hover {
	border: 1px solid #fff;
	background: transparent;
	color: #fff;
}

.site-footer .footer-form .gform_validation_error .gfield_error input,
.site-footer .footer-form .gform_validation_error .gfield_error textarea {
	border: 1px solid red;
}
 
.site-footer .footer-form .gform_validation_error input[type="submit"] {
	border: 1px solid #fff;
}

.site-footer .footer-form .gform_confirmation_message {
	color: #fff;
}

.site-footer .social-links li a {
	display: block;
	font-size: 20px;
	color: #fff;
	padding: 8px 10px 2px;
	border: 1px solid #fff;
	transition: 0.2s all ease-in-out;
	text-align: center;
	min-width: 42px;
}

.site-footer .social-links li a:hover {
	color: #000;
	background: #fff;
	border: 1px solid #fff;
}

.copyright {
	/*padding-top: 90px;*/
	padding-bottom: 30px;
}

.copyright p {
	color: #fff;
	margin: 0 0 5px;
}

.copyright p a{
	color: #fff;
	text-decoration: underline;
}

.copyright p a:hover{
	color: #72ad51;
	text-decoration: none;
}

.copyright .location {
	position: relative;
	padding: 0 0 0 18px;
}

.copyright .location:after{ 
	position: absolute;
	content: '';
	width: 10px;
	height: 15px;
	top: 4px;
	left: 2px;
	background: url(images/icon-location.png) no-repeat;
 }


/* Home Page End */

/* Career Page */
.join-us-block {
	background: #f6f6f6;
	padding: 90px 0;
}

.join-us-block .heading-wrap {
	margin-bottom: 65px;
}

.join-us-block .heading-wrap p {
	color: #2f2f2f;
	font-size: 18px;
	font-family: 'SegoeUI-Regular', sans-serif;
}

.three-column {
	font-size: 0;
	letter-spacing: -4px;
}

.three-column .column {
	display: inline-block;
	vertical-align: top;
	width: 33.33%;
	letter-spacing: 0;
	margin-bottom: 87px;
}

.three-column .column .holder {
	text-align: center;
}

.three-column .column .holder .panel-text {
	padding: 0 60px;
}

.three-column .column .holder .img-holder {
	margin-bottom: 20px;
}

.three-column .column .holder h4 {
	margin: 0 0 20px;
	font-size: 25px;
	font-family: 'SegoeUI-Bold', sans-serif;
	text-transform: uppercase;
	line-height: 1.2;
}
.three-column .column .holder p {
	margin: 0;
	color: #2f2f2f;
	font-size: 18px;
}

.side-block {
	background: #fff;
	padding: 10px 0;
}

.two-column {
	display: table;
	width: 100%;
}

.two-column .column {
	display: table-cell;
	vertical-align: middle;
	width: 50%;
	letter-spacing: 0;
}

.two-column .column .text-wrap {
	max-width: 589px;
	margin: 0 auto;
	padding: 0 15px;
}

.two-column .column p {
	margin: 0;
	font-size: 18px;
	font-family: 'SegoeUI-Regular', sans-serif;
	color: #2f2f2f;
}

.broker-block {
	background: #f6f6f6;
	padding: 90px 0;
}

.broker-block .heading-wrap {
	margin: 0 0 60px;
}

.broker-features {
	width: 75%;
	float: left;	
}

.broker-lists {
	overflow: hidden;
	margin: 0 -20px;
	padding: 0;
	max-width: 890px;
	list-style: none;
}

.broker-lists li {
	width: 33.33%;
	float: left;
	padding: 0 20px;
	margin-bottom: 60px;

}

.broker-lists li p {
	font-size: 18px;
	font-family: 'SegoeUI-Regular', sans-serif;
	overflow: hidden;
	margin: 0;

}
.check-mark {
	float: left;
	margin-right: 15px;
}

.sales {
	width: 25%;
	float: right;
	margin-top: -15px;
}

.sales .number {
	font-size: 109px;
	font-family: 'SegoeUI-Bold', sans-serif;
	margin: 0 0 25px 0;
	color: #2f2f2f;
	line-height: 1;
}

.sales .number sup {
	font-size: 47px;
	font-family: 'SegoeUI-Regular', sans-serif;
	top: -35px;
}

.sales .month {
	font-size: 47px;	
	font-family: 'SegoeUI-Regular', sans-serif;
	margin-left: -40px;
}

.sales .btn-style1 {
	max-width: 300px;
	width: 100%;
	text-align: center;
	padding: 5px 15px;
}

.referral-block {
	padding: 90px 0;
}

.referral-block .heading-wrap {
	margin: 0 0 60px;
}

.referral-block .heading-wrap h2 {
	margin: 0;
	padding-bottom: 30px;
	position: relative;
}

.referral-block .heading-wrap h2:after {
	content: "";
	width: 60px;
	height: 4px;
	background: #000;
	position: absolute;
	left: 0;
	bottom: 0;
}

.referral-features {
	width: 75%;
	float: left;
}

.referral-lists {
	list-style: none;
	max-width: 900px;
	padding: 0;
	margin: 0;	
}

.referral-lists li {
	width: 100%;
	margin-bottom: 60px;
}

.referral-lists li p {
	font-size: 18px;
	font-family: 'SegoeUI-Regular', sans-serif;
}

/* Career End */

/* About Start */

.page-template-tpl-about .banner,
.page-template-tpl-refer-agent .banner {
	background: url(images/about-banner.jpg) no-repeat;
	background-size: cover;
	height: 820px;
	display: table;
	width: 100%;
}

.page-template-tpl-about .banner-holder,
.page-template-tpl-refer-agent .banner-holder {
	display: table-cell;
	vertical-align: middle;
}

.page-template-tpl-about .banner-text,
.page-template-tpl-refer-agent .banner-text {
	text-align: center;
	border: 4px solid #fff;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;

}

.page-template-tpl-about .banner-text h1,
.page-template-tpl-refer-agent .banner-text h1 {
	text-transform: uppercase;
	color: #fff;
	font-size: 48px;
	margin: 0;
}

.page-template-tpl-about .banner-text p,
.page-template-tpl-refer-agent .banner-text p {
	color: #fff;
	margin: 0;
	font-size: 18px;
	font-family: 'SegoeUI-Regular', sans-serif;
}

.story-block {
	padding-top: 90px;
}

.story-block .two-column {
	padding-bottom: 90px;
}

.story-gallery ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.story-gallery ul:before, .story-gallery ul:after {
	clear: both;
	display: block;
	content: "";
}

.story-gallery li {
	float: left;
	width: 33.33%;
	line-height: 0;
}

.story-gallery li:first-child {
	width: 100%;
	float: none;
}

.our-story {
	max-width: 730px;
	padding: 0 20px;
}

.values-block {
	background: #f8f8f8;
	padding: 90px 0;
}

.values-block .three-column .column {
	margin-bottom: 45px;
	padding-right: 20px;
}

.values-block .three-column .column .holder {
	text-align: left;
}

.holder h4 {
	font-size: 25px;
	margin: 0;
	text-transform: uppercase;
}

.team-block {
	padding: 90px 0;
}

.team-block  p {
	color: #2f2f2f;
	font-size: 18px;
	font-family: 'SegoeUI-Regular', sans-serif;
}

.team-block .btn {
	padding: 10px 10px;
	background-color: #72ad51;
	color: #fff;
	font-size: 24px;
	text-transform: uppercase;
	display: inline-block; 
	font-weight: bold;
}

/* About End */

/* Contact Start*/

.contact-form {
	width: 60%;
	float: left;
	padding: 15px 50px 30px 160px;

}
.contact-form-wrap {
	background: #f1f1f1;
	clear: both;
	padding: 60px 0;
}
.contact-form-wrap .contact-form {
	padding: 0;
	margin: auto;
	float: none;
	width: 100%;
	max-width: 1000px;
}
.no-map .contact-form{
	float: none;
	margin: 0 auto;
}
.no-map .map{
	display: none;
}
.contact-form .company-details {
	margin-bottom: 46px;
}
/*.info_content {
	max-width: 110px;
	text-align: center;
}

.info_content h3 {
	font-size: 18px;
}*/
/* .contact-form .company-details ul {
	padding: 0; 
	margin: 0;
	font-size: 0;
	letter-spacing: -4px;
	list-style: none;
}

.contact-form .company-details ul li {
	font-size: 16px;
	letter-spacing: 0;
	display: inline-block;
	vertical-align: top;
	width: 33.33%;
}

.contact-form .company-details .phone {
	padding-left: 95px;
}

.contact-form li a {
	font-size: 22px;
	font-family: 'SegoeUI-Regular', sans-serif;
	color: #2f2f2f;
}

.contact-form li a:hover {
	text-decoration: underline;
}

.contact-form li span {
	display: block;
	font-size: 22px;
	font-family: 'SegoeUI-Regular', sans-serif;
	color: #2f2f2f;
	line-height: 1.2;
}

.contact-form .company-details .title {
	position: relative;
	font-size: 25px;
	font-family: 'SegoeUI-Bold', sans-serif;
	line-height: 1.4;
	padding-left: 20px;
	text-transform: uppercase;
	margin: 0;
}

.contact-form .company-details .title:after {
	position: absolute;
	content: '';
	height: 22px;
	width: 22px;
	background: url(images/icon-location-b.png) no-repeat 0 0 ;
	top: 8px;
	left: 0;
}

.contact-form .company-details .phone .title:after {
	background: url(images/icon-mobile.png) no-repeat 0 0 ;
	top: 8px;
	left: 0;
}

.contact-form .company-details .email .title {
	padding-left: 30px;
}

.contact-form .company-details .email .title:after {
	background: url(images/icon-email.png) no-repeat 0 0;
	top: 11px;
	left: 0;
}

.contact-form .company-details .title strong {
	text-transform: lowercase;
} */


.form {
	max-width: none;
}

.contact-form .gform_body ul {
	padding: 0;
	margin: 0 -15px;
	letter-spacing: -4px;
	font-size: 0;
	list-style: none;
}

.contact-form .gform_body ul h2 {
	display: none;
}

.contact-form .gform_body ul h2.title-style3 {
	display: block;
	margin-bottom: 12px;
	font-weight: 600;
}

.contact-form .gform_body ul li {
	letter-spacing: 0;
	font-size: 16px;
	display: inline-block;
	padding: 6px;
}

.contact-form .gform_body ul li a {
	letter-spacing: 0;
	font-size: 16px;    
	font-family: 'Poppins', 'Arial', sans-serif;
	display: inline-block;
	color: #616768;
	text-decoration: none;
}
.contact-form .gform_body ul li.active-link a {
	color: #1073c8;
}
.contact-form .gform_body ul li a:hover {
	text-decoration: underline;
}

.contact-form .gform_body .gfield_label {
	display: none;
}

.contact-form .gform_body ul li.gf-lefthalf,
.contact-form .gform_body ul li.gf-righthalf {
	width: 50%;
}

.contact-form .gform_body ul li.gf-fullwidth {
	width: 100%;
}

.contact-form .gform_body ul li input,
.contact-form .gform_body ul li textarea,
.contact-form .gform_body select {
	width: 100%;
	border-radius: 0;
	font-size: 18px;
	font-family: 'SegoeUI-Regular', sans-serif;
	color: #616768;
	outline: none;
	padding: 13px;
	border: 2px solid #c7d3d6;
	box-shadow: none; 
}

.contact-form .gform_body ul li textarea {
	max-height: 120px;
}

.contact-form .gform_footer input[type="submit"],
.agent-form input[type="button"],
.agent-form input[type="submit"]  {
	border: 1px solid #72ad51;
	background: #72ad51;
	font-size: 34px;
	font-family: 'SegoeUI-Bold', sans-serif;
	line-height: 1.2;
	color: #fff;
	padding: 10px 0;
	width: 100%;
	text-align: center; 
	text-transform: uppercase;
	border-radius: 0;
	transition: 0.2s all ease-in-out;
	margin: 0 0 5px;
}

.contact-form .gform_footer input[type="submit"]:hover,
.agent-form input[type="button"]:hover,
.agent-form input[type="submit"]:hover {
	background: transparent;
	color: #72ad51;
}

.gform_validation_error .gform_body .gfield_error input,
.gform_validation_error .gform_body .gfield_error select {
	border-color: red;
}

.contact-form .gform_body ul li input:focus,
.contact-form .gform_body ul li textarea:focus,
.contact-form .gform_body select:focus {
    border-color: #72ad51;
}

.map {
	width: 40%;
	float: right;
	height: 1045px;
}

/* Updated contact Start */
.company-details .title-style2 {
	font-weight: 600;
}


.contact-form .col2-layout {
	letter-spacing: -4px;
	font-size: 0;
	margin: 0 -15px;
}

.contact-form .col2-layout .col {
	letter-spacing: 0;
	font-size: 23px;
	padding: 15px;
	display: inline-block;
	width: 50%;
	vertical-align: top;
}

.contact-form .col2-layout ul {
	margin: 0;
	padding: 20px 30px;
	list-style: none;
	background: #f8f8f8;
}

.contact-form .col2-layout ul li {
	position: relative;
	padding: 10px 0;
	border-bottom: 1px solid #e1e1e1;
}

.contact-form .col2-layout ul li:last-child {
	border-bottom: none;
}

.contact-form .col2-layout ul .title {
	padding-top: 5px;
}

.contact-form .col2-layout .adress:before {
	content: "\f015";
	font-size: 24px;
	top: 3px;
	left: 0;
}

.contact-form .col2-layout .phone:before {
	content: "\f10b";
	font-size: 32px;
	top: 0;
	left: 0;
}

.contact-form .col2-layout .email:before {
	content: "\f0e0";
	font-size: 19px;
	top: 10px;
	left: 0;
}

.contact-form .col2-layout .adress:before,
.contact-form .col2-layout .phone:before,
.contact-form .col2-layout .email:before {	
	font-family: 'Fontawesome';
	position: absolute;
	
}
.contact-form .col2-layout .title{
	padding-top: 0;
}
.contact-form .col2-layout .title h3 {
	font-size: 20px;
	font-family: 'SegoeUI-Regular', sans-serif;
	color: #000;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 6px;
	margin-top: 0;
	display: inline-block;
}

.contact-form .col2-layout .title span {
	display: block;
	text-transform: uppercase;
	font-weight: 600;
	float: right;
	padding-left: 5px;
	padding-top: 2px;
}

.contact-form .col2-layout .title span,
.contact-form .col2-layout .adress,
.contact-form .col2-layout .phone,
.contact-form .col2-layout .email {
	font-size: 15px;
	color: #2f2f2f;
	font-family: 'SegoeUI-Regular', sans-serif;
}

.contact-form .col2-layout .adress,
.contact-form .col2-layout .phone,
.contact-form .col2-layout .email {
	display: block;
	padding-left: 30px;
}

.contact-form .col2-layout a {
	display: inline-block;
	color: #2f2f2f;
}

.contact-form .col2-layout a:hover,
.contact-form .col2-layout a:focus {
	color: #2f2f2f;
}

.form .gf-title {
	width: 100%;
}


/* Become An Agent Start */

.agent-form {
	max-width: 1035px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px 90px;
	float: none;
}

.agent-form .form {
	border-top: 0;
	max-width: 100%;
	padding-top: 50px;
}

.gform_heading .gform_title {
	position: relative;
    font-size: 42px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #000;
    padding-bottom: 12px;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.gform_heading .gform_title:after {
    content: "";
    width: 220px;
    height: 4px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
}

.gf_page_steps {
	border-bottom: 2px solid #000;
	padding: 15px 0;
	text-align: center;
	letter-spacing: -4px;
	font-size: 0;
}

.gf_page_steps .gf_step {
	letter-spacing: 0;
	font-size: 16px;
	display: inline-block;
	vertical-align: top;
	width: 33.33%;
}

.gf_page_steps .gf_step_number {
	display: block;
	height: 62px;
	width: 62px;
	margin: 0 auto;
	background: #ececec;
	color: #90999b;
	border-radius: 50%;
	padding: 20px 0;
}

.gf_page_steps .gf_step_label {
	display: block;
	font-size: 22px;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    color: #e5e5e5;
    text-transform: uppercase;
    margin-top: -20px;
}

.gf_page_steps .gf_step_active .gf_step_number {
	color: #fff;
	background: #72ad51;
}
 
.gf_page_steps .gf_step_active .gf_step_label {
	color: #000;
}

.gf_page_steps .gf_step_first {
	text-align: left; 
}

.gf_page_steps .gf_step_first .gf_step_number {
	text-align: center;
	margin: 0 0 0 12px;
}

.agent-form .gform_body ul h2 {
	display: block;
	font-size: 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
}

.agent-form .gform_body .gfield_label {
	display: block;
	font-family: 'Poppins', 'Arial', sans-serif;
	font-weight: 600;
	color: #616768;
	line-height: 2;
}

.agent-form .gform_body .gfield_label span {
	display: inline-block;
	color: #af2024;
}

.agent-form .gform_body .gfield_label span.gf-icon {
	margin-top: -5px;
	color: #72ad51;
}

.gform_page_footer {
	padding: 15px 0;
}

.contact-form .gform_body ul li {
	padding: 6px 15px;
	margin-bottom: 0;
}

.agent-form .gform_body ul li input,
.agent-form .gform_body ul li textarea,
.agent-form .gform_body select {
	padding: 10px;
	color: #000;
}

.agent-form input[type="button"].gform_previous_button {
	display: none;
}

.agent-form .gform_body .checkboxes {
	padding-right: 0;
}

.agent-form .gform_body .checkboxes input[type="checkbox"] {
	display: inline-block;
	float: left;
	margin: 5px 0 0 ;
}

.agent-form .gform_body .checkboxes li label {
	display: inline-block;
	padding-left: 5px;
	width: auto;
}

.agent-form .gform_body .checkboxes li label span {
	display: inline-block;
	color: #af2024;
	font-size: 22px;
	font-weight: bold;
	vertical-align: top;
}

.agent-form .gform_body .checkboxes.no-margin{
    margin-bottom: 5px;
}

.agent-form .gform_body .checkboxes .gfield_label,
.agent-form .gform_body .radios .gfield_label {
	display: none;
}
.agent-form .gform_body .gf-tooltip .gfield_label{
    display:block;
}
.agent-form .gform_body .checkboxes li {
	width: 100%;
	padding-right: 5px;
}

.agent-form .gform_body .radios input[type="radio"],
.agent-form .gform_body .checkboxes input[type="checkbox"] {
	display: inline-block;
	width: 15px;
	height: 15px;
	vertical-align: top;
	margin-top: 5px;
	margin-right: 5px;
}

.agent-form .gform_body .checkboxes label {
	display: inline-block;
	color: #616768;
	font-size: 16px;    
	vertical-align: top;
	line-height: 1.7;
	width: 90%;
} 

.agent-form .gform_body .checkboxes label a {
	display: inline-block;
	color: #1073c8;
	font-size: 16px;
	font-family: 'Poppins', 'Arial', sans-serif;
}

.agent-form .gform_body .checkboxes label a:hover {
    text-decoration: underline;
}

.agent-form .gform_body .radios label .option,
.agent-form .gform_body .checkboxes label .option {
	 font-size: 14px;
	 color: #616768;
	 margin-bottom: 5px;
     padding-left: 20px;
}

ul.gform_fields li.gf-tooltip-icon img.gf-tooltip-icon-img {
	margin: 5px 0 0 5px;
}

/* Become An Agent End */

/* Contact End */

/* About The Founder Start */
.founders .col2-layout {
	padding: 30px 0;
}

.col2-layout .col.img-holder {
	float: left;
}

.col2-layout .col.panel-text {
	overflow: hidden; 
	padding: 0 35px;
}

/* About The Founder End */

/* 404 Page */

.not-found {
	text-align: center;
	padding: 80px 0;
}

.not-found .btn-style3 {
	margin: 5px 20px;
}


/* 404 Page */


/* Find Property Page Start*/

.dsidx-profile-button {
	font-size: 14px;
}

#dsidx-top-search {
	background-color: transparent;
}

#dsidx-top-search #dsidx-search-bar {
	background: transparent;
	padding: 10px;
}

#dsidx-top-search #dsidx-search-bar input {
	max-width: 300px;
	width: 100%;
	min-height: 40px;
	height: auto;
}

#dsidx-top-search input:focus {
	outline: none;
}

#dsidx-top-search input.dsidx-medium {
	max-width: 200px;
	width: 100%;
}

#dsidx-search-form-wrap .dsidx-search-grid:first-child tr {
	display: inline-block;
	width: 49%;
}

#dsidx-top-search {
	background-color: transparent;
}

#dsidx-top-search #dsidx-search-bar {
	background: transparent;
}

#dsidx-top-search #dsidx-search-bar span {
	display: inline-block;
}

#dsidx-top-search #dsidx-search-bar span:first-letter {
	text-transform: uppercase;
}

#dsidx-top-search #dsidx-search-bar .dsidx-search-controls button {
	display: inline-block;
    font-size: 24px;
    font-family: 'SegoeUI-Semibold', sans-serif;
    color: #eeeeee;
    padding: 10px 15px;
    background: #72ad51;
    transition: 0.2s all ease-in-out;
    border: 1px solid #72ad51;
    text-decoration: none;
    line-height: 1.3;
    font-weight: bold;
    text-transform: uppercase;
    outline: none;
}

#dsidx-top-search #dsidx-search-bar .dsidx-search-controls button:hover {
	background: transparent;
    color: #72ad51;
}

#dsidx-top-search .dsidx-search-bar-openclose {
	top: -4px;
}

#dsidx-top-search .dsidx-search-bar-pull-down, 
#dsidx-top-search .dsidx-search-bar-pull-up {
	background: url(images/arrow.png) no-repeat 100%;
	background-size: 100%;
}

#dsidx-top-search .dsidx-search-bar-pull-down {
	transform: rotate(180deg);
}

#dsidx .dsidx-paging-control {
	float: none !important;
	padding: 10px 0 !important;
}

div#dsidx-map {
	position: absolute !important;
	right: 0;
	float: none !important;
	display: block !important;
	width: 50% !important;
	height: 780px !important;
}
.agent-page div#dsidx-map{
	position: relative !important;
	min-height: 0 !important;
	width: 100% !important;
}

ol#dsidx-listings {
	float: left;
	max-height: 780px;
	overflow-y: scroll;
	width: 49% !important;
	letter-spacing: -4px;
	font-size: 0;
}

ol#dsidx-listings li{
	letter-spacing: 0;
	font-size: 14px;
}

.dsidx-results-grid #dsidx-listings li.dsidx-listing-container {
	width: 50% !important;
	display: inline-block;
	float: none !important;
	vertical-align: top;
}

.dsidx-results-grid #dsidx-listings .dsidx-listing .dsidx-media .dsidx-photo img {
	width: 100%;
	max-height: 1000px;
}

.dsidx-results-grid #dsidx-listings .dsidx-listing:hover .dsidx-media {
	padding: 4px;
}

.dsidx-results-grid #dsidx-listings .dsidx-listing .dsidx-data {
	padding: 0 4px 4px;
}

.dsidx-results-grid #dsidx-listings .dsidx-listing:hover .dsidx-data {
	padding: 0 4px 4px;
}

.dsidx-results-grid #dsidx-listings .dsidx-listing .dsidx-data .dsidx-primary-data .dsidx-price {
	position: absolute !important;
	border: 0;
	top: -53px !important;
	left: 4px !important; 
	height: auto;
	min-height: 16px;
}

.dsidx-results-grid #dsidx-listings .dsidx-listing:hover .dsidx-data .dsidx-primary-data .dsidx-price {
	padding: 5px 10px;
}

#dsidx li:empty {
	display: none !important;
}

.dsidx-results-map #dsidx-listings .dsidx-listing .dsidx-primary-data .dsidx-address {
	float: none;
}

.dsidx-results-map #dsidx-listings .dsidx-listing .dsidx-primary-data .dsidx-price {
	position: absolute !important;
	top: 22px !important;
	left: 10px !important;
	float: none;
}

#dsidx .dsidx-sorting-control {
	float: none !important;
}

/* Single */

.one-col {
	width: 50% !important;
}

.dsidx-details .dsidx-table-header {
	max-height: 30px;
	display: block;
}

.dsidx-details .dsidx-supplemental-data.dsidx-fields {
	position: relative;
	min-height: 500px;
}

.dsidx-details #dsidx-map {
	width: auto !important;
	height: auto !important;
	top: 40px;
	left: 5px;
	right: 5px;
	bottom: 5px;
}


/* Find Property Page End*/
.form_saved_message_emailform input[type="text"]{
    width: 100%;
    margin-bottom: 20px;
    border-radius: 0;
    font-size: 18px;
    font-family: 'SegoeUI-Regular', sans-serif;
    color: #616768;
    outline: none;
    padding: 10px;
    border: 2px solid #c7d3d6;
    box-shadow: none;
}

.form_saved_message span {
    line-height: 2;
}

.form_saved_message_emailform .validation_message {
    display:block;
    color:red;
}
.tooltip > .tooltip-inner {
    padding: 10px 5px !important;
}

.gfield.gform_hidden,
.gfield.gfield_visibility_hidden {
    display:none !important;
}
.contact-form .gform_body .gfield.gform_hidden,
.gfield.gfield_visibility_hidden {
    padding: 0 !important;
    margin: 0 !important;

}

/* Refer Agent Start */

.page-template-tpl-refer-agent .banner {
	height: 700px;
}

.refer-agent-block {
	color: #2f2f2f;
    font-family: 'SegoeUI-Regular', sans-serif;
    margin: 0 -20px;
}

.refer-agent-block .block-left {
	width: 70%;
	float: left;
	padding: 0 20px;
}

.refer-agent-block .block-right{
	width: 30%;
	float: right;
	padding: 0 20px;
}

.refer-agent-block .loop-block {
	background: #f6f6f6;
	margin: 15px 0;
}

.refer-agent-block .loop-block:after {
	clear: both;
	display: block;
	content: '';
}

.refer-agent-block .loop-block .number {
	display: table;
	height: 125px;
	width: 13%;
	float: left;
	text-align: center;
	background: #e8e8e8;
	overflow: hidden;
}

.refer-agent-block .loop-block span {
	display: table-cell;
	vertical-align: middle;
	font-size: 42px;
    font-family: 'SegoeUI-Bold', sans-serif;
}

.refer-agent-block .loop-block .panel-text {
	display: table;
	height: 125px;
	width: 87%;
	float: right;
	padding: 0 30px;
	overflow: hidden;
}

.refer-agent-block .loop-block .panel-text .text-holder {
	display: table-cell;
	vertical-align: middle;
}

.refer-agent-block .loop-block .panel-text h3 {
	font-size: 24px;
    font-family: 'SegoeUI-Regular', sans-serif;
    line-height: 1.3;
    margin: 0;
}

.refer-agent-block .loop-block .panel-text p {
	font-size: 18px;
    font-family: 'SegoeUI-Regular', sans-serif;
    margin: 0 0 5px;	
}

.refer-agent-block .contact-form {
	width: 100%;
	float: none;
	padding: 0;
}

.refer-agent-block .contact-form .gform_body ul li {
	width: 100%;
}

.refer-agent-block .contact-form .gform_body ul {
	margin: 0;
}

.refer-agent-block .contact-form .gform_body ul li {
	padding: 0;
	margin: 8px 0;
}

.refer-agent-block .contact-form {
	padding: 10px 20px;
	border: 1px solid #efefef;
}

.refer-agent-block .contact-form .gform_body ul li input, 
.refer-agent-block .contact-form .gform_body ul li textarea, 
.refer-agent-block .contact-form .gform_body select {
	border: 1px solid transparent;
	background: #f6f6f6;
	padding: 10px 20px;
}

.refer-agent-block .contact-form .gform_body ul li input:focus, 
.refer-agent-block .contact-form .gform_body ul li textarea:focus, 
.refer-agent-block .contact-form .gform_body select:focus {
	border: 1px solid #72ad51;
}

.refer-agent-block .contact-form .gform_footer input[type="submit"] {
	font-size: 28px;
	margin-top: 10px;
	padding: 5px 0;
}

.refer-agent-block .gform_validation_error .gform_body .gfield_error input, 
.refer-agent-block .gform_validation_error .gform_body .gfield_error select {
	border-color: red;
}


/* Refer Agent End */


/*Agents Start*/

.single-agent .site-header {
	background-image: none;
	background-color: #000;
	text-align: center;
}

.agent .main-block {
	width: 70%;
	float: left;
	padding-right: 40px;
}
	
.agent .top-block {
	letter-spacing: -4px;
	font-size: 0;
}

.agent .top-block .img-holder, 
.agent .top-block .contact-info {
	letter-spacing: 0;
	font-size: 22px;
	display: inline-block;
	vertical-align: middle;
}

.agent .top-block .img-holder {
	width: 28%;
	border-radius: 4px;
	height: 300px;
	overflow: hidden;
	margin-right: 15px;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
}

.agent .top-block .img-holder img {
	max-width: inherit;
	width: auto;
	height: 100%;
	display: none;

}
.agent-list .contact-info,
.agent .top-block .contact-info {
	padding: 30px;
	border-radius: 4px;
	background: #f9f9f9;
	height: 300px;
    font-family: 'SegoeUI-Regular', sans-serif;
    color: #000;
    width: 70%;	
}
.agent-list .contact-info h2,
.agent .top-block .contact-info h2,
.agent .sidebar h2 {
	font-size: 30px;
	line-height: 1.2;
    font-family: 'SegoeUI-Bold', sans-serif;
	margin: 0 0 5px;
}

.agent .top-block .contact-info span {
	display: block;
}
.agent-list .contact-info a,
.agent .top-block .contact-info a {
	color: #000;
}

.agent-list .contact-info a:hover,
.agent .top-block .contact-info a:hover {
	text-decoration: underline;
}

.agent .content-block {
	font-size: 16px;
	font-family: 'SegoeUI-Regular', sans-serif;
	line-height: 1.4;
	padding: 40px 0;
	color: #2f2f2f;
}

.agent .content-block h1,
.agent .listing-block h2 {
	font-size: 42px;
	font-family: 'SegoeUI-Regular', sans-serif;
	line-height: 1.2;
	margin: 0 0 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.agent .content-block p {
	margin: 0 0 5px;
}

.agent .content-block a.js-more {
	position: relative;
	color: #0040a9;
}

.agent .content-block a.js-more:hover {
	text-decoration: underline;
}

.agent .content-block a.js-more:after {
	position: absolute;
	content:'';
	top: 10px;
	right: -15px;
	height: 6px;
	width: 11px;
	background: url(images/arrow-down.png) no-repeat;
	background-size: cover;
}

.agent .content-block a.js-more.less:after {
	transform: rotate(180deg);
} 

.agent .sidebar {
	float: right;
	width: 30%;
	padding-top: 0;
}

.agent .sidebar .refer-agent-block {
	margin: 0;
}

.agent .sidebar h2 {
	margin-bottom: 15px;
}

.agent .sidebar textarea {
	height: 100px;
}
 
.single-agent .site-footer {
	min-height: 10px;
	padding: 25px 0 20px;
}

.single-agent .copyright {
	padding: 0;
	text-align: center;
	margin: 0 auto;
}
.agent .dsidx-top-actions,
.agent  #dsidx-top-search,
.agent  #dsidx-profile-header {
	display: none !important;
}

/* Agent List */

ul.agent-list {
    list-style: none inside;
    letter-spacing: -4px;
    font-size: 0;
}
.agent-list li {
    display: inline-block;
    letter-spacing: 0;
    font-size: 16px;
    padding: 0 5px 30px;
    width: 20%;
    vertical-align: top;
}

.agent-list .contact-info{
    background: transparent;
    width: auto;
    padding: 0;
    height: auto;
}
.agent-list .contact-info h2{
    font-size: 18px;
}
.agent-list .contact-info span {
    display: block;
}

.alphabetic-filter {
	text-align: center;
	vertical-align: top;
	margin: 10px 0 20px;
    display: inline-block;
    float: right;
}

.alphabetic-filter li {
	display: inline-block;
}
.alphabetic-filter li a {
    font-family: 'SegoeUI-Semibold', sans-serif;
	text-decoration: none;
	border: 1px solid #BFBFBF;
	padding: 3px 5px;
	margin: 2px;
	min-width: 25px;
	display: inline-block;
	color: #000;
}
.alphabetic-filter li a.active,
.alphabetic-filter li a:hover {
	color: #eeeeee;
	background: #72ad51;
	transition: 0.2s all ease-in-out;
	border: 1px solid #72ad51;
	text-decoration: none;
}
.search-agent {
    display: inline-block;
    float: left;
    margin: 10px 0 20px;
}
input.search-by-agent-name {
    font-family: 'SegoeUI-Regular', sans-serif;
    padding: 5px 15px;
    border: 2px solid #c7d3d6;
}

.alphabetic-filter .filter-label a.active,
.alphabetic-filter .filter-label a,
.alphabetic-filter .filter-label a:hover {
    background: none;
    color: #000;
    border: none;
    cursor: default;
}

/* Agent End */

/* Single listing */

.single-agent .dsidx-results li {
	border-bottom: 2px solid #cccccc;
	padding: 15px 0;
}

.single-agent .dsidx-results li img {
	border: 0 !important;
}

.single-agent .dsidx-results .dsidx-prop-title {
	position: relative;
	text-align: right;
	margin-bottom: 15px !important;
	border-bottom: 1px solid #cccccc;
	padding: 5px 15px;
}

.single-agent .dsidx-results .dsidx-prop-title b {
	font-size: 27px;
}

.single-agent .dsidx-results .dsidx-prop-title a {
	position: absolute;
	top: 0;
	left: 15px;
	color: #000;
}

.single-agent .dsidx-results .dsidx-prop-title a:hover {
	color: #72ad51;
}

.single-agent .dsidx-results .dsidx-prop-features {
	font-size: 20px;
	color: #222222;
	float: left;
	font-weight: 500;
	padding: 10px;
}

.single-agent .header-top .slogan {
	display: none;
}

/*Agents End*/

/*Blog Start*/

.blog .page-header {
	margin: 20px 0;
}

.blog .container,
.category .container {
	max-width: 1400px;
	width: 100%;
}

h1.page-title {
    font-size: 40px;
}

.blog h1.page-title {
	font-size: 40px;
	margin-bottom: 15px;
}

.entry-meta {
    position: relative;
    padding: 0 50px;
}

.entry-meta:before {
    position: absolute;
    content: '';
    width: 17px;
    height: 17px;
    background: url(images/icon-dates.png) no-repeat;
    top: 2px;
    left: 25px;
}

span.posted-on {
    font-size: 0;
}

span.posted-on a,
span.posted-on span {
    font-size: 16px;
	font-family: 'SegoeUI-Regular', sans-serif;
    color: #494949;
}

span.cat-links {
    display: none;
}

.blog .entry-title,
.blog .entry-title a,
.single .entry-title,
.single .entry-title a,
.category .entry-title,
.category .entry-title a {
    font-size: 22px;
    color: #252525;
	font-family: 'SegoeUI-Regular', sans-serif;
	font-weight: 600;
    padding: 0 13px;
    display: block;
	margin: 10px 0;
}

article.hentry {
    -webkit-box-shadow: 0 0 15px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: 0 0 15px -4px rgba(0,0,0,0.75);
    box-shadow: 0 0 15px -4px rgba(0,0,0,0.75);
    transition: 0.2s all ease-in-out;
}

article.hentry:hover {
    -webkit-box-shadow: 0 0 15px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0 0 15px -2px rgba(0,0,0,0.75);
    box-shadow: 0 0 15px -2px rgba(0,0,0,0.75);
}

.entry-header .img-wrap {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.img-wrap .feature-tag {
    position: absolute;
    z-index: 5;
    top: 25px;
    right: -31px;
    color: #fff;
    transform: rotate(45deg);
    background: #72ad51;
    text-transform: capitalize;
    padding: 5px 30px;
    line-height: 1;
}

.entry-header .img-wrap img {
	width: 100%;
}

.entry-content {
    margin: 0;
    padding: 0 25px;
	font-family: 'SegoeUI-Regular', sans-serif;
	font-size: 18px;
}
/*Single*/

.single .entry-title {
    font-size: 42px;
	padding: 0 0 15px;
	margin: 20px 0 40px;
	font-family: 'SegoeUI-Regular', sans-serif;
	font-weight: 500;
}

.single .entry-meta {
    position: relative;
    padding: 15px 50px;
	background: #f3f3f3;
}

.single .entry-meta:before {
    left: 25px;
	top: 18px;
}

.single article.hentry,
.single article.hentry:hover {
    box-shadow: none;
}

.single .entry-header .img-wrap {
	margin: 0;
	background: #f3f3f3;
}

.single .entry-header .img-wrap img {
	width: 100%;  
}

.single .entry-footer {
	display: none;
}

.sidebar {
    padding-top: 118px;
}

.sidebar .widget .widget-title {
    font-size: 30px;
	font-family: 'Oswald', sans-serif;
    color: #000;
    font-weight: bold;
    border-bottom: 1px solid #e3e5e6;
    padding: 0 0 15px;
    text-transform: uppercase;
    margin: 0;
}

.sidebar .widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar .widget li a {
    position: relative;
    font-size: 19px;
	font-family: 'Oswald', sans-serif;
    line-height: 1.2;
    color: #4c4c4c;
    padding: 10px 20px;
    border-bottom: 1px solid #e3e5e6;
    text-transform: capitalize;
    display: block;
}

.sidebar .widget li a:before {
    position: absolute;
    content: '';
    height: 15px;
    width: 7px;
    background: url(images/icon-arrow.png) no-repeat;
    top: 13px;
    background-size: 100%;
    left: 0;
}

.sidebar .widget li a:hover {
    color: #0094d1;
}

.single .entry-content {
    margin: 0;
	background: #f3f3f3;
}

.sidebar  .popular-posts article {
	margin: 15px 0;
}

.sidebar  .popular-posts .img-holder {
	max-width: 35%;
	float: none;
	display: inline-block;
	vertical-align: middle;
	margin: 0;
} 

.sidebar .popular-posts .post-title {
	width: 63%;
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 10px;
}

.sidebar .popular-posts .post-title a {
	font-size: 15px;
	line-height: 1.2;
	color: #494949;
	margin: 0 0 5px;
	text-transform: capitalize;
	display: block;
}

.sidebar .popular-posts .posted-on .entry-date{
	color: #72ad51;
}
/*Blog End*/

/* Testimonials Start*/
.testimonials .container {
	width: 1630px;
	max-width: 100%;
	padding-top: 80px;
	padding-bottom: 50px;
}

.testimonials h1 {
	margin: 0 0 50px;
}
.testimonials ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.testimonials ul li {
	margin-bottom: 30px;
}

.testimonials .contain-holder {
	overflow: hidden;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
	padding: 18px 21px 30px 20px;
}

.testimonials .img-holder {
	position: relative;
	float: left;
    width: 20%;
    border: 17px solid #dddddd;
    border-radius: 50%;
}

.testimonials .img-holder:before {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 0 0 25px;
    border-color: transparent transparent transparent #dddddd;
    bottom: 25px;
    right: -33px;
}

.testimonials blockquote {
	float: right;
    width: 80%;
	border-left: 0;
	font-family:'SegoeUI', 'Arial', sans-serif;
	font-size: 17px;
	color: #151515;
	margin: 0;
	padding: 5px 0 0 25px;
}

.testimonials blockquote a{
	color: #151515;
	text-decoration: underline;
}
.testimonials blockquote a:hover{
	text-decoration: none;
}

.testimonials blockquote p {
	font-family:'SegoeUI', 'Arial', sans-serif;
	margin-bottom: 15px;
}

.testimonials blockquote cite {
	font-family:'SegoeUI', 'Arial', sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: #000;
	text-transform: uppercase;
	font-style: normal;
}

.testimonials blockquote cite span.deg {
    display: block;
    line-height: 1.2;
    font-size: 16px;
    text-transform: none;
}

.testimonials blockquote cite span.deg span {
    display: block;
    line-height: 1.2;
}

.testimonials .img-holder img {
	border-radius: 50%;
    width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
# Start saving
--------------------------------------------------------------*/

.page-template-tpl-start-saving .site-header {
    background: #000;
}

#pg-start-saving {
    padding: 50px 0 0;
}

#pg-start-saving .career-heading h2 {
	font-size: 40px;
    color: #72ad51;
    text-align: center;
    text-transform: Capitalize;
    margin: 0 0 20px;
}

#pg-start-saving .career-heading p {
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
    color: #464646;
}

#pg-start-saving .career-heading p,
#pg-start-saving .stripe-col-1 ul {
    font-family: 'SegoeUI-Regular', Arial, Helvetica, sans-serif;
    font-weight: normal;
}

#pg-start-saving .stripe-col-1 {
    margin-bottom: 100px;
}

#pg-start-saving .stripe-col-1 .service-details{
    background-color: #f9f9f9;
    border: 1px solid #e9e9e9;
    padding: 30px;
}

#pg-start-saving .stripe-col-1 ul {
    margin: 0 0 30px 30px;
    padding: 0;
    list-style-image: url(images/check-icon.png);
    font-size: 18px;
    line-height: 35px;
}

#pg-start-saving .erealty-row {
    letter-spacing: -4px;
    font-size: 0;
}

#pg-start-saving .erealty-col {
    display: inline-block;
    vertical-align: top;
    letter-spacing: 0;
    font-size: 18px;
}

#pg-start-saving .service-rating {
    max-width: 500px;
    margin:0 auto;
    padding: 40px 0 0;
}

#pg-start-saving .service-rating .erealty-row {
    margin: 0 -30px;
}

#pg-start-saving .service-rating .erealty-col {
    width: 50%;
    padding: 0 30px;
}

#pg-start-saving .service-rating h3 {
    text-align: center;
    margin: 0 0 30px;
}

#pg-start-saving .service-rating .col-content {
    text-align: center;
    vertical-align: middle;
}

#pg-start-saving .service-rating .col-content p {
    font-size: 15px;
    margin: 10px 0 0 ;
}

#pg-start-saving .erealty-video {
    margin-bottom: 20px;
    max-width: 670px;
}

#pg-start-saving .erealty-video-frame {
    background-image: url(images/erealty-video-frame.jpg);
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
}

#pg-start-saving .button-play-video {
    border-radius: 50%;
    color: #fff;
    border: 2px solid #fff;
    display: inline-block;
    width: 72px;
    height: 72px;
    font-size: 0;
}

#pg-start-saving .button-play-video::before {
    display: block;
    content: '';
    padding-bottom: 100%;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg%20id%3D'Layer_1'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'16%2020%2060%2060'%3E%3Cstyle%3E.st0%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3Cpath%20class%3D'st0'%20d%3D'M71.1%2051.4L30.8%2078.7c-1.1.8-2.6%200-2.6-1.4V22.7c0-1.4%201.5-2.2%202.6-1.4l40.3%2027.3c1%20.7%201%202.1%200%202.8z'%2F%3E%3C%2Fsvg%3E");
    background-size: 40%;
    background-position: center center;
    background-repeat: no-repeat;
}

#pg-start-saving .video-text {
    font-family: 'SegoeUI-Semibold', Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 600;
}

#pg-start-saving .fully-centred-items {
    position: absolute;
    display: block;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    width: 0;
}

#pg-start-saving .fully-centred-items > * {
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

#pg-start-saving .btn-holder {
    padding-bottom: 60px;
}

#pg-start-saving .popup-form-text {
    font-family: 'SegoeUI-Regular', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-decoration: underline;
    color: #72ad51;
}

.start-saving-form {
    max-width: 400px;
    padding: 20px 10px;
}

.start-saving-form .gform_body ul,
#pg-start-saving .service-contact .gform_body ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#pg-start-saving .service-contact .gform_body ul {
	margin: 0 -5px;
}

.start-saving-form .gform_body ul li {
	font-size: 16px;
	display: block;
	padding: 6px 0;
}

.start-saving-form .gform_body .gfield_label,
.service-contact .gform_body .gfield_label {
	display: none;
}

.start-saving-form h2 {
    font-size: 22px;
    color: #72ad51;
    text-align: center;
    margin: 0 0 10px;
}

.start-saving-form .gform_body ul li input,
.start-saving-form .gform_body ul li textarea {
	width: 100%;
	border-radius: 0;
	font-size: 18px;
	font-family: 'SegoeUI-Regular', sans-serif;
	color: #616768;
	outline: none;
	padding: 13px;
	border: 2px solid #c7d3d6;
	box-shadow: none;
}

.start-saving-form .gform_body ul li textarea {
	max-height: 120px;
}

.start-saving-form .gform_footer input[type="submit"]  {
 	width: 100%;
 	border-radius: 0;
	border: 2px solid #72ad51;
	background: #72ad51;
	font-size: 24px;
	font-family: 'SegoeUI-Bold', sans-serif;
	line-height: 1.2;
	color: #fff;
	padding: 10px;
	text-align: center;
	text-transform: uppercase;
	transition: 0.2s all ease-in-out;
	margin: 0 0 5px;
}

.start-saving-form .gform_body ul li input {
    border: 1px solid #c7d3d6;
    font-size: 15px;
    border-radius: 0;
	outline: none;
    box-shadow: none;
    font-family: Poppins, sans-serif;
    font-weight: 300;
    line-height: 1.2;
    color: #343434;
}

.start-saving-form .gform_footer input[type="submit"]:hover {
	background: transparent;
	color: #72ad51;
}

.start-saving-form .gform_body ul li input:focus,
.start-saving-form .gform_body ul li textarea:focus,
.service-contact .gform_body ul li input:focus {
    border-color: #72ad51;
}

.service-contact .gform_body ul:after,
.service-contact .gform_body ul:before {
    clear: both;
    display: block;
    content: '';
}

.service-contact .gform_body ul li {
	float: left;
	width: 33.33%;
    padding: 0 5px;
    margin-bottom: 10px;
}

.service-contact .gform_body ul li input {
    width: 100%;
    border: 1px solid transparent;
    outline: 0;
    background: #e8e8e8;
    padding: 10px;
    color: #343434;
}


.service-contact .gform_footer input[type="submit"] {
    border: 2px solid #72ad51;
	width: 100%;
	border-radius: 0;
	background-color: #72ad51;
	color: #fff;
	font-family: 'SegoeUI-Bold', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px;
    transition: 0.2s all ease-in-out;
}

.service-contact .gform_footer input[type="submit"]:hover {
    background: transparent;
    color: #72ad51;
}

.page-template-tpl-start-saving #colophon {
    display: none;
}

#pg-start-saving .site-footer {
    padding: 15px 0;
    display: block;
    min-height: 10px;
    color: #fff;
}

#pg-start-saving .site-footer p {
    margin: 0;
}

#gform_confirmation_message_11 {
    color: #fff;
}
#joinUs .gform_confirmation_message p {
    margin-top: 30px;
    font-size: 23px;
}

#joinUs .gform_confirmation_message p .btn-style1 {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    padding: 10px 30px;
    margin-top: 10px;
}
#pg-start-saving .career-heading .process-btn-wrap {
    margin: 0;
    padding-top: 20px;
}

.process-btn-wrap .btn-style1 {
    text-decoration: none;
    margin-top: 0;
    font-size: 16px;
    padding: 10px 40px;
}
/* Responsive Start */

@media only screen and (max-width: 1760px) {
	.main-navigation .block-left li {
		padding: 0 10px;
	}
	.main-navigation a {
		font-size: 16px;
	}

}
@media only screen and (max-width: 1500px) {

	.main-navigation .block-left {
		padding: 8px 15px 0;
    }

    .form_saved_message_emailform .validation_message {
        display: block;
        color: red;
        transition: none;
    }
	.main-navigation a {
		font-size: 14px;
	}

	.main-navigation .block-right {
		padding: 3px 0;
	}

	.sticky .main-navigation .block-right a.phone {
		padding-top: 9px;
		transition: none;
	}

	.page-template-tpl-about .banner,
	.page-template-tpl-refer-agent .banner {
		height: 615px;
	}

	.banner .panel-text {
		bottom: 100px;
	}

	.col4-layout.site-pages .col a {
		padding: 60px 0;
        font-size: 20px;
	}

    .col4-layout.site-pages .col a.play-icon {
        top: auto;
        bottom: 10px;
    }

	.contact-form {
		padding: 80px 30px;
	}

	.agent-form {
		padding: 0 15px;
	}

	.map {
		padding: 0;
		height: 1080px;
	}
}

@media only screen and (max-width: 1366px) {

	
	.full-container {
		padding: 0 15px;
	}

	.title-style1 {
		font-size: 60px;
	}

	.btn-style1 {
		font-size: 20px;
	}

	.logo {
		vertical-align: middle;
	}

	.main-navigation {
		vertical-align: middle;
	}

	.main-navigation .block-left li {
		padding: 0 5px;
	}

    .main-navigation .block-right a.phone:after {
		top: 10px;
	}

	.main-navigation .block-left {
		padding: 8px 15px;
	}

	.main-navigation a {
		font-size: 16px;
	}

	.page-template-tpl-about .banner,
	.page-template-tpl-refer-agent  .banner {
		height: 440px;
	}

	.col4-layout.site-pages .col a {
		padding: 50px 0;
	}

/*	.copyright {
		max-width: 600px;
	}*/

	.page-template-tpl-about .banner-text,
	.page-template-tpl-refer-agent .banner-text {
		padding: 30px 0;
	}

	.story-block {
		padding-top: 30px;
	}

	.values-block,
	.team-block {
		padding: 30px 0;
	}
	.contact-form .col2-layout .title h3{
		font-size: 20px;
	}
	.contact-form .col2-layout .title span {
		font-size: 16px;
	}
} 

@media only screen and (max-width: 1300px) {
    .main-navigation a {
        font-size: 15px;
    }
	
	.contact-form .col2-layout .col {
		width: 100%;
	}

	.map {
	    height: 1159px;
	}

    .col4-layout.site-pages .col a {
        text-transform: capitalize;
    }
    .agent-list li{
        width: 25%;
    }
}	

@media only screen and (max-width: 1199px) {
	#page {
		padding-top: 95px;
	}

	.site-header .header-top {
		padding: 10px 0;
	}

	.main-navigation .block-left {
		padding: 8px 0 0;
	}

	.main-navigation .block-right a.btn-style2 {
		margin-right: 10px;
		padding: 10px;
	}

	.main-navigation a {
		font-size: 13px;
	}

	.our-story {
		max-width: 100%;
		padding: 15px;
	}

	.two-column .column {
		width: 100%;
		display: block;
	}

	.two-column .column img {
		width: 100%;
	}

	.two-column .column .text-wrap {
		max-width: 100%;
		padding: 15px;
	}

	.two-column .column.img-wrap {
		display: table-footer-group;
	}

	.sales {
		overflow: hidden; 
		margin-top: 0;
		padding: 0 15px;
	}

	.sales .number {
		font-size: 70px;
	}

	.sales .number sup {
		font-size: 30px;
	}

	.sales .month {
		font-size: 35px;
		margin-left: -20px;
	}

	.broker-lists li,
	.referral-lists li {
		margin-bottom: 20px;
	}

	#dsidx-top-search #dsidx-search-bar input {
		max-width: 100%;
		margin: 5px 0;
	}

	.dsidx-search-grid {
		width: 100%;
	}

	#dsidx-top-search .dsidx-search-bar-openclose {
		top: -13px;
	}

	#dsidx-top-search #dsidx-search-location {
		width: 100%;
	}

	#dsidx-top-search input.dsidx-medium {
		max-width: 100%;
		width: 49%;
	}

	div#dsidx-map {
		position: relative !important;
		width: 100% !important;
		float: none !important;
		height: 400px !important;
	}

	.agent .top-block .img-holder {
		width: 40%;
	}

	.agent .top-block .contact-info {
		width: 56%;
	}

	.agent .top-block .contact-info h2, 
	.agent .sidebar h2 {
		font-size: 24px;
	}

	.agent .top-block .contact-info span {
		font-size: 18px;
	}

	.agent .content-block h1, 
	.agent .listing-block h2 {
		font-size: 30px;
	}

	.single-agent .dsidx-results .dsidx-prop-title b {
		font-size: 20px;
	}

	.single-agent .dsidx-results .dsidx-prop-features {
		font-size: 18px;
	}

	.sidebar  .popular-posts .img-holder {
		width: 34%;
	}

	.contact-form .company-details {
		margin-bottom: 0;
	}

	.contact-form .company-details {
		margin-bottom: 0;
	}

    .col4-layout.site-pages .col a.play-icon {
        font-size: 25px;
        bottom: 5px;
    }

    .testimonials p {
        float: none !important;
        width: 100%;
    }

    .testimonials iframe {
        width: 100%;
    }
    /* Agent List Page*/
    .agent-controls {
        text-align: center;
    }

    form.search-agent {
        float: none;
        margin-bottom: 10px;
        max-width: 600px;
        width: 100%;
    }

    ul.alphabetic-filter {
        float: none;
        display: block;
    }

    input.search-by-agent-name {
        width: 100%;
    }
    /* End Agent List Page*/

}

@media only screen and (max-width: 1024px) {
    .copyright {
        padding-top: 90px;
    }
    .agent-list li{
        width: 33%;
    }
	.contact-form-wrap{
		padding: 30px 15px;
	}
}
@media only screen and (max-width: 991px) {
	.title-style1 {
		font-size: 30px
	}

	.btn-style1 {
		font-size: 14px;
		padding: 5px 10px;
	}

	#page {
		padding-top:100px;
	}

	.site-header .header {
		min-height: 1px;
	}
	#map_wrapper {
		height: 480px;
	}

	.site-header .header-top {
		padding: 10px 0;
	}

	.home .sticky .header, 
	.page-template-tpl-about .sticky .header, 
	.page-template-tpl-refer-agent .sticky .header {
		background: none !important;
	}

	.logo {
		vertical-align: middle;
		width: 100%;
		max-width: 200px;
	}

	.single-agent .logo {
		max-width: 250px;
		width: 100%;
	}

	.main-navigation {
		vertical-align: middle;
	}

	.main-navigation .block-left {
		padding: 8px 10px;
	}

	.main-navigation .block-left li {
		padding: 0 10px; 
	}

	.main-navigation a {
		font-size: 14px;
	}

	.main-navigation .block-right {
		padding: 8px 0;
	}

	.main-navigation .block-right a.phone {
		padding-top: 5px;
	}

	.main-navigation .block-right a.phone:after {
		top: 3px;
	}

	.main-navigation .block-right a.btn-style2 {
		padding: 5px 10px;
		margin-right: 5px;
	}

	.page-template-tpl-about .banner,
	.page-template-tpl-refer-agent  .banner {
		height: 370px;
	}

	.banner .panel-text {
		bottom: 50px;
	}

	.banner .panel-text p {
		font-size: 16px;
	}

	header.sticky {
		position: absolute;
	}

	.site-header.sticky {
		position: absolute;
	}

	.site-header {
		position: absolute;
	}

	.site-header.sticky .header-top {
		padding: 10px 0 0; 
	}

	button#responsive-menu-button {
		position: absolute !important;
		width: 40px !important;
		height: 40px !important;
		border-radius: 2px !important;
		top: 28px !important;
 	}

	button#responsive-menu-button:focus {
		outline: none;
	}

	.responsive-menu-inner, .responsive-menu-inner::before, .responsive-menu-inner::after {
		height: 2px !important;
	}

	#responsive-menu-container #responsive-menu-wrapper {
		padding-top: 15px;
	}

	.home .sticky.site-header .header, 
	.page-template-tpl-about .sticky.site-header .header,
	.page-template-tpl-refer-agent .sticky.site-header .header  {
		background: none; 
	}

	.col4-layout.site-pages .col {		
		width: 50%;
		padding: 2px;
	}

	.col4-layout.site-pages .col a {
		padding: 75px 0;
        text-transform: uppercase;
	}

    .col4-layout.site-pages .col a.play-icon {
        font-size: 30px;
        bottom: 15px;
    }

	.footermenu-holder {
		padding: 30px 0;
	}

	.widget_nav_menu .menu-footer {
		display: block;
	}

	.page-template-tpl-about .banner-text h1,
	.page-template-tpl-refer-agent .banner-text h1 {
		font-size: 30px;
	}

	.contact-form {
		width: 100%;
		padding: 40px 15px;
		float: none;
	}

	.contact-form .company-details .phone {
		padding-left: 25px;
	}

	.map {
		width: 100%;
		float: none;
		margin-bottom: 20px;
		height: auto;
	}

	.join-us-block {
		padding: 30px 0;
	}

	.three-column .column {
		width: 50%;
		margin-bottom: 20px;
	}

	.three-column .column .holder .panel-text {
		padding: 0 15px;
	}

	.three-column .column .holder h4 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.broker-lists li {
		float: none;
		display: inline-block;
		width: 49%;
		vertical-align: top;
	}

	.sales .number {
		font-size: 50px;
		margin-bottom: 10px;
	}

	.sales .number sup {
		top: -20px;
		font-size: 20px;
	}

	.sales .month {
		font-size: 20px;
		margin-left: -15px;
	}

	.title-style4 {
		margin: 0;
	}

	.refer-agent-block .block-left,
	.refer-agent-block .block-right {
		width: 100%;
		float: none;
	}

	.agent .main-block,
	.agent .sidebar {
		width: 100%;
		float: none;
		padding: 0;
	}

	.single-agent button#responsive-menu-button {
		display: none !important;
	}

	.dsidx-results.dsidx-results-map #dsidx-map {
		height: 400px !important;
		width: 100% !important;
		float: none !important;
		position: relative !important;
	}

	ol#dsidx-listings {
		width: 100% !important;
	}

	#dsidx-listings li.dsidx-listing-container {
		width: 48%;
		display: inline-block;
	}

	#dsidx-listings .dsidx-listing .dsidx-media,
	#dsidx-listings .dsidx-listing .dsidx-data { 
		margin: 20px;
		line-height: 18px;
		width: 100%;
		float: none;
	}

	.sidebar {
		padding-top: 20px;
	}
	.copyright {
		max-width: 100%;
	}

	.testimonials .container {
		padding-top: 60px;
    	padding-bottom: 40px;
	}
	
	.testimonials .contain-holder {
		overflow: visible;
		padding: 15px 20px;
	}

	.testimonials .img-holder {
		max-width: 155px;
    	margin: 0 auto 20px;
	}

	.testimonials .img-holder,
	.testimonials blockquote {
		float: none;
		width: 100%;
		padding: 0;
	}
    .copyright {
        padding-top: 10px;
    }

    #fancybox-content .bottom-block .phone {
        padding-top: 0;
    }

    #fancybox-content .bottom-block .phone:after {
        top: 7px;
    }

    /* Start Saving Page */
    #pg-start-saving .career-heading h2 {
		font-size: 36px;
		margin: 0 0 10px;
    }

    #pg-start-saving .career-heading p {
		margin-bottom: 30px;
	}

    #pg-start-saving .erealty-video {
        max-width: 100%;
    }
    li.filter-label {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
	.title-style1 {
		font-size: 22px;
	}

	.title-style2 {
		font-size: 30px;
		padding-bottom: 5px;
	}

	.title-style3 {
		font-size: 30px;
	}

	.home-page-title {
		font-size: 14px;
	}

	.page-template-tpl-about .banner, 
	.page-template-tpl-refer-agent  .banner {
		height: auto;
		min-height: 150px;
	}

	.banner .panel-text {
		bottom: 10px;
		left: 20px;
	}

	.page-template-tpl-about .banner-text p,
	.page-template-tpl-refer-agent .banner-text p {
		font-size: 14px;
	}

	.col4-layout.site-pages .col a {
		font-size: 16px;
		padding: 45px 0;
	}

	.menu-footer a {
		font-size: 16px;
	}

	.site-footer .footer-form {
		max-width: 250px;
	}

	.site-footer .footer-form .gform_title {
		font-size: 20px;
	}

	.site-footer .footer-form ul textarea {
		height: 60px;
	}

	.site-footer .footer-form input[type="submit"] {
		font-size: 20px;
	}
	.copyright p {
		font-size: 13px;
	}

	.copyright .location:after {
		top: 0;
	}

	.container-style1.banner-holder {
		padding-top: 100px;
		padding-bottom: 20px;
		display: block;
	}

	.page-template-tpl-about .banner-text,
	.page-template-tpl-refer-agent .banner-text {
		padding: 5px 0;
	}

	.page-template-tpl-about .banner-text h1,
	.page-template-tpl-refer-agent .banner-text h1 {
		font-size: 20px;
	}

	.values-block .three-column .column {
		padding: 0 10px;
		margin-bottom: 15px;
	}

	.three-column .column .holder h4 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.form {
		padding-top: 0;
	}

	.contact-form .company-details {
		margin-bottom: 20px;
	}

	.contact-form .company-details .title {
		font-size: 20px;
	}

	.contact-form .company-details .title:after,
	.contact-form .company-details .phone .title:after {
		top: 3px;
	}

	.contact-form .company-details .email .title:after {
		top: 4px;
	}

	.contact-form li span,
	.contact-form li a  {
		font-size: 18px;
	}

	.contact-form .gform_body ul li input, 
	.contact-form .gform_body ul li textarea, 
	.contact-form .gform_body select {
		padding: 10px;
	}

	.contact-form .gform_footer input[type="submit"], 
	.agent-form input[type="button"] {
		font-size: 25px;
	}

	.broker-block,
	.referral-block {
		padding: 20px 0;
	}

	.broker-features,
	.referral-features {
		width: 100%;
		float: none;
	}

	.sales {
		width: 100%;
		float: none;
		text-align: center;
	}

	.referral-block .heading-wrap,
	.broker-block .heading-wrap {
		margin-bottom: 20px;
	}

	.referral-block .heading-wrap h2 {
		padding-bottom: 10px;
	}

	.agent-form .form {
		padding: 0;
	}

	.gform_heading .gform_title {
		font-size: 30px;
		margin-bottom: 20px;
	}

	.gform_heading .gform_title:after {
		width: 100px;
	}

	.col2-layout .col.img-holder {
		float: none;
		width: 100%;
		text-align: center;
	}

	.col2-layout .col.panel-text {
		padding: 0;
	}

	.agent .top-block .img-holder,
	.agent .top-block .contact-info {
		height: 220px;
	}

	.agent .top-block .contact-info span,
	.single-agent .dsidx-results .dsidx-prop-features {
		font-size: 16px;
	}

	.contact-form .col2-layout .title span,
	.contact-form .col2-layout .adress,
	.contact-form .col2-layout .phone, 
	.contact-form .col2-layout .email {
		font-size: 18px;
	}

	.contact-form .gform_body ul li.gf-lefthalf, 
	.contact-form .gform_body ul li.gf-righthalf {
		width: 100%;
	}

	.copyright {
        text-align: center;
		padding-bottom: 20px;
        padding-top: 40px;
	}

	.testimonials h1 {
		font-size: 35px;
	    margin: 0 0 35px;
	    padding-bottom: 10px;
	}

	.testimonials .container {
		padding-top: 40px;
    	padding-bottom: 20px;
	}

    #fancybox-content iframe {
        width: 620px;
    }

    #fancybox-content .bottom-block .btn-style2 {
        margin: 8px;
    }

     /* Start Saving Page */
     #pg-start-saving .career-heading h2 {
		font-size: 30px;
	}

	#pg-start-saving .career-heading p {
		font-size: 20px;
		margin-bottom: 30px;
	}
    .agent-list li{
        width: 50%;
    }
}

@media only screen and (max-width: 650px) {
	.title-style2 {
		margin-bottom: 20px;
	}

	.title-style2:after {
		height: 2px;
	}

	.title-style5 {
		font-size: 30px;
	}

	.two-column .column {
		width: 100%;
	}

	.page-template-tpl-about .banner-text h1,
	.page-template-tpl-refer-agent .banner-text h1 {
		font-size: 18px;
	}

	.page-template-tpl-about .banner-text p,
	.page-template-tpl-refer-agent .banner-text p {
		font-size: 12px;
	}

	.story-block .two-column {
		padding-bottom: 0;
	}

	.two-column .column {
		display: block;
		margin-bottom: 10px;
	}

	.our-story {
		max-width: 100%;
		padding: 0;
	}

	.three-column .column {
		width: 50%;
	}

	.values-block .three-column .column {
		padding: 0 5px;
	}

	.three-column .column .holder h4 {
		font-size: 16px;
	}

	.three-column .column .holder p {
		font-size: 14px;
	}

	.contact-form .company-details ul li {
		width: 100%;
	}

	.contact-form .gform_body ul li.gf-lefthalf, 
	.contact-form .gform_body ul li.gf-righthalf {
		width: 100%;
	}

	.contact-form .gform_body textarea {
		height: 200px;
	}

	.contact-form .gform_footer input[type="submit"], 
	.agent-form input[type="button"] {
		font-size: 20px;
		padding: 5px 0;
	}

	.not-found {
		padding: 20px 0;
	}

	.not-found .title-style3 {
		margin-bottom: 10px;
	}

	.not-found .btn-style3 {
		font-size: 16px;
		padding: 10px 20px;
		margin: 5px 0;	
	}

	.three-column .column {
		width: 100%;
	}

	.broker-lists li {
		width: 100%;
	}

	.story-gallery li {
		width: 100%;
		float: none;
		margin-bottom: 2px;
	}

	.refer-agent-block .loop-block span {
		font-size: 30px;
	}

	.refer-agent-block .loop-block .panel-text h3 {
		font-size: 18px;
	}

	.refer-agent-block .loop-block .panel-text p {
		font-size: 16px;
	}

	.agent .top-block .img-holder {
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
		margin-right: 0;
		background-size: auto 100%;
	}

	.agent .top-block .contact-info {
		width: 100%;
	}

	.agent .content-block h1, 
	.agent .listing-block h2 {
		font-size: 24px;
	}

	.single-agent .dsidx-results .dsidx-prop-title {
		text-align: left;
	}

	.single-agent .dsidx-results .dsidx-prop-title a {
		position: static;
	}

	#dsidx-listings li.dsidx-listing-container {
		width: 100% !important;
	}

	.single .entry-title {
		font-size: 30px;
	}

    #fancybox-content iframe {
        width: 100%;
        height: auto;
    }

    #fancybox-content .bottom-block .btn-style2 {
        margin: 8px;
    }

    #pg-start-saving {
        padding: 20px 0 0;
    }

    #pg-start-saving .stripe-col-1 {
        margin-bottom: 0;
    }

    #pg-start-saving .stripe-col-1 .service-details {
		padding: 20px;
	}

    .service-contact .gform_body ul li {
        width: 100%;
    }

    #pg-start-saving .btn-holder {
        padding-bottom: 30px;
    }

    #pg-start-saving .service-rating .erealty-col {
        padding: 0 30px 20px;
    }
    .agent-list li{
        width: 100%;
    }
}

@media only screen and (max-width: 479px) {
	.title-style1 {
		font-size: 18px;
	}

	.home-page-title {
		margin-bottom: 10px;
	}

	.banner .img-holder.overlay {
		height: 215px;
	}

	.banner .img-holder.overlay img {
		height: 100%;
	}

	.banner .panel-text p {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.col4-layout.site-pages .col {
		width: 100%;
	}

	.col4-layout.site-pages .col a {
		padding: 65px 0;
	}

	.site-footer .footer-form {
		position: static;
		padding: 0;
		max-width: 100%;
	}

	.copyright {
		padding-top: 20px;
	}

	.not-found .btn-style3 {
		padding: 5px 10px;
		font-size: 14px;
	}

	.gf_page_steps .gf_step {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}

	.gf_page_steps .gf_step_number,
	.gf_page_steps .gf_step_first .gf_step_number {
		text-align: center;
		margin: 0 auto 12px;
	}

	.refer-agent-block .loop-block .number,
	.refer-agent-block .loop-block .panel-text {
		display: block;
		width: 100%;
		padding: 10px;
		float: none;
		height: auto;
	}

	.refer-agent-block .loop-block span {
		display: block;
		font-size: 22px;
	}

	.agent .top-block .img-holder {
		max-width: 190px;
		display: block;
		margin: 0 auto 10px;
	}

	.single .entry-title {
		font-size: 25px;
	}
	
	.title-style2,
	.title-style3 {
		font-size: 25px;
	}
	.testimonials h1 {
		font-size: 30px;
	    margin: 0 0 30px;
	    padding-bottom: 10px;
	}

	.testimonials .container {
		padding-top: 30px;
    	padding-bottom: 10px;
	}

    .contact-form .col2-layout ul {
        padding: 0 10px;
    }

      /* Start Saving Page */
    #pg-start-saving .career-heading h2 {
		font-size: 24px;
	}

	#pg-start-saving .career-heading p {
		font-size: 20px;
		margin-bottom: 20px;
    }

    #pg-start-saving .stripe-col-1 ul {
		font-size: 16px;
		line-height: 1.5;
    }
	.contact-form .col2-layout .title span {
		font-size: 15px;
	}
}

/* Responsive End */
/* Style End */