@import url("css/content.css");
@import url("css/showcase.css");
@import url("css/shortcodes.css");
@import url("css/assets.css");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&display=swap");
/*------------------------------------------------------------------

01. General Styles
02. Magic Cursor
03. Page Preloader
04. Header Elements
05. Main Content 
06. Footer Elements
07. Responsive Media Querries

-------------------------------------------------------------------*/


/*--------------------------------------------------
	01. General Settings
---------------------------------------------------*/
:root {
	--primary-color: #007B8E;
	--secondary-color: #1FA9E1;
	--background-color: #EBF7FC;
	--text-color: #515D97;
	--accent-color: #2F337B;
	--dark-accent-color: #161952;
	--primary-light-color: #92D0DC;
	--Lato: "Lato", sans-serif;
	--Montserrat: "Montserrat", sans-serif;
	--Cormorant-SC: "Cormorant SC", serif;
}

html,
body {
	font-family: var(--Montserrat);
	font-weight: 400;
	font-size: 15Rpx;
	height: 100%;
	width: 100%;
	color: #444;
	background-color: #fff;
	user-select: none;
	/* supported by Chrome and Opera */
	-webkit-user-select: none;
	/* Safari */
	-khtml-user-select: none;
	/* Konqueror HTML */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	letter-spacing: 0.5px;
}

html {
	box-sizing: border-box;
	margin-right: 0px !important;
	overflow: visible !important;
}

body {
	overflow: hidden;
	overflow-y: scroll;
	-webkit-transition: opacity 0.2s ease-in-out 0.2s;
	transition: opacity 0.2s ease-in-out 0.2s;
}

body.smooth-scroll {
	overflow: hidden;
}

body.has-slider {
	overflow: hidden;
}

body.hidden {
	opacity: 0;
}

main111 {
	-webkit-transition: background 0.5s ease-in-out 0s;
	transition: background 0.5s ease-in-out 0s;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
footer,
header,
hgroup,
nav,
section {
	display: block;
}

audio {
	display: inline-block;
	max-width: 100%;
}

address {
	font-style: italic;
	margin-bottom: 24px;
}

abbr[title] {
	border-bottom: 1px dotted #2b2b2b;
	cursor: help;
}

b,
strong {
	font-weight: 600;
	color: #000;
}

.light-content b,
.light-content strong,
.dark-section b,
.dark-section strong {
	font-weight: 600;
	color: #fff;
}

.light-content .light-section b,
.light-content .light-section strong {
	font-weight: 600;
	color: #5F3F4A;
}

cite,
dfn,
em,
i {
	font-style: italic;
}

mark,
ins {
	background: none repeat scroll 0 0 #000;
	text-decoration: none;
	color: #fff;
	padding: 2px 8px;
	display: inline-block;
	border-radius: 2px;
}

.light-content mark,
.light-content ins,
.dark-section mark,
.dark-section ins {
	background: none repeat scroll 0 0 #fff;
	color: #000;
}

.light-content .light-section mark,
.light-content .light-section ins {
	background: none repeat scroll 0 0 #111;
	color: #fff;
}

code,
kbd,
tt,
var,
samp,
pre {
	font-family: var(--Montserrat);
	font-size: 15px;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	line-height: 1.6;
}

pre {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 24px;
	max-width: 100%;
	overflow: auto;
	padding: 12px;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
	background-color: rgba(0, 0, 0, 0.05)
}

.light-content pre,
.dark-section pre {
	background-color: rgba(255, 255, 255, 0.05);
	color: #fff;
}

.light-content .light-section pre {
	background-color: rgba(0, 0, 0, 0.05);
	color: #000;
}

blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

blockquote {
	color: #000;
	line-height: 1.6;
	font-size: 1.5rem;
	margin-bottom: 2.1875rem;
	font-weight: 500;
	padding-left: 3.5rem;
	margin: 0 0 1.5625rem;
	position: relative;
}

.light-content blockquote,
.dark-section blockquote {
	color: #fff;
}

.light-content .light-section blockquote {
	color: #000;
}

blockquote::before {
	content: "\275D";
	position: absolute;
	left: 0;
	top: 5px;
	line-height: 1;
	font-size: 3rem;
	font-weight: 500;
}

blockquote cite,
blockquote small {
	color: #2b2b2b;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}

.light-content blockquote cite,
.light-content blockquote small {
	color: #fff;
}

blockquote em,
blockquote i,
blockquote cite {
	font-style: normal;
}

blockquote strong,
blockquote b {
	font-weight: 600;
}

small {
	font-size: smaller;
}

big {
	font-size: 125%;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

dl {
	margin-bottom: 24px;
}

dt {
	font-weight: bold;
}

dd {
	margin-bottom: 24px;
}

ul,
ol {
	list-style: none;
	margin: 0 0 24px 20px;
}

ul,
ol {
	list-style: none;
	margin: 16px 0 22px 3px;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li>ul,
li>ol {
	margin: 20px 0px 15px 25px;
}

li {
	line-height: 20px;
	color: #444;
	margin-bottom: 25px;
}

.light-content li,
.dark-section li {
	color: var(--background-color);
}

/* .light-content .light-section li {
		color: #444;
	} */

figure {
	margin: 0;
	position: relative;
	display: block;
}

figure.has-parallax {
	overflow: hidden;
}

.full figure.has-parallax {
	overflow: hidden;
	height: 100vh;
}

figure img {
	max-width: 100%;
}

.has-parallax-content>img,
.has-parallax>img {
	width: 100%;
	height: 100%;
	position: absolute;
	display: block;
	object-position: center;
	object-fit: cover;
}

figcaption {
	background-color: rgba(0, 0, 0, 0.3);
	bottom: 0px;
	color: #fff;
	font-weight: 400;
	font-size: 10px;
	padding: 5px 10px;
	position: absolute;
	right: 0px;
	z-index: 10;
	border-radius: 0;
}

fieldset {
	border: 1px solid rgba(0, 0, 0, 0.1);
	margin: 0 0 24px;
	padding: 0;
}

legend {
	white-space: normal;
}

button,
input {
	line-height: normal;
}

input,
textarea {
	background-image: -webkit-linear-gradient(hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0));
	/* Removing the inner shadow, rounded corners on iOS inputs */
	font-family: "system-ui";

}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
}

button[disabled],
input[disabled] {
	cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
}

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: separate;
	border-spacing: 0;
	border-width: 1px 0 0 1px;
	margin-bottom: 24px;
	width: 100%;
	color: #444;
}

thead,
.light-content .light-section thead {
	background-color: rgba(0, 0, 0, 1);
	color: #fff;
}

.light-content thead,
.dark-section thead {
	background-color: rgba(255, 255, 255, 1);
}

thead tr,
.light-content .light-section thead tr {
	color: #fff;
}

.light-content thead tr,
.dark-section thead tr {
	color: #000;
}

tr,
.light-content .light-section tr {
	color: #444;
}

.light-content tr,
.dark-section tr {
	color: #CCC;
}

tr:nth-child(2n),
.light-content .light-section tr:nth-child(2n) {
	background-color: rgba(0, 0, 0, 0.05);
}

.light-content tr:nth-child(2n),
.dark-section tr:nth-child(2n) {
	background-color: rgba(255, 255, 255, 0.1);
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

th {
	border-width: 0 1px 1px 0;
	padding: 10px;
}

td {
	border-width: 0 1px 1px 0;
	padding: 10px;
}

del {
	color: #767676;
}

hr {
	border: 0;
	height: 28px;
	width: 100%;
	float: none;
	margin: 0;
	display: inline-block;
	opacity: 1 !important;
	-webkit-transition: translateY(0px) !important;
	transform: translateY(0px) !important;
}

hr.animated-line {
	height: 1px;
	padding-top: 20px;
	padding-bottom: 20px;
}

hr.animated-line:before {
	content: "";
	display: block;
	width: 0;
	height: 1px;
	background: rgba(0, 0, 0, 0.1);
}

.light-content hr.animated-line:before,
.dark-section hr.animated-line:before {
	background: rgba(255, 255, 255, 0.15);
}

.light-content .light-section hr.animated-line:before {
	background: rgba(0, 0, 0, 0.1);
}

hr.animated.animated-line:before {
	width: 100%;
	-webkit-transition: width 0.7s ease-in-out 0.1s;
	transition: width 0.7s ease-in-out 0.1s;
}

hr:after {
	clear: both;
	content: " ";
	display: block;
	height: 0;
	visibility: hidden;
}

::selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}

::-moz-selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}

img {
	border: 0 none;
	max-width: 100%;
	vertical-align: middle;
	height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: inherit;
	font-weight: 500;
	color: #000;
	margin-bottom: 20px;
}

.primary-font-title {
	font-family: var(--Cormorant-SC);
	font-weight: 500;
}

.big-title {
	font-size: calc(1rem + 8vw);
	line-height: calc(1rem + 7.5vw);
}

.fixed-title {
	font-size: calc(1rem + 8vw);
	line-height: calc(1rem + 7.5vw);
	margin-bottom: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.fixed-title.primary-font-title {
	font-size: calc(1rem + 24.15vw);
	line-height: calc(1rem + 22vw);
}

.fixed-title div {
	display: inline-block;
	white-space: nowrap;
}

.fixed-title span {
	display: block;
	opacity: 0.1;
	margin-top: 0;
	min-width: 3rem;
	box-sizing: border-box;
	display: inline-block;
	transform-origin: bottom center;
}


h1 {
	font-size: calc(1rem + 4.15vw);
	line-height: calc(1rem + 4.5vw);
}

h2 {
	font-size: calc(1rem + 3vw);
	line-height: calc(1rem + 3.5vw);
}

h3 {
	font-size: calc(1rem + 2vw);
	line-height: calc(1rem + 2.5vw);
}

h4 {
	font-size: calc(1rem + 1vw);
	line-height: calc(1rem + 1.6vw);
}

h5 {
	font-size: calc(1rem + 0.6vw);
	line-height: calc(1rem + 1.5vw);
}

h6 {
	font-size: 18px;
	line-height: 36px;
}

h6.has-icon {
	padding-left: 20px;
	box-sizing: border-box;
	display: inline-block;
	width: auto;
	position: relative;
}

h6.has-icon::before {
	font: var(--fa-font-solid);
	content: "\f101";
	font-size: 12px;
	line-height: inherit;
	text-align: left;
	position: absolute;
	left: 0;
}

.no-margins {
	margin: 0;
}

.light-content h1,
.light-content h2,
.light-content h3,
.light-content h4,
.light-content h5,
.light-content h6,
.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6 {
	color: #fff;
}

.light-content .light-section h1,
.light-content .light-section h2,
.light-content .light-section h3,
.light-content .light-section h4,
.light-content .light-section h5,
.light-content .light-section h6 {
	color: #161952;
}

p {
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
	margin-bottom: 20px;
	color: var(--background-color);
}

.light-content p,
.dark-section p {
	color: var(--background-color);
}

.light-content .light-section p {
	color: #7B7B7B;
}

.bigger {
	font-size: 24px;
	line-height: 38px;
}

.smaller {
	font-size: 12px;
	line-height: 24px;
}

.container {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.container::after {
	clear: both;
	content: " ";
	display: table;
}

a:hover,
a:active {
	outline: 0;
	color: #000;
}

a,
.light-content .light-section a {
	text-decoration: none;
	color: #000;
	outline: 0;
}

/* .light-content a, .dark-section a, .white-header a {
		color: #fff;
	}
	
	.light-content .white-header a { 
		color:#000;		
	}
	 */

header .flexnav>li>a {
	color: #573b4a !important;
	margin: 10px 0;
	font-family: var(--Cormorant-SC) !important;
}

/* header .flexnav > li > a{
			color: var(--background-color);
	 } */

a:hover {
	text-decoration: none;
}

.one_half {
	width: 48% !important;
}

.one_third {
	width: 45% !important;
}

.one_fourth {
	width: 22% !important;
}

.one_fifth {
	width: 16.8% !important;
}

.one_sixth {
	width: 13.33% !important;
}

.two_fifth {
	width: 37.6% !important;
}

.two_fourth {
	width: 48% !important;
}

.two_third {
	width: 65.33% !important;
}

.three_fifth {
	width: 58.4% !important;
}

.three_fourth {
	width: 74% !important;
}

.four_fifth {
	width: 79.2% !important;
}

.five_sixth {
	width: 82.67% !important;
}

.one_half,
.one_third,
.two_third,
.three_fourth,
.one_fourth,
.two_fourth,
.one_fifth,
.two_fifth,
.three_fifth,
.four_fifth,
.one_sixth,
.five_sixth {
	float: left !important;
	margin-bottom: 1px !important;
	margin-right: 4% !important;
	position: relative !important;
}

.last {
	margin-right: 0px !important;
}

.text-align-left {
	text-align: left;
}

.text-align-center {
	text-align: center;
}

.text-align-right {
	text-align: right;
}

.outer {
	display: table;
	width: 100%;
	height: 100%;
}

.inner {
	display: table-cell;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.light-section-wrapper,
.dark-section-wrapper {
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	max-width: 1000% !important;
	width: 100vw !important;
}

.light-section-container,
.dark-section-container {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
}

.content-row {
	position: relative;
	width: 100%;
	margin: 0 auto;
	z-index: 3;
	opacity: 1;
	box-sizing: border-box;
}

.clip-effects {
	overflow: hidden;
	clip-path: inset(4% 10% round 40px);
}

.content-row::after {
	clear: both;
	content: " ";
	display: table;
}

.small {
	max-width: 820px;
	width: 100%;
	margin: 0 auto;
}

.large {
	max-width: 1380px;
	width: 100%;
	margin: 0 auto;
}

.full {
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	max-width: 1000% !important;
	width: 100vw !important;
}

.skyline-top {
	padding-top: unset;
	padding: 7vw 0;
}

.row_padding_top {
	padding-top: 9vw;
}

.row_padding_bottom {
	padding-bottom: 9vw;
}

.row_padding_left {
	padding-left: 80px;
}

.row_padding_right {
	padding-right: 80px;
}

.row_padding_all {
	padding-top: 4vw;
	padding-bottom: 4vw;
	padding-left: 80px;
	padding-right: 80px;
}

.form_header {
	color: #5F3F4A !important;
	text-align: center;
	font-size: 25px;
	text-transform: uppercase;
	padding: 1rem;
	font-weight: 600;
	line-height: unset;
	font-family: var(--Cormorant-SC);
}

.floor-class {
	padding: 10px;
	background: #5F3F4A;
	border-radius: 10px;
	border: 1px solid #fff;
}

#rotate-device {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	background-color: #0f1010;
	/* background-image:url(images/rotate.webp); */
	background-size: 100px 100px;
	background-position: center;
	background-repeat: no-repeat;
	display: none;
}

i.arrow-icon {
	border: solid #000;
	border-width: 0px 3px 3px 0px;
	box-sizing: border-box;
	display: block;
	position: relative;
	top: 0px;
	left: 0px;
	height: 20px;
	width: 20px;
}

.light-content i.arrow-icon,
.dark-content .item i.arrow-icon {
	border: solid #fff;
	border-width: 0px 3px 3px 0px;
}

.light-content .change-header i.arrow-icon,
.dark-content .change-header i.arrow-icon {
	border: solid #000;
	border-width: 0px 3px 3px 0px;
}

i.arrow-icon::after {
	content: "";
	position: absolute;
	width: 28px;
	height: 3px;
	top: 7px;
	left: -6px;
	background-color: #000;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.light-content i.arrow-icon:after,
.light-content .change-header i.arrow-icon::after,
.dark-content .item i.arrow-icon::after {
	background-color: #fff;
}

.light-content .change-header i.arrow-icon::after,
.dark-content .change-header i.arrow-icon::after {
	background-color: #000;
}

i.arrow-icon-down {
	border: solid #222;
	border-width: 0px 2px 2px 0px;
	box-sizing: border-box;
	display: block;
	position: relative;
	top: 14px;
	left: 14px;
	height: 12px !important;
	width: 12px !important;
	line-height: 12px !important;
}

i.arrow-icon-down.left {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}

i.arrow-icon-down::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 2px;
	top: 4px;
	left: -3px;
	background-color: #222;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);

}

.light-content i.arrow-icon-down {
	border: solid var(--accent-color);
	border-width: 0px 2px 2px 0px;
}

.light-content i.arrow-icon-down::after {
	background-color: var(--accent-color);
}

i.arrow-icon-up {
	border: solid #222;
	border-width: 2px 2px 0px 0px;
	box-sizing: border-box;
	display: block;
	position: relative;
	top: 14px;
	left: 14px;
	height: 12px !important;
	width: 12px !important;
	line-height: 12px !important;
}

i.arrow-icon-up.right {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

i.arrow-icon-up::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 2px;
	top: 4px;
	left: -3px;
	background-color: #222;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.light-content i.arrow-icon-up {
	border: solid #fff;
	border-width: 2px 2px 0px 0px;
}

.light-content i.arrow-icon-up::after {
	background-color: #fff;
}

/*--------------------------------------------------
	02. Magic Cursor
---------------------------------------------------*/


#magic-cursor {
	position: absolute;
	left: 0;
	top: 0;
	width: 30px;
	height: 30px;
	pointer-events: none;
	z-index: 10000;
	-webkit-transition: opacity 0.2s ease-in-out 0.5s;
	transition: opacity 0.2s ease-in-out 0.5s;
}

.hidden-ball #magic-cursor {
	opacity: 0 !important;
	visibility: hidden;
}

