/*=========================================== 
 * Importing CSS Libraries
 *===========================================*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

html {
	background: #fff;
	color: #000;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
	font-family: sans-serif;
}

body {
	margin: 0;
}

a {
	background: transparent;
}

a:focus {
	outline: thin dotted;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

h2 {
	font-size: 1.5em;
	margin: 0.83em 0;
}

h3 {
	font-size: 1.17em;
	margin: 1em 0;
}

h4 {
	font-size: 1em;
	margin: 1.33em 0;
}

h5 {
	font-size: 0.83em;
	margin: 1.67em 0;
}

h6 {
	font-size: 0.75em;
	margin: 2.33em 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

mark {
	background: #ff0;
	color: #000;
}

code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-size: 1em;
}

pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

q {
	quotes: "\201C""\201D""\2018""\2019";
}

q:before,
q:after {
	content: '';
	content: none;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
	white-space: normal;
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	margin: 0;
	vertical-align: baseline;
}

button,
input {
	line-height: normal;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
input[disabled] {
	cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

/*
 * Global Styles
 */
body {
	color: #7b7674;
	font-family: "Roboto", "Open Sans", sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	margin: 0 0 20px;
	line-height: normal;
}

hr {
	border: none;
	border-bottom: 1px solid #777;
}

ul,
ol {
	margin: 0;
	padding-left: 0;
}

a {
	text-decoration: none;
	color: #b79e69;
}

address {
	font-style: normal;
}

p {
	margin-top: 0;
}

form .control {
	position: relative;
	margin-bottom: 20px;
}

form .control .fa {
	position: absolute;
	left: 15px;
	top: 15px;
	color: #000;
}

form .control input {
	padding: 15px;
	padding-left: 50px;
	width: 100%;
}

form input,
form textarea,
form select {
	outline: none;
	padding: 10px;
	border: none;
}

form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	padding-left: 40px !important;
	color: #7b7674;
}

form textarea {
	resize: vertical;
}

/*
 * Reusable Components Style
 */
.button,
form input[type="submit"],
form button,
form input[type="reset"] {
	background: rgba(245, 135, 1, 1);
	border: none;
	border-radius: 0;
	padding: 10px 40px;
	-webkit-transition: .3s ease;
	transition: .3s ease;
	color: #000;
	display: inline-block;
	font-size: 15px;
	font-weight: 600;
}

.button:hover,
form input[type="submit"]:hover,
form button:hover,
form input[type="reset"]:hover {
	background: #c8b48b;
}

.container {
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
	zoom: 1;
}

.container:after {
	content: " ";
	clear: both;
	display: block;
	overflow: hidden;
	height: 0;
}

@media (min-width: 768px) {
	.mt-30-mb {
	  display: block;
	  margin-top: 30px;
	}		
	.container {
		width: 750px;
	}
}

@media (min-width: 992px) {
	.mt-30-mb {
	  display: block;
	  margin-top: 30px;
	}		
	.container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}

.container-fluid {
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
	zoom: 1;
}

.container-fluid:after {
	content: " ";
	clear: both;
	display: block;
	overflow: hidden;
	height: 0;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
	*zoom: 1;
}

.row:after {
	content: " ";
	clear: both;
	display: block;
	overflow: hidden;
	height: 0;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
	float: left;
}

.col-xs-1 {
	width: 8.3333333333%;
}

.col-xs-2 {
	width: 16.6666666667%;
}

.col-xs-3 {
	width: 25%;
}

.col-xs-4 {
	width: 33.3333333333%;
}

.col-xs-5 {
	width: 41.6666666667%;
}

.col-xs-6 {
	width: 50%;
}

.col-xs-7 {
	width: 58.3333333333%;
}

.col-xs-8 {
	width: 66.6666666667%;
}

.col-xs-9 {
	width: 75%;
}

.col-xs-10 {
	width: 83.3333333333%;
}

.col-xs-11 {
	width: 91.6666666667%;
}

.col-xs-12 {
	width: 100%;
}

.col-xs-pull-0 {
	right: auto;
}

.col-xs-pull-1 {
	right: 8.3333333333%;
}

.col-xs-pull-2 {
	right: 16.6666666667%;
}

.col-xs-pull-3 {
	right: 25%;
}

.col-xs-pull-4 {
	right: 33.3333333333%;
}

.col-xs-pull-5 {
	right: 41.6666666667%;
}

.col-xs-pull-6 {
	right: 50%;
}

.col-xs-pull-7 {
	right: 58.3333333333%;
}

.col-xs-pull-8 {
	right: 66.6666666667%;
}

.col-xs-pull-9 {
	right: 75%;
}

.col-xs-pull-10 {
	right: 83.3333333333%;
}

.col-xs-pull-11 {
	right: 91.6666666667%;
}

.col-xs-pull-12 {
	right: 100%;
}

.col-xs-push-0 {
	left: auto;
}

.col-xs-push-1 {
	left: 8.3333333333%;
}

.col-xs-push-2 {
	left: 16.6666666667%;
}

.col-xs-push-3 {
	left: 25%;
}

