/************************************* Reset Styles ********************************/
html, body {
	overflow-x: hidden;
}
body {
min-height:1200px;}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

blockquote, q {
	quotes: none;
}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td, div {
	vertical-align: top;
}

* {
	outline: none;
	box-sizing: border-box;
}

li, ol {
	list-style-type: none;
	list-style-image: none;
	list-style: none;
}

img {
	border: 0px;
	max-width: 100%;
	display: block;
}

textarea {
	resize: none;
}

	input:focus, select:focus, textarea:focus, button:focus {
		outline: none;
	}

a {
	text-decoration: none;
}

input, textarea, select, body {
	font-size: 14px;
	font-family: 'Avenir LT Std';
	font-weight: 900;
}
/************************************* Reset End Styles ********************************/
/************************************* Common Styles ********************************/
.rightAlign {
	text-align: right;
}

.centerAligned {
	text-align: center;
}

.centeredBlock {
	margin-left: auto;
	margin-right: auto;
	float: none;
}

.fullWidth {
	width: 100%;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.posRelative {
	position: relative;
}

.absolutePos {
	position: absolute;
}

.textDecorationNone {
	text-decoration: none;
}

.textDecorationUnderline {
	text-decoration: underline;
}

.fontWeightBold {
	font-weight: bold;
}

.clearBoth {
	clear: both;
}

.clearRight {
	clear: right;
}

input, textarea, select, body, .smallTop a, .mainMenu a {
	color: #868686;
	-webkit-appearance: none;
	border: 0 none;
}

::-webkit-input-placeholder {
	color: #d4d4d4;
	font-weight: 300;
}

.contactForm ::-webkit-input-placeholder {
	color: #fff;
	opacity: 0.4;
}




.showFade {
	transition: all linear 400ms;
	-moz-transition: all linear 400ms;
	-webkit-transition: all linear 400ms;
	-ms-transition: all linear 400ms;
}
/************************************* Common End Styles ********************************/
/************************************* Website Styles ********************************/
.safeArea {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	padding: 0 20px;
}

.repsMenuBtn {
	display: none;
}

header {
	padding: 20px 0 30px 0;
	box-shadow: 0 8px 6px -8px rgba(0,0,0,0.2);
}

.mainMenuHolder {
	padding: 17px 0;
}

.logoHolder {
	float: left;
	width: 170px;
}

.mainMenu {
	text-align: right;
	float: right;
}

.languageHolder {
	display: inline-block;
}

.listMenu {
	display: block;
}

.mainMenu ul li {
	display: inline-block;
	margin-right: 27px;
}

	.mainMenu ul li:last-child {
		margin-right: 0;
	}

	.mainMenu ul li a {
		font-size: 22px;
		color: #000000;
		padding: 15px 3px 0;
		display: inline-block;
		position: relative;
		font-weight: 400;
	}

	.mainMenu ul li.active a {
		color: #d12060;
	}

	.mainMenu ul li a:after {
		content: "";
		width: 0;
		height: 2px;
		background-color: #000000;
		position: absolute;
		left: 0;
		bottom: -7px;
		overflow: hidden;
	}

	.mainMenu ul li.active a:after {
		width: 100%;
		background-color: #d12060;
	}

	.mainMenu ul li:hover a {
		color: #d12060;
	}

.mainMenu .languageHolder ul li a {
	font-size: 13px;
	font-weight: 400;
}

.mainMenu .languageHolder ul li {
	margin-right: 10px;
}

	.mainMenu .languageHolder ul li.active a {
		font-weight: 900;
	}

.listMenu ul li a {
	margin-top: 16px;
}

.lookingFor {
	width: 100%;
	display: flex;
	background-image: url(../images/main-image.jpg);
	background-repeat: no-repeat;
	height: 450px;
	justify-content: center;
	align-items: center;
	background-size: cover;
}

.searchTitle {
	display: block;
	color: #fff;
	font-size: 44px;
	font-weight: 900;
	margin-bottom: 35px;
	text-align: center;
}

.selectHolder {
	position: relative;
	background-color: #fff;
}

	.selectHolder select {
		padding: 20px;
		color: #000;
		font-size: 16px;
		display: block;
		width: 100%;
		cursor: pointer;
		font-weight: 400;
		position: relative;
		z-index: 2;
		background-color: transparent;
		height: 60px;
	}

	.selectHolder:after {
		position: absolute;
		content: '';
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		background-image: url(../images/arrow-down.svg);
		width: 15px;
		height: 8px;
		background-size: 100% 100%;
		z-index: 1;
	}

.searchInputs .inputEntity {
	display: inline-block;
	width: 450px;
	margin-right: 10px;
	vertical-align: middle;
}

.inputEntity {
	position: relative;
}

.searchAction {
	display: inline-block;
	vertical-align: middle;
}

	.searchAction input {
		background-color: #000;
		color: #fff;
		padding: 20px;
		height: 60px;
		text-transform: uppercase;
		font-size: 14px;
		cursor: pointer;
		font-weight: 900;
	}

		.searchAction input:hover {
			background-color: #fff;
			color: #000;
		}

.aboutBlock {
	padding: 40px 0;
}

h2.sectionTitle {
	display: block;
	position: relative;
	margin-bottom: 27px;
	color: #000000;
	font-size: 60px;
	font-weight: 900;
	line-height: 70px;
}

	h2.sectionTitle:before {
		left: -310px;
		position: absolute;
		content: '';
		width: 300px;
		height: 6px;
		background-color: #d12060;
		top: 25px;
	}

.tabsLinks {
	margin-bottom: 30px;
}

	.tabsLinks a {
		display: inline-block;
		color: #7f7f7f;
		text-transform: uppercase;
		font-weight: 300;
		margin-right: 20px;
		position: relative;
		padding: 3px 0 5px 30px;
		font-size: 13px;
	}

		.tabsLinks a:before {
			position: absolute;
			content: '';
			left: 0;
			top: 0;
			width: 20px;
			height: 20px;
			background-repeat: no-repeat;
			background-size: 100% 100%;
		}

		.tabsLinks a.active {
			color: #000000;
			font-weight: 900;
		}

		.tabsLinks a.listView:before {
			background-image: url(../images/List-grey.svg);
		}

		.tabsLinks a.mapView:before {
			background-image: url(../images/map.svg);
		}

		.tabsLinks a.listView.active:before {
			background-image: url(../images/list.svg);
		}

		.tabsLinks a.mapView.active:before {
			background-image: url(../images/map-black.svg);
		}

.projectsList ul li {
	float: left;
	width: 32%;
	margin-right: 2%;
	margin-bottom: 22px;
	position: relative;
}

	.projectsList ul li:nth-child(3n) {
		margin-right: 0;
	}

.imgHolder {
	width: 100%;
	overflow: hidden;
	display: block;
	position: relative;
}

.projectsList .imgHolder:after {
	position: absolute;
	content: '';
	background-color: rgba(255,255,255,0.9);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.projectsList ul li:hover .imgHolder:after {
	background-color: rgba(0,0,0,0.6);
}

.imgHolder img {
	width: 100%;
	display: block;
}

.projectsList ul li:hover .imgHolder img, .imgHolder:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.projectStatus {
	position: absolute;
	top: 20px;
	left: 20px;
}

.projectCountry {
	position: absolute;
	right: 20px;
	top: 20px;
	display: inline-block;
	vertical-align: middle;
	color: #000;
	font-size: 16px;
	font-weight: 900;
}

.projectsList ul li:hover .projectCountry {
	color: #fff;
}

.projectCountry span.flag {
	display: flex;
	width: 40px;
	height: 40px;
	background-color: #fff;
	border-radius: 50%;
	padding: 0;
	margin-right: 10px;
	align-items: center;
	justify-content: center;
}

	.projectCountry span.flag img {
		display: block;
		max-width: 100%;
		height: 30px;
		width: 30px;
	}

.projectStatus {
	position: absolute;
	top: 20px;
	left: 20px;
	border: 2px solid #fff;
	padding: 10px;
	opacity: 0;
}

	.projectStatus span {
		color: #fff;
		font-size: 16px;
		padding-left: 30px;
		background-image: url(../images/white-tick.svg);
		background-position: left top;
		background-size: 17px auto;
		background-repeat: no-repeat;
	}

.projectsList ul li:hover .projectStatus {
	opacity: 1;
}

.projectDetails {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
}

.projectNumber {
	font-size: 70px;
	display: block;
	margin-bottom: 10px;
	font-weight: 300;
	color: #9e9e9e;
	line-height: 70px;
}

.projectTitle {
	display: block;
	color: #1c1c1c;
	font-size: 45px;
	font-weight: 900;
}

.projectsList ul li:hover .projectNumber, .projectsList ul li:hover .projectTitle {
	color: #fff;
}

.projectInfo {
	display: none;
	margin: 30px 0;
}

	.projectInfo ul li {
		font-size: 20px;
		display: inline-block;
		margin-right: 6%;
		width: 47%;
		padding-left: 30px;
		color: #fff;
		font-weight: 400;
		background-repeat: no-repeat;
	}

		.projectInfo ul li:last-child {
			margin-right: 0;
		}

		.projectInfo ul li span {
			font-weight: 900;
			display: inline-block;
			margin-right: 3px;
		}

		.projectInfo ul li.floors {
			background-image: url(../images/floors.svg);
			background-size: auto 20px;
		}

		.projectInfo ul li.units {
			background-image: url(../images/units.svg);
			padding-left: 50px;
			background-size: auto 20px;
		}

.projectDetails .moreBtn {
	display: none;
	width: 100%;
}

.moreBtn a {
	text-transform: uppercase;
	display: inline-block;
	padding: 15px 20px;
	border: 2px solid #fff;
	color: #000;
	font-weight: 900;
	background-color: #fff;
	font-size: 12px;
}

	.moreBtn a:hover {
		background-color: transparent;
		color: #fff;
	}

.projectsList ul li:hover .projectInfo, .projectsList ul li:hover .moreBtn {
	display: block;
}

.backgroundBlock {
	background-image: url('../images/turnkey.jpg');
	height: 650px;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
}

.blackHolder {
	background-color: rgba(0,0,0,0.5);
	padding: 30px 100px;
	max-width: 850px;
}

.whiteTitle {
	color: #fff !important;
}

.normalText {
	font-size: 22px;
	font-weight: 300;
	margin-bottom: 30px;
	color: #000000;
}

	.normalText.whiteText {
		color: #fff;
	}

.blackHolder .moreBtn {
	display: block;
}

	.blackHolder .moreBtn a {
		margin-right: 10px;
	}

		.blackHolder .moreBtn a:last-child {
			margin-right: 0;
		}

.blackHolder h2.sectionTitle.whiteTitle:before {
	width: 60px;
	left: -100px;
}

a.whatsappBtn {
	position: fixed;
	right: 3px;
	bottom: 30px;
	color: #fff;
	padding: 15px 15px 14px 50px;
	font-size: 14px;
	background-image: url(../images/fbook.svg);
	background-size: 20px 20px;
	background-position: 15px center;
	border-radius: 30px;
	background-color: #3b5999;
	background-repeat: no-repeat;
	text-transform: uppercase;
	z-index: 4;
}

	a.whatsappBtn:hover {
		background-color: #d12060;
	}

.latestOffers {
	background: #1f262d; /* Old browsers */
	background: -moz-linear-gradient(top, #1f262d 35%, #ffffff 35%, #ffffff 35%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #1f262d 35%,#ffffff 35%,#ffffff 35%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #1f262d 35%,#ffffff 35%,#ffffff 35%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1f262d', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	padding: 60px 0 40px;
}

	.latestOffers h2.sectionTitle.centeredTitle {
		text-align: center;
	}

		.latestOffers h2.sectionTitle.centeredTitle:before {
			left: 50%;
			position: absolute;
			content: '';
			width: 100px;
			height: 6px;
			background-color: #fff;
			top: -15px;
			transform: translateX(-50%);
		}

.offersList ul li {
	float: left;
	width: 32%;
	margin-right: 2%;
}

	.offersList ul li:nth-child(3n) {
		margin-right: 0;
	}

.offerItem {
	position: relative;
}

.offerHighlight {
	position: absolute;
	top: -18px;
	left: -78px;
	z-index: 3;
	border-left: 120px solid transparent;
	border-right: 120px solid transparent;
	border-bottom: 120px solid #d12060;
	transform: rotate(-45deg);
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	height: 0;
	width: 0;
}

.pinkHighlight {
	position: absolute;
	content: '';
	top: 70px;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	text-align: center;
	font-weight: 300;
}

	.pinkHighlight span {
		font-size: 34px;
		font-weight: 900;
	}

.offerItem .imgHolder {
	margin-bottom: 20px;
}

.offerCountry {
	display: inline-block;
	margin-bottom: 20px;
	vertical-align: middle;
	font-size: 16px;
	color: #000;
	font-weight: 900;
	text-transform: uppercase;
}

	.offerCountry span {
		display: inline-block;
		width: 40px;
		height: 40px;
		vertical-align: middle;
		margin-right: 20px;
		border-radius: 50%;
		border: 1px solid #d8d8d8;
	}

.offerTitle a {
	font-weight: 900;
	color: #000;
	font-size: 24px;
	display: block;
	margin-bottom: 20px;
}

	.offerTitle a:hover {
		color: #d12060;
	}

.pinkBtn {
	display: block;
}

	.pinkBtn a {
		text-transform: uppercase;
		padding: 12px 20px;
		display: inline-block;
		color: #fff;
		font-size: 14px;
		font-weight: 900;
		background-color: #d12060;
		border: 1px solid #d12060;
	}

		.pinkBtn a:hover {
			background-color: transparent;
			color: #d12060;
		}

.offersList {
	margin-bottom: 40px;
}

.pinkBox {
	background-color: #d12060;
	padding: 50px 270px 50px 90px;
}

	.pinkBox h2 {
		display: block;
		position: relative;
		margin-bottom: 10px;
		color: #fff;
		font-size: 70px;
		font-weight: 900;
		line-height: 70px;
	}

	.pinkBox h4 {
		color: #fff;
	}

h4 {
	font-size: 40px;
	font-weight: 900;
	display: block;
	margin-bottom: 15px;
}

.pinkBox h2.sectionTitle:before {
	display: none;
}

.pinkBox h2.sectionTitle {
	margin-bottom: 10px;
}

.footer {
	background-image: url(../images/footer.svg);
	background-size: 100% auto;
	background-position: left bottom;
	background-repeat: no-repeat;
	padding: 60px 0 20px;
}

.borderTop {
	position: absolute;
	top: -50px;
	left: 0;
	width: 100%;
	height: 6px;
	background-color: #000000;
	content: '';
}

.footerBody, .bottomFooter {
	padding: 0 100px;
}

.footerTitle {
	font-size: 130px;
	color: rgba(236,236,236,0.5);
	display: block;
	margin-bottom: -45px;
	line-height: 100px;
	z-index: 0;
	position: relative;
}

.contactList {
	z-index: 2;
	position: relative;
	margin-bottom: 80px;
}

	.contactList ul li {
		width: 32%;
		margin-right: 2%;
		float: left;
		padding: 30px 50px;
		text-align: center;
		position: relative;
	}

		.contactList ul li:after {
			position: absolute;
			content: '';
			right: 0;
			top: 0;
			width: 1px;
			height: 315px;
			background-color: #dedede;
		}

		.contactList ul li:nth-child(3n) {
			margin-right: 0;
		}

.iconHolder, .iconHolder img {
	height: 60px;
	width: auto;
	margin: 0 auto 30px;
	max-width: 100px;
}

.listTitle {
	color: #000;
	font-size: 23px;
	display: block;
	margin-bottom: 15px;
	font-weight: 900;
}

.listDesc, .listDesc a {
	font-weight: 300;
	color: #848484;
	font-size: 18px;
}

	.listDesc a:hover, .bottomFooter a:hover {
		text-decoration: underline;
	}

.centeredBtns {
	text-align: center;
	display: block;
	margin-top: 40px;
}

	.centeredBtns a {
		display: inline-block;
		color: #fff;
		background-color: #d12060;
		border: 1px solid #d12060;
		padding: 15px 30px;
		margin-right: 10px;
	}

		.centeredBtns a:last-child {
			margin-right: 0;
		}

		.centeredBtns a:hover {
			background-color: #ffffff;
			color: #d12060;
		}

.bottomFooter, .bottomFooter a {
	font-size: 13px;
	font-weight: 300;
	color: #191d21;
}

.cpHolder {
	float: left;
}

.designedholder {
	float: right;
}

header {
	box-shadow: 0 8px 6px -8px rgba(0,0,0,0.2);
}

.bodySections {
	padding: 60px 0;
}

.projectsMenu li {
	display: inline-block;
	vertical-align: middle;
	padding: 5px 10px;
	background-color: transparent;
	margin-right: 10px;
}

	.projectsMenu li:last-child {
		margin-right: 0;
	}

	.projectsMenu li a {
		font-size: 14px;
		color: #5e5e5e;
		position: relative;
		padding: 5px 12px;
		text-transform: uppercase;
	}

	.projectsMenu li.active a {
		background-color: #d12060;
		color: #fff;
	}

	.projectsMenu li a:hover {
		color: #d12060;
	}

	.projectsMenu li.active a:hover {
		color: #fff;
	}

	.projectsMenu li.active a:after {
		position: absolute;
		content: '';
		background-image: url(../images/pink-arrow.svg);
		width: 12px;
		height: 6px;
		background-size: 100% 100%;
		bottom: -6px;
		left: 50%;
		transform: translateX(-50%);
	}

ul.projectsMenu {
	margin-bottom: 70px;
}

.projectItem {
	margin-bottom: 50px;
}

	.projectItem .blackHolder h2.sectionTitle.whiteTitle:before, .fullBanner h2.sectionTitle.whiteTitle:before {
		display: none;
	}

	.projectItem .blackHolder {
		background-color: rgba(0,0,0,0.6);
		padding: 50px 80px;
		max-width: 600px;
	}

		.projectItem .blackHolder h2.sectionTitle {
			margin-bottom: 10px;
		}

		.projectItem .blackHolder h3.projectSubTitle {
			color: #fff;
			font-size: 20px;
			display: block;
			margin-bottom: 20px;
			font-weight: 900;
		}

h1.mainPageTitle {
	display: block;
	position: relative;
	margin-bottom: 35px;
	color: #000000;
	font-size: 80px;
	font-weight: 900;
	line-height: 80px;
}

	h1.mainPageTitle:before {
		left: -110px;
		position: absolute;
		content: '';
		width: 100px;
		height: 6px;
		background-color: #d12060;
		top: 40px;
	}

.fullBanner {
	background-repeat: no-repeat;
	background-size: cover;
	height: 400px;
	display: flex;
	align-items: center;
	position: relative;
	background-position: center center;
}

	.fullBanner:after {
		position: absolute;
		content: '';
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		background-color: rgba(0,0,0,0.4);
		z-index: 1;
	}

.centeredDesc {
	text-align: center;
	color: #050505;
	font-size: 35px;
	font-weight: 900;
	padding: 60px 0;
}

.inlineList ul li {
	display: inline-block;
	margin-right: 90px;
}

	.inlineList ul li:last-child {
		margin-right: 0;
	}

.inlineList {
	display: block;
	text-align: center;
	margin-bottom: 60px;
}

.listIcon {
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
	width: 100px;
}

.listInfo {
	display: inline-block;
	vertical-align: middle;
	font-weight: 300;
	font-size: 18px;
	color: #515151;
	text-align: left;
}

	.listInfo span {
		font-weight: 900;
		font-size: 60px;
		display: block;
		color: #000000;
	}

.formHolder .halfBlock {
	float: left;
	width: 46%;
	margin-right: 8%;
}

	.formHolder .halfBlock.last, .formRow.halfRow.last {
		margin-right: 0;
	}

	.formHolder .halfBlock.last {
		margin-right: 0;
	}

.bodyText {
	font-size: 18px;
	font-weight: 300;
	color: #939393;
}

.contactFooter {
	background-image: none;
}

.contactHolder {
	display: table; width:100%;
}

.contactMap, .contactForm {
	display: table-cell;
	vertical-align: middle;
	width: 50%;
}
	.contactMap div {
		/*width: 100%;*/
		height: 758px;
		display: block;
	}

.contactForm {
	background-color: #122228;
	padding: 45px 80px;
}

.formTitle {
	display: block;
	font-size: 70px;
	color: #fff;
	margin-bottom: 20px;
	font-weight: 900;
}

.formRow {
	display: block;
	margin-bottom: 30px;
}

label {
	font-weight: 900;
	font-size: 20px;
	display: block;
	margin-bottom: 10px;
}

.contactForm label {
	color: #fff;
}

input[type="text"], input[type="number"], textarea {
	background-color: transparent;
	border-bottom: 1px solid rgba(255,255,255,0.4);
	width: 100%;
	padding: 10px 0px;
	color: #0f0f0f;
	font-size: 22px;
	font-weight: 300;
}

.contactForm input[type="text"], .contactForm input[type="number"], .contactForm textarea {
	color: #ffffff;
}

.contactForm .inputEntity {
	display: block;
	width: 100%;
	position: relative;
}

.error, .errorMessage {
	color: #d12060;
	right: 0;
	position: absolute;
	font-size: 12px;
	bottom: -30px;
}

textarea {
	height: 120px;
}

.formHolder {
	width: 450px;
}

.formAction {
	text-align: right;
	display: block;
}

	.formAction input, .formAction a {
		display: inline-block;
		color: #fff;
		background-color: #d12060;
		border: 1px solid #d12060;
		padding: 15px 40px;
		cursor: pointer;
		text-transform: uppercase;
	}

		.formAction input:hover, .formAction a:hover {
			background-color: #ffffff;
			color: #d12060;
		}

.footer.contactFooter {
	padding-top: 20px;
}

.contactListSub .contactList {
	margin-bottom: 0;
}

.requestCall {
	/*width: 100vw;
    height: 100vh;*/
	padding: 50px 100px;
}

.fancybox-slide, .fancybox-slide--iframe .fancybox-content {
	padding: 0px !important;
	margin: 0px !important;
}

.requestCall label, .careersForm label {
	color: #000;
}

.requestCall input[type="text"], .requestCall textarea, .careersForm input[type="text"], .careersForm textarea, input[type="date"], .careersForm select {
	color: #7d7d7d;
	border-color: #000;
}

.fancybox-slide--html {
	padding: 0;
	margin: 0;
	height: 100vh;
	overflow: hidden;
}

.fancybox-close-small {
	border-radius: 0;
	color: #000;
	height: 70px;
	margin: 0;
	right: 55px;
	top: 20px;
	width: 70px;
}

.formSmallDesc {
	font-weight: 900;
	font-size: 40px;
	color: #050505;
	display: block;
	margin-bottom: 40px;
}

.requestCall .formHolder, .careersForm .formHolder {
	width: 100%;
}

.requestCall textarea {
	height: 278px;
}

.formRow.halfRow {
	width: 46%;
	margin-right: 8%;
	float: left;
}

/*.formRow.halfRow:nth-child(2n) {
        margin-right: 0;
    }*/

.careersForm select, input[type="date"] {
	border-bottom: 1px solid #000;
	padding: 10px 0;
	font-size: 22px;
}

input[type="date"] {
	width: 100%;
	text-transform: uppercase;
	font-weight: 300;
}

.careersForm .selectHolder:after {
	right: 0;
}

.requestCall input[type="text"], .careersForm input[type="text"], input[type="date"], .formHolder select {
	height: 50px;
}

.stackedInput.radioList, ul.stackedInput.radioList li {
	display: inline-block;
	margin-right: 15px;
	height: 50px;
}

ul.stackedInput.radioList li {
	padding: 10px 0;
}

	ul.stackedInput.radioList li label {
		font-size: 15px;
		font-weight: 400;
		color: #4d4d4d;
		vertical-align: middle;
		display: inline-block;
		margin-left: 0;
		line-height: 1.5em;
		cursor: pointer;
		margin-top: 0;
	}

input[type=radio ]:not(old) + label .radioHolder {
	border: 1px solid #f2f2f2;
	width: 20px;
	height: 20px;
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
	background-color: #ffffff;
	position: relative;
	border-radius: 50%;
	margin-top: -8px;
}

	input[type=radio ]:not(old) + label .radioHolder:before {
		width: 7px;
		height: 7px;
		margin: 2px;
		background: transparent;
		vertical-align: bottom;
		content: '';
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		border-radius: 50%;
	}

input[type=radio ]:not(old):checked + label .radioHolder:before {
	background: #d12060;
	width: 10px;
	height: 10px;
	margin: 0;
	border-color: #d12060;
}

input[type=radio ]:not(old) {
	width: 0;
	margin: 0;
	padding: 0;
	font-size: 1em;
	opacity: 0;
	margin-top: -5px;
}

	input[type=radio ]:not(old):checked + label .radioHolder {
		border-color: #d12060;
	}

.fileUpload {
	border: 1px solid #000000;
	border-radius: 2px;
	display: block;
	width: 100%;
	padding: 30px 0;
	overflow: hidden;
	position: relative;
	background-color: #000;
	text-align: center;
	margin: 30px 0;
}

	.fileUpload:hover {
		background-color: #d12060;
		border-color: #d12060;
	}



.uploadValue {
	display: inline-block;
	opacity: 1;
	color: #fff;
	font-size: 22px;
	height: 30px;
	line-height: 30px;
	position: relative;
}

	.uploadValue:after {
		position: absolute;
		content: '';
		right: -60px;
		background-image: url(../images/upload.svg);
		width: 28px;
		height: 28px;
		background-repeat: no-repeat;
		background-size: 100% 100%;
	}

.fileUpload:hover .uploadValue:after {
	background-image: url(../images/upload-white.svg);
}



.fileUpload input {
	font-size: 15px;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 99;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
}

.formAction input[type="button"] {
	background-color: #bcbbbb;
	border-color: #bcbbbb;
	margin-right: 10px;
}

	.formAction input[type="button"]:hover {
		background-color: #ffffff;
		color: #bcbbbb;
	}


.backLink {
	display: block;
	margin-bottom: 30px;
}

	.backLink a {
		color: #0f0f0f;
		font-size: 14px;
		font-weight: 900;
		padding-left: 20px;
		display: inline-block;
		position: relative;
		text-transform: uppercase;
	}

		.backLink a:before {
			position: absolute;
			content: '';
			left: 0;
			background-image: url(../images/arrow-down.svg);
			transform: rotate(90deg);
			width: 13px;
			height: 7px;
			background-repeat: no-repeat;
			background-size: 100% 100%;
			top: 6px;
		}

		.backLink a:hover:before {
			left: -5px;
		}


.filterHolder {
	float: left;
	width: 21%;
	margin-right: 10%;
	background-color: #ffffff;
}

.availabilitiesList {
	float: left;
	width: 69%;
}

.underlinedTitle {
	font-size: 18px;
	display: block;
	position: relative;
	color: #000;
	font-weight: 900;
	margin-bottom: 35px;
}

	.underlinedTitle:after {
		position: absolute;
		content: '';
		height: 4px;
		left: 0;
		width: 100%;
		bottom: -5px;
		background-color: #000;
	}

.filterList {
	display: none;
}

.filterItem {
	display: block;
	width: 100%;
	margin-bottom: 35px;
}

.filterTtile {
	position: relative;
	display: block;
	cursor: pointer;
	font-size: 14px;
	color: #000000;
	font-weight: 400;
	margin-bottom: 15px;
}

	.filterTtile:before {
		position: absolute;
		content: '';
		top: 6px;
		right: 0;
		background-image: url(../images/full-arrow.svg);
		width: 11px;
		height: 6px;
		transform: rotate(180deg);
	}

	.filterTtile.active:before {
		transform: none;
	}

	.filterTtile:after {
		position: absolute;
		content: '';
		height: 1px;
		left: 0;
		width: 100%;
		bottom: -5px;
		background-color: #000;
	}

.filterItem .stackedInput, .filterItem .stackedInput li {
	display: block;
	margin-right: 15px;
	cursor: pointer;
}

.filterItem input[type=checkbox]:not(old) {
	width: 0;
	margin: 0;
	padding: 0;
	font-size: 1em;
	opacity: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.filterItem ul.stackedInput li label {
	font-size: 15px;
	font-weight: 400;
	color: #4d4d4d;
	vertical-align: middle;
	display: inline-block;
	margin-left: 0;
	line-height: 1.5em;
	cursor: pointer;
	margin-top: 0;
}

input[type=checkbox]:not(old) + label .checkboxHolder {
	border: 1px solid #000;
	width: 15px;
	height: 15px;
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
	position: relative;
	margin-top: -5px;
}

input[type=checkbox ]:not(old):checked + label .checkboxHolder:before {
	background-image: url(../images/check.svg);
	width: 13px;
	height: 10px;
	background-repeat: no-repeat;
	content: '';
	position: absolute;
	left: 76%;
	top: 35%;
	transform: translate(-50%,-50%);
	margin: 0;
}

.minMax input[type="text"], .minMax input[type="number"] {
	display: inline-block;
	width: 90px;
	padding: 10px;
	border: 1px solid #cacaca;
	vertical-align: middle;
	font-size: 16px;
}

	.minMax input[type="text"]:first-child, .minMax input[type="number"]:first-child {
		margin-right: 12px;
	}

	.minMax input[type="text"]:last-child, .minMax input[type="number"]:last-child {
		margin-left: 10px;
	}

.minMax {
	font-size: 16px;
	color: #848484;
	font-weight: 400;
	vertical-align: middle;
	display: inline-block;
}

.fullWidth a {
	display: block;
	text-align: center;
	padding: 10px;
}

.filterBody .availabilitiesList ul li {
	float: left;
	width: 31.3%;
	margin-right: 3%;
	margin-bottom: 24px;
	box-shadow: 0 3px 20px -7px rgba(0,0,0,0.2);
}

.availabilitiesList ul li:nth-child(3n) {
	margin-right: 0;
}

.appDetails {
	display: block;
	padding: 20px;
	background-color: #fff;
	min-height: 160px;
}

.appName,
.appName a {
	font-size: 20px;
	color: #0c0c0c;
	font-weight: 900;
	margin-bottom: 15px;
}

	.appName a:hover {
		color: #d12060;
	}

.appPrice {
	font-size: 16px;
	color: #0c0c0c;
	font-weight: 900;
	margin-bottom: 15px;
}

.appSpecs {
	font-size: 16px;
	color: #565656;
	font-weight: 300;
	margin-bottom: 15px;
}

.stationLink {
	display: block;
	text-align: right;
}

	.stationLink a {
		display: inline-block;
		padding: 5px 15px;
		color: #fff;
		font-size: 12px;
		font-weight: 900;
		background-color: #d12060;
		border: 1px solid #d12060;
		text-transform: uppercase;
	}

		.stationLink a:hover {
			background-color: #ffffff;
			color: #d12060;
		}

.availabilitiesList h3 {
	font-size: 26px;
	font-weight: 300;
	color: #050505;
	display: block;
	margin-bottom: 20px;
}

h2.sectionTitle span {
	font-weight: 400;
}

.alsoLikeBlock ul li {
	float: left;
	width: 22.75%;
	margin-right: 3%;
	box-shadow: 0 3px 20px -7px rgba(0,0,0,0.2);
}

	.alsoLikeBlock ul li:nth-child(4n) {
		margin-right: 0;
	}

.textBlock {
	font-size: 0;
}

	.textBlock ul li {
		padding-left: 30px;
		position: relative;
		display: inline-block;
		width: 48%;
		margin-right: 4%;
		font-weight: 300;
		font-size: 20px;
		color: #565656;
		margin-bottom: 10px;
	}

		.textBlock ul li:nth-child(2n) {
			margin-right: 0;
		}

		.textBlock ul li:before {
			position: absolute;
			content: '';
			top: 12px;
			width: 15px;
			height: 2px;
			background-color: #d12060;
			left: 0;
		}

.appartmentDetails, .amenitiesBlock, .alsoLikeBlock {
	padding: 30px 0;
}

.alsoLikeBlock {
	padding: 30px 0 60px;
}

.facilitiesBlock .greyBlock {
	background-image: url(../images/facilities.jpg);
	background-position: right bottom;
	background-size: cover;
	padding: 50px 110px;
}

.greyBlock h2.sectionTitle {
	font-size: 50px;
}

	.greyBlock h2.sectionTitle:before {
		left: -110px;
		width: 75px;
		top: 32px;
	}

.facilitiesList {
	margin-bottom: 40px;
}

	.facilitiesList li {
		display: inline-block;
		width: 26%;
		padding-left: 45px;
		font-size: 19px;
		color: #000000;
		vertical-align: middle;
		position: relative;
	}

		.facilitiesList li:before {
			position: absolute;
			content: '';
			background-image: url(../images/facility.svg);
			left: 0;
			top: 50%;
			background-repeat: no-repeat;
			background-size: 100% 100%;
			width: 30px;
			height: 30px;
			transform: translateY(-50%);
		}

.appSlider {
	float: left;
	width: 49%;
	margin-right: 3%;
	box-shadow: 0 3px 20px -7px rgba(0,0,0,0.2);
}

.appInfo {
	float: left;
	width: 48%;
}

.swiper-wrapper {
	margin-bottom: 68px;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
	padding: 30px;
	background-color: #fff;
}

.swiper-slide img {
	width: 100%;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 0px;
	left: 0;
	width: 100%;
}

.swiper-pagination-bullet {
	width: 11px;
	height: 11px;
	background: #fff;
	opacity: 1;
	border: 1px solid #d12060;
	vertical-align: middle;
	position: relative;
}

.swiper-pagination-bullet-active {
	width: 20px;
	height: 20px;
}

	.swiper-pagination-bullet-active:after {
		width: 11px;
		height: 11px;
		background-color: #d12060;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		position: absolute;
		content: '';
		border-radius: 50%;
	}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 10px;
}

.swiper-pagination-bullet:first-child:before {
	position: absolute;
	content: '';
	width: 20px;
	height: 2px;
	background-color: #d12060;
	left: -40px;
	top: 5px;
}

.swiper-pagination-bullet:last-child:before {
	position: absolute;
	content: '';
	width: 20px;
	height: 2px;
	background-color: #d12060;
	right: -40px;
	top: 5px;
}

.swiper-pagination-bullet:first-child.swiper-pagination-bullet-active:before, .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active:before {
	top: 10px;
	height: 2px;
}



.appInfo .normalText {
	font-weight: 400;
}

.largePrice {
	color: #000000;
	font-size: 34px;
	display: block;
	margin-bottom: 30px;
}

.specsInfo ul {
	font-size: 0;
}

	.specsInfo ul li {
		display: inline-block;
		width: 48%;
		margin-right: 4%;
		margin-bottom: 20px;
	}

.specIcon {
	display: inline-block;
	vertical-align: middle;
	width: 30px;
	margin-right: 15px;
}

.specDetails {
	display: inline-block;
	vertical-align: middle;
}

span.smallTitle {
	display: block;
	color: #7f7f7f;
	font-size: 13px;
	font-weight: 300;
}

span.largeTitle {
	display: block;
	color: #0f0f0f;
	font-size: 18px;
	font-weight: 400;
}

.margLeft {
	margin-left: 20px;
}

.downLoadLinks {
	padding: 20px 0;
	margin: 10px 0 40px;
	border-top: 1px solid #cacaca;
	border-bottom: 1px solid #cacaca;
}

	.downLoadLinks ul li {
		display: inline-block;
		vertical-align: middle;
		margin-right: 60px;
	}

		.downLoadLinks ul li a {
			padding-left: 28px;
			font-size: 14px;
			color: #000000;
			position: relative;
		}

			.downLoadLinks ul li a:hover {
				color: #d12060;
			}

			.downLoadLinks ul li a:before {
				position: absolute;
				content: '';
				background-image: url(../images/download.svg);
				left: 0;
				top: 50%;
				background-repeat: no-repeat;
				background-size: 100% 100%;
				width: 20px;
				height: 20px;
				transform: translateY(-50%);
			}

.aboutUsBlock {
	position: relative;
	z-index: 9;
}

h1.mainPageTitle.inlineTitle {
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
}

.aboutUsBlock .projectCountry {
	position: relative;
	right: inherit;
	top: inherit;
}

.selectProjects {
	position: absolute;
	content: '';
	right: 20px;
	top: 30px;
}

	.selectProjects label {
		font-size: 15px;
		display: block;
		margin-bottom: 7px;
		color: #0f0f0f;
	}

.otherProjects {
	position: relative;
}

.chooseProject {
	display: block;
	border-bottom: 1px solid #000;
	position: relative;
	color: #0f0f0f;
	font-size: 17px;
	padding-bottom: 5px;
	cursor: pointer;
	font-weight: 300;
}

	.chooseProject:after {
		position: absolute;
		content: '';
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		background-image: url(../images/arrow-down.svg);
		width: 15px;
		height: 8px;
		background-size: 100% 100%;
		z-index: 1;
	}

.otherProjects ul {
	display: none;
	box-shadow: 0 3px 20px -7px rgba(0,0,0,0.2);
	background-color: #fff;
}

	.otherProjects ul li a {
		display: block;
		padding: 10px 15px;
		color: #000;
		font-size: 13px;
		font-weight: 400;
	}

		.otherProjects ul li a:hover {
			background-color: #d12060;
			color: #fff;
		}

.chooseProject.active:after {
	transform: rotate(180deg) translateY(50%);
}

.floorPlanHolder {
	background-color: #000;
	padding: 60px 0px;
	margin-bottom: 30px;
	min-height: 800px;
}

.projectProgress {
	padding: 60px 0;
}

.subBanner .swiper-slide {
	min-height: 350px;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
}

.subBanner .swiper-wrapper {
	margin-bottom: 80px;
}

.projectDetails.blackHolder {
	position: relative;
	right: 20px;
	top: 20px;
	margin-bottom: 40px;
	left: inherit;
	max-width: 400px;
	padding: 30px;
	background-color: rgba(0,0,0,0.7);
	float: right;
}

	.projectDetails.blackHolder .normalText.whiteText {
		font-size: 20px;
		margin-bottom: 40px;
	}

.projBannerDet ul li {
	font-size: 20px;
	display: block;
	width: 100%;
	padding-left: 50px;
	color: #fff;
	font-weight: 400;
	background-repeat: no-repeat;
	padding-bottom: 20px;
	border-bottom: 1px solid #ececec;
	margin-bottom: 20px;
}

	.projBannerDet ul li:last-child {
		border-bottom: none;
	}

	.projBannerDet ul li.location {
		background-image: url(../images/Whitepin.svg);
		background-size: auto 26px;
	}

	.projBannerDet ul li.floors {
		background-image: url(../images/floors.svg);
		background-size: auto 26px;
	}

	.projBannerDet ul li.units {
		background-image: url(../images/units.svg);
		background-size: auto 20px;
	}

	.projBannerDet ul li span {
		font-weight: 900;
	}

.projectDetails.blackHolder .moreBtn a {
	padding: 15px 27px;
}

.projectDetails.blackHolder .moreBtn {
	margin-bottom: 10px;
	font-size: 0;
}

.downloadBrochure a {
	display: block;
	width: 100%;
	text-align: center;
	padding: 15px;
	border: 1px solid #fff;
	background-color: transparent;
	color: #fff;
	font-weight: 900;
	font-size: 14px;
}

	.downloadBrochure a span {
		display: inline-block;
		background-image: url(../images/white-download.svg);
		margin-right: 10px;
		vertical-align: middle;
		width: 11px;
		height: 16px;
	}

	.downloadBrochure a:hover {
		background-color: #fff;
		color: #000;
	}

		.downloadBrochure a:hover span {
			background-image: url(../images/black-download.svg);
		}

.projectDetails.blackHolder .moreBtn a:first-child {
	margin-right: 18px;
}


.progresslLider .swiper-container {
	cursor: url(../images/drag.png) 60 60, move !important;
	overflow: visible;
}

.progresslLider .swiper-slide {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
	height: 500px;
}

	.progresslLider .swiper-slide .imgHolder:after {
		position: absolute;
		content: '';
		background-color: rgba(255,255,255,0.8);
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		right: 0;
		z-index: 9;
	}

	.progresslLider .swiper-slide .progressDetails {
		position: absolute;
		left: 30px;
		right: 30px;
		z-index: 99;
		bottom: 30px;
		opacity: 0;
	}

	.progresslLider .swiper-slide:hover .imgHolder:after {
		display: none;
	}

	.progresslLider .swiper-slide:hover .progressDetails {
		opacity: 1;
	}

.monthProgress {
	color: #fff;
	font-size: 50px;
	display: block;
}

.yearProgress {
	color: #fff;
	font-size: 34px;
	font-weight: 400;
	margin-bottom: 5px;
}

.descProgress {
	color: #fff;
	font-size: 20px;
	font-weight: 300;
}

.formRow
ul.stackedInput.radioList li label {
	font-size: 20px;
	color: #000;
}

.requestCall .formHolder select {
	height: auto;
	padding: 15px 0;
	font-size: 20px;
	border-bottom: 1px solid #000;
}

#inquireCall textarea {
	height: 100px;
}

.formRow .filterItem {
	margin-bottom: 0;
}

	.formRow .filterItem .stackedInput li {
		display: inline-block;
		margin-right: 40px;
	}

		.formRow .filterItem .stackedInput li:last-child {
			margin-right: 0;
		}

	.formRow .filterItem ul.stackedInput li label {
		font-size: 20px;
		color: #7d7d7d;
		opacity: 0.6;
	}

.floorPlanTabs .tabsLinks {
	float: right;
	margin-bottom: 0;
	margin-top: -100px;
}

	.floorPlanTabs .tabsLinks a {
		color: #494949;
		font-size: 16px;
		position: relative;
		margin-right: 40px;
		padding: 0;
	}

		.floorPlanTabs .tabsLinks a:last-child {
			margin-right: 0;
		}

		.floorPlanTabs .tabsLinks a span {
			display: inline-block;
			vertical-align: middle;
			font-weight: 300;
		}

			.floorPlanTabs .tabsLinks a span.number {
				font-size: 44px;
				font-weight: 900;
			}

		.floorPlanTabs .tabsLinks a.active, .floorPlanTabs .tabsLinks a:hover {
			color: #d12060;
		}

		.floorPlanTabs .tabsLinks a:after {
			position: absolute;
			content: '';
			top: 0;
			bottom: 0;
			right: -20px;
			width: 1px;
			height: 100%;
			background-color: #494949;
			transform: rotate(30deg);
		}

		.floorPlanTabs .tabsLinks a.active:after {
			background-color: #d12060;
		}

		.floorPlanTabs .tabsLinks a:last-child:after {
			display: none;
		}

.tab .swiper-wrapper {
	margin-bottom: 0;
}

.blockDetails {
	height: 600px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.blockDetails:after {
		position: absolute;
		z-index: 1;
		content: '';
		background-color: rgba(0,0,0,0.5);
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		right: 0;
	}

.blockSubTitle {
	color: #fff;
	font-size: 50px;
	text-align: center;
	position: relative;
	z-index: 2;
}

	.blockSubTitle span {
		font-size: 120px;
		display: block;
	}

.swiper-slide.checked .blockDetails:after, .swiper-slide:hover .blockDetails:after {
	background-color: rgba(209,32,96,0.8);
}

.gm-style .gm-style-iw-t::after {
	display: none;
}

.MarkerInfo .imgHolder {
	float: left;
	width: 30%;
	margin-right: 5%;
}

.workInfoList {
	float: left;
	width: 65%;
}

.gm-style .gm-style-iw-c {
	border-radius: 0;
	padding: 30px;
	width: 400px;
	box-shadow: 0 2px 7px 1px rgba(0,0,0,0.3);
	height: 220px;
}

.projectsTitle {
	color: #1c1c1c;
	font-size: 24px;
	font-weight: 900;
	display: block;
	margin-bottom: 10px;
}

.workInfoList .projectCountry {
	position: relative;
	right: inherit;
	top: inherit;
	display: block;
	margin-bottom: 20px;
}

.pinkBtn.readMore a {
	padding: 10px 20px;
}

.chooseFloor {
	position: relative;
}

	.chooseFloor .tootlTip {
		background-color: #ffffff;
		border: 1px solid #cecece;
		border-radius: 4px;
		padding: 12px;
		font-size: 12px;
		color: #4d4d4d;
		position: absolute;
		content: '';
		left: 20px;
		top: 20px;
		z-index: 2;
		font-weight: 400;
	}

.floorNumder {
	display: block;
	margin-bottom: 30px;
	font-size: 35px;
	color: #fff;
	font-weight: 900;
	float: left;
}

.availableApp {
	float: right;
}

	.availableApp ul li {
		display: inline-block;
		margin-right: 40px;
		vertical-align: middle;
	}

		.availableApp ul li span {
			color: #fff;
			font-size: 14px;
			font-weight: 900;
			position: relative;
			padding-left: 30px;
		}

			.availableApp ul li span.available:before {
				background-color: #5BC236;
			}

			.availableApp ul li span:before {
				width: 20px;
				height: 20px;
				position: absolute;
				left: 0;
				top: -2px;
				content: '';
			}

			.availableApp ul li span.soldOut:before {
				background-color: #4c4c4c;
			}

.specsInfo ul li:nth-child(2n), .downLoadLinks ul li:nth-child(2n) {
	margin-right: 0;
}

.mapHolder {
	width: 100%;
	height: 653px;
	display: block;
}

.norecord p {
	font-size: 16px;
	font-weight: 400;
	color: #000;
}

.ajaxloader {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	display: none;
	height: 100%;
	z-index: 4;
}

	.ajaxloader::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 64px;
		height: 64px;
		display: inline-block;
		background-image: url(../images/loader.svg);
		background-size: cover;
	}

.largeTitle.status {
	max-width: 170px;
}

.successmsg {
	color: #d12060;
	font-size: 18px;
	font-weight: 600;
}

.halfTextBlocks .halfBlock {
	float: left;
	width: 46%;
	margin-right: 8%;
}

	.halfTextBlocks .halfBlock.last {
		margin-right: 0;
	}

.contactForm label, .contactForm input[type="text"], .contactForm input[type="number"], .contactForm textarea {
	color: #fff;
}

.fullBanner h2.sectionTitle {
	margin-bottom: 0;
}

.projectItem.backgroundBlock .safeArea, .fullBanner .safeArea, .backgroundBlock .safeArea {
	width: 1400px;
}

.contactList ul li:last-child::after {
	display: none;
}

.careersForm {
	margin-top: 30px;
}

.subMenuLinks.selectHolder:after {
	display: none;
}

.floorSlider .swiper-slide {
	cursor: pointer;
}

.mainMenu {
	text-align: right;
	float: right;
}

.languageHolder {
	display: inline-block;
	margin-bottom: 10px;
	position: relative;
}

	.languageHolder ul {
		display: none;
		position: absolute;
		content: '';
		top: 100%;
		left: -20px;
		right: -20px;
		border: 1px solid rgba(0,0,0,0.1);
		padding: 10px;
		margin-top: 10px;
		background-color: #fff;
		z-index: 5;
	}

.mainMenu .languageHolder ul li a:after {
	display: none;
}

.languageHolder span {
	display: block;
	color: #000000;
	padding-right: 55px;
	position: relative;
	cursor: pointer;
	font-size: 15px;
}

	.languageHolder span:after {
		position: absolute;
		content: '';
		right: 0;
		top: 4px;
		background-image: url(../images/arrow-down.svg);
		width: 15px;
		height: 8px;
		background-size: 100% 100%;
		z-index: 1;
	}

	.languageHolder span.active:after {
		transform: rotate(180deg);
	}

.mainMenu .languageHolder ul li {
	margin-right: 0;
	display: block;
	margin-bottom: 10px;
}

	.mainMenu .languageHolder ul li:last-child {
		margin-bottom: 0;
	}

	.mainMenu .languageHolder ul li a {
		display: block;
		padding: 0;
		text-align: left;
	}

.progresslLider .swiper-slide .imgHolder {
	height: 500px;
	display: flex;
	align-items: center;
}

.listIcon img {
	max-height: 65px;
}

.latestOffers .offersList ul li {
	opacity: 0;
	transform: translateY(100px);
	transition-property: opacity, transform;
	transition-duration: .4s;
	transition-timing-function: cubic-bezier(.445, .05, .55, .95);
	transition-delay: 0;
	transition-timing-function: ease;
}

	.latestOffers .offersList ul li:nth-child(2n) {
		transform: translateY(-100px);
	}

.latestOffers.active .offersList ul li {
	opacity: 1;
	transform: translate(0);
	transition-delay: .2s;
}

.workInfoList .projectCountry span.flag {
	width: 30px;
	height: 30px;
}

	.workInfoList .projectCountry span.flag img {
		width: 20px;
		height: 20px;
	}

.workInfoList .pinkBtn a {
	font-size: 12px;
}

.progresslLider .swiper-slide .imgHolder img {
	display: block !important;
	min-height: 500px;
}

.projectProgressAlbum {
	display: none;
}

.projectsList ul li:nth-child(1), .projectsList ul li:nth-child(3) {
	z-index: 9;
}

.projectsList ul li:nth-child(4) {
	z-index: 7;
}

.backgroundBlock .blackHolder {
	opacity: 0;
	transition-property: opacity, transform;
	transform: translate(-100px);
	transition-duration: .4s;
	transition-timing-function: cubic-bezier(.445, .05, .55, .95);
	transition-delay: 0;
	transition-timing-function: ease;
}

.backgroundBlock h2.sectionTitle {
	opacity: 0;
	transition-property: opacity, transform;
	transform: translate(-100px);
	transition-duration: .5s;
	transition-timing-function: cubic-bezier(.445, .05, .55, .95);
	transition-delay: 0;
	transition-timing-function: ease;
}

.backgroundBlock .normalText.whiteText {
	opacity: 0;
	transition-property: opacity, transform;
	transform: translate(-100px);
	transition-duration: .6s;
	transition-timing-function: cubic-bezier(.445, .05, .55, .95);
	transition-delay: 0;
	transition-timing-function: ease;
}

.backgroundBlock .blackHolder .moreBtn {
	opacity: 0;
	transition-property: opacity, transform;
	transform: translate(-100px);
	transition-duration: .7s;
	transition-timing-function: cubic-bezier(.445, .05, .55, .95);
	transition-delay: 0;
	transition-timing-function: ease;
}

.backgroundBlock.active .blackHolder, .backgroundBlock.active h2.sectionTitle, .backgroundBlock.active .normalText.whiteText, .backgroundBlock.active .blackHolder .moreBtn {
	opacity: 1;
	transform: translate(0);
	transition-delay: .2s;
}

.inlineTitle {
	display: inline-block;
	vertical-align: middle;
}




a, img, .mainMenu ul li a:after, .formAction input, .blockDetails::after, .searchAction input, .fileUpload, .uploadValue:after, .projectsList ul li .projectInfo, .projectsList ul li .moreBtn, a.whatsappBtn, .backLink a:before, .filterTtile:before, .chooseProject:after {
	transition: all linear 200ms;
	-moz-transition: all linear 200ms;
	-webkit-transition: all linear 200ms;
	-ms-transition: all linear 200ms;
}

.availabilitiesList ul {
	display: block;
	float: left;
}

.availabilitiesList .loadmoreHolder {
	position: absolute;
	text-align: center;
	margin: 0 auto;
	padding-top: 20px;
	bottom: -38px;
	left: 38%;
}

	.availabilitiesList .loadmoreHolder a {
		padding: 5px 15px;
		color: #fff;
		font-size: 12px;
		font-weight: 900;
		background-color: #d12060;
		border: 1px solid #d12060;
		text-transform: uppercase;
	}

		.availabilitiesList .loadmoreHolder a:hover {
			background-color: #ffffff;
			color: #d12060;
		}
.Addbold li a {
	font-weight: 800 !important;
}
.mapster_tooltip {
	border: 1px solid #cecece !important;
	background-color: #cecece !important;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 12px !important;
	box-shadow:initial !important;

}