#ball {
	position: fixed;
	width: 80px;
	height: 80px;
	border: 2px solid #999999;
	border-radius: 50%;
	pointer-events: none;
	opacity: 1;
	box-sizing: border-box;
	-webkit-transform: scale(0.5);
	transform: scale(0.5);
	text-transform: capitalize;
}

.light-content #ball,
#ball.over-movie,
.light-content #ball.with-icon {
	border: 2px solid #999999;
	border-color: #999999;
}

#ball.with-blur {
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

#ball:before {
	font: var(--fa-font-solid);
	content: "\f106";
	font-size: 14px;
	width: 8px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	position: absolute;
	left: 32px;
	top: -42px;
	color: #999;
	opacity: 0;
	transform: translateY(-20px);
	-webkit-transform: translateY(-20px);
	transition: all 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.light-content #ball:before {
	color: #999;
}

#ball::after {
	font: var(--fa-font-solid);
	content: "\f107";
	font-size: 14px;
	width: 8px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	position: absolute;
	left: 32px;
	top: 100px;
	color: #999;
	opacity: 0;
	transform: translateY(20px);
	-webkit-transform: translateY(20px);
	transition: all 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.light-content #ball:before,
.light-content #ball:after {
	color: #999;
}

.scale-up #ball:before,
.scale-drag-horizontal #ball:before {
	opacity: 1;
	transform: translateY(0px);
	-webkit-transform: translateY(0px);
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.scale-drag-horizontal #ball:before {
	color: #fff;
}

.scale-up #ball:after,
.scale-drag-horizontal #ball:after {
	opacity: 1;
	transform: translateY(0px);
	-webkit-transform: translateY(0px);
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.scale-drag-horizontal #ball:after {
	color: #fff;
}

.scale-up.scale-none #ball:before,
.scale-up.scale-none #ball:after {
	opacity: 0;
}

#ball-drag-x {
	position: absolute;
	width: 72px;
	height: 72px;
	pointer-events: none;
	opacity: 1;
	box-sizing: border-box;
}

#ball-drag-x::before {
	font: var(--fa-font-solid);
	content: "\f053";
	font-size: 14px;
	width: 8px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	position: absolute;
	left: -37px;
	top: 30px;
	color: #000;
	opacity: 0;
	transform: translateX(-20px);
	-webkit-transform: translateX(-20px);
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.light-content #ball-drag-x:before {
	color: #fff;
}

#ball-drag-x::after {
	font: var(--fa-font-solid);
	content: "\f054";
	font-size: 14px;
	width: 8px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	position: absolute;
	right: -40px;
	left: auto;
	top: 30px;
	color: #000;
	opacity: 0;
	transform: translateX(20px);
	-webkit-transform: translateX(20px);
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.light-content #ball-drag-x:before,
.light-content #ball-drag-x:after {
	color: #fff;
}

.drag-cursor-white #ball-drag-x:before,
.drag-cursor-white #ball-drag-x:after {
	color: #fff;
}

.drag-cursor-black #ball-drag-x:before,
.drag-cursor-black #ball-drag-x:after {
	color: #000;
}

.scale-drag-x #ball-drag-x:before {
	opacity: 1;
	transform: translateX(0px);
	-webkit-transform: translateX(0px);
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.scale-drag-x #ball-drag-x:after {
	opacity: 1;
	transform: translateX(0px);
	-webkit-transform: translateX(0px);
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.scale-up.scale-drag #ball-drag-x:before,
.scale-up.scale-drag #ball-drag-x:after {
	opacity: 0;
}

#ball-drag-y {
	position: absolute;
	width: 72px;
	height: 72px;
	pointer-events: none;
	opacity: 1;
	box-sizing: border-box;
}

#ball-drag-y:before {
	font: var(--fa-font-solid);
	content: "\f077";
	font-size: 14px;
	width: 8px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	position: absolute;
	left: 32px;
	top: -40px;
	color: #000;
	opacity: 0;
	transform: translateY(-20px);
	-webkit-transform: translateY(-20px);
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.light-content #ball-drag-y:before {
	color: #fff;
}

#ball-drag-y::after {
	font: var(--fa-font-solid);
	content: "\f078";
	font-size: 14px;
	width: 8px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	position: absolute;
	left: 32px;
	top: 100px;
	color: #000;
	opacity: 0;
	transform: translateY(20px);
	-webkit-transform: translateY(20px);
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.light-content #ball-drag-y:before,
.light-content #ball-drag-y:after {
	color: #fff;
}

.scale-drag-y #ball-drag-y:before {
	opacity: 1;
	transform: translateY(0px);
	-webkit-transform: translateY(0px);
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.scale-drag-y #ball-drag-y:after {
	opacity: 1;
	transform: translateY(0px);
	-webkit-transform: translateY(0px);
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.scale-up.scale-drag #ball-drag-y:before,
.scale-up.scale-drag #ball-drag-y:after {
	opacity: 0;
}

#ball i {
	color: #fff;
	width: 76px;
	height: 80px;
	line-height: 78px;
	text-align: center;
	font-size: 14px;
	display: block;
	opacity: 1;
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

#ball {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#ball p {
	color: #fff;
	width: calc(100% - 18px);
	height: auto;
	line-height: 16px;
	padding-top: 0px;
	padding-left: 0px;
	box-sizing: border-box;
	margin: 0 auto;
	margin-bottom: 0;
	text-align: center;
	font-size: 10px;
	font-weight: 600;
	display: flex;
	flex-direction: column;
	align-self: center;
	opacity: 1;
	position: relative;
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.light-content #ball p {
	color: #fff;
}

#ball p.center-first::before {
	font-family: var(--Montserrat);
	content: "[";
	font-size: 12px;
	font-weight: 500;
	position: absolute;
	height: 20px;
	top: calc(50% - 10px);
	left: -8px;
	line-height: 20px;
}

#ball p.center-first::after {
	font-family: var(--Montserrat);
	content: "]";
	font-size: 12px;
	font-weight: 500;
	position: absolute;
	height: 20px;
	top: calc(50% - 10px);
	right: -8px;
	line-height: 20px;
}

.light-content #ball i,
#ball.over-movie i,
.light-content #ball.with-icon i {
	color: #fff;
}

.drag-cursor-white #ball i,
.drag-cursor-white #ball.with-icon i {
	color: #fff;
}

.drag-cursor-black #ball i,
.drag-cursor-black #ball.with-icon i {
	color: #000;
}

.light-content #ball.with-icon.dark-icon i {
	color: #000;
}

.scale-up #ball i {
	opacity: 0;
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

#ball.with-icon i {
	width: 76px;
}

#ball.with-icon i:nth-child(2) {
	display: none;
}

#ball.close-icon i {
	width: 75px;
	height: 76px;
	font-size: 14px;
}

#ball.over-movie i.fa-play,
#ball.over-movie.pause-movie i.fa-pause {
	display: block;
}

#ball.over-movie i.fa-pause,
#ball.over-movie.pause-movie i.fa-play {
	display: none;
}

#ball-loader {
	width: 100px;
	height: 100px;
	position: absolute;
	background-color: transparent;
	border-right: 4px solid transparent;
	border-bottom: 4px solid #999999;
	border-left: 4px solid transparent;
	border-top: 4px solid transparent;
	border-radius: 100px;
	box-sizing: border-box;
	opacity: 0;
	-webkit-transform: translate(-14px, -14px) rotate(0deg);
	transform: translate(-14px, -14px) rotate(0deg);
	-webkit-animation: rotating 0.8s ease-in-out infinite;
	animation: rotating 0.8s ease-in-out infinite;
	-webkit-transition: opacity 0s ease-in-out 0s;
	transition: opacity 0s ease-in-out 0s;
}

.light-content #ball-loader {
	border-bottom: 4px solid #999999;
}

.show-loader #ball-loader {
	opacity: 1;
	-webkit-transition: opacity 0.2s ease-in-out 0s;
	transition: opacity 0.2s ease-in-out 0s;
}

@keyframes rotating {
	0% {
		-webkit-transform: translate(-14px, -14px)rotate(0deg);
		transform: translate(-14px, -14px) rotate(0deg);
	}

	95% {
		-webkit-transform: translate(-14px, -14px) rotate(350deg);
		transform: translate(-14px, -14px) rotate(350deg);
	}

	100% {
		-webkit-transform: translate(-14px, -14px) rotate(360deg);
		transform: translate(-14px, -14px) rotate(360deg);
	}
}

/* .show-loader a, .show-loader nav, .scale-up a, .scale-up .hide-ball, scale-up .link, .scale-up .button-wrap, .scale-up #burger-wrapper, .scale-up .disable-drag, .scale-drag a, .scale-drag .move-title {
	pointer-events: none !important;
} */

.disable-cursor #magic-cursor {
	display: none;
}

#ball i.arrow-icon {
	border: solid #fff;
	border-width: 3px 3px 0px 0px;
	box-sizing: border-box;
	display: block;
	position: absolute;
	top: 28px;
	left: 30px;
	height: 20px;
	width: 20px;
}



.light-content #ball i.arrow-icon {
	border: solid #fff;
	border-width: 3px 3px 0px 0px;
}

#ball i.arrow-icon:after {
	content: "";
	position: absolute;
	width: 30px;
	height: 3px;
	top: 8px;
	left: -8px;
	background-color: #fff;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.light-content #ball i.arrow-icon:after {
	background-color: #fff;
}


/*--------------------------------------------------
	03. Page Preloader
---------------------------------------------------*/

.disable-ajaxload .preloader-wrap {
	display: none;
}

.preloader-wrap {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	/* background: var(--primary-color); */
	background: url(images/haze.webp);
	background-size: cover;
	z-index: 1800;
	text-align: center;
}

.preloader-wrap .outer {
	padding: 0px;
	box-sizing: border-box;
}

.preloader-wrap .inner {
	vertical-align: middle;
	box-sizing: border-box;
}

.percentage-wrapper {
	position: relative;
	display: block;
	text-align: center;
	float: left;
	width: auto;
	overflow: hidden;
	z-index: 10;
	mix-blend-mode: difference;
}

.percentage {
	opacity: 1;
	font-size: 16px;
	line-height: 60px;
	width: 50px;
	font-weight: 500;
	color: #fff;
	display: table;
	margin: 0 auto;
	margin-top: 1px;
	opacity: 0;
	text-align: center;
}

.percentage::after {
	content: "%";
}

.percentage-intro {
	height: 20px;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.6);
	position: absolute;
	bottom: 60px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.trackbar {
	width: 100%;
	height: 100%;
	clip-path: inset(45% 40% 45% 40%);
	margin: 0 auto;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 80px;
	box-sizing: border-box;
	opacity: 1;
	background: rgba(255, 255, 255, 0.05);
}

.loadbar {
	width: 0;
	height: 100%;
	/* background: var(--background-color); */
	background: var(--background-color);
	position: absolute;
	top: 0px;
	left: 0;
	right: auto;
	overflow: hidden;
	z-index: 0;
}

.loadbar-inner {
	width: 100%;
	height: 100%;
	background: #000;
	position: absolute;
	top: 0px;
	left: auto;
	right: auto;
	overflow: hidden;
	z-index: 20;
	clip-path: circle(0%);
}

.hold-progress-bar {
	width: 0%;
	height: 0px;
	background: rgba(0, 0, 0, 1);
	position: absolute;
	top: 0px;
	left: 0;
	right: 0;
	overflow: hidden;
}

.preloader-intro {
	position: relative;
	display: block;
	color: #fff;
	overflow: hidden;
	padding-left: 0vw;
	float: right;
	z-index: 10;
	mix-blend-mode: difference;
	opacity: 0;
}

.uppercase-titles .preloader-intro {
	text-transform: uppercase;
}

.preloader-intro span {
	position: relative;
	display: block;
	font-weight: 500;
	position: relative;
	font-size: 16px;
	line-height: 60px;
}

/*--------------------------------------------------
	04. Header Elements
---------------------------------------------------*/


header {
	width: 100%;
	height: 100px;
	left: 0;
	top: 0;
	background-color: transparent;
	position: fixed;
	box-sizing: border-box;
	z-index: 1000;
	/* pointer-events: none; */
	-webkit-transition: background 0.4s ease-in-out 0.3s;
	transition: background 0s ease-in-out 0s;
	/* background-color: var(--accent-color); */
}

#header-container {
	box-sizing: border-box;
	height: inherit;
	padding: 10px 80px;
	margin: 0 auto;
	position: relative;
	width: 100%;
	z-index: 20;
	opacity: 0;
}

.header-visible #header-container {
	opacity: 1;
}

#logo {
	position: relative;
	display: table;
	pointer-events: initial;
	z-index: 10;
	top: 15px;
	float: left;
}

#logo a {
	display: block;
	-webkit-transition: transform 0.5s ease-in-out 0.1s;
	transition: transform 0.5s ease-in-out 0.1s;
	display: flex;
	gap: 10px;
}

#logo a.disable,
.open #logo a {
	pointer-events: none;
}

#logo img {
	display: block;
	height: 60px;
	width: auto;
	max-width: none;
	-webkit-transition: opacity 0.15s ease-in-out 0s;
	transition: opacity 0.15s ease-in-out 0s;
}

#logo img.black-logo {
	opacity: 1;
}

.light-content #logo img.black-logo {
	opacity: 0;
}

#logo img.white-logo {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.light-content #logo img.white-logo {
	opacity: 1;
}

.white-header #logo img.black-logo {
	opacity: 0;
}

