/* Defauls Start*/
.container { margin-right: auto; margin-left: auto; padding-left: 20px; padding-right: 20px; }
@media (min-width: 901px) {.container { width: 901px; }}
@media (min-width: 992px) { .container { width: 992px; }}
@media (min-width: 1200px) { .container { width: 1170px; }}

* {
	box-sizing:border-box;
	font-family:inherit;
	-webkit-font-smoothing: antialiased;
}
html,body {
	margin:0;
	font-family: 'Roboto','arial';
	font-size:15px;
	position:relative;
	overflow:hidden;
}

h1,h2,h3,h4 {
	margin:0;
	font-weight:inherit
}
h1 {
	font-size:50px;
	color:#fff;
	font-weight:normal;
}
form {
	margin:0;
}
input, textarea, select {
	outline:none;
	transition:ease 0.3s all;
	width:100%;
	padding:3px 7px;
	border:0px solid #aaa;
	border-radius:0px;
}
textarea {
	resize:none;
}
input:focus, textarea:focus, select:focus {
	
}

button {
	padding: 0px 22px;
	border:2px solid rgba(249, 249, 249, 0.925);
	border-radius:20px;
	color:#eaeaea;
	font-size:13px;
	height:40px;
	letter-spacing:2px;
	outline-color:#eaeaea;
	background-color:transparent;
	transition:ease 0.3s all;
	cursor:pointer;
}
button:hover {
	background-color:rgba(249, 249, 249, 0.925);
	color:#333;
}
a {
	text-decoration:none;
	color:inherit;
	display:inline;
	transition:ease 0.3s all;
}
a:hover {
	color:#e4cd62;
}
p {
	margin-top:0;
	margin-bottom:10px;
}
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}
.center {
	display:flex;
	align-items:center;
	justify-content:center;
}
.bg-img {
	width:100%;
	height:100%;
	background-size:cover;
}
.overlay {
	height:100%;
	width:100%;
	background-color:rgba(0,0,0,0.0);
}
.img-holder .img {
	width: 100%;
	height: 100%;
}
.clear {
	clear:both;
}
.overlay1 {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:58%;
	background-color:rgba(0,0,0,0.45);
	z-index:1;
	transition:0.3s ease all;
	display:flex;
	align-items:center;
	padding-top:73px;
	padding-bottom:30px;
}
.page {
	transition:ease 0.3s all;
	opacity:1;
	visibility:visible;
	flex-grow:1;
	color:#fff;
	padding:0 200px;
	width:100%;
	height:100%;
	overflow-y: auto;
}

.page h2 {
	font-family:Raleway;
	font-size:48px;
	font-weight:200;
	letter-spacing:7px;
	line-height:57.6px;
	margin-bottom:20px;
	text-transform:uppercase;
}
.page .line {
	border-bottom:1px solid #fff;
	width:70px;
	margin-bottom:20px;
	display: inline-block;
}
.page p {
	font-size:16px;
	font-weight:300;
	line-height:28px;
	margin-bottom:28px;
}
.page .header {
	text-align:center;
}
.page .header p {
	letter-spacing:1px;
	margin-bottom:30px;
	font-style:italic;
	font-weight:300;
}
.hide {
	visibility:hidden;
	position:absolute;
	bottom:1000%;
}

.expand {
	left:0 !important;
}
.contract-y {
	opacity:0 !important;
	transform:scaleY(0) !important;
}
.particles {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:-1;
}
/* Defauls End*/

/* Header Start*/
header {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	display:flex;
	justify-content:space-between;
	padding:0 30px;
	z-index:999;
	color:#fff;
}
header .logo {
	text-transform:uppercase;
	font-size:21px;
	padding:10px 0;
	font-weight:900;
	height:73px;
	display:flex;
	align-items:center;
	flex-direction:column
}
header .logo .img1{
	height:39px;
	margin-bottom:5px;
}
header .logo .img2{
	height:14px;
}
header .menu {
	display:flex;
	color:#eee;
	font-size:12px;
	letter-spacing:3px;
	line-height:22px;
	text-transform:uppercase
}
header .menu .item {
	padding:24px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
	transition:ease 0.3s all;
	cursor:pointer;
}
header .menu .item:hover,
header .menu .item.active {
	color:#e4cd62;
}
header .res-menu-icon {
	display:none;
}
header .res-menu-icon .icon { 
	padding:0 20px;
}
header .res-logo-fix {
	display:none;
}
header .res-menu-holder {
	position:absolute;
	top:100%;
	left:0;
	width:100%;
	background-color:rgba(0,0,0,0.7);
	padding:0 15px;
	opacity:1;
	transform:scaleY(1);
	transform-origin: 0 0;
	transition:ease 0.3s all;
	display:none;
}
header .res-menu-holder .item {
	padding:14px 5px;
	border-bottom:1px solid rgba(255,255,255,0.1);
	color:#eee;
	font-size:12px;
	letter-spacing:3px;
	line-height:22px;
	text-shadow:1px 1px 1px rgba(0,0,0,.1);
	text-transform:uppercase;
	display:none;
}

