@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Luxurious+Script&family=Praise&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
	--creamed7: #E9E7D7;
	--white: #fff;
	--black: #000;
	--dark-brown: #403F3A;
	--light-green: #607937;
	--sea-blue: #375E79;
	--persian-blinds: #E2DFCA;
	--broadwater-blue: #034E6D;
	--fresco-blue: #034763;
	--orange: #D2863A;
	--bluey: #375E79;
	--purple: #564B9C;
	--pastel: #EDEBDE;
}

:is(h1, h2, h3, h4, h5, h6, p) {
	margin: 0px;
	height: fit-content;
	text-align: left;
}

input[type="search"]::-webkit-search-cancel-button {
	display: none;
}

img {
	user-select: none;
}

a {
	text-decoration: none;
}

ul {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}

button {
	background-color: transparent;
	outline: none;
	border: none;
}

body {
	min-height: 100vh;
	text-align: left;
	scroll-behavior: smooth;
	background-color: var(--creamed7);
	/* font-family: 'Fb Joker'; */
	font-family: "Lato";
	/* overflow-x: hidden; */
}

.row {
	padding: 0;
	margin: 0;
}

/******************* COMPONENTS *********************/
.eng-family {
	font-family: 'Lato';
}

.heading h2 {
	color: var(--dark-brown);
	text-align: center;
	font-size: 54px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: -1.28px;
}

.heading h3 {
	color: var(--dark-brown);
	font-size: 35px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: -0.8px;
}

.heading h2.contact {
	text-align: left;
}

.heading h2.contact,
.heading h4 {
	color: #272D30;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px;
	letter-spacing: -0.8px;
}

.in-project {
	color: var(--white);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: -0.12px;
	background-color: var(--light-green);
	border-radius: 4444px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 0 20px;
	padding-top: 1px;
}

.in-sold {
	color: var(--white);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: -0.12px;
	background-color: var(--orange);
	border-radius: 4444px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 0 20px;
	padding-top: 1px;
}

.in-construction {
	color: var(--white);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: -0.12px;
	background-color: var(--bluey);
	border-radius: 4444px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 0 20px;
	padding-top: 1px;
}

.in-occupied {
	color: var(--white);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: -0.12px;
	background-color: var(--purple);
	border-radius: 4444px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 0 20px;
	padding-top: 1px;
}

.in-project img,
.in-sold img,
.in-construction img,
.in-occupied img {
	animation: mover 1s infinite alternate;
}