.light-content .white-header #logo img.black-logo {
	opacity: 1;
}

/* .light-content .white-header.over-white-section #logo img.black-logo, .show-loader1 .light-content .white-header #logo img.black-logo {
	opacity: 0;
} */

.white-header #logo img.white-logo {
	opacity: 1;
}

.light-content .white-header #logo img.white-logo {
	opacity: 0;
}

.light-content .white-header.over-white-section #logo img.white-logo,
.show-loader1 .light-content .white-header #logo img.white-logo {
	opacity: 1;
}

.menu-open.light-content .slide-in #logo img.white-logo {
	opacity: 1;
}

nav {
	/* pointer-events: none; */
}

nav.open {
	pointer-events: initial;
}

.dark-content-header #logo img.black-logo {
	opacity: 1 !important;
}

.dark-content-header #logo img.white-logo {
	opacity: 0 !important;
}

.light-content-header #logo img.black-logo {
	opacity: 0 !important;
}

.light-content-header #logo img.white-logo {
	opacity: 1 !important;
}

.landscapes {}

@media all and (min-width: 1025px) {

	.classic-menu nav {
		position: relative;
		width: auto;
		top: 0px;
		-webkit-transition: all 0.2s ease-in-out 0.5s;
		transition: all 0.2s ease-in-out 0.5s;
		display: block;
		float: right;
		height: 60px;
		margin: 10px 0;
		background-color: transparent !important;
		opacity: 1 !important;
	}

	.classic-menu .flexnav {
		display: block;
		float: right;
		position: relative;
		width: auto;
		max-height: 60px;
	}

	.classic-menu .flexnav li ul {
		min-width: 180px;
	}

	.classic-menu .flexnav .touch-button {
		background: transparent none repeat scroll 0 0;
	}

	.flexnav .touch-button .navicon {
		display: none;
	}

	.classic-menu .flexnav li {
		background: transparent none repeat scroll 0 0;
		padding: 0 30px;
		padding-bottom: 20px;
		padding-top: 20px;
	}

	.classic-menu .menu-timeline {
		opacity: 1 !important;
		-webkit-transition: translateY(0px) !important;
		transform: translateY(0px) !important;
		pointer-events: initial;
	}

	.classic-menu .flexnav li:last-child {
		padding-right: 0px;
	}

	.classic-menu .before-span {
		opacity: 1 !important;
		-webkit-transition: translateY(0px) !important;
		transform: translateY(0px) !important;

	}

	.classic-menu .flexnav li a {
		background: transparent none repeat scroll 0 0;
		padding: 0;
		position: relative;
		border-left: medium none;
		color: #222;
		font-size: 14px;
		font-weight: 500;
		line-height: 24px;
		display: block;
		overflow: hidden;
	}

	.light-content .classic-menu .flexnav li a {
		color: #fff;
	}

	.light-content .classic-menu.white-header .flexnav li a {
		color: #222;
	}

	.classic-menu.white-header .flexnav li a {
		color: #fff;
	}

	/* .flexnav:hover li a {
			color: rgba(235, 247, 252,0.4);
		} */

	.light-content .classic-menu .flexnav:hover li a {
		color: rgba(255, 255, 255, 0.4);
	}

	.classic-menu.white-header .flexnav:hover li a {
		color: rgba(255, 255, 255, 0.4);
	}

	.light-content .classic-menu.white-header .flexnav:hover li a {
		color: rgba(0, 0, 0, 0.4);
	}

	.classic-menu .flexnav li:hover a {
		color: #222;
	}

	.light-content .classic-menu .flexnav li:hover a {
		color: #fff;
	}

	.classic-menu.white-header .flexnav li:hover a {
		color: #fff;
	}

	.light-content .classic-menu.white-header .flexnav li:hover a {
		color: #222;
	}

	.classic-menu .flexnav li a span {
		position: relative;
		display: block;
		-webkit-transition: -webkit-transform 0.2s;
		transition: transform 0.2s;
		transform-origin: 100% 0%;
	}

	.classic-menu .flexnav li a span::before {
		position: absolute;
		top: 100%;
		width: 100%;
		left: 0;
		content: attr(data-hover);
	}

	.classic-menu .flexnav li:hover a span {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		transform-origin: 0% 0%;
	}

	.classic-menu .flexnav li a span:nth-child(2),
	.classic-menu .flexnav li a span:nth-child(3) {
		display: none;
	}

	.classic-menu .flexnav li ul li a {
		padding: 0 20px 20px;
		background-color: transparent;
		font-size: 14px;
		font-weight: 400;
		text-transform: none;
		color: #fff !important;
		opacity: 0.6;
		-webkit-transition: all 0.05s ease-in-out;
		-moz-transition: all 0.05s ease-in-out;
		-o-transition: all 0.05s ease-in-out;
		-ms-transition: all 0.05s ease-in-out;
		transition: all 0.05s ease-in-out;
	}

	.classic-menu .flexnav li ul li a.link::before {
		display: none;
	}

	.classic-menu .flexnav li ul li a.active,
	.classic-menu .flexnav li ul li a:hover {
		opacity: 1;
	}

	.classic-menu .flexnav li>ul li {
		margin-left: 0;
		padding: 0;
		opacity: 1 !important;
		transform: none !important;
	}

	.classic-menu .flexnav li ul {
		-webkit-transform: translate3d(0px, 30px, 0px);
		transform: translate3d(0px, 30px, 0px);
		display: block !important;
		opacity: 0 !important;
		height: inherit !important;
		overflow: visible !important;
		visibility: hidden;
		left: 15px;
		top: 60px;
		padding-top: 20px;
		background: #000;
		border-radius: 3px;
		-webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s ease-in-out !important;
		transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s ease-in-out !important;
	}

	.classic-menu .flexnav li:last-child ul {
		left: auto;
		right: -10px;
	}

	.classic-menu .flexnav li ul ul {
		left: 5px !important;

	}

	.classic-menu .flexnav li ul:after {
		display: block;
		content: '';
		position: absolute;
		top: -6px;
		left: 20px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 10px 9px;
		border-color: transparent transparent #000;
	}

	.classic-menu .flexnav li:last-child ul:after {
		left: auto;
		right: 20px;
	}

	.classic-menu .flexnav ul li ul:after {
		display: block;
		content: '';
		position: absolute;
		top: 15px;
		left: -10px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 10px 9px;
		border-color: transparent transparent #000;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}

	.classic-menu .flexnav li ul li>ul,
	.classic-menu .flexnav li ul.open ul.open {
		top: -5px;
		z-index: 10;
	}

	.classic-menu .flexnav li:last-child ul li>ul,
	.classic-menu .flexnav li:last-child ul.open ul.open {
		margin-left: -100%;
		left: -5px !important;
		right: auto;
		top: 0;
	}

	.classic-menu .flexnav li:last-child ul li ul::after {
		right: -10px;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}

	.classic-menu .flexnav ul li ul li a {
		background: #000;
	}

	.classic-menu .flexnav ul li ul li ul li a {
		background: #000;
	}

	.classic-menu .flexnav li ul.flexnav-show {
		-webkit-transform: translate3d(0px, 0px, 0px);
		transform: translate3d(0px, 0px, 0px);
		opacity: 1 !important;
		visibility: visible;
		-webkit-transition: opacity 0.2s ease-in-out 0.1s, visibility 0.2s ease-in-out, transform 0.2s ease-in-out 0.1s;
		transition: opacity 0.2s ease-in-out 0.1s, visibility 0.2s ease-in-out, transform 0.2s ease-in-out 0.1s;
	}

	.classic-menu .flexnav .touch-button {
		display: none;
	}


	/*-- Full Screen Menu --*/

	.fullscreen-menu .nav-height {
		overflow-y: scroll;
		position: relative;
		height: 100%;
		padding: 40px 0;
		padding-right: 30px;
		width: calc(100% + 30px);
		box-sizing: border-box;
	}

	.fullscreen-menu nav {
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		box-sizing: border-box;
		visibility: visible;
		pointer-events: none;
		opacity: 0;
		padding: 20px 0;
	}

	.fullscreen-menu nav.open {
		visibility: visible;
		pointer-events: initial;
	}


	.fullscreen-menu .flexnav {
		max-height: 2000px;
		-webkit-transition: all 0.2s ease-in 0.6s;
		transition: all 0.2s ease-in 0.6s;
		display: table;
		width: auto;
		padding: 0 20px;
		box-sizing: border-box;
		margin: 0 auto;
		float: none;
	}

	.fullscreen-menu .flexnav.flexnav-show {
		-webkit-transition: all .3s ease-out 0.2s;
		transition: all .3s ease-out 0.2s;
	}

	.fullscreen-menu .flexnav li {
		text-align: center;
		padding: 0;
		box-sizing: border-box;
		float: none;
	}

	.fullscreen-menu .menu-timeline {
		opacity: 0;
	}

	.fullscreen-menu .flexnav li ul li .touch-button {
		height: 32px;
	}

	.fullscreen-menu .flexnav:hover li ul li a.active,
	.fullscreen-menu .flexnav:hover li ul li:hover>a {
		opacity: 1;
	}

	.fullscreen-menu .flexnav .touch-button .navicon {
		display: none;
	}

	.fullscreen-menu .flexnav li.link {
		border-bottom: none;
	}

	.fullscreen-menu .flexnav>li>a {
		font-family: var(--Montserrat);
		font-weight: 500;

		padding: 0 50px;
		-webkit-transition: all .1s ease-in-out 0s;
		transition: all .1s ease-in-out 0s;
		/* text-transform:lowercase; */
	}

	.fullscreen-menu .flexnav .touch-button {
		width: 100%;
		display: block;
		height: calc(1rem + 7.5vw);
	}

	/* .fullscreen-menu .flexnav li a {
			color:#222;
		}
		
		.fullscreen-menu.white-header .flexnav li a {
			color: #fff;
		} */

	.fullscreen-menu .flexnav:hover li a,
	.fullscreen-menu .flexnav.hover li a {
		opacity: 0.3;
	}

	.fullscreen-menu .flexnav li:hover a,
	.fullscreen-menu .flexnav li a.active {
		opacity: 1;
	}

	.fullscreen-menu .flexnav:hover li ul li a {
		opacity: 0.3;
	}

	.fullscreen-menu .flexnav:hover li ul li a.active,
	.fullscreen-menu .flexnav:hover li ul li:hover>a {
		opacity: 1;
	}

	.fullscreen-menu .flexnav a.link::before {
		display: none;
	}

	.fullscreen-menu .flexnav li ul {
		margin-top: 10px;
		margin-bottom: 10px;
		position: relative;
		left: 0;
	}

	.fullscreen-menu .flexnav li ul:after {
		display: none;
	}

	.fullscreen-menu .flexnav li ul li a {
		padding: 3px 0;
		font-size: 16px;
		line-height: 26px;
		font-weight: 500;
		border-top: none;
		text-transform: none;
	}

	.uppercase-text .fullscreen-menu .flexnav li ul li a {
		text-transform: uppercase;
		line-height: 20px;
	}

	.fullscreen-menu .flexnav ul li ul li a {
		background: transparent;
	}

	.fullscreen-menu .flexnav li ul li>ul,
	.fullscreen-menu .flexnav li ul.open ul.open {
		margin-left: 0;
		top: 0;
	}

	.fullscreen-menu .menu-timeline {
		opacity: 1;
	}

	.fullscreen-menu .menu-timeline .before-span {
		opacity: 0;
		display: block;
		-webkit-transform: translateY(120px);
		transform: translateY(120px);
	}

	.fullscreen-menu .flexnav li,
	.fullscreen-menu .flexnav li a {
		background-color: transparent;
		border: 0;
	}

	.fullscreen-menu .flexnav li a span {
		position: relative;
		display: block;
		-webkit-transition: -webkit-transform 0.2s;
		transition: transform 0.2s;
		transform-origin: 100% 0%;
		overflow: hidden;
	}

	.fullscreen-menu .open .flexnav li a span {
		overflow: visible;
	}

	.fullscreen-menu .flexnav li a span::before {
		position: absolute;
		top: 100%;
		width: 100%;
		left: 0;
		content: attr(data-hover);
	}

	.fullscreen-menu .flexnav li:hover a span {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		transform-origin: 0% 0%;
	}

	.fullscreen-menu .flexnav li.hover a span {
		-webkit-transform: translateY(-100%) !important;
		transform: translateY(-100%) !important;
		transform-origin: 0% 0%;
	}

}

nav,
nav.open {
	background: transparent;
}

#burger-wrapper {
	width: 40px;
	height: 40px;
	float: right;
	top: 0px;
	right: 0;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	pointer-events: initial;
}

.classic-menu .button-wrap.right.menu {
	display: none;
}

.burger-dots #menu-burger {
	top: 0px;
	width: 25px;
	height: 25px;
	position: relative;
	margin: 0 auto;
	z-index: 2;
	pointer-events: none;
}

.menu-overlay #menu-burger {
	display: block;
}

.burger-dots #menu-burger span {
	display: block;
	position: absolute;
	height: 5px;
	width: 5px;
	border-radius: 5px;
	background-color: #000;
	opacity: 1;
	top: 8px;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: background-color 0.05s ease-in-out, transform 0.2s ease-in-out, height 0.2s ease-in-out, width 0.2s ease-in-out, top 0.2s ease-in-out, left 0.2s ease-in-out;
	transition: background-color 0.05s ease-in-out, transform 0.2s ease-in-out, height 0.2s ease-in-out, width 0.2s ease-in-out, top 0.2s ease-in-out, left 0.2s ease-in-out;
}

#burger-wrapper .touch-button {
	display: none;
}

.burger-dots #menu-burger span:nth-child(1) {
	left: 0px;
}

.burger-dots #menu-burger span:nth-child(2) {
	left: 10px;
}

.burger-dots #menu-burger span:nth-child(3) {
	left: 20px;
}

.button-wrap.right.menu.burger-dots .icon-wrap:hover #menu-burger span:nth-child(1) {
	left: 10px;
}

.button-wrap.right.menu.burger-dots .icon-wrap:hover #menu-burger span:nth-child(3) {
	left: 10px;
}

.button-wrap.right.menu.burger-dots .icon-wrap:hover #menu-burger.open span:nth-child(1) {
	left: 3px;
}

.button-wrap.right.menu.burger-dots .icon-wrap:hover #menu-burger.open span:nth-child(3) {
	left: 3px;
}

.burger-dots #menu-burger.open span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 12px;
	height: 2px;
	width: 20px;
	left: 3px;
}

.burger-dots #menu-burger.open span:nth-child(2) {
	-webkit-transform: scale(0);
	transform: scale(0);
}

.burger-dots #menu-burger.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 12px;
	height: 2px;
	width: 20px;
	left: 3px;
}

.button-wrap.right.burger-lines {
	right: -30px;
}

.burger-lines #menu-burger {
	width: 16px;
	height: 22px;
	position: relative;
	margin: 0 auto;
	z-index: 2;
	pointer-events: none;
}

.burger-lines #menu-burger span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	opacity: 1;
	right: 0;
	background-color: #000;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: background-color 0.05s ease-in-out, transform 0.2s ease-in-out, top 0.2s ease-in-out;
	transition: background-color 0.05s ease-in-out, transform 0.2s ease-in-out, top 0.2s ease-in-out;
}

.burger-lines #menu-burger span:nth-child(1) {
	top: 5px;
}

.burger-lines #menu-burger span:nth-child(2) {
	top: 13px;
}