@media (max-width: 1023px) {
	header {
		padding:0 10px;
		background-color:rgba(0,0,0,0.7);
	}
	header .logo {
		margin-right: 40px;
	}
	header .menu {
		display:none;
	}
	header .res-menu-icon {
		display:flex;
	}
	header .res-logo-fix {
		display:block;
	}
	header .res-menu-holder {
		display:block;
	}
	header .res-menu-holder .item {
		display:block;
	}
	
}
/* Header End*/

/* Log Form Start*/
#log-form {
	padding:0 60px;
	flex-direction:column;
	align-items:flex-start;
}
#log-form h1 {
	font-size:22px;
	font-weight:bold;
	letter-spacing:1px;
	line-height:33px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
	text-transform:uppercase;
}
#log-form p {
	color:#eee;
	line-height:24px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
	text-transform:capitalize;
	letter-spacing:1px;
	margin-bottom:30px;
}
#log-form .item {
	margin-bottom:15px;
	display:block;
}
#log-form .label {
	color:#bbb;
	font-size:13px;
	font-weight:500;
	letter-spacing:1px;
	line-height:19.5px;
	margin-bottom:10px;
	text-transform:capitalize;
}
#log-form .input {
	height: 34px;
	width:300px;
	padding: 6px 12px;
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	transition: all 0.15s ease;
	border-radius:3px;
	color:#555;
	font-size:14px;
	line-height:20px;
}
@media (max-width:1023px){
	#log-form.page {
		padding:0 10px;
	}
}
@media (max-width:767px) {
	#log-form.page {
		padding:0 60px;
	}
}
@media (max-width:374px){
	#log-form.page {
		padding:0 10px;
	}
}
/* Log Form End*/

/* About Us Start*/
#about-us {
	color:#fff;
	flex-direction:column;
}
#about-us .items-holder {
	display:flex;
	flex-wrap:wrap;
}
#about-us .items-holder .item-holder {
	width:calc(100% / 3);
	padding:15px;
	display:flex;
}
#about-us .items-holder .item {
	flex-grow:1;
}
#about-us .items-holder h3{
	font-family:'Raleway';
	font-size:22px;
	font-weight:200;
	line-height:26.4px;
	padding-bottom:15px;
	border-bottom:1px solid #fff;
	margin-bottom:10px;
}
#about-us .items-holder .desc{
	font-size:16px;
	font-weight:300;
	line-height:28px;
}
@media(max-width: 767px){
	#about-us .items-holder .item-holder {
		width:100%;
	}
}
/* About Us End*/

/* Services Start*/
#services {
	flex-direction:column;
}
#services .items-holder {
	display:flex;
	flex-wrap:wrap;
	width:100%;
	justify-content:center;
	margin-bottom:40px;
}
#services .items-holder .item-holder {
	justify-content:center;
}
#services .items-holder .item-holder {
	width:calc(100% / 4);
	padding:15px;
	display:flex;
}
#services .items-holder .item {
	flex-direction:column;
	cursor:pointer;
}
#services .items-holder .icon {
	font-size:36px;
	margin-bottom:20px;
}
#services .items-holder .name {
	font-size:14px;
	font-weight:300;
	letter-spacing:2px;
	line-height:20px;
	text-transform:uppercase;
	text-align: center;
}
#services .items-holder .line {
	margin-top:5px;
	margin-bottom:0;
	width:21px;
	transition:ease 0.3s all;
	transform:scaleX(0);
}
#services .items-holder .item:hover .line,
#services .items-holder .item.active .line {
	transform:scaleX(1);
}
#services .info-holder {
	text-align:center;
	font-size:20px;
	font-weight:300;
	line-height:28px;
	height:60px;
	overflow:hidden;
}
#services .info-holder .info {
	opacity:1;
}
@media(max-width:767px) {
	#services .items-holder .item-holder {
		width:calc(100% / 2);
	}
	#services .info-holder {
		height:141px;
	}
}
@media (max-width:374px){
	#services .items-holder .item-holder {
		width:100%;
	}
}
/* Services End*/