@keyframes mover {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

li.menu-contact-button {
	display: none;
}


/********************** HEADER ***********************/

header.shadow {
	animation: header 1s forwards 1;
}

@keyframes header {
	from {
		top: -50%;
	}

	to {
		top: 0%;
	}
}

header {
	position: sticky;
	top: 0;
	z-index: 999;
	transition: 0.3s;
}

header .bg-color {
	background-color: var(--fresco-blue);
	padding: 10px 40px;
	height: 72px;
	display: flex;
	align-items: center;
}

header .container-fluidss {
	max-width: 1140px;
	width: 100%;
	margin: auto;
}

header .header-flx {
	display: flex;
	align-items: center;
	gap: 56px;
}

header .header-flx .main-logo img {
	width: 136px;
	height: 22px;
}

header .header-flx nav {
	max-width: 586px;
	width: 100%;
}

header .header-flx nav ul {
	display: flex;
	align-items: center;
	gap: 26px;
}

header .header-flx nav ul li a {
	color: var(--pastel);
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	transition: 0.5s;
	padding: 5px 7px;
	/* padding-bottom: 0; */
	border-radius: 14px;
}

header .header-flx nav ul li:hover a {
	color: var(--fresco-blue);
	background-color: var(--pastel);
}

header .header-flx nav ul li.current-menu-item a {
	color: var(--fresco-blue);
	background-color: var(--pastel);
	font-weight: 700;
}

header .header-flx .social-icons {
	display: flex;
	gap: 24px;
	align-items: center;
}

header .header-flx .social-icons .social {
	display: flex;
	gap: 9px;
}

header .header-flx .social-icons .btn.leave-detail {
	color: var(--fresco-blue);
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: -0.18px;
	background-color: var(--pastel);
	height: 40px;
	display: flex;
	align-items: center;
	padding: 0 24px;
	border-radius: 0;
	transition: 0.3s;
}

/********************** HOME HERO SECTION *************************/


.home-hero-section .hero-section-slider .img {
	width: 100%;
	height: 748px;
}

.home-hero-section .hero-section-slider .img video,
.home-hero-section .hero-section-slider .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero-section .hero-section-slider .slick-arrow {
	display: none !important;
}

.home-hero-section .hero-section-slider {
	margin: 0;
}

.home-hero-section .hero-section-slider .slick-dots {
	display: inline-flex !important;
	justify-content: end;
	align-items: center;
	list-style: none;
	margin-top: 20px;
	bottom: 66px;
	gap: 12px;
	max-width: 1140px;
	margin: auto;
	left: 0;
	right: 0;
	z-index: 1;
}

.home-hero-section .hero-section-slider .slick-dots li {
	width: 105px;
	height: 4px;
	margin: 0;
	border-radius: 44444px;
	background: rgba(255, 255, 255, 0.25);
	position: relative;
}

.home-hero-section .hero-section-slider .slick-dots li.slick-active {
	background: rgba(255, 255, 255, 0.80);
	overflow: hidden;
}

.home-hero-section {
	position: relative;
}

.home-hero-section .container-fluidss {
	max-width: 1140px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 620px;
}

.home-hero-section .container-fluidss .hero-flx {
	display: flex;
	flex-direction: column;
	/* gap: 220px; */
	height: 100%;
	justify-content: space-between;
}

.home-hero-section .container-fluidss .hero-flx h1 {
	color: var(--white);
	font-size: 94px;
	font-style: normal;
	font-weight: 400;
	line-height: 88px;
	letter-spacing: -1.88px;
}

.home-hero-section .container-fluidss .hero-flx .upper-content p {
	color: var(--white);
	text-align: left;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.home-hero-section .container-fluidss .hero-flx .upper-content {
	max-width: 650px;
}

.home-hero-section .container-fluidss .hero-flx .upper-content .central-btn {
	color: var(--white);
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;

	border: 1px solid #FFF;
	background: rgba(255, 255, 255, 0.15);
	height: 48px;
	display: inline-flex;
	align-items: center;
	padding: 0 31px;
	margin-top: 32px;
}

.home-hero-section .container-fluidss .hero-flx .down-content p {
	color: rgba(255, 255, 255, 0.74);
	font-family: "Fb SpoilerPas";
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}

.dreams-comes-true {
	margin-top: 80px;
}

.dreams-comes-true .container-fluidss {
	max-width: 1200px;
	margin: auto;
}

.dreams-comes-true .text {
	max-width: 1199px;
	margin: auto;
	margin-top: 16px;
}

.dreams-comes-true .text p {
	color: var(--dark-brown);
	text-align: center;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
}

.project-marketing {
	margin-top: 40px;
}

.project-marketing .container-fluidss {
	max-width: 1199px;
	margin: auto;
}

.project-marketing .project-marketing-slider {
	margin-top: 40px;
}

.project-marketing .project-marketing-slider .project-slider .img {
	height: 642px;
	width: 100%;
	border-radius: 0px 0px 0px 0px;
	overflow: hidden;
}

.project-marketing .project-marketing-slider .project-slider .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-marketing .project-marketing-slider .project-slider .slick-arrow ,.project-marketing-slider .slick-arrow{
	width: 48px;
	height: 48px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #E2DFCB;
	z-index: 9;
}
.home .project-marketing-slider .slick-arrow{top: 320px !important;}
.home .project-marketing .project-marketing-slider .project-slider .slick-arrow {display: none !important;}
.project-marketing .project-marketing-slider .project-slider .slick-next,.project-marketing-slider .slick-next {
	right: 35px;
}

.project-marketing .project-marketing-slider .project-slider .slick-prev,.project-marketing-slider .slick-prev{
	left: 35px;
}

.project-marketing .project-marketing-slider .project-slider .slick-next::before ,.project-marketing-slider .slick-next:before{
	content: "";
	background: url('../images/slider-arrow-r.svg') no-repeat center;
	background-size: cover;
	width: 9.75px;
	height: 19.5px;
	margin: auto;
}

.project-marketing .project-marketing-slider .project-slider .slick-prev::before ,.project-marketing-slider .slick-prev:before{
	content: "";
	background: url('../images/slider-arrow-l.svg') no-repeat center;
	background-size: cover;
	width: 9.75px;
	height: 19.5px;
	margin: auto;
}

.project-marketing .project-marketing-slider .project-slider .project-detail {
	border-radius: 0px 0px 12px 12px;
	border: 1px solid #403F3A;
	border-top: none;
	background-color: #E9E7D7;
	padding: 32px 40px;
}

.project-marketing .project-marketing-slider .project-slider .project-detail .heading h3 span {
	font-family: 'Lato';
}

.project-marketing .project-marketing-slider .project-slider .project-detail p {
	color: var(--dark-brown);
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	margin-top: 12px;
	margin-bottom: -6px;
}

.project-marketing .project-marketing-slider .project-slider .project-detail .btn-view-project {
	border: 1px solid #403F3A;
	max-width: 177px;
	width: 100%;
	height: 48px;
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: center;
	gap: 16px;
	color: #403F3A;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	line-height: normal;
}

.project-marketing .project-marketing-slider .project-slider .project-detail .btn-view-project img {
	transform: rotate(180deg);
}

.project-marketing .project-marketing-slider .project-slider .project-detail .proj-flx {
	display: flex;
	gap: 12px;
	align-items: end;
}

.project-marketing .project-marketing-slider .project-slider .project-detail .proj-flx .col img {
	width: 4px;
	height: 4px;
	object-fit: cover;
	margin-top: -1px;
}

.project-marketing .project-marketing-slider .project-slider.project-slider-2 {
	
}

.project-category-cards {
	margin-top: 72px;
}

.project-category-cards .container-fluidss {
	max-width: 1180px;
	margin: auto;
}

.project-category-cards .cate-flx {
	display: flex;
	gap: 20px;
}

.project-category-cards .cate-flx .col {
	border-radius: 16px;
	background-color: var(--persian-blinds);

	padding: 40px 24px;
	min-height: 302px;
}

.project-category-cards .cate-flx .col .img {
	max-width: 72px;
	width: 100%;
	height: 72px;
	margin: auto;

	background-color: #D3D0B5;
	border-radius: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
}

.project-category-cards .cate-flx .col .text {
	margin-top: 24px;
}

.project-category-cards .cate-flx .col .text h4 {
	color: var(--dark-brown);
	text-align: center;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: -0.56px;
}

.project-category-cards .cate-flx .col .text h4.eng-family {
	font-size: 24px;
	letter-spacing: -0.48px;
}

.project-category-cards .cate-flx .col .text p {
	color: var(--dark-brown);
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	margin-top: 6px;
}

.Get-to-know-Halkidiki {
	margin-top: 64px;
}

.Get-to-know-Halkidiki .container-fluidss {
	max-width: 1200px;
	margin: auto;
}

.Get-to-know-Halkidiki .heading p {
	color: var(--dark-brown);
	text-align: center;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	margin-top: 12px;
}

.Get-to-know-Halkidiki .bg-color {
	background-color: var(--persian-blinds);
	border-radius: 12px;
	padding: 24px;
	margin-top: 60px;
}

.Get-to-know-Halkidiki .halkidiki-slider .halkidiki-for .slick-slide {
	width: 100%;
	height: 641px;
	border-radius: 0px;
	overflow: hidden;
}

.Get-to-know-Halkidiki .halkidiki-slider .halkidiki-for .slick-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.Get-to-know-Halkidiki .halkidiki-slider .halkidiki-for .slick-slide .expand-icon {
	width: 56px;
	height: 56px;
}

.Get-to-know-Halkidiki .halkidiki-slider .halkidiki-for .slick-slide a {
	position: absolute;
	top: 23px;
	left: 23px;
}

.Get-to-know-Halkidiki .halkidiki-slider .halkidiki-nav {
	max-width: 1074px;
	margin: auto;
	margin-top: 24px;
}

.Get-to-know-Halkidiki .halkidiki-slider .halkidiki-nav .slick-slide {
	max-width: 197px;
	width: 100%;
	height: 184px;
	border-radius: 0px;
	overflow: hidden;
}

.Get-to-know-Halkidiki .halkidiki-slider .halkidiki-nav .slick-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.Get-to-know-Halkidiki .halkidiki-slider .halkidiki-nav .slick-track {
	display: flex;
	gap: 20px;
}

.Get-to-know-Halkidiki .halkidiki-slider .halkidiki-nav .slick-arrow {
	width: 32px;
	height: 32px;
	background-color: var(--creamed7);
	border-radius: 100%;
}

.Get-to-know-Halkidiki .halkidiki-slider .halkidiki-nav .slick-prev::before {
	content: "";
	background: url('../images/pro-arrow-left.svg') no-repeat center;
	background-size: cover;
	display: inline-block;
	width: 8.5px;
	height: 13px;
}

.Get-to-know-Halkidiki .halkidiki-slider .halkidiki-nav .slick-next::before {
	content: "";
	background: url('../images/pro-arrow-right.svg') no-repeat center;
	background-size: cover;
	display: inline-block;
	width: 8.5px;
	height: 13px;
}

.Get-to-know-Halkidiki .halkidiki-slider .halkidiki-nav .slick-prev {
	left: -38px;
}

.Get-to-know-Halkidiki .halkidiki-slider .halkidiki-nav .slick-next {
	right: -38px;
}

.home-information-center {
	margin-top: 60px;
}

.home-information-center .container-fluidss {
	max-width: 1180px;
	margin: auto;
}

.home-information-center .heading h2 {
	margin-bottom: 16px;
}

.home-information-center .heading p {
	color: var(--dark-brown);
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	/* margin-top: 16px; */
}

.home-information-center .info-flx {
	margin-top: 48px;
	display: flex;
	gap: 32px;
}

.home-information-center .info-flx .col {
	max-width: 372px;
	width: 100%;
	height: auto;
	background-color: var(--persian-blinds);
}

.home-information-center .info-flx .col .img {
	width: 100%;
	height: 279px;
}

.home-information-center .info-flx .col .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-information-center .info-flx .text {
	padding: 16px;
}

.home-information-center .info-flx .text h4 {
	color: var(--dark-brown);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: -0.48px;
}

.home-information-center .info-flx .text p {
	color: var(--dark-brown);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin-top: 8px;
	min-height: 121px;
}

.home-information-center .info-flx .text .read-more {
	color: var(--dark-brown);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;

	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0;
	margin-top: 16px;
}

.home-information-center .info-flx .text .read-more img {
	transform: rotate(180deg);
}

.home-faq {
	margin-top: 120px;
}

.home-faq .bg-color {
	background-color: #034E6D;
	padding: 80px 40px;
}

.home-faq .container-fluidss {
	max-width: 1180px;
	margin: auto;
}

.home-faq .heading h2 {
	color: #E4F2F7;
	text-align: center;
	font-size: 56px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: -1.12px;
}

.home-faq .accordion {
	margin-top: 40px;
	margin-top: 12px;
}

.home-faq .accordion .accordion-item {
	background: transparent;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #E4F2F7;
}

.home-faq .accordion .accordion-item .accordion-button.collapsed {
	background: unset;
	padding: 16px 0;
	padding-bottom: 8px;
	border-radius: 0;
	box-shadow: none;

	color: #E4F2F7;
	font-size: 24px;
	text-align: left;
	font-style: normal;
	font-weight: 400;
	line-height: 36px;
}

.home-faq .accordion .accordion-item .accordion-header {
	padding-top: 12px;
}

.home-faq .accordion .accordion-item .accordion-button {
	background: unset;
	padding: 12px 0;
	padding-bottom: 8px;
	border-radius: 0;
	box-shadow: none;

	color: #E4F2F7;
	font-size: 24px;
	text-align: left;
	font-style: normal;
	font-weight: 700;
	line-height: 36px;
}

.home-faq .accordion .accordion-item .accordion-button:not(.collapsed)::after {
	content: "";
	background: url('../images/subs-icon.svg') no-repeat center;
	background-size: cover;
	display: inline-block;
	width: 32px;
	height: 32px;
}

.home-faq .accordion .accordion-item .accordion-button::after {
	content: "";
	background: url('../images/add-icon.svg') no-repeat center;
	background-size: cover;
	display: inline-block;
	width: 32px;
	height: 32px;
	position: absolute;
	right: 0;
	transform: unset;
}

.home-faq .accordion .accordion-item .accordion-body {
	padding: 4px 0px;
	padding-bottom: 8px;
}

.home-faq .accordion .accordion-item .accordion-body p {
	color: #E4F2F7;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
}

footer .bg-color {
	background-color: var(--fresco-blue);
	padding: 44px 40px;
	padding-bottom: 0;
}

footer .container-fluidss {
	max-width: 1140px;
	margin: auto;
}

footer .top-footer .footer-flx {
	display: flex;
}

footer .top-footer .footer-flx .footer-logo {
	max-width: 546px;
	width: 100%;
}

footer .top-footer .footer-flx .footer-logo .img img {
	width: 148px;
	height: 24px;
}

footer .top-footer .footer-flx .footer-logo p {
	color: var(--white);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 110%;
	margin-top: 24px;
	max-width: 350px;
}

footer .top-footer .footer-flx .footer-logo .mail-tell {
	border-radius: 24px;
	background: var(--broadwater-blue);

	max-width: 330px;
	height: 39px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

footer .top-footer .footer-flx .footer-logo .mail-tell .mail {
	color: var(--white);
	font-family: 'Assistant';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;

	border-right: 1px solid #045577;
	padding-right: 12px;
	margin-right: 12px;
}

footer .top-footer .footer-flx .footer-logo .mail-tell .tell {
	color: var(--white);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	margin-bottom: -4px;
}

footer .top-footer .footer-flx .widget-menu {
	width: 100%;
}

footer .top-footer .footer-flx .widget-menu .menu-flx {
	display: flex;
	gap: 32px;
}

footer .top-footer .footer-flx .widget-menu .menu-flx .site,
footer .top-footer .footer-flx .widget-menu .menu-flx .project {
	max-width: 140px;
	width: 100%;
}

footer .top-footer .footer-flx .widget-menu .menu-flx .col a,
footer .top-footer .footer-flx .widget-menu .menu-flx .col ul li {
	color: var(--white);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}

footer .top-footer .footer-flx .widget-menu .menu-flx .col ul {
	margin-top: 12px;
}

footer .top-footer .footer-flx .widget-menu .menu-flx .col h4 {
	color: var(--white);
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
}

footer .top-footer .footer-flx .widget-menu .menu-flx .project a {
	color: var(--white);
	font-family: 'Assistant';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}

footer .top-footer .footer-flx .widget-menu .menu-flx .col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

footer .footer-social {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 20px 0;
	margin-top: 32px;
	border-top: 1px solid #034E6D;
	border-bottom: 1px solid #034E6D;
}

footer .footer-social p {
	color: var(--white);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}

footer .footer-social .social-icon {
	display: flex;
	gap: 10px;
	margin-left: 20px;
}

footer .general-text {
	padding: 16px 0;
	border-bottom: 1px solid #034E6D;
}

footer .general-text h4 {
	color: var(--white);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}

footer .general-text p {
	color: var(--white);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin-top: 4px;
}

footer .bottom-footer {
	padding: 16px 0;
}

footer .bottom-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

footer .bottom-footer .term-condition {
	display: flex;
	align-items: center;
	gap: 16px;
}

footer .bottom-footer .term-condition a {
	color: var(--white);
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px;
	text-decoration-line: underline;
}

footer .bottom-footer p {
	color: var(--white);
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px;
}

footer .footer-design {
	width: 100%;
	height: 55px;
}

footer .footer-design img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*************************** PROJECT - PAGE ******************************/

.project-hero .hero-img {
	width: 100%;
	height: 714px;
}

.project-hero .hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-hero {
	position: relative;
}

.project-hero .container-fluidss {
	max-width: 1199px;
	margin: auto;

	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
}

.project-hero h1 {
	color: var(--white);
	font-family: "Lato";
	font-size: 124px;
	font-style: normal;
	font-weight: 700;
	line-height: 0.7em;
	letter-spacing: -1.12px;
	margin-top: 12px;
}

.project-hero p {
	color: var(--white);
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px;
	letter-spacing: -0.56px;
}

.project-hero .in-project,
.project-hero .in-sold,
.project-hero .in-construction,
.project-hero .in-occupied {
	height: 32px;
	font-size: 16px;
	letter-spacing: -0.18px;
	padding: 0 25px;
}

.project-category .bg-color {
	background-color: #034059;
	padding: 48px 17.725px 40px 17.725px;
}

.project-category .container-fluidss {
	max-width: 1140px;
	margin: auto;
}

.project-category .proj-flx {
	display: flex;
	gap: 24px;
}

.project-category .proj-flx .col {
	max-width: 142px;
	width: 100%;
}

.project-category .proj-flx .col .img {
	width: 100%;
	height: 128px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #044E6D;
	border-radius: 4px;
	margin-bottom: 15px;
}

.project-category .proj-flx .col p {
	color: var(--white);
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	letter-spacing: -0.48px;
	margin-top: 7px;
}

.about-project .bg-color {
	background-color: #044E6D;
}

.about-project .about-flx {
	display: flex;
	align-items: center;
	min-height: 798px;
	justify-content: space-between;
}

.about-project .about-flx .about-img {
	max-width: 836px;
	width: 100%;
	height: 798px;
}

.about-project .about-flx .about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-project .about-flx .text-wrapper {
	max-width: 613px;
	margin: auto;
}

.about-project .about-flx .text-wrapper h4 {
	color: #F4F3EB;
	font-size: 46px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -1.12px;
}

.about-project .about-flx .text-wrapper p {
	color: #F4F3EB;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
}

.about-project .about-flx .text-wrapper .text {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.project-related-imgs .Get-to-know-Halkidiki {
	margin-top: 0;
}

.project-related-imgs {
	margin-top: 56px;
}

.project-related-imgs .Get-to-know-Halkidiki .container-fluidss {
	max-width: 1140px;
}

.project-related-imgs .Get-to-know-Halkidiki .halkidiki-slider .halkidiki-nav .slick-track {
	display: flex;
	gap: 16px;
}

.project-related-imgs .Get-to-know-Halkidiki .halkidiki-slider .halkidiki-nav .slick-slide {
	max-width: 183px;
	width: 100%;
	height: 170px;
	border-radius: 0;
}

.project-related-imgs .Get-to-know-Halkidiki .halkidiki-slider .halkidiki-nav {
	max-width: 983px;
	margin: auto;
	margin-top: 24px;
}

.project-related-imgs .Get-to-know-Halkidiki .bg-color {
	margin-top: 0;
	background-color: var(--pastel);
}

body.project-page {
	background-color: #F4F3EB;
}

.project-related-imgs .Get-to-know-Halkidiki .halkidiki-slider .halkidiki-for .slick-slide {
	width: 100%;
	height: 605px;
	border-radius: 0;
	overflow: hidden;
}

.project-related-imgs .proj-related-text {
	margin-top: 24px;
}

.project-related-imgs .proj-related-text p {
	color: var(--dark-brown);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
}

.project-related-imgs .Get-to-know-Halkidiki .halkidiki-slider .halkidiki-nav .slick-next {
	background-color: #E2DFCB;
}

.project-about-area {
	margin-top: 40px;
}

.project-about-area .container-fluidss {
	max-width: 1140px;
	margin: auto;
}

.project-about-area .text p {
	color: #272D30;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	margin-top: 12px;
}

.project-about-area .about-area-imgs {
	margin-top: 48px;
}

.project-about-area .about-area-imgs .img {
	height: 287px;
	position: relative;
}

.project-about-area .about-area-imgs .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-about-area .about-area-imgs .img img.expand-icon {
	position: absolute;
	width: 45px;
	height: 45px;
	left: 10px;
	top: 10px;
	object-fit: contain;
}

.project-about-area .about-area-imgs .slick-track {
	display: flex;
	gap: 24px;
}

.project-about-area .about-area-imgs .bg-color {
	background-color: var(--pastel);
	padding: 24px;
	border-radius: 12px;
}

.project-about-area .about-area-imgs .about-slider {
	max-width: 978px;
	margin: auto;
}

.project-about-area .about-area-imgs .about-slider {
	max-width: 1002px;
	margin: auto;
}

.project-about-area .about-area-imgs .about-slider .slick-arrow {
	background-color: #E2DFCB;
	border-radius: 100%;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.project-about-area .about-area-imgs .about-slider .slick-prev::before {
	content: "";
	position: absolute;
	display: inline-block;
	background: url('../images/slider-arrow-l.svg') no-repeat center;
	background-size: cover;
	width: 6.5px;
	height: 13px;
}

.project-about-area .about-area-imgs .about-slider .slick-next::before {
	content: "";
	position: absolute;
	display: inline-block;
	background: url('../images/slider-arrow-r.svg') no-repeat center;
	background-size: cover;
	width: 6.5px;
	height: 13px;
}

.project-about-area .about-area-imgs .about-slider .slick-next {
	right: -31px;
}

.project-about-area .about-area-imgs .about-slider .slick-prev {
	left: -31px;
}

.project-on-map {
	margin-top: 35px;
}

.project-on-map .container-fluidss {
	max-width: 1140px;
	margin: auto;
}

.project-on-map .map-iframe {
	margin-top: 24px;
}

.project-on-map .map-iframe iframe {
	width: 100%;
	height: 472px;
}

.extra-text-area {
	margin-top: 48px;
}

.extra-text-area .container-fluidss {
	max-width: 1140px;
	margin: auto;
}

.extra-text-area h4 {
	color: #272D30;
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px;
	letter-spacing: -0.64px;
}

.extra-text-area p {
	color: #272D30;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	margin-top: 8px;
}

.project-form {
	margin-top: 72px;
	margin-bottom: 68px;
}

.project-form .container-fluidss {
	max-width: 1140px;
	margin: auto;
}

.project-form .bg-color {
	border: 1px solid #034763;
	background: #EDEBDE;
	padding: 32px 44px;
	position: relative;
}

.project-form .bg-color::after {
	content: "";
	position: absolute;
	display: inline-block;
	background: url('../images/flower-icon.svg') no-repeat center;
	background-size: cover;
	width: 97.406px;
	height: 94.702px;
	top: -51px;
	left: -41px;
	visibility: hidden;
}

.project-form .heading h4 {
	text-align: center;
	font-weight: 700;
	color: #034763;
}

.project-form form {
	margin-top: 24px;
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	flex-direction: row-reverse;
}

.project-form form .inp-flx {
	display: flex;
	gap: 20px;
	max-width: 777px;
	width: 100%;
}

.project-form form input {
	width: 100%;
	border: none;
	background-color: unset;
	outline: none;
	border-bottom: 1px solid #034763;
	height: 56px;
	color: #034763;
	font-size: 16px;
	text-align: left;
	font-style: normal;
	font-weight: 400;
	line-height: 56px;
}

.project-form form input::placeholder {
	color: #034763;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 56px;
}

.send-detail {
	max-width: 243px;
	width: 100%;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #045577;
	border-radius: 0;

	color: var(--white);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 56px;
}

/************************* TERM OR USE *****************************/
.term-use-heading .bg-img {
	background: url('../images/term-bg.png') no-repeat center;
	background-size: cover;
	width: 100%;
	height: 144px;
	padding: 32px 40px;
}

.term-use-heading .container-fluidss {
	max-width: 1140px;
	width: 100%;
	margin: auto;
}

.term-use-heading .breadcrumb a {
	color: #272D30;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: flex;
	align-items: center;
	gap: 6px;
}

.term-use-heading .breadcrumb a img {
	width: 20px;
	height: 20px;
	object-fit: scale-down;
	transform: rotate(180deg);
}

.term-use-heading h1 {
	color: #272D30;
	font-size: 46px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px;
	letter-spacing: -1.12px;
}

.term-content {
	margin: 56px 0;
}

.term-content .container-fluidss {
	max-width: 1140px;
	margin: auto;
}

.term-content h4 {
	color: #272D30;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: -0.8px;
}

.term-content h5 {
	color: #272D30;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: -0.48px;
	margin-top: 12px;
	margin-bottom: -23px;
}

/* .term-content .text {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 30px;
} */

.term-content p {
	color: #272D30;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	margin-top: 30px;
}

.info-center-page .home-information-center {
	margin: 0;
}

.info-center-page .home-information-center .info-flx {
	margin: 0;
}

.info-center-page {
	margin: 56px 0;
	margin-bottom: 68px;
}

.info-center-page .home-information-center .container-fluidss {
	max-width: 1140px;
}

.info-center-page .home-information-center .info-flx .col {
	max-width: 359px;
	width: 100%;
	height: auto;
	background-color: var(--pastel);
}

/******************* CONTACT PAGE ********************/
.contact-form-detail {
	margin: 56px 0;
	margin-bottom: 68px;
}

.contact-form-detail .container-fluidss {
	max-width: 1140px;
	margin: auto;
}

.contact-form-detail .contact-flx {
	display: flex;
	gap: 56px;
}

.contact-form-detail .contact-flx .contact-detail {
	max-width: 538px;
}

.contact-form-detail .contact-flx .contact-detail p {
	color: #272D30;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	margin-top: 12px;
}

.contact-form-detail .contact-flx .contact-detail .contact-link {
	display: flex;
	gap: 44px;
	margin-top: 24px;
}

.contact-form-detail .contact-flx .contact-detail .contact-link .img {
	width: 24px;
	height: 24px;
	background-color: #045577;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-form-detail .contact-flx .contact-detail .contact-link a {
	display: flex;
	gap: 16px;
	align-items: center;
	color: #272D30;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
}

.contact-form-detail .contact-flx .contact-detail .contact-link a.mail {
	font-family: 'Assistant';
	font-size: 20px;
}

.contact-form-detail .contact-flx .contact-detail .contact-link .col1 {
	max-width: 154px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-form-detail .contact-flx .contact-detail .contact-link .col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-form-detail .contact-flx .contact-detail .main-img {
	width: 100%;
	height: 236px;
	margin-top: 28px;
}

.contact-form-detail .contact-flx .contact-detail .main-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-form-detail .contact-flx .contact-form .bg-color {
	min-height: 340px;
	border-radius: 4px;
	border: 1px solid #045577;
	background: var(--pastel);

	padding: 32px 44px;
}

.contact-form-detail .contact-flx .contact-form .heading h4 {
	font-weight: 700;
	color: #034763;
}

.contact-form-detail .contact-flx .contact-form form {
	margin-top: 24px;
}

.contact-form-detail .contact-flx .contact-form form .inp-flx {
	display: flex;
	gap: 20px;
}

.contact-form-detail .contact-flx .contact-form form input {
	height: 56px;
	display: flex;
	align-items: center;

	color: #034763;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 56px;

	border: none;
	width: 100%;
	outline: none;
	background-color: transparent;
	border-bottom: 1px solid #034763;
}

.contact-form-detail .contact-flx .contact-form form input::placeholder {
	color: #034763;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 56px;
}

.contact-form-detail .contact-flx .contact-form form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-form-detail .contact-flx .contact-form form .send-detail {
	max-width: 100%;
	margin-top: 4px;
}

.send-detail:hover {
	background-color: #045577;
	color: var(--white);
}

/******************* ABOUT PAGE ***********************/

.about-content .about-imgs .list-properties {
	display: grid;
	grid-template-areas:
		'c1 c1 c2'
		'c1 c1 c3'
		'c4 c5 c5';
	grid-gap: 20px;
}


.about-content .about-imgs .list-properties .pc-cat1 {
    grid-area: c2;
    max-width: 248px;
    height: 166px;
}

.about-content .about-imgs .list-properties .pc-cat2 {
    grid-area: c3;
    max-width: 215px;
    height: 185px;
}

.about-content .about-imgs .list-properties .pc-cat3 {
    grid-area: c4;
    max-width: 205px;
    height: 165px;
}
.about-content .about-imgs .list-properties .pc-cat4 {
    grid-area: c5;
    max-width: 262px;
    height: 168px;
}

.about-content .about-imgs .list-properties .pc-cat5 {
    grid-area: c1;
    max-width: 262px;
    height: 370px;
}

.about-content {
	margin-top: 56px;
}

.about-content .container-fluidss {
	max-width: 1140px;
	margin: auto;
}

.about-content .about-flx {
	display: flex;
	justify-content: space-between;
}

.about-content .about-flx .text-wrapper {
	max-width: 585px;
}

.about-content .about-flx .text-wrapper .heading h4 {
	font-weight: 700;
}

.about-content .about-flx .text-wrapper .text {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.about-content .about-flx .text-wrapper .text p {
	color: #272D30;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
}

.about-content .about-flx .about-imgs {
	max-width: 484px;
	margin-top: 40px;
}

.about-content .about-flx .about-imgs .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.meet-team {
	margin-top: 64px;
}

.meet-team .container-fluidss {
	max-width: 1140px;
	margin: auto;
}

.meet-team .team-detail .flx {
	display: flex;
	justify-content: space-between;
}

.meet-team .team-detail .team-mem {
	max-width: 364px;
	display: flex;
	gap: 25px;
	width: 100%;
}

.meet-team .mem-img {
	max-width: 169px;
	width: 100%;
}

.meet-team .mem-img .bg-color {
	background-color: var(--pastel);
	height: 170px;
	width: 100%;
	display: flex;
	align-items: end;
	justify-content: center;
}

.meet-team .mem-img .bg-color img {
	width: 129.128px;
	height: 160.452px;
	object-fit: cover;
}

.meet-team .mem-img h4 {
	color: #272D30;
	text-align: center;
	font-size: 22.325px;
	font-style: normal;
	font-weight: 700;
	line-height: 24.325px;
	margin-top: 13px;
}

.meet-team .mem-img p {
	color: #272D30;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.meet-team .mem-detail {
	max-width: 749px;
	padding-top: 12px;
}

.meet-team .mem-detail .heading h4 {
	font-weight: 700;
	margin-bottom: 12px;
}

.meet-team .mem-detail p {
	color: #272D30;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
}

.meet-team .more-team-mem {
	margin-top: 24px;
}

.meet-team .more-team-mem .flx {
	display: flex;
	gap: 80px;
}

.term-content ul {
	padding-left: 20px;
	margin-bottom: 30px;
}

.term-content ul li {
	list-style: disc;
}


/***************** ARTICLE PAGE ***************************/

.article-page .term-use-heading .bg-img {
	min-height: 208px;
	height: 100%;
}

.article-page .text-wrapper {
	display: flex;
	align-items: center;
	margin-top: 24px;
}

.article-page .text-wrapper .share-article {
	display: flex;
	gap: 12px;
	align-items: center;

	border-left: 1px solid rgba(110, 108, 92, 0.2);
	padding-left: 16px;
	margin-left: 12px;
}

.article-page .text-wrapper .share-article .social-icon {
	display: flex;
	gap: 6px;
}

.article-page .text-wrapper p {
	color: #272D30;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
}

.article-detail {
	margin-top: 56px;
	margin-bottom: 68px;
}

.article-detail .container-fluidss {
	max-width: 1140px;
	margin: auto;
}

.article-detail .article-feature-img {
	width: 100%;
	height: 415px;
}

.article-detail .article-feature-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-detail .media-library {
	display: flex;
	justify-content: space-between;
	margin-top: 12px;
}

.article-detail .media-library p {
	color: #272D30;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}

.article-detail .art-post-content {
	margin-top: 32px;
}

.article-detail .art-post-content h2 {
	color: #272D30;
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px;
	letter-spacing: -0.8px;
}

.article-detail .art-post-content h3 {
	color: #272D30;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px;
	letter-spacing: -0.64px;
	margin-top: 32px;
}

.article-detail .art-post-content h4 {
	color: #272D30;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: -0.56px;
	margin-top: 24px;
}

.article-detail .art-post-content h5 {
	color: #272D30;
	font-family: 'Lato';
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: -0.4px;
}

.article-detail .art-post-content p {
	color: #272D30;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	margin-top: 8px;
}

.article-detail .art-post-content ul {
	margin-top: 40px;
}

.article-detail .art-post-content ul:nth-child(1) {
	margin-top: 0;
}

.article-detail .art-post-content ul li h5 span {
	font-family: "Fb Joker";
}

.article-detail .art-post-content ul li p {
	color: #272D30;
	font-size: 18px;
	font-family: "Fb Joker";
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	margin-top: 0;
	margin-left: -18px;
}

.article-detail .art-post-content ol li {
	list-style: decimal;
	color: #272D30;
	text-align: left;
	font-family: 'Lato';
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	margin-top: 12px;
	margin-left: 18px;
}

.article-detail .art-post-content ul li {
	list-style: disc;
	color: #272D30;
	text-align: left;
	font-family: 'Lato';
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	margin-top: 12px;
	margin-left: 18px;
}

.single-post .article-detail .art-post-content ul li strong {
	color: #272D30;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: -0.4px;
}

.article-detail .article-form.project-form .bg-color::after {
	display: none;
}

.article-detail .article-form.project-form .heading h4 {
	color: #034763;
	text-align: center;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: -0.8px;
	margin-top: 0;
}

.article-detail .article-form.project-form {
	margin-top: 48px;
	margin-bottom: 0;
}

.article-detail .art-post-content .article-more-img {
	margin-top: 24px;
	display: flex;
	gap: 32px;
}

.article-detail .art-post-content .article-more-img img {
	width: 261px;
	height: 236px;
	object-fit: cover;
}

.article-detail .art-post-content .post-img-1 {
	width: 100%;
	height: 376px;
	object-fit: cover;
	margin-top: 32px;
}

.article-detail .art-post-content .post-img-2 {
	margin-top: 40px;
	height: 569px;
	width: 100%;
	object-fit: cover;
}

.article-detail .art-post-content .post-img-3 {
	margin-top: 40px;
	height: 372px;
	width: 100%;
	object-fit: cover;
}

.article-detail .art-post-content .two-img-flx {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	width: 100%;
	gap: 12px;
	height: 373px;
	margin: 40px 0;
}

.article-detail .art-post-content .two-img-flx img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-related-post.home-information-center {
	margin-top: 56px;
}

.article-related-post.home-information-center .info-flx {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.article-related-post.home-information-center .col {
	max-width: 100%;
	background-color: var(--pastel);
}

.single-post .article-detail .art-post-content ul li::marker {
	color: #272D30;
	font-family: 'Lato';
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
}

.single-post .article-detail .art-post-content h2 {
	margin: unset;
}

.single-post .article-detail .art-post-content h2 {
	margin-top: 32px;
}

.wp-block-group.is-nowrap.is-layout-flex.wp-container-core-group-is-layout-2.wp-block-group-is-layout-flex img {
	height: 373px !important;
	width: 100% !important;
	object-fit: cover;
}

figure.wp-block-image.size-full.is-resized img {
	object-fit: cover;
}

.article-detail .article-form.project-form .checkbox-group label,
.project-form form .checkbox-group label,
.contact-form-detail .contact-flx .contact-form form .checkbox-group label {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	color: #034763;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	flex-direction: row-reverse;
}

.article-detail .article-form.project-form .custom-checkbox input,
.project-form form .custom-checkbox input,
.contact-form-detail .contact-flx .contact-form form .custom-checkbox input {
	appearance: none;
	width: 16px;
	height: 16px;
	border: 1px solid #034763;
	border-radius: 4px;
	background-color: transparent;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.article-detail .article-form.project-form .custom-checkbox input:checked,
.project-form form .custom-checkbox input:checked,
.contact-form-detail .contact-flx .contact-form form .custom-checkbox input:checked {
	background-color: #034763;
}

.article-detail .article-form.project-form .custom-checkbox:focus,
.project-form form .custom-checkbox:focus,
.contact-form-detail .contact-flx .contact-form form .custom-checkbox:focus {
	outline: none;
}

.article-detail .article-form.project-form .custom-checkbox,
.project-form form .custom-checkbox,
.contact-form-detail form .custom-checkbox {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.single-post form {
	direction: rtl;
}

.single-post .checkbox-group {
	margin-top: 20px;
}

footer .footer-social .social-icon a img {
	width: 28px;
	height: 28px;
}

.info-center-page .home-information-center .info-flx .text h4,
.info-center-page .home-information-center .info-flx .text p,
.info-center-page .home-information-center .info-flx .text .read-more {
	color: #272D30;
}

.article-related-post.home-information-center .info-flx .text h4,
.article-related-post.home-information-center .info-flx .text p,
.article-related-post.home-information-center .info-flx .text .read-more {
	color: #272D30;
}

.single-post .project-form .form input::placeholder {
	color: #034763;
}

.project-hero .in-sold img,
.project-hero .in-construction img,
.project-hero .in-occupied img,
.project-hero .in-project img {
	width: 8px;
	height: 8px;
	object-fit: cover;
	margin-left: 5px;
}

.contact-form-detail .contact-flx .contact-form form input {
	border-radius: 0;
}

.about-form.for-mobile {
	display: none;
}

li.menu-social-icons {
	display: none;
}

.dreams-comes-true img.title-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: auto;
	margin-bottom: 20px;
}

.single-post .project-form .form input,
.project-form form input {
	border-radius: 0;
	text-align: left;
}

.single-post .checkbox-group .wpcf7-list-item {
	margin: 0;
}

.project-category-cards .cate-flx .col .text h4 span.eng-family {
	font-size: 24px;
}

header .header-flx .social-icons .btn.leave-detail:hover {
	background-color: #fff;
	transition: 0.3s;
}

.project-marketing .project-marketing-slider .project-slider .project-detail .btn-view-project {
	transition: 0.3s;
}

.project-marketing .project-marketing-slider .project-slider .project-detail .btn-view-project:hover {
	background-color: var(--fresco-blue);
	color: #fff;
	transition: 0.3s;
}

.project-marketing .project-marketing-slider .project-slider .project-detail .btn-view-project:hover img {
	content: url("../images/btn-arrow-hover.svg");
	transition: 0.3s;
}

.project-marketing .project-marketing-slider .project-slider .project-detail .proj-flx .heading h3.english-title {
	font-family: "Lato";
}

.project-marketing .project-marketing-slider .project-slider .project-detail .proj-flx .heading h3.hebrew-title {
	font-family: 'Fb Joker';
}

header .header-flx nav ul li#menu-item-199 a {
	color: var(--pastel);
	background-color: transparent;
	font-weight: 400;
}

.project-hero h1.english-title {
	font-family: "Lato";
}

.project-hero h1.hebrew-title {
	font-family: 'Fb Joker';
}

.home .project-form .bg-color {
	background-color: var(--creamed7);
}

.project-hero .titlewithprice{display:flex; column-gap:15px;align-items: baseline;}
.project-hero .titlewithprice h3, h3.price{letter-spacing: -0.05em;margin-top: 12px;
  font-size:35px;
  text-align: right;
  color: #4BD1A0;
  font-family: "Rubik", serif;
  font-weight: 500;}
h3.mobileonly{position:absolute; display:none;}

.ppri{position: absolute;
  text-align: center;
  bottom: 0;
  width: 100%;}
.ppri h3.price{margin: 0 auto;
  display: inline-block;font-weight: bold;
  width: auto;
  background: #044E6D;
  background: linear-gradient(180deg,rgba(30, 80, 128, 0.8) 0%, rgba(17, 44, 71, 0) 100%);
  padding: 15px 40px; color:#fff;
}

/******************** LANDING PAGE *************************/

.landing-detail .bg-color {
	background-color: #012C3F;
	padding: 56px 80px;
	padding-top: 80px;
}

.landing-detail .container-fluidss {
	text-align: center;
}

.landing-detail .logo {
	width: 345px;
	height: 56px;
	margin: auto;
}

.landing-detail .text {
	margin: 32px 0;
}

.landing-detail .text h2 {
	color: #F4F3EB;
	text-align: center;
	font-size: 46px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -1.12px;
}

.landing-detail .text p {
	color: #F4F3EB;
	text-align: center;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
}

.landing-detail h1 {
	color: #FFF;
	text-align: center;
	font-size: 60px;
	font-style: normal;
	font-weight: 400;
	line-height: 90%;
	letter-spacing: -1.76px;
}

.landing-img {
	width: 100%;
	height: 719px;
	text-align: center;
	background-color: #012C3F;
	max-width: 1325px;
	margin: auto;
	padding: 0 20px;
}

.landing-img img,
.landing-img video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 63% 56%;
	/* max-width: 1325px;
	margin: auto;
	padding: 0 20px; */
}

.landing-cate .bg-color {
	background-color: #012C3F;
	padding: 100px 20px;
}

.landing-cate .container-fluidss {
	max-width: 1200px;
	margin: auto;
}

.landing-cate .flx {
	display: flex;
	gap: 67px;
	justify-content: center;
	flex-wrap: wrap;
}

.landing-cate .flx .item {
	max-width: 355px;
	width: 100%;
}

.landing-cate .flx .item .img {
	width: 100px;
	height: 100px;
	background-color: #045576;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
}

.landing-cate .flx .item .content {
	margin-top: 24px;
}

.landing-cate .flx .item h5 {
	color: #F4F3EB;
	text-align: center;
	font-size: 29.298px;
	font-style: normal;
	font-weight: 700;
	line-height: 40.912px;
}

.landing-cate .flx .item p {
	color: #F4F3EB;
	text-align: center;
	font-size: 20.07px;
	font-style: normal;
	font-weight: 400;
	line-height: 30.298px;
	margin-top: 11px;
}

.landing-form .bg-color {
	background-color: #034059;
	padding: 72px 40px;
	text-align: center;

	display: flex;
	flex-direction: column;
}

.landing-form .term-use {
	margin-top: 24px;

	color: #FFF;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: -0.4px;
}

.landing-form h2 {
	color: #FFF;
	text-align: center;
	font-size: 52px;
	font-style: normal;
	font-weight: 700;
	line-height: 60%;
	letter-spacing: -1.44px;
}

.landing-form p {
	color: #FFF;
	text-align: center;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px;
	letter-spacing: -0.8px;

	margin-top: 48px;
}

.landing-form form {
	margin-top: 32px;
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: row-reverse;
}

.landing-form form input {
	max-width: 393px;
	width: 100%;
	height: 56px;
	padding: 0 24px;
	border: none;
	outline: none;

	color: #034059;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 56px;
	text-align: left;
}

.landing-form form input::placeholder {
	color: #034059;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 56px;
}

.landing-form form .submit {
	width: 243px;
	background-color: #1D9BD3;
	color: #fff;
	margin-left: 12px;
	text-align: center;
}

.landing-cate .flx .item .img img {
	width: 100%;
	height: 100%;
	object-fit: scale-down;
}

.landing-form .contact-us {
	background-color: rgb(255 255 255 / 10%);
	border: 4px solid #fff;
	border-radius: 100%;
	width: 100px;
	height: 100px;
	margin: auto;
	margin-top: 24px;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.landing-form .contact-us img {
	width: 34px;
	height: 34px;
}

.landing-form .contact-us p {
	color: #FFF;
	text-align: center;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 25.207px;
	margin: 0;
}

body.page-template-template-landing {
	background-color: #012C3F !important;
}

.landing-img img.for-mobile {
	display: none;
}

.project-hero p.english-title,
.home-information-center .info-flx .text h4.english-title {
	font-family: "Lato";
}
.rtl.single-projects .project-hero p.english-title,.rtl.single-projects .home-information-center .info-flx .text h4.english-title {
    text-shadow: rgba(0, 0, 0, 0.4) 2px 2px 2px; font-weight:600; margin-top:10px;
}
.project-hero .hero-img {
	position: relative;
}

.project-hero .hero-img::after {
	opacity: 0.6;
	background-image: linear-gradient(181deg, #00000000 0%, rgb(0 0 0 / 76%) 80%);
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	content: '';
}

.fancybox-button--zoom svg {
	display: none;
}

/* Add a plus sign inside the button */
.fancybox-button--zoom::before {
	content: '+';
	font-size: 34px;
	font-weight: bold;
	color: #fff;
	top: 0;
	width: 24px;
	position: absolute;
	height: 24px;
}

.page-template-template-projects .home-information-center .info-flx .text p {
	min-height: auto;
}

.project-category-cards .cate-flx.for-mobile {
	display: none;
}

button.fancybox-button.fancybox-button--play {
	display: none !important;
}

.single-post .project-form .form .send-detail,
.project-form form .send-detail,
.contact-form-detail .contact-flx .contact-form form .send-detail {
	text-align: center;
}

.project-form form .custom-checkbox .wpcf7-list-item {
	margin: 0;
}

.single-post .project-form .form {
	flex-direction: row-reverse;
}

.contact-form-detail form .custom-checkbox .wpcf7-list-item {
	margin: 0;
}

.contact-form-detail .contact-flx .contact-form form input {
	text-align: left;
}
.home .in-project{
	padding-top: 0;
}
footer .top-footer .footer-flx .widget-menu .menu-flx .col a, 
footer .top-footer .footer-flx .widget-menu .menu-flx .col ul li,
.home-information-center .info-flx .text .read-more,
.home-information-center .info-flx .text p,
.project-category-cards .cate-flx .col .text p,
header .header-flx .social-icons .btn.leave-detail,
header .header-flx nav ul li a{
	font-size: 14px;
}
.home-faq .accordion .accordion-item .accordion-button.collapsed,
.home-information-center .info-flx .text h4,
.dreams-comes-true .text p{
	font-size: 18px;
}
.project-marketing .project-marketing-slider .project-slider .project-detail .btn-view-project{
	font-size: 1614;
}
.heading h2{
	font-size: 50px;
}
.project-category-cards .cate-flx .col .text h4{
	font-size: 25px;
}
.Get-to-know-Halkidiki .heading p{
	font-size: 22px;
}
.home-faq .heading h2{
	font-size: 46px;
}
footer .footer-social p,
.home-faq .accordion .accordion-item .accordion-body p{
	font-size: 16px;
}
.single-post .project-form .form .send-detail, .project-form form .send-detail, .contact-form-detail .contact-flx .contact-form form .send-detail {
	font-size: 20px;
	line-height: 35px;
}
header .header-flx nav {
	display: flex;
	align-items: center;
	gap: 20px;
}
.page-template-template-projects .enable-header-footer,
.single-projects .enable-header-footer {
    display: none;
}
.home-information-center .info-flx{
	justify-content: center;
}

@media (max-width: 767px) {
	h3.mobileonly{position:absolute;  top:10px; left:00px;text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);right: 0;
        margin: 0 auto;
        text-align: center; font-size:30px;}
	.project-hero .titlewithprice h3{display:none;}
	.home .project-marketing-slider .slick-arrow{top: 150px !important;}
}