.burger-lines #menu-burger span:nth-child(3) {
	display: none;
}

.burger-lines #menu-burger.open span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 10px;
}

.burger-lines #menu-burger.open span:nth-child(2) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 10px;
}

.light-content #menu-burger span {
	background-color: #000;
}

.white-header #menu-burger span {
	background-color: #000;
}

.light-content .white-header #menu-burger span {
	/* background-color: var(--accent-color); */
}

.light-content .white-header.over-white-section #menu-burger span,
.show-loader1 .light-content .white-header #menu-burger span {
	background-color: var(--background-color);
}

.dark-content-header #menu-burger span {
	background-color: #000 !important;
}

.light-content-header #menu-burger span {
	background-color: #fff !important;
}

.dark-content-header .button-text {
	color: #000 !important;
}

.light-content-header .button-text {
	color: #fff !important;
}


/*--------------------------------------------------
	05. Main Content
---------------------------------------------------*/

#content-scroll {
	z-index: 1;
	position: relative;
}

.smooth-scroll #content-scroll {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	overflow: hidden;
}

.scroll-content {
	cursor: default !important;
}

.scale-up .scroll-content {
	cursor: grabbing !important;
}

.scrollbar-track {
	background: transparent !important;
}


/*--------------------------------------------------
	06. Footer Elements
---------------------------------------------------*/

footer {
	position: relative;
	width: 100%;
	height: 130px;
	z-index: 900;
	box-sizing: border-box;
	text-align: center;
	bottom: 0;
	left: 0;
	overflow: hidden;
	/* pointer-events:none; */
	background: #A28C65;
}

footer .legal ul,
footer .legal li {
	margin: 0;
	padding: 0;
	list-style: none;

}

footer .legal li a {
	color: var(--background-color);
	font-size: 14px;
}

footer .legal ul {
	display: flex;
	align-items: center;
	justify-content: center;

}

footer.fixed {
	position: fixed;
}

footer.showcase-footer {
	position: fixed;
}

#footer-container {
	padding: 0 80px;
	margin: 20px auto;
	height: 130px;
	opacity: 0;
	position: absolute;
	width: 100%;
	box-sizing: border-box;
	top: 5px;
	left: 0;

}

.footer-middle {
	position: absolute;
	margin: 0 auto;
	width: 100%;
	height: inherit;
	display: table;
	left: 0;
	pointer-events: none;
}

.copyright {
	position: relative;
	top: 25px;
	width: auto;
	height: 30px;
	overflow: hidden;
	font-size: 14px;
	line-height: 30px;
	font-weight: 500;
	color: #000;
	pointer-events: initial;
	display: table;
	width: auto;
	padding: 0px 20px 0px 20px;
	max-width: 820px;
	box-sizing: border-box;
	text-align: center;
	margin: 0 auto;
}

.light-content .copyright {
	color: #fff;
}

.socials-wrap {
	position: relative;
	float: right;
	color: #000;
	width: 240px;
	height: 160px;
	box-sizing: border-box;
	pointer-events: initial;
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.light-content .socials-wrap {
	color: #fff;
}

footer .socials-wrap {
	margin-top: 0px;
}

.socials-wrap:hover {
	transform: translateY(-40px);
	-webkit-transform: translateY(-40px);
}

.socials-text {
	float: right;
	font-size: 14px;
	font-weight: 500;
	line-height: 40px;
	transform: translateY(20px);
}

.socials-wrap:hover .socials-text {
	transform: translateY(15px) translateX(5px);
	-webkit-transform: translateY(15px) translateX(5px);
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.socials-icon {
	float: right;
	width: 30px;
	height: 40px;
	font-size: 14px;
	line-height: 40px;
	text-align: right;
	margin-left: 10px;
	transform: scale(1) translateY(20px);
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.socials-wrap:hover .socials-icon {
	transform: scale(0) translateY(40px);
	width: 0;
	margin: 0;
	overflow: hidden;

}

.socials-icon:after,
.socials-text:after {
	content: "";
	clear: both;
	display: table;
}

.socials {
	height: auto;
	line-height: 30px;
	position: relative;
	width: auto;
	margin: 0 auto;
	margin-top: 10px;
	text-align: center;
	bottom: 0;
	display: table;
	transform: translateX(15px);
	-webkit-transform: translateX(15px);
}

.socials-wrap .socials {
	display: inline-block;
	width: 100%;
	text-align: right;
}

.socials li {
	margin-right: 0px;
	margin-left: 10px;
	list-style: none;
	color: #999;
	font-size: 15px;
	margin-bottom: 0;
	line-height: 40px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	width: 40px;
	float: right;
	z-index: 2;
	-webkit-transition: background 0.4s ease-in-out 0s;
	transition: background 0.4s ease-in-out 0s;
}

.socials-wrap .socials li {
	opacity: 0;
	transform: translateY(20px);
	-webkit-transform: translateY(20px);
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.socials-wrap:hover .socials li:nth-child(5) {
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.05s;
	opacity: 1;
	transform: translateY(10px);
	-webkit-transform: translateY(10px);
}

.socials-wrap:hover .socials li:nth-child(4) {
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
	opacity: 1;
	transform: translateY(10px);
	-webkit-transform: translateY(10px);
}

.socials-wrap:hover .socials li:nth-child(3) {
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
	opacity: 1;
	transform: translateY(10px);
	-webkit-transform: translateY(10px);
}

.socials-wrap:hover .socials li:nth-child(2) {
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
	opacity: 1;
	transform: translateY(10px);
	-webkit-transform: translateY(10px);
}

.socials-wrap:hover .socials li:nth-child(1) {
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
	opacity: 1;
	transform: translateY(10px);
	-webkit-transform: translateY(10px);
}

.socials li:last-child {
	margin-left: 0px;
}

.socials li a {
	color: #000;
	font-size: 14px;
	font-weight: 500;
	display: block;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	-webkit-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.socials:hover li a {
	opacity: 0.3;
}

.socials li a:hover {
	color: #000;
	opacity: 1;
}

.light-content .socials li a {
	color: #fff;
}

.light-content .socials:hover li a {
	opacity: 0.3;
}

.light-content .socials li a:hover {
	color: #fff;
	opacity: 1;
}

.button-wrap {
	position: relative;
	cursor: pointer;
	top: 0px;
	pointer-events: initial;
	width: auto;
	display: table;
}

.button-wrap:after {
	clear: both;
	content: " ";
	display: block;
	height: 0;
	visibility: hidden;
}

.button-wrap.left {
	float: left;
	left: -32px;
}

.button-wrap.right {
	float: right;
	right: -26px;
}

.fixed-footer {
	display: none;
	background: #5f3f4a;
	text-align: center;
	padding: 10px 0;
	width: 100%;
	position: fixed;
	bottom: 0;
	z-index: 99;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	max-width: 480px;
	margin: 0 auto;
}

.footer-half {
	width: 50%;
	padding: 0;
}

.footer-left {
	border-right: 1px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-right {
	display: flex;
	align-items: center;
	justify-content: center;
}

.fix-link {
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}

.f-icon {
	margin-right: 5px;
	height: 14px;
	width: 14px;
	padding-top: 4px;
}

.db-btn-mob {
	background: transparent;
	color: #fff;
	border: none;
	font-size: 14px;
	padding: 0;
}

#main {
	overflow: hidden;
}

#main .button-wrap.left {
	float: none;
	left: -24px;
}

#main .button-wrap.button-link.left {
	float: none;
	left: -20px;
}

#main .button-wrap.right {
	float: none;
	right: auto;
}

#main .button-wrap.button-link.right {
	right: -2px;
}

.icon-wrap {
	width: 80px;
	height: 80px;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	float: left;
}

#main .icon-wrap {
	width: 60px;
	height: 60px;
}

.button-wrap.left .icon-wrap {
	float: left;
}

.button-wrap.right .icon-wrap {
	float: right;
}

#main .text-align-right .button-wrap.right {
	float: right;
}

.button-icon {
	height: 40px;
	width: 40px;
	color: #000;
	text-align: center;
	line-height: 40px;
	font-size: 18px;
}

.button-icon svg {
	height: 18px;
	margin-bottom: -3px;
}

.button-icon i.fa-solid.fa-sort {
	font-size: 14px;
	line-height: 38px;
}

.light-content .button-icon,
.light-content .button-icon svg {
	color: #5F3F4A;
	fill: #5F3F4A;
}

.light-content .has-dark-background .button-icon,
.light-content .has-dark-background .button-icon svg {
	color: var(--background-color);
	fill: var(--background-color);
}

.white-header .button-icon {
	color: #fff;
}

/* .light-content .white-header .button-icon {
		color:#000;		
	} */

.button-icon i {
	height: 40px;
	line-height: 40px;
	width: 40px;
	text-align: center;
}

#main .button-icon i {
	line-height: 40px;
}

#main .button-icon i.fa.fa-arrow-right {
	font-size: 14px;
}

.button-text {
	font-weight: 500;
	font-size: 14px;
	line-height: 30px;
	margin: 25px 0;
	overflow: hidden;
	width: auto;
	padding: 0 10px;
	color: #000;
	-webkit-transition: color 0.05s ease-in-out;
	transition: color 0.05s ease-in-out;
}

#main #hero-footer .button-text span::after {
	content: none;
}

#main .button-text {
	font-size: 18px;
	line-height: 30px;
	font-weight: 500;
	margin: 15px 0;
	/* transition: transform .2s ease-out; */
}

.button-box,
.button-border {
	font-size: 18px;

	font-weight: 500;
}

#main #hero #hero-footer .button-text {
	font-size: 14px;
	line-height: 30px;
}

#main .large-btn .button-text {
	font-size: 20px !important;
	font-weight: 500;
	margin: 15px 0;
	transition: transform .2s ease-out;
}



.light-content .light-section .button-text {
	color: #5F3F4A;
}






.button-wrap.left a {
	text-align: left;
	float: left;
}

.button-wrap.right a {
	text-align: right;
	float: right;
}

.button-wrap.right .button-text {
	padding-left: 0px;
}

.button-text span {
	position: relative;
	display: inline-block;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	width: auto;
	text-align: center;
	transform-origin: 100% 0%;
}

.button-link .button-text,
#main .button-link .button-text {
	overflow: visible;
	transition: padding 0.3s ease-out;
}

.button-link.left .button-text {
	padding-left: 0px;
}

.button-link.left:hover .button-text {
	padding-left: 10px;
}

.button-link .button-text span::before {
	content: '';
	position: absolute;
	bottom: 1px;
	left: 0;
	width: 100%;
	height: 1px;
	background: transparent;
	transform: scaleX(1);
	transform-origin: right;
	transition: transform 0.3s ease-out;

}

.button-link.left .button-text span::before {
	transform-origin: left;
}

.light-content .button-link .button-text span::before,
.dark-section .button-link .button-text span::before {
	background: transparent;
}

.light-content .light-section .button-link .button-text span::before {
	background: transparent;
}

.button-wrap.button-link:hover .button-text span {
	transform: translateY(0);
	-webkit-transform: translateY(0);
}

.button-link:hover .button-text span::before {
	transform: scaleX(0);
	-webkit-transform: scaleX(0);
	transform-origin: left;
}

.button-link.left:hover .button-text span::before {
	transform-origin: right;
}

.button-link .button-icon i {
	background-color: #000;
	border: 1px solid rgba(0, 0, 0, 1);
	color: transparent;
	font-size: 14px;
	border-radius: 100%;
	transform: scale(0.2);
	box-sizing: border-box;
	transition: all .3s ease-out;
	text-indent: -100px;
	overflow: hidden;
	opacity: 1;
}

.button-link:hover .button-icon i {
	background-color: #000;
	color: #fff;
	border: 1px solid rgba(0, 0, 0, 1);
	transform: scale(1.2);
	text-indent: 0px;
	opacity: 1;
}

.light-content .button-link .button-icon i,
.dark-section .button-link .button-icon i {
	background-color: #fff;
	border: 1px solid rgba(255, 255, 255, 1);
}

.light-content .button-link:hover .button-icon i,
.dark-section .button-link:hover .button-icon i {
	background-color: #fff;
	color: #000;
	border: 1px solid rgba(255, 255, 255, 1);
	opacity: 1;
}

.light-content .light-section .button-link .button-icon i {
	border: 1px solid rgba(0, 0, 0, 1);
}

.light-content .light-section .button-link:hover .button-icon i {
	background-color: #000;
	color: #fff;
	border: 1px solid rgba(0, 0, 0, 1);
	opacity: 1;
}


.button-link.right .button-icon i {
	transform: scale(0.2) translateX(-60px);
	-webkit-transform: scale(0.2) translateX(-60px);
}

.button-link.right:hover .button-icon i {
	transform: scale(1.2) translateX(0px);
	-webkit-transform: scale(1.2) translateX(0px);
}

.button-wrap.left .button-text span {
	text-align: left;
}

.button-wrap.right .button-text span {
	text-align: right;
}

.button-text span::before {
	position: absolute;
	width: 100%;
	/* min-width: 100px; */
	top: 100%;
	left: 0;

	content: attr(data-hover);

}

.project-rera.button-text span::before {
	font-family: var(--Montserrat);
}

.header-middle .button-text span::before {
	content: attr(data-on);
}

.button-wrap:hover .button-text span {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	transform-origin: 0% 0%;
}

.link-text {
	font-weight: 500;
	font-size: 14px;
	line-height: 30px;
	margin: 0;
	overflow: hidden;
	display: table;
	width: auto;
	padding: 0;
	color: #000;
	-webkit-transition: color 0.05s ease-in-out;
	transition: color 0.05s ease-in-out;
}

footer .link-text {
	float: left;
	opacity: 0;
	margin-top: 25px;
}

p .link-text {
	display: inline-table;
	font-size: 16px;
}

.light-content .link-text,
.dark-section .link-text {
	color: #fff;
}

.light-content .light-section .link-text {
	color: #000;
}

.link-text span {
	position: relative;
	display: inline-block;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	width: auto;
	text-align: center;
	transform-origin: 100% 0%;
	pointer-events: initial;
	cursor: pointer;
}

.link-text span::before {
	position: absolute;
	width: auto;
	top: 100%;
	left: 0;
	content: attr(data-hover);
}

.link-text:hover span {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	transform-origin: 0% 0%;
}

nav,
nav.open {
	background: transparent;
}



/************************* Club ********************/

.club__sec {
	padding: 50px 0;
}

.club_div h2 {
	font-family: var(--Cormorant-SC);
	font-weight: 500;
	font-size: 10vh;
	color: #5f3f4a;
	text-align: center;
}

.club_img img {
	width: 100%;
}

/*--------------------------------------------------
	07. Responsive
---------------------------------------------------*/


@media only screen and (max-width: 1466px) {

	.row_padding_all {
		padding-left: 60px;
		padding-right: 60px;
	}

	.row_padding_left {
		padding-left: 60px;
	}

	.row_padding_right {
		padding-right: 60px;
	}

	.percentage-wrapper {
		width: 10vw;
	}

	.percentage-intro {
		bottom: 50px;
	}

	/* header {
    	height: 100px;
	} */

	#header-container {
		padding: 10px 60px;
	}

	.flexnav li {
		padding: 20px;
	}



	#footer-container {
		padding: 0 60px;
		margin: 10px auto;
	}

	.socials-wrap:hover .socials-text {
		transform: translateY(20px) translateX(5px);
		-webkit-transform: translateY(20px) translateX(5px);
	}

}

.mobile-guidance {
	display: none;
}