.col-xs-push-4 {
	left: 33.3333333333%;
}

.col-xs-push-5 {
	left: 41.6666666667%;
}

.col-xs-push-6 {
	left: 50%;
}

.col-xs-push-7 {
	left: 58.3333333333%;
}

.col-xs-push-8 {
	left: 66.6666666667%;
}

.col-xs-push-9 {
	left: 75%;
}

.col-xs-push-10 {
	left: 83.3333333333%;
}

.col-xs-push-11 {
	left: 91.6666666667%;
}

.col-xs-push-12 {
	left: 100%;
}

.col-xs-offset-0 {
	margin-left: 0%;
}

.col-xs-offset-1 {
	margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
	margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
	margin-left: 25%;
}

.col-xs-offset-4 {
	margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
	margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
	margin-left: 50%;
}

.col-xs-offset-7 {
	margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
	margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
	margin-left: 75%;
}

.col-xs-offset-10 {
	margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
	margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
	margin-left: 100%;
}

@media (min-width: 768px) {

	.col-sm-1,
	.col-sm-2,
	.col-sm-3,
	.col-sm-4,
	.col-sm-5,
	.col-sm-6,
	.col-sm-7,
	.col-sm-8,
	.col-sm-9,
	.col-sm-10,
	.col-sm-11,
	.col-sm-12 {
		float: left;
	}

	.col-sm-1 {
		width: 8.3333333333%;
	}

	.col-sm-2 {
		width: 16.6666666667%;
	}

	.col-sm-3 {
		width: 25%;
	}

	.col-sm-4 {
		width: 33.3333333333%;
	}

	.col-sm-5 {
		width: 41.6666666667%;
	}

	.col-sm-6 {
		width: 50%;
	}

	.col-sm-7 {
		width: 58.3333333333%;
	}

	.col-sm-8 {
		width: 66.6666666667%;
	}

	.col-sm-9 {
		width: 75%;
	}

	.col-sm-10 {
		width: 83.3333333333%;
	}

	.col-sm-11 {
		width: 91.6666666667%;
	}

	.col-sm-12 {
		width: 100%;
	}

	.col-sm-pull-0 {
		right: auto;
	}

	.col-sm-pull-1 {
		right: 8.3333333333%;
	}

	.col-sm-pull-2 {
		right: 16.6666666667%;
	}

	.col-sm-pull-3 {
		right: 25%;
	}

	.col-sm-pull-4 {
		right: 33.3333333333%;
	}

	.col-sm-pull-5 {
		right: 41.6666666667%;
	}

	.col-sm-pull-6 {
		right: 50%;
	}

	.col-sm-pull-7 {
		right: 58.3333333333%;
	}

	.col-sm-pull-8 {
		right: 66.6666666667%;
	}

	.col-sm-pull-9 {
		right: 75%;
	}

	.col-sm-pull-10 {
		right: 83.3333333333%;
	}

	.col-sm-pull-11 {
		right: 91.6666666667%;
	}

	.col-sm-pull-12 {
		right: 100%;
	}

	.col-sm-push-0 {
		left: auto;
	}

	.col-sm-push-1 {
		left: 8.3333333333%;
	}

	.col-sm-push-2 {
		left: 16.6666666667%;
	}

	.col-sm-push-3 {
		left: 25%;
	}

	.col-sm-push-4 {
		left: 33.3333333333%;
	}

	.col-sm-push-5 {
		left: 41.6666666667%;
	}

	.col-sm-push-6 {
		left: 50%;
	}

	.col-sm-push-7 {
		left: 58.3333333333%;
	}

	.col-sm-push-8 {
		left: 66.6666666667%;
	}

	.col-sm-push-9 {
		left: 75%;
	}

	.col-sm-push-10 {
		left: 83.3333333333%;
	}

	.col-sm-push-11 {
		left: 91.6666666667%;
	}

	.col-sm-push-12 {
		left: 100%;
	}

	.col-sm-offset-0 {
		margin-left: 0%;
	}

	.col-sm-offset-1 {
		margin-left: 8.3333333333%;
	}

	.col-sm-offset-2 {
		margin-left: 16.6666666667%;
	}

	.col-sm-offset-3 {
		margin-left: 25%;
	}

	.col-sm-offset-4 {
		margin-left: 33.3333333333%;
	}

	.col-sm-offset-5 {
		margin-left: 41.6666666667%;
	}

	.col-sm-offset-6 {
		margin-left: 50%;
	}

	.col-sm-offset-7 {
		margin-left: 58.3333333333%;
	}

	.col-sm-offset-8 {
		margin-left: 66.6666666667%;
	}

	.col-sm-offset-9 {
		margin-left: 75%;
	}

	.col-sm-offset-10 {
		margin-left: 83.3333333333%;
	}

	.col-sm-offset-11 {
		margin-left: 91.6666666667%;
	}

	.col-sm-offset-12 {
		margin-left: 100%;
	}
}