/* New Agent Start*/
#new-agent {
	flex-direction:column;
}
#new-agent .form-holder {
	display:flex;
	flex-wrap:wrap;
	width:100%;
}
#new-agent .form-holder .form-item{
	padding:15px;
	width:calc(100% / 3);
}
#new-agent .form-holder .input {
	border:1.25px solid #fff;
	color:#fff;
	background-color:rgba(255,255,255,0.0);
	font-size:16px;
	line-height24px;
	padding:7px 20px;
	font-weight:300;
	width:100%;
}
#new-agent .form-holder .input::placeholder {
	color:#f5f5f5;
}
#new-agent .form-holder .input option {
	background-color:#fff;
	color:#000;
}
#new-agent .form-holder .form-item.button-holder{
	width:100% !important;
}
#new-agent .form-holder button {
	border-radius:0;
	border:1px solid #fff;
}
@media(max-width:767px){
	#new-agent .form-holder .form-item {
		width:100%;
	}
}
/* New Agent End*/

/* Contact Us Start*/

#contact-us {
	flex-direction:column;
}
#contact-us .info-holder {
	display:flex;
	border:1.250px solid #fff;
	border-right:0;
	border-left:0;
	width:100%;
	padding:11px 0;
	margin-bottom:11px;
	flex-wrap:wrap;
}
#contact-us .info-holder .item {
	display:flex;
	font-size:14px;
	font-weight:300;
	line-height:20px;
	width:calc(100% / 3);
	margin-bottom:10px;
}
#contact-us .info-holder .icon {
	padding:0 20px;
	font-size:34px;
}
#contact-us .info-holder .label {
	text-transform:uppercase;
}

#contact-us .form-holder {
	display:flex;
	flex-wrap:wrap;
	width:100%;
}
#contact-us .form-holder .form-item{
	padding:15px;
	width:calc(100% / 3);
}
#contact-us .form-holder .input {
	border:1.25px solid #fff;
	color:#fff;
	background-color:rgba(255,255,255,0.0);
	font-size:16px;
	line-height24px;
	padding:7px 20px;
	font-weight:300;
	width:100%;
}
#contact-us .form-holder .input::placeholder {
	color:#f5f5f5;
}
#contact-us .form-holder .input option {
	background-color:#fff;
	color:#000;
}
#contact-us .form-holder button {
	border-radius:0;
	border:1px solid #fff;
}
#contact-us .form-holder .form-item.text{
	width:100%;
}
#contact-us .form-holder .form-item.text .input{
	height:120px;
}
@media (max-width:767px){
	#contact-us .info-holder .item {
		width:100%;
		margin-bottom:20px;
		justify-content:flex-start;
	}
	#contact-us .info-holder .item:last-of-type {
		margin-bottom:0;
	}
	#contact-us .form-holder .form-item {
		width:100%;
	}
}
/* Contact Us End*/

/* Footer End*/
footer {
	position:absolute;
	bottom:10px;
	left:10px;
	z-index:1;
	color:#ddd;
	font-size:12px;
	text-transform:capitalize;
}
/* Footer Start*/

/*Responsive Generals*/
@media (max-width:1200px) {
	.page {
		padding:0 100px;		
	}	
}
@media (max-width: 1023px) {
	.page {
		padding:0 30px;
	}	
}
@media (max-width: 767px) {
	.overlay1 {
		left:0;
		padding-top:82px;
	}
	.page {
		display:block;
		padding-top:20px !important;
	}	
}
@media (max-width:767px) {
	.page h2 {
		font-size:30px;
	}
}

/*Fixes*/
@media (max-width:1023px) {
	#contact-us.page {
		display:block;
	}
}
@media(max-height: 480px) {
	.page {
		display:block;
	}
}		