.light-content .mobile-guidance,
.light-content .mobile-guidance svg {
	color: var(--background-color);
	fill: var(--background-color);
}

@media only screen and (max-width: 1024px) {


	footer {
		height: 150px;
	}

	#footer-container {
		height: 150px;
		padding: 5px 30px;
		margin: 0;
	}


	.parallax-wrap {
		transform: none !important;
	}

	.parallax-element {
		transform: none !important;
	}

	.has-parallax figcaption {
		display: none;
	}

	.destroy {
		display: none;
	}

	.row_padding_left {
		padding-left: 0px;
	}

	.row_padding_right {
		padding-right: 0px;
	}

	.full.row_padding_left {
		padding-left: 40px;
	}

	.full.row_padding_right {
		padding-right: 40px;
	}

	.row_padding_all {
		padding-top: 4vw;
		padding-bottom: 4vw;
		padding-left: 0px;
		padding-right: 0px;
	}

	.full.row_padding_all {
		padding-top: 4vw;
		padding-bottom: 4vw;
		padding-left: 40px;
		padding-right: 40px;
	}



	#magic-cursor {
		display: none;
	}

	.percentage-wrapper {
		width: 12vw;
	}

	.percentage-intro {
		bottom: 40px;
	}


	#header-container {
		padding: 10px 40px;
	}

	nav {
		/* height: 100vh; */
		width: 100%;
		position: fixed;
		left: 0;
		top: 0;
		box-sizing: border-box;
		visibility: visible;
		pointer-events: none;
		/* opacity: 0; */
		/* padding: 20px 0;
	}

	nav.open {
		visibility: visible;
		pointer-events: initial;
	}

	.nav-height {
		position: relative;
		height: 100%;
		padding: 40px 0;
		width: 100%;
		box-sizing: border-box;
		overflow-y: auto;
	}

	.flexnav {
		padding: 0 20px;
		max-height: 2000px;
		display: table;
		width: auto;
		margin: 0 auto;
		text-align: center;
		box-sizing: border-box;
		background: transparent;
		-webkit-transition: all 0.2s ease-in 0.6s;
		transition: all 0.2s ease-in 0.6s;
	}

	.flexnav.flexnav-show {
		-webkit-transition: all .3s ease-out 0.2s;
		transition: all .3s ease-out 0.2s;
	}

	.flexnav.opacity {
		opacity: 1;
	}

	.flexnav li {
		padding: 0;
		-webkit-transition: color .15s ease-out 0s;
		transition: color .15s ease-out 0s;
	}

	.flexnav:hover li {
		color: rgba(255, 255, 255, 0.4)
	}

	.flexnav li:hover {
		color: rgba(255, 255, 255, 1)
	}

	.flexnav li a,
	.flexnav li ul li a {
		background: transparent;
	}

	.flexnav li a {
		font-weight: 500;
		/* font-size: 9vw;
		line-height: 10vw; */
		padding: 0;
		border: none;
		-webkit-transition: all .1s ease-in-out 0s;
		transition: all .1s ease-in-out 0s;
	}

	.flexnav>li>a {

		font-family: var(--Montserrat);
		/* text-transform: lowercase;		 */
	}

	.flexnav>li>.touch-button {
		width: 100%;
		height: calc(1rem + 11.5vw);
		display: block;
	}

	.flexnav li a {
		color: #000;
	}

	.invert-header .flexnav li a {
		color: #fff;
	}

	.flexnav:hover li a {
		opacity: 0.3;
	}

	.flexnav li:hover a,
	.flexnav li a.active {
		opacity: 1;
	}

	.flexnav .touch-button {
		width: 100%;
		display: block;
		height: 10vw;
	}

	.flexnav li ul {
		margin-bottom: 15px;
	}

	.flexnav li ul li a {
		padding: 3px 0;
		font-weight: 500;
		text-transform: none;
		font-size: 16px;
		line-height: 26px;
		border-top: none;
		opacity: 0.4;
		-webkit-text-stroke: none;
	}

	.uppercase-text .flexnav li ul li a {
		text-transform: uppercase;
	}

	.flexnav li ul li:hover a,
	.flexnav li ul li a.active {
		opacity: 1;
	}

	.flexnav:hover li ul li a {
		opacity: 0.3;
	}

	.flexnav:hover li ul li a.active,
	.flexnav:hover li ul li:hover>a {
		opacity: 1;
	}

	.flexnav ul li ul li a {
		background: transparent;
	}

	.flexnav li ul li ul li a {
		padding: 10px 40px;
	}

	.flexnav li ul li .touch-button {
		height: 30px;
	}

	.flexnav .touch-button .navicon {
		display: none;
	}

	#menu-burger span.touch-button {
		display: none;
	}

	.classic-menu .button-wrap.right.menu {
		display: block;
	}



	.copyright {
		text-align: center;
	}

	.socials-wrap {
		width: 240px;
		height: 40px;
		float: right;
		margin: 0 auto;
		right: -10px;
		transform: translateX(0px) translateY(20px) !important;
		-webkit-transform: translateX(0px) translateY(20px) !important;
	}

	.socials-wrap:hover {
		transform: translateY(20px);
		-webkit-transform: translateY(20px);
	}

	.socials-icon,
	.socials-text {
		display: none;
	}

	.socials-wrap .socials {
		margin-top: 3px;
		text-align: right;
		transform: translateX(0px);
		-webkit-transform: translateX(0px);
	}

	.socials-wrap .socials li {
		opacity: 1;
		transform: translateY(0px);
		-webkit-transform: translateY(0px);
	}

	.socials-wrap:hover .socials li {
		opacity: 1;
		transform: translateY(0px) !important;
		-webkit-transform: translateY(0px) !important;
	}

	.socials li {
		margin-right: 10px;
		line-height: 30px;
		height: 30px;
		width: 30px;
		margin: 0 5px auto;
		display: inline-block;
		float: none;
	}

	.socials li a {
		height: 30px;
		width: 30px;
		line-height: 30px;
	}

}


@media only screen and (max-width: 767px) {

	figcaption {
		background-color: rgba(0, 0, 0, 0.3);
		bottom: 0px;
		font-size: 10px;
		padding: 5px 10px;
		right: 0px;
		border-radius: 0;
	}

	.text-aligh-right {
		text-align: left;
	}

	.one_half {
		width: 100% !important;
	}

	.one_half {
		padding-right: 0 !important;
	}

	.one_half.last {
		padding-left: 0 !important;
	}

	.one_third {
		width: 100% !important;
	}

	.one_fourth {
		width: 100% !important;
	}

	.one_fifth {
		width: 100% !important;
	}

	.one_sixth {
		width: 100% !important;
	}

	.two_fifth {
		width: 100% !important;
	}

	.two_fourth {
		width: 100% !important;
	}

	.two_third {
		width: 100% !important;
	}

	.three_fifth {
		width: 100% !important;
	}

	.three_fourth {
		width: 100% !important;
	}

	.four_fifth {
		width: 100% !important;
	}

	.five_sixth {
		width: 100% !important;
	}

	.one_half,
	.one_third,
	.two_third,
	.three_fourth,
	.one_fourth,
	.two_fourth,
	.one_fifth,
	.two_fifth,
	.three_fifth,
	.four_fifth,
	.one_sixth,
	.five_sixth {
		margin-bottom: 30px !important;
		margin-right: 0% !important;
	}

	.row_padding_top {
		padding-top: 10vw;
	}

	.row_padding_bottom {
		padding-bottom: 10vw;
	}

	.row_padding_left {
		padding-left: 0px;
	}

	.row_padding_right {
		padding-right: 0px;
	}

	.full.row_padding_left {
		padding-left: 30px;
	}

	.full.row_padding_right {
		padding-right: 30px;
	}

	.row_padding_all {
		padding-top: 4vw;
		padding-bottom: 4vw;
		padding-left: 0px;
		padding-right: 0px;
	}

	.full.row_padding_all {
		padding-top: 4vw;
		padding-bottom: 4vw;
		padding-left: 30px;
		padding-right: 30px;
	}

	.clip-effects {
		overflow: hidden;
		clip-path: inset(2% 5% round 30px);
	}

	hr {
		height: 20px;
	}



	.bigger {
		font-size: 18px;
		line-height: 26px;
	}

	.percentage-wrapper {
		width: 16vw;
	}

	.percentage-intro {
		bottom: 30px;
	}

	/* header {
		height:80px;
	} */

	#header-container {
		padding: 0;
		margin: 0 auto;
	}

	#logo {
		left: 30px;
	}

	.button-wrap.right.menu {
		right: 4px;
	}

	.button-wrap.right.menu.burger-lines {
		right: 0px;
		top: -5px;
	}

	header .button-text {
		display: none;
	}

	.flexnav>li>a {}

	.flexnav>li>.touch-button {
		height: calc(1rem + 12.5vw);
	}



	.footer-button-wrap {
		bottom: 80px;
	}


	#footer-container #backtotop.button-wrap.left {
		float: none;
		top: 20px;
		left: 0;
		right: 0;
		z-index: 2;
		position: absolute;
		display: block;
	}

	#footer-container #backtotop.button-wrap.left .icon-wrap {
		width: 50px;
		height: 50px;
	}

	#backtotop.button-wrap.left .button-text {
		text-align: left;
		float: left;
		display: none;
	}

	#backtotop.button-wrap.left .icon-wrap {
		float: none;
		position: absolute;
		right: auto;
		left: 0;
		margin: auto;
		top: 10px;
		opacity: 0.4;
		-webkit-transition: opacity 0.2s ease-out 0s;
		transition: opacity 0.2s ease-out 0s;
	}

	#backtotop.button-wrap.left:hover .icon-wrap {
		opacity: 1;
	}

	.footer-middle {
		max-width: 1180px;
		height: 20px;
		position: relative;
		margin: 0 auto;
		left: 0;
		width: 100%;
		top: 0px;
		margin-bottom: 15px;
	}

	.copyright {
		margin: 0 auto;
		left: auto;
		right: auto;
		top: 10px;
		height: 20px;
		line-height: 20px;
	}

	footer.showcase-footer .arrows-wrap {
		right: auto;
		left: -30px;
		float: left;
		margin: auto;
	}

	.socials-wrap {
		width: auto;
		float: none;
		display: table;
		left: auto;
		right: auto;
		top: 0;
		margin: 0 auto;
		height: 20px;
		line-height: 20px;
		transform: translateX(0px) translateY(0px) !important;
		-webkit-transform: translateX(0px) translateY(0px) !important;
	}

	.socials-wrap .socials {
		text-align: center;
		margin: 0 auto;
		height: 20px;
		line-height: 20px;
		display: table;
		width: auto;
	}

	.socials li,
	.socials li a {
		height: 20px;
		line-height: 20px;
		margin: 0 auto;
	}

	.club_div h2 {
		font-size: 5vh;
	}

	.club_div p {
		font-size: 13px;
	}
}


@media only screen and (max-width: 479px) {

	.one_half,
	.one_third,
	.two_third,
	.three_fourth,
	.one_fourth,
	.two_fourth,
	.one_fifth,
	.two_fifth,
	.three_fifth,
	.four_fifth,
	.one_sixth,
	.five_sixth {
		margin-bottom: 20px !important;
		margin-right: 0% !important;
	}

	.row_padding_top {
		padding-top: 12vw;
	}

	.row_padding_bottom {
		padding-bottom: 12vw;
	}

	.row_padding_left {
		padding-left: 0px;
	}

	.row_padding_right {
		padding-right: 0px;
	}

	.full.row_padding_left {
		padding-left: 20px;
	}

	.full.row_padding_right {
		padding-right: 20px;
	}

	.row_padding_all {
		padding-top: 4vw;
		padding-bottom: 4vw;
		padding-left: 0px;
		padding-right: 0px;
	}

	.full.row_padding_all {
		padding-top: 4vw;
		padding-bottom: 4vw;
		padding-left: 20px;
		padding-right: 20px;
	}

	hr {
		height: 10px;
	}



	.percentage-wrapper {
		width: 20vw;
	}

	#logo {
		left: 20px;
	}

	.button-wrap.right.menu {
		right: -6px;
	}

	.button-wrap.right.menu.burger-lines {
		right: -10px;
	}

	.flexnav>li>a {}

	.flexnav>li>.touch-button {
		height: calc(1rem + 13.5vw);
	}

	#footer-container {
		padding: 0px;
		margin: 0;
	}

	footer.showcase-footer #footer-container {
		padding: 0px 20px;
	}

	.arrows-wrap {
		left: -10px;
		width: 80px;
	}

	.prev-wrap,
	.next-wrap {
		width: 40px;
	}

	footer.showcase-footer .arrows-wrap {
		right: 0;
		left: 0;
		float: none;
		margin: auto;
	}

	footer.showcase-footer .arrows-wrap {
		width: 100%;
	}

	footer.showcase-footer .prev-wrap,
	footer.showcase-footer .next-wrap {
		width: 60px;
	}

	footer.showcase-footer .footer-middle {
		top: 0px;
	}

	footer.showcase-footer .showcase-subtitles-wrap {
		left: 0;
	}

	footer.showcase-footer .socials-wrap {
		display: none;
	}

	.button-text {
		display: none;
	}

	#main-page-content .button-text,
	#hero .button-text {
		display: block;
	}
}

@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : landscape) {

	#rotate-device {
		display: block;
	}
}

.buy-template {
	font-family: inherit !important;
	font-size: 16px !important;
	line-height: 30px !important;
	text-transform: none !important;
	margin-top: 30px !important;
}

.fixed-whatsapp {
	position: fixed;
	z-index: 999;
	bottom: 13%;
	right: 20px;
	display: none;

}

.fixed-whatsapp a {
	width: auto;

	display: flex;

	flex-direction: row;
	align-items: center;
	justify-content: center;
	background: #4dc247;
	padding: 10px 15px;
	border-radius: 24px;
}

.fixed-whatsapp a svg {
	fill: var(--background-color);
}

.fixed-whatsapp span {


	/* transform: rotateY(-180deg); */
	text-orientation: sideways;
	letter-spacing: 0.1em;

	font-size: 14px;
	color: var(--background-color);
}

#enquireModal2 {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60dvw;
	height: 60dvh;
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	display: none;
	/* Hidden by default */
}


.close-btn {
	position: absolute;
	top: 5%;
	cursor: pointer;
	right: 3%;
	z-index: 10;
	color: #fff;
	font-size: 1.25rem;
}

.modal-forms2 {
	display: none;
	/* Hidden by default */
	text-align: center;
	padding: 70px 60px 60px 60px;
}


.modal-forms2 {
	width: 100%;
	height: 100%;
	background: #5f3f4a !important;
}

.modal * {
	box-sizing: border-box;
}

.modal {

	height: 100vh;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	box-sizing: border-box;


	opacity: 0;
	/* padding-top: 135px; */
	z-index: 9999;
	pointer-events: none;


}

.modal .modal-body {
	height: 100%;
	background: #5F3F4A !important;
	display: flex;
	align-items: center;
	overflow: hidden;
}


.modal.open {
	pointer-events: all;

}

.button-box.modal-close-button {

	display: block;
	width: fit-content;
	margin-left: auto;
	position: absolute;
	top: 5px;
	right: 5px;
	padding: 0;
	margin: 0;
}

.button-box.modal-close-button .clapat-button-wrap {
	min-width: auto;
	width: 60px;
	height: 60px;
}

.modal-close {
	display: block;

	fill: #ffff;
	transform: rotate(45deg);
}