@media (min-width: 992px) {

	.col-md-1,
	.col-md-2,
	.col-md-3,
	.col-md-4,
	.col-md-5,
	.col-md-6,
	.col-md-7,
	.col-md-8,
	.col-md-9,
	.col-md-10,
	.col-md-11,
	.col-md-12 {
		float: left;
	}

	.col-md-1 {
		width: 8.3333333333%;
	}

	.col-md-2 {
		width: 16.6666666667%;
	}

	.col-md-3 {
		width: 25%;
	}

	.col-md-4 {
		width: 33.3333333333%;
	}

	.col-md-5 {
		width: 41.6666666667%;
	}

	.col-md-6 {
		width: 50%;
	}

	.col-md-7 {
		width: 58.3333333333%;
	}

	.col-md-8 {
		width: 66.6666666667%;
	}

	.col-md-9 {
		width: 75%;
	}

	.col-md-10 {
		width: 83.3333333333%;
	}

	.col-md-11 {
		width: 91.6666666667%;
	}

	.col-md-12 {
		width: 100%;
	}

	.col-md-pull-0 {
		right: auto;
	}

	.col-md-pull-1 {
		right: 8.3333333333%;
	}

	.col-md-pull-2 {
		right: 16.6666666667%;
	}

	.col-md-pull-3 {
		right: 25%;
	}

	.col-md-pull-4 {
		right: 33.3333333333%;
	}

	.col-md-pull-5 {
		right: 41.6666666667%;
	}

	.col-md-pull-6 {
		right: 50%;
	}

	.col-md-pull-7 {
		right: 58.3333333333%;
	}

	.col-md-pull-8 {
		right: 66.6666666667%;
	}

	.col-md-pull-9 {
		right: 75%;
	}

	.col-md-pull-10 {
		right: 83.3333333333%;
	}

	.col-md-pull-11 {
		right: 91.6666666667%;
	}

	.col-md-pull-12 {
		right: 100%;
	}

	.col-md-push-0 {
		left: auto;
	}

	.col-md-push-1 {
		left: 8.3333333333%;
	}

	.col-md-push-2 {
		left: 16.6666666667%;
	}

	.col-md-push-3 {
		left: 25%;
	}

	.col-md-push-4 {
		left: 33.3333333333%;
	}

	.col-md-push-5 {
		left: 41.6666666667%;
	}

	.col-md-push-6 {
		left: 50%;
	}

	.col-md-push-7 {
		left: 58.3333333333%;
	}

	.col-md-push-8 {
		left: 66.6666666667%;
	}

	.col-md-push-9 {
		left: 75%;
	}

	.col-md-push-10 {
		left: 83.3333333333%;
	}

	.col-md-push-11 {
		left: 91.6666666667%;
	}

	.col-md-push-12 {
		left: 100%;
	}

	.col-md-offset-0 {
		margin-left: 0%;
	}

	.col-md-offset-1 {
		margin-left: 8.3333333333%;
	}

	.col-md-offset-2 {
		margin-left: 16.6666666667%;
	}

	.col-md-offset-3 {
		margin-left: 25%;
	}

	.col-md-offset-4 {
		margin-left: 33.3333333333%;
	}

	.col-md-offset-5 {
		margin-left: 41.6666666667%;
	}

	.col-md-offset-6 {
		margin-left: 50%;
	}

	.col-md-offset-7 {
		margin-left: 58.3333333333%;
	}

	.col-md-offset-8 {
		margin-left: 66.6666666667%;
	}

	.col-md-offset-9 {
		margin-left: 75%;
	}

	.col-md-offset-10 {
		margin-left: 83.3333333333%;
	}

	.col-md-offset-11 {
		margin-left: 91.6666666667%;
	}

	.col-md-offset-12 {
		margin-left: 100%;
	}
}