.button-box.disclaimer-consent .modal-close {
	transform: none;
}

.modal .modal-body .modal-content-wrapper {

	margin: 60px auto;


	position: relative;


}


.country-box {
	display: flex;
	gap: 10px;

}

.country-box .col-50 {
	width: 50%;
	position: relative;
}

.input-box {
	width: 100%;
	position: relative;

}

.input-box select {
	width: 100%;
	background: none;
	font-size: 16px;
	font-weight: 500;
	height: 50px;
	padding: 12px 20px 12px 20px;
	padding-left: 0;

	border-radius: 0px;
	margin-bottom: 0px;
	border: none;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
	box-sizing: border-box;
	background-color: #5F3F4A;
	outline: none;
	color: var(--background-color);
	border-bottom: 1px solid var(--background-color);
	cursor: pointer;

}

/* .input-box input[name="phone"]{
	width: 50%;
} */
.input-box:not(:last-child) {
	margin-bottom: 20px;
}

@media screen and (min-width:768px) {
	.box-width {
		max-width: 75% !important;
		margin: 0 auto;
	}

	.input-box {
		max-width: 65%;
		margin: 0 auto;
	}


}

@media screen and (max-width:768px) {
	/* .fixed-whatsapp{
		bottom: 0%;
		top: auto;
	} */

}

.light-content #ball,
#ball.over-movie,
.light-content #ball.with-icon {
	border-color: #d6b469;
}


#smoke-effect {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0.05;
	pointer-events: none;
}





.mt-50 {
	margin-top: 50px !important;
}

.my-50 {
	margin-top: 50px !important;
	margin-bottom: 50px !important;
}

/* .overlapping-image:not(:last-child){
	padding-bottom: 50vh;
	
} */
.overlapping-image .slide-caption {
	/* flex-wrap: wrap; */
	/* background: #515D97; */
	/* background: #2F337B; */
	/* border-radius: 8px; */
	/* background: #004651ab; */
	/* background-color: #2f337b;
background-image: linear-gradient(43deg, #2f337b86 0%, #1faae1 3%, #007b8e79 96%, #515d9777 100%); */
	background-position: bottom;

}

.overlapping-image .slide-caption .custom-header {

	line-height: calc(1rem + 2.5vw);

}

#yt-player {
	pointer-events: none;
	width: 110%;
	height: 110%;

	object-fit: cover;
	object-position: center;
	z-index: 1;
	position: absolute;
	left: 0;
	top: 0;
}

.custom-video-container {
	width: 100%;
	height: 100vh;
	position: relative;
	/* background-color: #007B8E; */
	clip-path: circle(20% at center);
	scale: 0.5s;
	display: flex;
	align-items: end;
	text-align: center;
	justify-content: center;
	overflow: hidden;
}

.video-content {

	transform: translateY(120%);
	padding-bottom: 40px;
	position: relative;
	z-index: 11;
}

.custom-video-container .video-iframe {
	position: absolute;
	/* left: 50%;
	transform: translateX(-50%); */

	object-fit: cover;
	object-position: center;
	pointer-events: none;
	width: 100%;
	height: 100%;



}

.custom-mask-fill {
	-webkit-background-clip: text;
	background-repeat: no-repeat;
	background-size: 0% 100%;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.1);
	background-image: linear-gradient(#fff, #fff);
}

.overlapping-image .slide-mask {

	background-image: url(images/fog.html);
	background-size: 100%;
	background-position: bottom;
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0.75;

}

.flex-box-2 {
	display: flex;
	gap: 60px;
	width: auto;
	justify-content: center;
}

.list-type-2 {
	text-align: left;

}

.overlapping-image .slide-caption img {
	height: 50px;
	margin-bottom: 20px;

}


/* .overlapping-image .primary-font-title{
	color: #2F337B;
} */
.list-images {
	opacity: 0;
}

.list-images,
.list-image-item {
	position: absolute;
	width: 40%;
	height: 40%;
	top: 30%;
	left: 5%;
	z-index: 4;
	pointer-events: none;
	/* transform-origin: top; */



}

.list-rotator li {
	cursor: pointer;
}

/* .list-images-overlay{
		position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
z-index: -1;
background: #2f337bcb;
 } */

/* .team-members-list .primary-font-title{

	font-size: calc(1rem + 4vw);
    line-height: calc(1rem + 3.5vw);
			
		} */
#towers {
	margin-top: -1px;
}

#master-plan-row {
	margin-top: calc(-0.5* 100vh);
}

#towers .team-member {
	font-size: initial;
	line-height: normal;
}

#towers .team-member>div {
	padding: 10px 0;
}

#towers .next-hero-subtitle {
	max-width: 877px;
}

.video-section {
	/* perspective: 500px;
  perspective-origin: center; 
  transform-style: preserve-3d; */

}

/* #main-page-content{
	 background-image: url(images/haze-invert.webp);
 } */
/* #hero{
	margin-top: 100px;
} */
#hero-caption {
	perspective: 1000px;
	perspective-origin: center;

}

.abs-parallax {

	position: absolute;
	z-index: 2;







}

.parallax {
	/* box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px; */


}

/* .video-parallax{
transform: translateY( 100%);
} */



.para-1 {
	width: 15%;
	left: 20%;
	top: calc(80px + 5%);
	transform: translateZ(40);

}

.para-2 {
	width: 15%;
	left: 10%;
	bottom: 50%;
	transform: translateZ(22);

}

.para-3 {
	width: 15%;
	right: 10%;
	top: 15%;
	transform: translateZ(-21);

}

.para-4 {
	width: 15%;
	right: 12%;
	bottom: 40%;
	transform: translateZ(-32);

}

.moon {
	width: 7%;
	right: 12%;
	top: 10%;
	transform: translateZ(-32);

}

.para-5 {
	width: 20%;
	top: 120px;
	left: 46%;
	transform: translateZ(30);


}

.para-5 video {
	width: 100%;
}

@media screen and (max-width:1080px) {

	.para-1 {
		width: 20%;
		left: 15%;
		top: calc(80px + 5%);
		transform: translateZ(40);

	}

	.para-2 {
		width: 20%;
		left: 5%;
		bottom: 45%;
		transform: translateZ(22);

	}

	.para-3 {
		width: 20%;
		right: 5%;
		top: 15%;
		transform: translateZ(-21);

	}

	.para-4 {
		width: 20%;
		right: 7%;
		bottom: 35%;
		transform: translateZ(-32);

	}

	.moon {
		width: 15%;

	}

	.para-5 {
		width: 25%;
		top: calc(80px + 10%);
		left: 40%;
		transform: translateZ(30);


	}

	.hero-subtitle {
		margin-bottom: 15px;
	}




	/* .overlapping-image .slide-caption {

	width: 100%;
	height: 50%;
	border-top-right-radius: 0;
	border-bottom-left-radius: 8px;
} */

}

.overlapping-image .slide-caption.floor-plan-caption {
	pointer-events: all;
}

@media screen and (max-width:768px) {

	.para-1 {
		width: 25%;
		left: 15%;
		top: calc(80px);
		transform: translateZ(40);

	}

	.para-2 {
		width: 25%;
		left: 5%;
		bottom: 35%;
		transform: translateZ(22);

	}

	.para-3 {
		width: 25%;
		right: 5%;
		top: 10%;
		transform: translateZ(-21);

	}

	.para-4 {
		width: 25%;
		right: 7%;
		bottom: 40%;
		transform: translateZ(-32);

	}

	.para-5 {
		width: 45%;
		top: calc(80px + 15%);
		left: auto;
		right: auto;
		margin: 0 auto;
		transform: translateZ(30);


	}



	/* .overlapping-image .slide-caption {

	width: 100%;
	height: 70%;
	 
} */
	.list-type-1 li {
		margin-bottom: 10px;
	}

	.list-type-1 {
		margin-bottom: 0;
		margin-top: 0;
	}



}



@media screen and (max-width:480px) {

	.para-1 {
		width: 30%;
		left: 15%;
		top: calc(80px);
		transform: translateZ(40);

	}

	.para-2 {
		width: 30%;
		left: 5%;
		bottom: 44%;
		transform: translateZ(22);

	}

	.para-3 {
		width: 30%;
		right: 5%;
		top: 10%;
		transform: translateZ(-21);

	}

	.para-4 {
		width: 30%;
		right: 7%;
		bottom: 45%;
		transform: translateZ(-32);

	}

	.para-5 {
		width: 60%;
		top: calc(80px + 12%);
		left: auto;
		right: auto;
		margin: 0 auto;
		transform: translateZ(30);


	}

	#logo img {
		height: 40px;
	}
}

@media screen and (max-width:1080px) and (min-height:1000px) {

	.para-1 {
		width: 30%;
		left: 15%;
		top: calc(80px + 5%);
		transform: translateZ(40);

	}

	.para-2 {
		width: 30%;
		left: 5%;
		bottom: 32%;
		transform: translateZ(22);

	}

	.para-3 {
		width: 30%;
		right: 5%;
		top: 15%;
		transform: translateZ(-21);

	}

	.para-4 {
		width: 30%;
		right: 7%;
		bottom: 28%;
		transform: translateZ(-32);

	}

	.para-5 {
		width: 60%;
		top: calc(80px + 25%);
		left: auto;
		right: auto;
		margin: 0 auto;
		transform: translateZ(30);


	}





}



p.desc {
	margin-bottom: 50px;



}

#clubhouse .page-nav-caption {


	display: flex;
	flex-direction: column;
	justify-content: end;
}

#clubhouse .inner {
	width: 100%;
}

#clubhouse .page-nav-caption {
	padding: 0;
}

.flex-rows {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

#clubhouse .flex-rows .col-l {
	width: 40%;

}

#clubhouse .flex-rows .col-r {
	width: 60%;

}

#clubhouse .flex-rows .col-r {
	mask-image: url('images/m.webp');
	mask-size: contain;
	mask-position: center;
	mask-repeat: no-repeat;
}

.section-image {
	/* background: #fff; */


	/* border-bottom: 1px solid white; */
	border-radius: 12px;




}

.between {
	justify-content: space-between;
}

.floor {

	position: absolute;
	left: 10%;
	color: white;

}

.floor-number {
	font-weight: bold;
	font-size: 40px;
}

.section-image .floor-list {

	width: 100%;

	margin: 0;
}

.move-thumb-inner .flex-list {
	align-items: center;
	border-bottom: none;
}

.move-thumb-inner.in-progress .floor-list span:not(:first-child) {
	opacity: 0;
}

.move-thumb-inner.in-progress.moved .floor-list span:not(:first-child) {
	opacity: 1;
}

ul.list-type-1 {
	/* padding: 0;
	margin: 0; */
	text-align: left;
}

.list-type-1 .flex-rows {
	justify-content: left;
}

ul.list-type-1 li.flex-rows {
	border-top: 1px solid #5F3F4A;
	padding-top: 10px;
	flex-wrap: nowrap;
	color: #5F3F4A;
	margin-bottom: 10px;

}

.floor-box {
	/* display: flex;
	flex-direction: column; */
	/* align-items: center; */
	margin: 15px 0 0;
	/* width: 70px; */
}

.floor-box.ios-device {
	margin: 15px 0;
}

.floor-box .floor-brochure {

	display: flex;
	align-items: end;
	gap: 10px;


}

.floor-box .floor-brochure .number {
	position: relative;
	display: inline-block;
	color: #5F3F4A;
	line-height: calc(1rem + 1.5vw);
}

.floor-box .floor-brochure .number .digit {


	font-size: calc(1rem + 1vw);

	font-weight: 500;
}

.special-chars,
.floor-box .floor-brochure .number .digit {
	font-family: var(--Montserrat);
}

.special-chars,
.next-hero-subtitle span.special-chars {
	display: inline;
}

.floor-box .floor-brochure sup {
	position: absolute;
	top: 5px;
	right: -15px;
}


main {
	background-position: bottom;
	background-size: cover;
	background-attachment: fixed;
}

/* 
option-1
:root {
--background-color: #EBF7FC;
--primary-color: #007B8E;
--secondary-color: #1FA9E1;
--text-color: #515D97;
--accent-color: #2F337B;
--dark-accent-color: #92D0DC (used as a darker accent or hover effect)
} */
/* 
option-2
:root {
--background-color: #EBF7FC;
--primary-color: #1FA9E1;
--secondary-color: #007B8E;
--text-color: #515D97;
--accent-color: #92D0DC;
--dark-accent-color: #2F337B;
} */



/* .showcase-portfolio .clapat-item.filtered{
	margin:30px;
} */
.light-content .showcase-portfolio .slide-caption .slide-cat {
	color: var(--accent-color);
}

.dark-content .hero-title {
	color: var(--dark-accent-color);
}

.light-content .light-text .hero-title {
	color: var(--background-color);
}

#hero #hero-caption.light-text .inner {
	background: none;
}

#starlight {
	color: var(--dark-accent-color);
}

#starlight .next-hero-subtitle {
	margin: 20px 0;
	color: #5F3F4A;
	opacity: 1;

}

.next-hero-subtitle {
	opacity: 1;
}

.dark-section .next-hero-subtitle {
	color: var(--background-color);

}

.light-section .next-hero-subtitle {
	color: var(--accent-color);

}

#hero #hero-caption.height-title {
	padding: 0;
}

#hero #hero-caption .inner {
	width: 100%;
	/* background-image: url(./images/rendered-unsized/iconic-background-dusk.webp); */
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: end;
	position: relative;
}

#hero.recoil-hero #hero-caption .inner {
	justify-content: center;
}

.landscapes-page #hero-bg-image {
	background-image: url(images/slides/waterscapes.webp);
}

.clubhouse-page #hero-bg-image {
	background-image: url(images/banners/desktop/clubhouse.webp);
}

.plans-page #hero-bg-image {
	background-image: url(images/slides/floor-plans.webp);
}

.amenities-page #hero-bg-image {
	background-image: url(images/slides/riverside-amenities.webp);
}

.iconic-background {
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 90%;
	display: block;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-image: url(images/iconic-background-road.webp);
	background-position: center bottom;
	background-size: cover;
	background-repeat: no-repeat;
	/* left: 50%;
 transform: translateX(-50%); */
	z-index: 0;

}

.birds {
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 50%;
	left: 0;
	top: 0;
}

.iconic-background-m {
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 90%;
	display: block;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-image: url(images/iconic-background-road-m.webp);
	background-position: calc(50% + 75px) bottom;
	background-size: cover;
	background-repeat: no-repeat;
	/* left: 50%;
 transform: translateX(-50%); */
	z-index: -1;
	/* clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); */
	/* transition: all 1.4s cubic-bezier(0.55, 0.085, 0.68, 0.53); */
}

.light-content p {
	color: var(--accent-color);
}

.dark-section p {
	color: var(--background-color);
}

.light-content .plans-isotope .showcase-portfolio .slide-caption .slide-title {
	color: #5F3F4A;
}

.light-content .button-border.outline {
	border: solid 2px var(--background-color);
	color: var(--accent-color);
	background-color: transparent;
}

.dark-section .button-border.outline {
	border: solid 2px var(--background-color);
	color: var(--background-color);
	background-color: transparent;
}

.dark-section .contact-details-container .button-border.outline {
	border: 2px solid #5F3F4A;
	;
	color: #5F3F4A;
}

.light-content #hero-footer {
	color: var(--accent-color);
}

.light-content .recoil-hero #hero-footer {
	color: var(--background-color);
}

.light-content .team-member>div,
.dark-section .team-member>div {
	-webkit-text-fill-color: rgba(255, 255, 255, 0.1);
	background-image: linear-gradient(var(--background-color), var(--background-color));
}

.light-content .light-section .team-member>div {
	-webkit-text-fill-color: rgba(47, 51, 123, 0.2);
	background-image: linear-gradient(100deg, #5F3F4A 18.75%, #976E7C 67.51%, #7B6A70 122.24%);
	background-clip: text;
	/* background-image: url(assets/images/haze-bottom.webp); */
}

.light-content .light-section .button-border.outline {
	border: 2px solid #5F3F4A;
	color: #5F3F4A;
}

.overlapping-gallery ul.list-type-1 {
	list-style-image: url(assets/images/m-list.webp);

}

ul.list-type-1-colored {
	list-style-image: url(assets/images/m-list-coloured.webp);
}

ul.list-type-1-colored li {
	cursor: pointer;
}

.team-member:hover span:last-child {
	scale: 1;
}

.team-member span {


	height: calc(0.6rem + 8.4vw);
}

/* .team-member span img{
	width: 65%;
	height: 100%;
	object-fit: contain;
	object-position: center;
		display: block;
 } */
.light-content .button-text,
.light-content .button-icon {
	color: var(--accent-color);
}

.light-content header .button-text,
.light-content header .button-icon {
	color: #000;
}

.light-content .white-header .button-text,
.light-content .white-header .button-icon {
	/* color: var(--accent-color); */
}

.light-content .has-dark-background .button-text {
	color: var(--background-color);
}

.light-content .dark-text .next-hero-title,
.light-content .dark-text .next-hero-subtitle,
.light-content .dark-text a.link,
.dark-section .dark-text h6,
.dark-text b {
	color: #7B7B7B;
}

.light-content .dark-text a.link::before,
.dark-section .dark-text a.link::before {
	background-color: var(--accent-color);
}

.dark-text .button-border.outline {
	border: solid 2px var(--accent-color);
	color: var(--accent-color);
	background-color: transparent;
}

.custom-header {
	font-size: calc(0.5rem + 3.15vw);
	line-height: calc(1rem + 3vw);

}


.sub-header {
	font-size: calc(1rem + 2.15vw);
	line-height: 1;

}

/* .grid__item-img--large{
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
} */

.clapat-slider-wrapper.content-slider {
	overflow: visible;
}

.clapat-slider-wrapper.content-slider .clapat-pagination {
	bottom: -60px;
}




.light-content #hero .hero-subtitle span,
.light-content #hero .button-text,
.light-content #hero .button-icon,
.light-content #hero .hero-title,
.light-content #hero .button-icon,
.light-content #hero .button-icon svg {
	color: var(--background-color);
	fill: var(--background-color);
}

@keyframes move-background {
	from {
		-webkit-transform: translate3d(0px, 0px, 0px);
	}

	to {
		-webkit-transform: translate3d(1000px, 0px, 0px);
	}
}

@-webkit-keyframes move-background {
	from {
		-webkit-transform: translate3d(0px, 0px, 0px);
	}

	to {
		-webkit-transform: translate3d(1000px, 0px, 0px);
	}
}

@-moz-keyframes move-background {
	from {
		-webkit-transform: translate3d(0px, 0px, 0px);
	}

	to {
		-webkit-transform: translate3d(1000px, 0px, 0px);
	}
}

@-webkit-keyframes move-background {
	from {
		-webkit-transform: translate3d(0px, 0px, 0px);
	}

	to {
		-webkit-transform: translate3d(1000px, 0px, 0px);
	}
}

.walkthrough-stars {
	margin-top: -1px;

}

.stars {
	background: black url(images/stars-background.html) repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	z-index: -2;

}

.twinkling {
	width: 10000px;
	height: 100%;
	background: transparent url("images/twinkling.html") repeat;
	background-size: 1000px 1000px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	-moz-animation: move-background 70s linear infinite;
	-ms-animation: move-background 70s linear infinite;
	-o-animation: move-background 70s linear infinite;
	-webkit-animation: move-background 70s linear infinite;
	animation: move-background 70s linear infinite;
}

.clouds {
	width: 10000px;
	height: 100%;
	background: transparent url("images/clouds_repeat.html") repeat;
	background-size: calc(1000px + 50vh) 150vh;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 0;
	-moz-animation: move-background 150s linear infinite;
	-ms-animation: move-background 150s linear infinite;
	-o-animation: move-background 150s linear infinite;
	-webkit-animation: move-background 150s linear infinite;
	animation: move-background 150s linear infinite;
}

.slow-list {
	list-style-type: none;
}

.light-section .slow-list li {
	color: var(--accent-color);
}

.light-content .light-section .flex-list {
	background-color: var(--background-color);
}

.light-content .dark-text li {

	color: #5F3F4A;
}

.light-content .box-icon {
	color: var(--background-color);
}


.light-content .dark-text .box-icon {
	color: #A28C65;
}



.light-content .light-section .flex-list::after {
	background-color: var(--accent-color);
}

.light-content .light-section .flex-list>span {
	color: var(--accent-color);
}

.light-content .light-section .flex-list:hover>span {
	color: var(--background-color);
}


.full-screen-background {
	width: 100%;
	height: 100%;
	background-image: url(assets/images/overview/overview2.png);
	background-size: cover;
	background-position: center;
	position: absolute;
	left: 0;
	top: 0;
}

.custom-parallax .parallax-image-content .starlight {

	width: 25%;
	margin: 10px;

}

/* .full-screen-background .starlight img{
	 

	} */
.hero-footer-center {
	float: inline-start;
	margin: 0 auto;
}

.hero-footer-left .button-wrap {
	display: inline-flex;
}

#hero {
	/* background-image: url(images/); */
}


/* #contact-section{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;

} */

/* #contact-section .page-nav-caption.height-title{
height: auto !important;
} */

#contact-section .page-nav-caption.height-title {
	height: auto !important;
}

.contact-details-container {

	position: relative;
}

.brochure-form-container {

	/* background: var(--accent-color); */
	width: 100%;
	margin-bottom: -1px;
}

.brochure-form-container .button-box {
	/* margin-top: 50px; */
}

.brochure-form-container form {
	/* display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px; */
}

.light-content .brochure-form-container .input_label {
	background: #5F3F4A;

}

.custom-contact-row {
	margin-top: -1px;
}

.brochure-form-container input,
.brochure-form-container input:focus,
.brochure-form-container textarea,
.brochure-form-container .input-box select {
	color: #5F3F4A !important;
	border-bottom: 1px solid #fff !important;
}



.broch-element .brochure-form-container input,
.brochure-form-container input:focus,
.brochure-form-container textarea,
.brochure-form-container .input-box select {
	color: #fff !important;
	border-bottom: 1px solid #ffffff !important;
}

.brochure-form-container .input-box select {
	background-color: #fff;
}

.get_form input,
.get_form input:focus,
.get_form textarea,
.get_form .input-box select {
	color: #5F3F4A !important;
	border-bottom: 1px solid #5F3F4A !important;
}

/* .brochure-form-container .input-box select option:hover{
	background-color: var(--accent-color);
	background: var(--accent-color);
	background-image: linear-gradient(to right , var(--accent-color), var(--accent-color));
} */
.light-content .brochure-form-container .outline input[type="submit"] {
	color: #5F3F4A;
	border-bottom: none;
}

.dark-text p,
.brochure-form-container input::placeholder {
	color: #7B7B7B;
}

#main .cp-button-prev .icon-wrap,
#main .cp-button-next .icon-wrap {


	width: 36px;
	height: 36px;
}


#main .cp-button-prev .button-text,
#main .cp-button-next .button-text {
	line-height: 44px;
	margin: 0;
}

.light-content .amenities-slider .slide-caption .slide-title,
.amenities-slider a {
	color: var(--accent-color);
}

#walkthrough .clipped-image img {
	height: auto !important;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	position: absolute;
	margin: auto;
}

.amenities-slider a {
	font-size: 14px;
}

.amenities-slider .gallery-thumbs-wrapper a {
	font-size: 10px;
	display: none;
}

#leaflet {
	width: 100%;
	height: 500px;

}

.light-content .progress-info>.progress-info-fill-2 {
	-webkit-text-fill-color: #2f337b55;
	background-image: linear-gradient(var(--accent-color), var(--accent-color));
}

#hero-description {



	font-family: var(--Montserrat);
	padding-bottom: 130px;

}

.light-content #hero:not(.home-hero):not(.recoil-hero) #hero-description p,
.light-content #hero:not(.home-hero):not(.recoil-hero) #hero-footer .button-text {
	color: var(--accent-color);
}

/* #hero-description .inner {
 padding-right: 0;
 
 
} */

#main-page-content.inner-page {
	background: var(--background-color);
}

.custom-slide-container {
	position: relative;


}

.custom-caption {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	padding-top: 10px;

}

.carousel-container {
	margin-bottom: 70px;
}

.custom-carousel .clapat-slider {
	overflow: visible;

}

.hero-slider {
	width: 100%;
	height: 100%;
}

.hero-slider .clapat-slider-wrapper {
	width: 100%;
	height: 100%;
}

.hero-slider .clapat-slider-wrapper .clapat-slider {
	width: 100%;
	height: 100%;
}

.hero-slider .clapat-slider-wrapper .clapat-slider * {
	width: 100%;
	height: 100%;
}

.hero-slider .content-slider.looped-carousel .clapat-slider-viewport {

	max-width: initial;
}


.hero-slider .content-slider.looped-carousel .clapat-slide {
	padding: 0;
}

.custom-carousel .clapat-slide {
	overflow: visible;
}

.custom-carousel .clapat-controls {
	padding-top: 30px;
}

.custom-carousel .clapat-pagination-bullet .solid-fill {
	fill: #A28C65 !important;

}

.custom-carousel .clapat-pagination-bullet .path {

	stroke: #A28C65 !important;
}

.popup-message,
.brochure-message {
	text-align: center;
	position: absolute;
	width: 100%;
	height: fit-content;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;

}

.popup-message {
	color: #5F3F4A;

}

.brochure-message {
	color: #5F3F4A;

}


.broch-element {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	border-radius: 10px;
	padding: 20px;
	background: #573b4a;
}

.light-content .dark-text .has-mask-fill>span,
.dark-section .dark-text .has-mask-fill>span {
	-webkit-text-fill-color: #1518511a;

	background-repeat: no-repeat;
	background-image: linear-gradient(#5F3F4A, #5F3F4A);
}

.unmute-video {
	position: absolute;
	top: 20%;
	right: 5%;
	z-index: 20;
	color: var(--background-color);
	transform: translateX(100%);
}


/* header #logo.colored-background {
	 
	opacity: 1;

}
header #logo .colored-background{
 
	opacity: 1;

} */


.team-member span:last-child img {

	margin-left: auto;
}

.unmute-video .button-border {
	line-height: normal;
}

.unmute-video div {
	height: auto;
	width: auto;
}

.unmute-video .volume-icon {
	/* width: 47px; */
	min-width: 22px;

}

#hero.recoil-hero p {
	color: var(--background-color);
}

#hero.recoil-hero .hero-subtitle {
	margin: 40px 0;
}

.brochure-case,
.plans-case {
	display: none;
}

#hero.recoil-hero .brochure-case,
.plans-case {
	margin-bottom: 50px;
}

.mail-page-transfer {
	display: none;
}

.light-content #hero.recoil-hero .button-border.outline {
	color: var(--background-color);
}

.username-frontend {
	font-family: var(--Montserrat);
}

.next-hero-title {
	margin-bottom: 40px;
}

.light-content .light-section .accordion dt span {
	color: #5F3F4A;
}

.light-content .light-section dt:hover .acc-button-icon,
.light-content .light-section .accordion dt.accordion-active .acc-button-icon {
	background-color: #5F3F4A;
}

#hero.home-hero {
	/* background:  url(images/banners/desktop-legacy/home-filler.jpg); */
	padding: 0;
}





#hero.home-hero #hero-caption {

	/* background-image: url(images/banners/desktop/home.webp); */

}

/* .slide-1 {

	background-image: url(assets/images/banner/web1.jpg);
} */

#hero.clubhouse-page #hero-caption,
.slide-2 {
	background-image: url(assets/images/banner/w1.jpg);
}

#hero.amenities-page #hero-caption,
.slide-3 {
	background-image: url(assets/images/banner/web2.jpg);
}

/*#hero.lanscapes-page #hero-caption, .slide-4 {
	background-image: url(assets/images/banner/web1.jpg);
}

#hero.plans-page #hero-caption, .slide-5 {
	background-image: url(assets/images/banner/web1.jpg);
} */




#hero #hero-caption,
#hero-bg-image,
.custom-slide-container {

	background-position: center;
	background-size: cover;

	background-repeat: no-repeat;

	height: 46.95vw;

}


.walkthrough-button-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	position: fixed;
	left: 1%;
	bottom: 2%;
	width: 95%;
	z-index: 999;
}

/* Header */

header {
	background-color: #573b4a;
	height: auto;
	padding: 0.5rem 3rem;
}

/*   Start navigation bar   */

nav {
	/* height: auto; */
	/* background-color: #222; */
	/* border-bottom: 1px solid #555; */
}

.logo {
	padding: 10px 10px 10px 10px;
	width: auto;
	float: left;
}

.logo img {
	height: 55px;
}

.list-item {
	float: right;
	margin-right: 25px;
	margin: 0;
	margin-right: 25px;
}

.list-item li {
	float: left;
	padding: 20px 13px 0 13px;
	font-size: 15px;
	font-weight: 500;
	/* border-radius: 3px; */
	transition: all .7s ease-in-out;
	margin: 0;
	list-style: none;
	cursor: pointer;
}

.list-item li a {
	color: #EEE;
}

.list-item li:hover {
	/* background-color: brown; */
}

/*   End navigation bar   */

/*   Start nav bar for small screens   */

.icon {
	display: none;
}

.toggle {
	float: right;
	margin: 20px;
	color: #EEE;
	font-size: 30px;
	border: 1px solid #EEE;
	padding: 0px 5px;
	border-radius: 4px;
	cursor: pointer;
}


/*   End nav bar for small screens   */

@media screen and (min-width:1600px) and (max-width:1620px) and (max-height:810px) {

	#hero #hero-caption,
	#hero-bg-image,
	.custom-slide-container {



		height: 100vh;

	}
}

.grecaptcha-badge {
	visibility: hidden !important
}

.showcase-portfolio * {
	box-sizing: border-box;

}

.showcase-portfolio .clapat-item.filtered.unit-item .img-mask {
	overflow: visible;
}

.showcase-portfolio .clapat-item.filtered.unit-item .block-view {
	position: absolute;

	width: 100%;
	height: 100%;
	z-index: 102;
	background: rgba(95, 63, 74, 0.64);
	backdrop-filter: blur(5px);
	left: 0;
	top: 0;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.showcase-portfolio .clapat-item.filtered.unit-item .block-view p {
	margin: 0;
	color: #fff;
	font-size: 16px;


}

.overlapping-image .slide-caption,
.overlapping-image .slide-caption .next-hero-title {
	justify-content: center;
}


#ball {
	display: none;
}

.menu {
	display: none;
}