@media (min-width: 1200px) {

	.col-lg-1,
	.col-lg-2,
	.col-lg-3,
	.col-lg-4,
	.col-lg-5,
	.col-lg-6,
	.col-lg-7,
	.col-lg-8,
	.col-lg-9,
	.col-lg-10,
	.col-lg-11,
	.col-lg-12 {
		float: left;
	}

	.col-lg-1 {
		width: 8.3333333333%;
	}

	.col-lg-2 {
		width: 16.6666666667%;
	}

	.col-lg-3 {
		width: 25%;
	}

	.col-lg-4 {
		width: 33.3333333333%;
	}

	.col-lg-5 {
		width: 41.6666666667%;
	}

	.col-lg-6 {
		width: 50%;
	}

	.col-lg-7 {
		width: 58.3333333333%;
	}

	.col-lg-8 {
		width: 66.6666666667%;
	}

	.col-lg-9 {
		width: 75%;
	}

	.col-lg-10 {
		width: 83.3333333333%;
	}

	.col-lg-11 {
		width: 91.6666666667%;
	}

	.col-lg-12 {
		width: 100%;
	}

	.col-lg-pull-0 {
		right: auto;
	}

	.col-lg-pull-1 {
		right: 8.3333333333%;
	}

	.col-lg-pull-2 {
		right: 16.6666666667%;
	}

	.col-lg-pull-3 {
		right: 25%;
	}

	.col-lg-pull-4 {
		right: 33.3333333333%;
	}

	.col-lg-pull-5 {
		right: 41.6666666667%;
	}

	.col-lg-pull-6 {
		right: 50%;
	}

	.col-lg-pull-7 {
		right: 58.3333333333%;
	}

	.col-lg-pull-8 {
		right: 66.6666666667%;
	}

	.col-lg-pull-9 {
		right: 75%;
	}

	.col-lg-pull-10 {
		right: 83.3333333333%;
	}

	.col-lg-pull-11 {
		right: 91.6666666667%;
	}

	.col-lg-pull-12 {
		right: 100%;
	}

	.col-lg-push-0 {
		left: auto;
	}

	.col-lg-push-1 {
		left: 8.3333333333%;
	}

	.col-lg-push-2 {
		left: 16.6666666667%;
	}

	.col-lg-push-3 {
		left: 25%;
	}

	.col-lg-push-4 {
		left: 33.3333333333%;
	}

	.col-lg-push-5 {
		left: 41.6666666667%;
	}

	.col-lg-push-6 {
		left: 50%;
	}

	.col-lg-push-7 {
		left: 58.3333333333%;
	}

	.col-lg-push-8 {
		left: 66.6666666667%;
	}

	.col-lg-push-9 {
		left: 75%;
	}

	.col-lg-push-10 {
		left: 83.3333333333%;
	}

	.col-lg-push-11 {
		left: 91.6666666667%;
	}

	.col-lg-push-12 {
		left: 100%;
	}

	.col-lg-offset-0 {
		margin-left: 0%;
	}

	.col-lg-offset-1 {
		margin-left: 8.3333333333%;
	}

	.col-lg-offset-2 {
		margin-left: 16.6666666667%;
	}

	.col-lg-offset-3 {
		margin-left: 25%;
	}

	.col-lg-offset-4 {
		margin-left: 33.3333333333%;
	}

	.col-lg-offset-5 {
		margin-left: 41.6666666667%;
	}

	.col-lg-offset-6 {
		margin-left: 50%;
	}

	.col-lg-offset-7 {
		margin-left: 58.3333333333%;
	}

	.col-lg-offset-8 {
		margin-left: 66.6666666667%;
	}

	.col-lg-offset-9 {
		margin-left: 75%;
	}

	.col-lg-offset-10 {
		margin-left: 83.3333333333%;
	}

	.col-lg-offset-11 {
		margin-left: 91.6666666667%;
	}

	.col-lg-offset-12 {
		margin-left: 100%;
	}
}

@-ms-viewport {
	width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
	display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
	display: none !important;
}

@media (max-width: 767px) {
	.visible-xs {
		display: block !important;
	}

	table.visible-xs {
		display: table;
	}

	tr.visible-xs {
		display: table-row !important;
	}

	th.visible-xs,
	td.visible-xs {
		display: table-cell !important;
	}
}

@media (max-width: 767px) {
	.visible-xs-block {
		display: block !important;
	}
}

@media (max-width: 767px) {
	.visible-xs-inline {
		display: inline !important;
	}
}