@media screen and (max-width:1240px) {

	/* .iconic-background,.iconic-background-m{
		width: 80%;
		height: 80%;
		
	} */
	.menu {
		display: block;
	}

	.icon {
		display: block;
		width: 100%;
		height: 80px;
		background-color: #5F3F4A;
		border-bottom: 1px solid #444;
	}

	.list-item {
		width: 100%;
		margin: 0;
		padding: 0;
		position: relative;
		top: -4px;
		background-color: #222;
		display: none;
	}

	.list-item li {
		text-align: center;
		display: block;
		border-bottom: 1px solid #333;
		float: none;
		padding: 15px;
	}
}

.modal-forms {
	display: none;
	text-align: center;
	padding: 70px 60px 60px 60px;
}

.modal-forms.disclaimer p,
.modal-forms.disclaimer .button-border,
.modal-forms.disclaimer .primary-font-title {
	color: var(--accent-color);
}

.modal-forms.disclaimer p {
	font-size: 16px;
	line-height: 20px;
}

.modal-forms.disclaimer {

	padding: 40px;
	text-align: left;
	max-width: 800px;
	background: var(--background-color);
	height: 100%;

	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.modal-forms.disclaimer-1 {

	padding: 40px;
	text-align: left;
	max-width: 800px;
	background: var(--background-color);
	height: 100%;

	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.modal-forms.disclaimer .disclaimer-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
}

.modal-forms.disclaimer .disclaimer-content::-webkit-scrollbar {
	width: 8px;
	background: transparent;

}

.modal-forms.disclaimer .disclaimer-content::-webkit-scrollbar-thumb {
	width: 8px;

	background: rgba(0, 0, 0, 0.5);
	border-radius: 4px;
}



.modal-forms.disclaimer .disclaimer-content {
	height: calc(100% - 140px);
	padding-right: 5px;
	overflow-y: auto;
}

.modal-forms.disclaimer .clapat-button {
	margin-bottom: 0;
}


.privacy-container {
	margin: 0 auto;
}

@media screen and (min-width:1025px) {




	#hero .height-title .hero-title {
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);





	}

	#hero.home-hero .height-title .hero-title {

		display: flex;
		justify-content: space-between;
		margin: 0 auto 10%;
		;
		width: 100%;
		max-width: 1500px;
	}

}

@media screen and (min-width:1025px) and (max-width:1500px) {
	#hero.home-hero .height-title .hero-title {
		margin: 0 auto 14%;
	}

}


@media screen and (max-width:1024px) {
	.privacy-container {
		margin: 50px auto 50px;
	}

	/* header #logo{
	opacity: 0;
} */


	.iconic-background {
		background-position: calc(50% - 10%) bottom;
	}

	.iconic-background-m {
		background-position: calc(50% + 75px - 10%) bottom;
	}

	.birds {
		overflow: hidden;
		height: 65%;
	}

	.full-screen-background {
		width: 100%;
		height: 133vw;
		background-image: url(images/rendered/starlight-night-potrait.webp);

	}

	.full figure.has-parallax.custom-parallax {
		width: 100%;
		height: 133vw !important;
	}

	.custom-parallax .parallax-image-content .starlight {
		width: 30%;
	}

	.copyright {
		max-width: 400px;
	}

	.overlapping-image .slide-caption .button-text span {
		/* line-height: 1.4; */
	}
}


.starlight-logo {
	object-fit: contain;
}

@media screen and (max-width:1025px) {


	.modal-forms.disclaimer {


		max-width: 500px;


	}

	.hero-title {
		font-size: calc(0.6rem + 12vw);
		line-height: calc(0.6rem + 11.4vw);
	}

	/* .iconic-background,.iconic-background-m{
		width: 90%;
		height: 90%;
		left: 0;
	} */

	.mobile-guidance {
		display: inline-block;
	}

	.overlapping-image .slide-caption .list-type-1 {
		margin-bottom: 10px;
	}

	.overlapping-image .slide-caption .custom-header {
		line-height: calc(0.6rem + 8.4vw);
	}

	.hideOnMd {
		display: none;
	}

	.overlapping-image .slide-caption {
		padding: 10px;
	}
}

.starlight-logo {
	height: 150px;
}


.plans-guidance {
	text-align: center;
}

@media screen and (max-width:768px) {

	.modal-forms,
	.modal-forms.disclaimer {
		padding: 15px 15px;
	}

	.floor-box {
		margin: 10px 0;
	}

	.floor-box.ios-device {
		margin: 10px 0;
	}

	.plans-guidance {
		text-align: left;
	}

	.overlapping-image .slide-caption {
		padding: 0;
	}

	/* .dark-section .unmute-video .button-border.outline
{
	color: var(--accent-color);
	    border: solid 2px var(--accent-color);
} */
	#towers {
		padding-top: 0;
	}

	/* .blurred-burger .light-content .white-header .button-icon #burger-wrapper:not(.active) 	{
				background-color:var(--background-color);
		}
	.blurred-burger .light-content .white-header .button-icon #burger-wrapper:not(.active) span	{
				background-color:var(--background-color);
		} */

	.walkthrough-button-container {
		justify-content: center;
		gap: 20px;
	}

	/* .hero-video-wrapper video.bgvid, .content-video-wrapper video.bgvid, .content-video-wrapper iframe.bgvid{

 
    height: auto;
	margin: auto;

} */
	#walkthrough .clipped-image img {

		height: auto !important;
		margin: auto;

	}

	/* #walkthrough .clipped-image{
	background-image: url(images/banners/mobile/pattern.webp);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
} */

	#walkthrough .clipped-image-gradient {
		display: none;
	}

	.location-section .custom-header {
		text-align: center;
	}

	.hero-title,
	.next-hero-title {
		font-size: calc(0.6rem + 7.8vw);
		line-height: calc(0.6rem + 7.4vw);
		letter-spacing: 0;
	}

	.overlapping-image .slide-caption .list-type-1 {
		margin-bottom: 0;
	}

	#hero #hero-caption .inner {
		width: 100%;
	}

	.next-hero-title.primary-font-title.caption-timeline {
		line-height: calc(0.6rem + 15vw);
		display: flex;
		flex-wrap: wrap;
		justify-content: center;

	}

	.column-two,
	.column-three {
		display: none;
	}

	.overlapping-image .slide-caption,
	.overlapping-image .slide-caption .next-hero-title {

		text-align: left;
	}

	.overlapping-image .slide-caption .flex-box-2 {
		justify-content: left;
	}

	ul.list-type-1 {
		margin-left: 0;
	}

	.overlapping-image .slide-caption ul.list-type-1 {
		text-align: left;
		margin-left: 30px;
	}

	/* .team-member:hover span:last-child{
	scale: 1;
 } */


	.team-member span {
		height: calc(0.6rem + 10vw);
	}


	/* .clouds{
		    background-size: calc(1000px) 100vh;
	} */

	.full-screen-background {

		background-image: url(assets/images/overview/overview2.png);

	}

	.custom-parallax .parallax-image-content .starlight {
		width: 35%;
	}

	.fixed-whatsapp a {
		padding: 10px;
	}

	.fixed-whatsapp span {
		display: none;
	}



	.hero-subtitle {
		margin-bottom: 0;

	}

	#hero .hero-subtitle {
		margin-top: 20px;

	}


	.custom-header {
		font-size: calc(0.6rem + 7.8vw);
		line-height: calc(0.6rem + 8.4vw);

	}

	.team-members-list li {
		list-style: none;
		position: relative;
		margin: 0;
		width: 100%;
		cursor: pointer;
		pointer-events: initial;
		padding: 0px 0px 10px 0px;
		box-sizing: border-box;
		/* border-bottom:1px solid; */
		border-color: rgba(0, 0, 0, 0.1);
	}

	.copyright {
		max-width: 350px;
	}

	.amenities-slider .item-image {
		height: auto;
		width: 100%;
	}

	.team-member span img {
		width: 50%;
	}


	#hero.home-hero #hero-caption {
		/* background-image: url(images/banners/mobile/home.webp); */





	}


	/* .slide-1 {
		background-image: url(assets/images/banner/mob1.jpg);
	} */

	#hero.clubhouse-page #hero-caption,
	.slide-2 {
		background-image: url(assets/images/banner/m1.jpg);
	}

	#hero.amenities-page #hero-caption,
	.slide-3 {
		background-image: url(assets/images/banner/mob2.jpg);
	}

	/*#hero.lanscapes-page #hero-caption, .slide-4 {
		background-image: url(assets/images/banner/mob1.jpg);
	}

	#hero.plans-page #hero-caption, .slide-5 {
		background-image: url(assets/images/banner/mob1.jpg);
	} */

	#hero #hero-caption {
		height: 163.55vw;
		background-position: bottom;
	}

	.brochure-padding {
		padding-top: 70px;
	}

	.amenities-slider .clapat-slider-wrapper {
		max-height: 450px;
	}

	.gallery-thumbs-wrapper {
		display: none;
	}
}


@media screen and (max-width:767px) {
	header {
		height: auto;
		background-color: #5F3F4A;
	}

	#hero {
		margin-top: 73px;
	}

	#leaflet {
		height: unset;
	}

}

.page-nav-caption .inner {
	max-height: 100%;
	max-width: 100%;
}

@media screen and (max-width:550px) {
	/* .custom-header {
		font-size: calc(0.6rem + 10.8vw);
        line-height: calc(0.6rem + 11.4vw);
    
	} */


	.starlight-logo {

		height: 70px;

	}

	#leaflet {
		height: unset;
	}

	/* .landscapes-page  #hero-bg-image, .landscapes-slide .grid__item-img{
	background-image: url(images/slides/waterscapes-potrait-mobile.webp);
}

.plans-page #hero-bg-image{
	background-image: url(images/slides/floor-plans-potrait-mobile.webp);
}

.amenities-page  #hero-bg-image{
	background-image: url(images/slides/riverside-amenities-potrait-mobile.webp);
} */

	#hero-image-wrapper {
		height: 133vw;
	}

	/* .iconic-background{
 
	 width: 100%;
	max-width: unset;
bottom: 10%;
	background-image: url(./images/iconic-background-dawn-mobile-towers.webp);
	background-position: center;
	background-size: contain;
	 
 
} */
	.iconic-background-m {
		width: 100%;
		max-width: unset;
		bottom: 10%;
		background-position: center;
		background-size: contain;
		background-image: url(images/iconic-background-dawn-mobile-m.webp);

	}

	*/ #hero.home-hero .height-title .hero-title {
		margin-bottom: 25%;
	}

	/* .preloader-wrap {

		background-image: url(images/haze-mobile.webp);
	} */

	#hero-footer {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}


	/* #hero.home-hero #hero-caption{

		background-image: url(images/banners/mobile/home.webp);
	 
} */

	/* #hero.clubhouse-page #hero-caption{
	background-image: url(images/banners/mobile/clubhouse.webp);
}
#hero.amenities-page #hero-caption{
	background-image: url(images/banners/mobile/amenities.webp);
}
 #hero.lanscapes-page #hero-caption{
	background-image: url(images/banners/mobile/landscapes.webp);
}

 #hero.plans-page #hero-caption{
	background-image: url(images/banners/mobile/plans.webp);
} */
}

@media screen and (max-width:768px) and (min-height:700px) {
	#hero.home-hero .height-title .hero-title {
		margin-bottom: 45%;
	}
}



@media screen and (min-width:768px) and (max-width:1240px) and (min-height:1000px) {
	#logo {
		top: 0;
	}

	header .button-wrap .button-text {
		margin: 16px 0;
	}

	header .button-wrap .icon-wrap {
		max-height: 60px;
	}

	header {
		height: 80px;
		/* background-color: var(--accent-color); */
	}

	/* #hero{
	margin-top: 80px;
 } */
	#hero #hero-caption .inner {
		width: 100%;
	}

	/* .landscapes-page  #hero-bg-image{
	background-image: url(images/slides/waterscapes-potrait.webp);
}
.plans-page #hero-bg-image{
	background-image: url(images/slides/floor-plans-potrait.webp);
}
.clubhouse-page #hero-bg-image{
	background-image: url(images/banners/mobile/clubhouse.webp);
}
.amenities-page  #hero-bg-image{
	background-image: url(images/slides/riverside-amenities-potrait.webp);
}
	.iconic-background {
		background-image: url(images/iconic-background-dawn-towers.webp);
	}
 .iconic-background-m{
	background-image: url(images/iconic-background-dawn-m.webp);
 }
		.iconic-background,.iconic-background-m{

			 
 width: calc(100% + 320px);
 height: 90%;
 left:-160px;
	max-width: unset;
	background-size: contain;
	background-position: center;
 
 
} */
	#hero.home-hero .hero-title {
		margin-bottom: 8%;

	}



	#hero.home-hero #hero-caption {
		background-image: url(images/banners/mobile/home.webp);
	}

	.slide-1 {
		background-image: url(images/banners/mobile/home.webp);
	}

	#hero.clubhouse-page #hero-caption,
	.slide-2 {
		background-image: url(images/banners/mobile/clubhouse.webp);



	}


	#hero.amenities-page #hero-caption,
	.slide-3 {
		background-image: url(images/banners/mobile/amenities.webp);
	}

	#hero.lanscapes-page #hero-caption,
	.slide-4 {
		background-image: url(images/banners/mobile/landscapes.webp);
	}

	#hero.plans-page #hero-caption,
	.slide-5 {
		background-image: url(images/banners/mobile/plans.webp);
	}


	#hero #hero-caption,
	#hero-bg-image,
	.custom-slide-container {
		height: calc(100vh - 80px);
		background-position: bottom;
	}
}

@media screen and (min-width:768px) and (max-width:780px) and (min-height:1000px) {

	#hero #hero-caption,
	#hero-bg-image,
	.custom-slide-container {
		height: calc(100vh);
		background-position: bottom;
	}

}

.accordion-content.hide {
	animation: none !important;
}

/* ********gallery css starts here */
.tab-buttons {
	display: grid;
	grid-template-columns: auto auto;
	justify-content: center;
	gap: 10px;
	margin-bottom: 40px;
}

.tab-buttons button {
	padding: 10px 30px;
	border-radius: 25px;
	font-size: 18px;
	border: 2px solid #A28C65;
	background: transparent;
	color: #A28C65;
	cursor: pointer;
	transition: 0.3s;
}

.tab-buttons button.active {
	background-color: #A28C65;
	color: #fff;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.gallery-carousel.owl-carousel {
	position: relative;
}

.gallery-carousel .owl-nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 2;
}

/* Style nav buttons */
.gallery-carousel .owl-nav button.owl-prev,
.gallery-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #A28C65 !important;
	color: #fff;
	border-radius: 50% !important;
	width: 50px;
	height: 50px;
	font-size: 30px;
	line-height: 30px;
	border: none;
	pointer-events: all;
	z-index: 3;
}

.gallery-carousel .owl-nav button.owl-prev {
	left: -30px;
}

.gallery-carousel .owl-nav button.owl-next {
	right: -30px;
}

@media screen and (max-width: 768px) {
	.fixed-footer {
		display: block;
	}

	#enquireModal2 {
		width: 80dvw;
		height: 50dvh;
	}

	.walkthrough-button-container {
		display: none;
	}


}

/* Mobile responsive tweaks */
@media (max-width: 576px) {

	.gallery-carousel .owl-nav button.owl-prev,
	.gallery-carousel .owl-nav button.owl-next {
		width: 36px;
		height: 36px;
		font-size: 20px;
	}

	.gallery-carousel .owl-nav button.owl-prev {
		left: -15px;
	}

	.gallery-carousel .owl-nav button.owl-next {
		right: -15px;
	}

	#enquireModal2 {
		width: 80dvw;
		height: 50dvh;
	}

}