@media (max-width: 767px) {
	.visible-xs-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm {
		display: block !important;
	}

	table.visible-sm {
		display: table;
	}

	tr.visible-sm {
		display: table-row !important;
	}

	th.visible-sm,
	td.visible-sm {
		display: table-cell !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm-block {
		display: block !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm-inline {
		display: inline !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md {
		display: block !important;
	}

	table.visible-md {
		display: table;
	}

	tr.visible-md {
		display: table-row !important;
	}

	th.visible-md,
	td.visible-md {
		display: table-cell !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md-block {
		display: block !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md-inline {
		display: inline !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg {
		display: block !important;
	}

	table.visible-lg {
		display: table;
	}

	tr.visible-lg {
		display: table-row !important;
	}

	th.visible-lg,
	td.visible-lg {
		display: table-cell !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg-block {
		display: block !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg-inline {
		display: inline !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg-inline-block {
		display: inline-block !important;
	}
}

@media (max-width: 767px) {
	.hidden-xs {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.hidden-sm {
		display: none !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.hidden-md {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.hidden-lg {
		display: none !important;
	}
}

.visible-print {
	display: none !important;
}

@media print {
	.visible-print {
		display: block !important;
	}

	table.visible-print {
		display: table;
	}

	tr.visible-print {
		display: table-row !important;
	}

	th.visible-print,
	td.visible-print {
		display: table-cell !important;
	}
}

.visible-print-block {
	display: none !important;
}

@media print {
	.visible-print-block {
		display: block !important;
	}
}

.visible-print-inline {
	display: none !important;
}

@media print {
	.visible-print-inline {
		display: inline !important;
	}
}

.visible-print-inline-block {
	display: none !important;
}

@media print {
	.visible-print-inline-block {
		display: inline-block !important;
	}
}

@media print {
	.hidden-print {
		display: none !important;
	}
}

/*
 * Header Styles
 */
.site-header {
	position: relative;
	height: 100vh;
	background-size: cover;
	zoom: 1;
}

.site-header:after {
	content: " ";
	clear: both;
	display: block;
	overflow: hidden;
	height: 0;
}

@media screen and (max-width: 990px) {
	.site-header {
		position: relative;
		padding-top: 175px;
	}
  .site-header {
    background-size: contain;
  }
  .section-title {
    font-size: 25px !important;
  }
  .feature-slider {
    height: 255px !important; 
  }
  .mainTitle {
    font-size:25px !important;
  }
  .lightbox-container {
    width: 100% !important;
    height: 100% !important;
}
}

.branding {
    color: white;
    display: block;
    position: absolute;
    left: 15px;
    padding: 15px;
    text-align: center;
    top: 0;
    z-index: 9;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.branding .site-title {
	font-size: 20px;
	font-size: 1.4285714286em;
	margin: 10px 0 5px;
	font-weight: 400;
}

.branding .site-description {
	font-size: 13px;
	font-size: 0.9285714286em;
	color: #9d9997;
}

.banner {
	position: absolute;
	width: 100%;
	left: 0;
	background: #ef9600;
	bottom: 0;
	padding: 10px;
}

.banner .container {
	position: relative;
}

@media screen and (max-width: 990px) {
	.banner {
		position: relative;
		padding: 20px 0;
	}
}

.banner .cta {
	padding-right: 40%;
}

@media screen and (max-width: 990px) {
	.banner .cta {
		padding-right: 0px;
	}
}

.banner a {
	color: #f58701;
}

.banner h2 {
	font-size: 26px;
	color: white;
	font-weight: 300;
	margin: 0 0 10px;
}

.banner small {
	font-size: 15px;
	color: #fff;
}

.banner .arrow-button {
    width: 55px;
    height: 55px;
    display: block;
    text-align: center;
    font-size: 25px;
    float: right;
    padding-top: 5px;
    position: relative;
    border: 2px solid #32353E;
    border-radius: 50%;
}

.subscribe-form {
    position: absolute;
    right: -35px;
    bottom: -35px;
    background: url(images/FBG.png);
    width: 35%;
    padding: 30px;
    border-radius: 10px;
}

@media screen and (max-width: 990px) {
	.subscribe-form {
		width: 100%;
		position: relative;
		left: 0;
		padding:15px;
	}
	.mob_mt {
		margin-top: 150px !important;
	}
	.block {
		margin: 0px !important;
	}
	
}

.subscribe-form .form-subtitle {
	font-size: 22px;
	color: #000;
	font-weight: 500;
	line-height: 45px;
	text-align: center;
	display: block;
}

.subscribe-form .form-title {
	font-size: 14px;
	color: #000;
	font-weight: 300;
	text-align: center;
	line-height: 23px;
}

.subscribe-form p {
	color: #9d9997;
	margin: 30px 0;
}

.subscribe-form input .fa {
	-webkit-transition: .3s ease;
	transition: .3s ease;
}

.subscribe-form input:hover+.fa,
.subscribe-form input:focus+.fa {
	color: #b79e69;
}

.subscribe-form input[type="submit"] {
	width: 100%;
	font-size: 18px;
	font-size: 1.2857142857em;
	padding: 15px 20px;
}

.section-title {
	font-size: 36px;
	font-weight: 600;
	text-align: center;
	color: rgba(4, 38, 73, 1);
	margin-bottom: 0;
}

.arrow-list {
	list-style: none;
	font-size: 18px;
	font-size: 1.2857142857em;
	margin-bottom: 50px;
}

.arrow-list li {
	position: relative;
	padding-left: 40px;
	margin-bottom: 15px;
}

.arrow-list li:before {
    content: "\f111";
    font-family: "FontAwesome";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 5px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    top: 18px;
}

.feature-slider {
	position: relative;
	height: 500px;
	margin-bottom: 30px;
}

.feature-slider .slides {
	list-style-type: none;
    position: relative;
	*zoom: 1;
}

.feature-slider .slides:after {
	content: " ";
	clear: both;
	display: block;
	overflow: hidden;
	height: 0;
}

.feature-slider .slides li {
	width: 100%;
	margin-right: -100%;
	float: left;
}

.feature-slider .slides figure img {
	display: block;
	max-width: 100%;
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.feature-slider .slides figcaption {
	background-color: #262322;
	color: white;
	padding: 10px 120px 10px 20px;
}

.feature-slider .slides figcaption h3 {
	font-size: 14px;
	font-size: 1em;
	margin: 0 0 5px;
}

.feature-slider .slides figcaption small {
	font-size: 12px;
	font-size: 0.8571428571em;
	color: #9d9997;
}

.feature-slider .flex-direction-nav {
	position: absolute;
	right: 0;
	bottom: 75px;
	width: 120px;
	z-index: 99;
	*zoom: 1;
	list-style: none;
}

.feature-slider .flex-direction-nav:after {
	content: " ";
	clear: both;
	display: block;
	overflow: hidden;
	height: 0;
}

.feature-slider .flex-direction-nav li {
	float: left;
	box-sizing: border-box;
}

.feature-slider .flex-direction-nav li a {
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    padding-top: 7px;
    color: #fff;
    background: rgba(245, 135, 1, 0.7);
    border-radius: 5px;
    margin-left: 5px;
}

.fullwidth-block {
	padding-top: 50px;
}

.feature {
	text-align: center;
	border: 1px solid #e3e3e3;
    border-radius: 10px;
    padding: 25px;
}

.feature .feature-title {
	font-size: 15px;
	font-weight: 400;
	color: #fff;
	margin: 10px 0;
}

.post-list {
	*zoom: 1;
}

.post-list:after {
	content: " ";
	clear: both;
	display: block;
	overflow: hidden;
	height: 0;
}


@media screen and (max-width: 640px) {
	.post-list .post {
		padding-left: 0;
		padding-right: 0;
	}
}

.post-list .post .feature-image img,
.post-list .post .feature-image iframe,
.post-list .post .post-detail img,
.post-list .post .post-detail iframe {
	max-width: 100%;
	display: block;
}

.post-list .post .feature-image iframe,
.post-list .post .post-detail iframe {
	height: 335px;
	max-height: 100%;
}

.post-list .post .feature-image {
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
	width: 50%;
	background-size: cover;
}

@media screen and (max-width: 640px) {
	.post-list .post .feature-image {
		position: relative;
		height: 340px;
		width: 100%;
	}
}

.post-list .post:nth-child(2) {
	padding-left: 0;
	padding-right: 50%;
}

@media screen and (max-width: 640px) {
	.post-list .post:nth-child(2) {
		padding-left: 0;
		padding-right: 0;
	}
}

.post-list .post:nth-child(2) .feature-image {
	left: auto;
	right: 0;
}

.post-list .post .post-detail {
	padding: 20px 20px 20px 45px;
}

.post-list .post .post-detail p {
	color: #ccc;
}

.post-list .post .entry-title {
	color: white;
	padding-bottom: 20px;
	position: relative;
	font-weight: 300;
	text-align: center;
	margin-top: 15px;
}

.post-list .post .entry-title:after {
	content: " ";
	width: 40px;
	height: 2px;
	background-color: #b79e69;
	position: absolute;
	bottom: 0;
	left: 45%;
}

.partners a {
	margin-right: 20px;
	margin-bottom: 30px;
	display: inline-block;
}

/*
 * Footer Styles
 */
.site-footer {
	padding: 25px 0 25px;
	background-color: #32353e;
	color: #fff;
}

.site-footer .container p {
	margin: 20px 0 0px;
}

.social-links a {
	padding-top: 10px;
	font-size: 20px;
	display: inline-block;
	margin: 0px 10px;
	text-align: center;
	color: white;
	line-height: normal;
}

.social-links a.facebook i {
    color: #fff;
    font-size: 24px;
    margin-right: 10px;
}

.social-links a.twitter i {
    color: #fff;
    font-size: 24px;
    margin-right: 10px;
}

.social-links a.google-plus {
	background-color: #d3492c;
}

.social-links a.pinterest {
	background-color: #ca2128;
}

.img-responsive {
	width: 100px;
}

.arrow-set {
	top: 10px !important;
}

.btnSubmit {
    color: #fff;
    border-radius: 5px;
    margin: 0px auto;
    display: block;
}

#modal {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99999999;
	position: fixed;
	background: rgb(42 42 42 / 90%);
	transition: all 0.5s;
	display: grid;
	place-content: center;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

#modal:target {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.modal-content {
	margin: 0.5em;
	padding: 1.2em;
	background: #ffffff;
	border-radius: 10px;
	width: 60vw;
	max-width: 610px;
}

.modal-content .close {
	display: inline-block;
	text-decoration: none;
	border-radius: 5px;
	color: #000000;
	position: relative;
	font-size: 0.9rem;
	float: right;
}

.modal-content .close:active {
	top: 1px;
}

a.open-modal {
	text-decoration: none;
	background-color: #fff;
	padding: 0.8em 1.2em;
	border-radius: 5px;
	color: #444444;
	position: relative;
}

a.open-modal:hover {
	color: blue;
}

a.open-modal:active {
	top: 1px;
}

.subscribe-form2 {
	position: relative;
	right: 0;
	background: #fff;
	width: 100%;
}

@media screen and (max-width: 990px) {
	.subscribe-form2 {
		width: 100%;
		position: relative;
		left: 0;
	}
  .centerText {
    justify-content: flex-start !important;
  }
  .media-object {
    margin-bottom: 0px !important;
  }
}

.subscribe-form2 .form-subtitle {
	font-size: 22px;
	color: #000;
	font-weight: 500;
	line-height: 45px;
	display: block;
	text-align: center;
}

.subscribe-form2 .form-title {
	font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 23px;
    text-align: center;
}

.subscribe-form2 p {
	color: #9d9997;
	margin: 30px 0;
}

.subscribe-form2 input .fa {
	-webkit-transition: .3s ease;
	transition: .3s ease;
}

.subscribe-form2 input:hover+.fa,
.subscribe-form2 input:focus+.fa {
	color: #b79e69;
}

.subscribe-form2 input[type="submit"] {
	width: 100%;
	font-size: 18px;
	font-size: 1.2857142857em;
	padding: 15px 20px;
}

.subscribe-form2 form .control input {
	padding: 15px;
	padding-left: 50px;
	width: 100%;
	background-color: #f2f2f2;
	border-radius: 5px;
}

.subscribe-form2 select {
	background-color: #f2f2f2;
	border-radius: 5px;
	padding: 15px;
}

.arrow-set2 {
	top: 15px !important;
}

.note {
	color: #000;
	text-align: center;
	display: block;
	margin-top: 10px;
	font-size: 12px;
}

.para {
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	color: #fff;
	text-align: center;
}

.subHeading {
	font-size: 22px;
	font-weight: 500;
}

.mainTitle {
	font-weight: 600;
	font-size: 30px;
	line-height: 100%;
	color: rgba(4, 38, 73, 1);
	text-align: center;
}

.second-section {
	padding-bottom: 50px;
	padding-top: 50px;
	background-color: #32353E;
}

.bgGray {
  background-color: #f9f9f9;
}

.padSet {
  padding: 50px 0px;
}

.AmenitiesSection {
    padding: 0px 0px 50px 0px;
    background-color: #fff;
}

.boxShadow {
	text-align: center;
}

.boxShadow h5 {
	font-size: 20px;
	font-weight: 400;
	color: #fff;
	margin: 10px 0;
}

.mb-4 {
	margin-bottom: 10px;
}

.videoSections {
	width: 100%;
	height: 100%;
}

.partnerImg {
	width: 250px;
	margin: 0px auto;
}

.lightboxpreview {
	transition: all .3s linear;
	padding-top: 60%;
	cursor: pointer;
	background-size: cover;
}

.lightbox-content {
	max-height: 75svh;
	height: 75svh;
}

.lightbox-close {
	cursor: pointer;
	margin-left: auto;
	position: absolute;
	right: -30px;
	top: -30px;
	color: white;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}

.modalscale {
	transform: scale(0);
	opacity: 0;
}


.lightbox-container,
.lightbox-btn,
.lightbox-image-wrapper,
.lightbox-enabled {
	transition: all .4s ease-in-out;
}

.lightbox_img_wrap {
	padding-top: 65%;
	position: relative;
	overflow: hidden;
	margin: 5px;
}

.lightbox-enabled:hover {
	transform: scale(1.1)
}

.lightbox-enabled {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	object-fit: cover;
	cursor: pointer;
}

.lightbox-container {
	width: 100svw;
	height: 100svh;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, .6);
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
}

.lightbox-container.active {
	opacity: 1;
	pointer-events: all;
}

.lightbox-image-wrapper {
	display: flex;
	transform: scale(0);
	align-items: center;
	justify-content: center;
	max-width: 90vw;
	max-height: 90vh;
	position: relative;
}

.lightbox-container.active .lightbox-image-wrapper {
	transform: scale(1);
}

.lightbox-btn,
#close {
	color: white;
	z-index: 9999999;
	cursor: pointer;
	position: absolute;
	font-size: 30px;
}

.left {
	left: 50px;
}

.right {
	right: 50px;
}

#close {
	top: 50px;
	right: 50px;
}

.lightbox-image {
	width: 100%;
	max-height: 95vh;
	object-fit: cover;
}

@keyframes slideleft {
	33% {
		transform: translateX(-300px);
		opacity: 0;
	}

	66% {
		transform: translateX(300px);
		opacity: 0;
	}
}


.slideleft {
	animation-name: slideleft;
	animation-duration: .5s;
	animation-timing-function: ease;
}

@keyframes slideright {
	33% {
		transform: translateX(300px);
		opacity: 0;
	}

	66% {
		transform: translateX(-300px);
		opacity: 0;
	}
}


.slideright {
	animation-name: slideright;
	animation-duration: .5s;
	animation-timing-function: ease;
}

.gallery {
	padding: 50px 0;
	background-color: #fff !important;
}

.gallery .p-0 {
	padding: 0;
}

.text-center {
	text-align: center;
}

.mt-4 {
  margin-top: 15px;
}

.pt-0 {
  padding-top: 0;
}

.media-object {
    margin-top: 16px;
    margin-bottom: 10px;
}
.media-object-image {
    padding: 8px;
}

.media-object-heading {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 10px;
}
.media-object-text {
  font-size: 14px;
  margin-bottom: 0;
}
.media-object-1:before,
.media-object-1:after {
  content: " ";
  display: table;
}
.media-object-1:after {
  clear: both;
}
.media-object-1 .media-object-image {
  float: left;
  margin-right: 10px;
  text-align: center;
}
.media-object-1 .media-object-heading {
    margin-top: 3px;
    text-align: left;
	line-height: 30px;
    font-weight: 300;
}

.heading2 {
  position: relative;
  top: 8px;
}

.centerText {
  text-align: center;
  justify-content: center;
  display: flex;
}

.social-links span {
  font-size: 18px;
}

.card {
  margin-top: 15px;
}
.card-img-top {
  width: 100%;
  height: auto;
}

.card-title {
  text-align: center;
  font-size: 20px;
  color: rgba(4, 38, 73, 1);
  margin: 15px;
}
.fa-envelope {
  position: relative;
  left: -1px;
}
.whatsapp {
    font-size: 16px;
    text-align: center;
    border-radius: 35px;
    line-height: 6px;
    font-weight: 600;
    background: #24B43B !important;
    padding: 25px 25px;
    color: #fff;
    margin-left: 5px;
}

.whatsapp:hover {
	/*background: rgb(193 111 12) !important;*/
}

.whatsapp2:hover {
	/*background: rgb(193 111 12) !important;*/
}

.whatsapp img {
  width: 25px;
  position: relative;
  top: 7px;
  right: 0px;
}

.whatsapp2 {
    font-size: 16px;
    text-align: center;
    border-radius: 35px;
    line-height: 6px;
    font-weight: 600;
    background: #cdcdcd !important;
    padding: 25px 25px;
    color: #fff;
}

.fixBtn {
  position: fixed;
  bottom: 30px;
  right: 15px;
  z-index: 9;
}

.unionWidth {
    width: 18px;
    position: relative;
    top: 6px;
    right: -3px;
}

.img-responsive2 {
  width:140px;
}

.box3 {
    border: 1px solid #ededed;
    border-radius: 10px;
    padding: 25px;
}

.bg-1 {
	background-image: url(images/Residences-Du-Port-Autograph-Collection-3.webp);
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
}

.text-white {
	color: #fff !important;
}

.bg-2 {
	background-image: url(images/67fff55c151f153a8c766250_residence-du-port-hero-min.webp);
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
	padding: 75px;
}

.bg-2 .mainTitle {
	font-weight: 600;
	font-size: 30px;
	line-height: 100%;
	text-align: center;
}

.bg-2 .paragraph {
	font-weight: 400;
	font-size: 18px;
	line-height: 35px;
	text-align: center;
	color: #fff;
}

.gallery .paragraph {
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	padding: 0px 130px;
	color: rgba(4, 38, 73, 1);
}

.mapWidth {
	width: 100%;
	height: 220px;
	border-radius: 5px;
	border: none;
}

.home {
	height: 100vh;
}

.wrap {
	float: right;
}
.block {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.beacon {
  background: #ccc;
}

.beacon-1:before, .beacon-1:after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /*background: #32353e;*/
  position: absolute;
  top: 0;
  left: 0;
  /*animation: beacon 2.4s linear 0.6s infinite;*/
}
.beacon-1:after {
  /*animation: beacon 1.8s linear infinite;*/
}

@keyframes beacon {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.beacon-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wrap i {
    position: relative;
    left: 3px;
    font-size: 30px;
    color: #32353e;
}

.wrap a:hover {
	border: 1px solid;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: relative;
    padding-top: 5px;
}

.video-container {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  height:100vh;
  width: 100%;
}
.video-container video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.MultiCarousel {
   float: left;
   overflow: hidden;
   padding: 15px;
   width: 100%;
   position: relative;
}
.MultiCarousel {
   height: 189px;
}
.MultiCarousel .MultiCarousel-inner {
   transition: 1s ease all;
   float: left;
}
.MultiCarousel .MultiCarousel-inner .item {
   float: left;
}
.MultiCarousel .MultiCarousel-inner .item > div {
   text-align: center;
   padding: 6px 0px 0px 6px;
   margin: 10px;
   background: #5C5C5CAD;
   color: #666;
}
.MultiCarousel .leftLst,
.MultiCarousel .rightLst {
   position: absolute;
   border-radius: 50%;
   top: calc(58% - 20px);
}
.MultiCarousel .leftLst {
   left: 0;
}
.MultiCarousel .rightLst {
   right: 0;
   border: none;
}

.MultiCarousel .leftLst.over,
.MultiCarousel .rightLst.over {
   pointer-events: none;
   border: none;
}

.d-none {
	display: none;
}

@media only screen and (max-width: 764px) and (min-width: 325px) {
	.mt-30-mb {
	  display: block;
	  margin-top: 30px;
	}	
	.modal-content {
	    width: auto;
	}	
	.video-container {
		height: auto;
	}
	.img-responsive
	{
		width: 45px;
	}
	.button5::before {
		min-width: calc(0px + 0px);
		min-height: calc(0px + 0px);
	}
	.box3 {
		margin-bottom: 15px;
	}
	.feature-slider .slides {
		top: 0px;
	}
	.feature {
		margin-bottom: 15px;
	}
	.bg-2 {
		padding: 0px;
	}
	.post-list .post .post-detail {
		padding: 20px 20px 20px 20px;
	}
	.gallery {
		padding: 20px 20px 20px 20px;
	}
	.amenities-padsetMT {
		padding: 20px 20px 20px 20px;
	}
	.padSet {
		padding-bottom: 0px;
	}
	.gallery .paragraph {
		padding: 0px 15px;
	}
	.img-responsive2 {
		width: 75px;
	}
}
