@charset "utf-8";

::selection {
	background-color: #2A615B;
	color: #fff;
}

body {
	padding: 0;
	margin: 0;
	background-color: #ffffff;
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	color: #000000;
	font-weight: 400;
	line-height: normal;
	overflow-x: hidden;
}
body.no-scroll {
	overflow: hidden;
}
a {
	color: #000000;
	text-decoration: none;
}
a:hover {
	color: #2A615B;
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
}
.padding-t-0 {
	padding-top: 0 !important;
}
.padding-b-0 {
	padding-bottom: 0 !important;
}
#wrap {
	float: left;
	width: 100%;
}
:root {
	--container-width: 1300px;
	--container-padding: calc((100vw - var(--container-width)) / 2);
}
.container {
	max-width: 1300px;
	padding: 0;
}
#header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 20px;
	float: left;
	width: 100%;
	padding: 15px 50px;
	background-color: transparent;
	position: sticky;
	top: 0;
	z-index: 4;
	transition: all .3s ease-in-out;
}
.rtl #header {
	direction: ltr;
}
#header:after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #F3EFEC;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: all .3s ease-in-out;
}
#header .logo {
	width: 140px;
}
#header .logo img {
	width: 100%;
	height: auto;
}
#header .mainNav ul.menu {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
#header .mainNav ul.menu > li {
	position: relative;
	padding: 0;
}
#header .mainNav ul.menu > li > a {
	position: relative;
	display: block;
	padding: 8px 10px;
	background-color: transparent;
	font-family: "Geologica";
	font-size: 15px;
	color: #404040;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
}
#header .mainNav ul.menu > li a svg {
	display: none;
}
#header .mainNav ul.menu > li:hover > a,
#header .mainNav ul.menu > li > a:hover,
#header .mainNav ul.menu > li.current-menu-item > a,
#header .mainNav ul.menu > li.current-menu-parent > a {
	background-color: #ffffff;
	color: #2A615B;
}
#header .mainNav ul.menu > li.menu-item-has-children > a {
	padding-right: 30px;
}
#header .mainNav ul.menu > li.menu-item-has-children > a:after {
	content: "\f078";
	font-family: "FontAwesome";
	line-height: 10px;
	position: absolute;
	font-size: 12px;
	top: 50%;
	right: 10px;
	transform: translateY(-65%);
}
#header .mainNav ul.menu > li:hover > ul.sub-menu {
	display: block;
}
#header .mainNav ul.menu > li > ul.sub-menu {
	display: none;
	padding: 0;
	margin: 0;
	list-style-type: none;
	width: 200px;
	border: 0;
	background-color: #ffffff;
	border-radius: 0px 5px 5px 5px;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 2;
	overflow: hidden;
}
#header .mainNav ul.menu > li > ul.sub-menu > li {
	display: block;
	padding: 0;
}
#header .mainNav ul.menu > li > ul.sub-menu > li > a {
	display: block;
	width: 100%;
	padding: 8px 20px 8px 25px;
	background-color: transparent;
	font-family: "Geologica";
	font-size: 15px;
	color: #404040;
	font-weight: 400;
	line-height: normal;
	text-transform: none;
	transition: all .3s ease-in-out;
}
#header .mainNav ul.menu > li > ul.sub-menu > li:hover > a,
#header .mainNav ul.menu > li > ul.sub-menu > li > a:hover,
#header .mainNav ul.menu > li > ul.sub-menu > li.current-menu-item > a {
	background-color: #2A615B;
	color: #ffffff;
	text-decoration: none;
}
#header .hamburger {
	display: none;
	position: relative;
}
#header .hamburger #nav-btn,
#header .hamburger #nav-btn + label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	margin: 0;
	padding: 0;
	border: 0px solid #ffffff;
	background-color: #E5CEBD;
	border-radius: 5px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
	cursor: pointer;
}
#header .hamburger #nav-btn {
	position: relative;
	opacity: 0;
	z-index: 100;
}
#header .hamburger #nav-btn + label span {
	display: block;
	width: 30px;
	height: 3px;
	background-color: #558C86;
	border-radius: 10px;
	position: relative;
	z-index: 99;
	cursor: pointer;
	transition: all .3s ease-in-out;
}
#header .hamburger #nav-btn + label span::before,
#header .hamburger #nav-btn + label span::after {
	content: "";
	display: block;
	width: 30px;
	height: 3px;
	background-color: #558C86;
	border-radius: 10px;
	position: absolute;
	left: 0;
	transition: all .3s ease-in-out;
}
#header .hamburger #nav-btn + label span::before {
	top: -9px;
}
#header .hamburger #nav-btn + label span::after {
	bottom: -9px;
}
#header .hamburger .rmp-container {
	display: flex;
	flex-direction: column;
}
#header .hamburger .rmp-container .rmp-menu-additional-content {
	margin-top: auto;
}
#header .hamburger .rmp-container .rmp-menu-additional-content .menuButtons {
	display: flex;
	gap: 20px;
}
#header .hamburger .rmp-container .rmp-menu-additional-content .menuButtons a {
	display: inline-block;
	width: 50%;
	padding: 13px 28px;
	border: 0;
	background: #2A615B;
	border-radius: 0px;
	font-family: "Geologica";
	font-size: 16px;
	color: #ffffff;
	font-weight: 400;
	line-height: 20px;
	text-transform: none;
	text-decoration: none;
	transition: all .3s ease-in-out;
}
#header .hamburger .rmp-container .rmp-menu-additional-content .menuButtons a + a {
	background: #dfd5cd;
	color: #2A615B;
}
#slider .caption a.button:hover::after {
	opacity: 1;
}
#header .rightNav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	grid-gap: 30px;
	z-index: 99;
}
#header .rightNav .languageMenu {
	width: 37px;
	position: relative;
	z-index: 1;
}
#header .rightNav .languageMenu label {
	display: block;
	width: 100%;
	margin: 0;
}
#header .rightNav .languageMenu label a {
	display: block;
	padding: 2px 3px;
	padding-right: 10px;
	background: url(../images/arrow-language.svg) no-repeat right center;
	font-family: "Geologica";
	font-size: 15px;
	color: #404040;
	font-weight: 400;
	line-height: 20px;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
}
#header .rightNav .languageMenu label a.open {
	background-image: url(../images/arrow-language-open.svg);
}
#header .rightNav .languageMenu ul {
	display: none;
	width: 100%;
	padding: 5px 0;
	margin: 0;
	list-style-type: none;
	background-color: #ffffff;
	box-shadow: 0 0 15px 0 rgb(485 140 134 / 20%);
	border-radius: 7px;
	position: absolute;
	top: 100%;
	left: 0;
}
#header .rightNav .languageMenu ul li a {
	display: block;
	padding: 5px 7px;
	font-family: "Geologica";
	font-size: 15px;
	color: rgb(64 64 64 / 70%);
	font-weight: 400;
	line-height: 15px;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
}
#header .rightNav .languageMenu ul li a:hover {
	color: #558C86;
}
#header .rightNav a.button {
	display: block;
	padding: 13px 28px;
	border: 2px solid #CBA671;
	background: linear-gradient(180deg, #CBA671 0%, #BD8F4C 100%);
	border-radius: 0px;
	font-family: "Geologica";
	font-size: 15px;
	color: #020202;
	font-weight: 500;
	line-height: 20px;
	text-transform: uppercase;
	text-decoration: none;
	transition: all .3s ease-in-out;
	position: relative;
	z-index: 0;
}
#header .rightNav a.button::after {
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #BD8F4C 0%, #CBA671 100%);
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: opacity .3s linear;
}
#header .rightNav a.button:hover::after {
	opacity: 1;
}
/*-------------- Sticky Header Start --------------*/
#header.headerTransform {
	transform: translateY(-101%);
}
#header.headerBg:after {
	background-color: rgb(243 239 236 / 80%);
	box-shadow: 0px 2px 12px 0px #00000020;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
/*#header.sticky {
	position: fixed;
	top: 0;
}
#header.sticky:after {
	background-color: rgb(243 239 236 / 80%);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
#header.sticky .logo img {
	width: 100%;
	height: auto;
	filter: none;
}*/
/*-------------- Sticky Header End --------------*/
#slider {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
}
#slider, #slider .home-slider, #slider .owl-stage-outer, #slider .owl-stage, #slider .owl-item { width: 100vw; height: 100vh; }
#slider .home-slider .item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#slider .home-slider .item picture,
#slider .home-slider .item picture img {
	width: 100%;
}
#slider .home-slider .owl-dots {
	width: 100%;
	margin: 0 auto;
	position: absolute;
	bottom: 20px;
	right: 0;
	left: 0;
}
#slider .home-slider .owl-dots .owl-dot span {
	border-color: #ffffff;
}
#slider .home-slider .owl-dots .owl-dot.active span,
#slider .home-slider .owl-dots .owl-dot:hover span {
	background: #ffffff;
}
#slider .caption {
	max-width: 670px;
	width: 100%;
	padding: 50px 30px;
	outline: 2px solid #F3EFEC;
	outline-offset: 7px;
	background: #F3EFEC;
	position: absolute;
	bottom: 59px;
	left: 59px;
	z-index: 2;
	overflow: hidden;
}
#slider .caption h1 {
	display: block;
	margin: 0;
	font-family: "Geologica";
	font-size: 60px;
	color: #000000;
	font-weight: 500;
	line-height: 65px;
}
#slider .caption h1 br {
	display: block;
}
#slider .caption p {
	display: block;
	margin: 15px 0 0 0;
	font-size: 16px;
	color: #000000;
	font-weight: 500;
	line-height: 23px;
}
#slider .caption a.button {
	display: inline-block;
	margin: 30px 0 0 0;
	padding: 13px 28px;
	border: 2px solid #2A615B;
	background: linear-gradient(180deg, #2A615B 0%, #39847C 100%);
	border-radius: 0px;
	font-family: "Geologica";
	font-size: 16px;
	color: #ffffff;
	font-weight: 400;
	line-height: 20px;
	text-transform: none;
	text-decoration: none;
	transition: all .3s ease-in-out;
	position: relative;
	z-index: 0;
}
#slider .caption a.button::after {
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #39847C 0%, #2A615B 100%);
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: opacity .3s linear;
}
#slider .caption a.button:hover::after {
	opacity: 1;
}
#middle {
	display: block;
	width: 100%;
}
#welcomeSec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}
#welcomeSec .topContent {
	max-width: 860px;
	width: 100%;
	margin: 0 auto 40px auto;
	text-align: center;
}
#welcomeSec .topContent h2 {
	margin: 0;
	font-family: "Geologica";
	font-size: 47px;
	color: #2A615B;
	font-weight: 500;
	line-height: 52px;
}
#welcomeSec .topContent p {
	margin: 15px 0 0 0;
	font-size: 19px;
	color: #000000;
	font-weight: 500;
	line-height: 26px;
}
#welcomeSec .welcomeContent {
	max-width: 860px;
	width: 100%;
	margin: 0 auto;
}
#welcomeSec .welcomeContent h4 {
	margin: 0 0 15px 0;
	font-family: "Geologica";
	font-size: 27px;
	color: #2A615B;
	font-weight: 400;
	line-height: 32px;
	text-align: center;
}
#welcomeSec .welcomeContent ol {
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
#welcomeSec .welcomeContent ol li {
	counter-increment: item;
	position: relative;
	padding: 27px 50px;
	border-bottom: 2px dashed #CDCDCD;
	font-family: "Geologica";
	font-size: 22px;
	color: #000000;
	font-weight: 400;
	line-height: 27px;
	text-indent: 0px;
	transition: all .3s ease-in-out;
	cursor: pointer;
}
#welcomeSec .welcomeContent ol li:last-child {
	border-bottom: none;
}
#welcomeSec .welcomeContent ol li:before {
	content: counter(item, decimal-leading-zero);
	font-weight: 300;
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
}
.rtl #welcomeSec .welcomeContent ol li:before {
	left: auto;
	right: 5px;
}
#welcomeSec .welcomeContent ol li:hover {
	color: #2A615B;
	text-indent: 20px;
}
#welcomeSec .welcomeContent ol li img {
	width: 155px;
	opacity: 0;
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%) rotate(-8.02deg);
	transition: all .3s ease-in-out;
	pointer-events: none;
}
.rtl #welcomeSec .welcomeContent ol li img {
	right: auto;
	left: 50px;
}
#welcomeSec .welcomeContent ol li:hover img {
	opacity: 1;
}
#propertySec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}
#propertySec .container {
	position: relative;
}
#propertySec .topContent {
	max-width: 620px;
	width: 100%;
	margin: 0 auto 40px auto;
	text-align: center;
}
#propertySec .topContent h2 {
	margin: 0;
	font-family: "Geologica";
	font-size: 47px;
	color: #2A615B;
	font-weight: 500;
	line-height: 52px;
}
#propertySec .topContent p {
	margin: 15px 0 0 0;
	font-size: 19px;
	color: #000000;
	font-weight: 500;
	line-height: 26px;
}
#propertySec .property-slider {
	position: relative;
	width: 90%;
	margin: 0 auto;
}
#propertySec .property-slider .owl-stage-outer {
	overflow: visible;
}
#propertySec .property-slider .owl-item {
	opacity: .2;
}
#propertySec .property-slider .owl-item.active {
	opacity: 1;
}
#propertySec .property-slider .item {
	display: flex;
	gap: 20px;
}
#propertySec .property-slider .item .image {
	position: relative;
	width: 640px;
	overflow: hidden;
}
#propertySec .property-slider .item .image img {
	max-width: none;
	width: 100%;
}
#propertySec .property-slider .item .info {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding-top: 20px;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
	animation-delay: 0s;
}
#propertySec .property-slider .owl-item.active .item .info {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	animation-delay: 0.8s;
}
#propertySec .property-slider .item .info h3 {
	margin: 0 0 20px 0;
	font-family: "Geologica";
	font-size: 27px;
	color: #000000;
	font-weight: 400;
	line-height: 32px;
}
#propertySec .property-slider .item .info ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
#propertySec .property-slider .item .info ul li {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
#propertySec .property-slider .item .info ul li .label {
	font-size: 16px;
	color: #555555;
	font-weight: 600;
	line-height: 20px;
}
#propertySec .property-slider .item .info ul li .data {
	font-size: 18px;
	color: #000000;
	font-weight: 600;
	line-height: 22px;
}
#propertySec .property-slider .owl-nav {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	margin-top: 0;
	position: absolute;
	top: auto;
	bottom: 20px;
	right: auto;
	left: 660px;
	z-index: 2;
}
.rtl #propertySec .property-slider .owl-nav {
	direction: ltr;
	right: 660px;
	left: auto;
}
#propertySec .property-slider .owl-nav [class*=owl-] {
	position: static;
}
#getResultsSec {
	position: relative;
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
}
#getResultsSec .container {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 1;
}
#getResultsSec .info {
	max-width: 620px;
	width: 100%;
	padding: 30px 30px;
	outline: 2px solid #F3EFEC;
	outline-offset: 7px;
	background: #F3EFEC;
	position: absolute;
	top: 109px;
	left: 9px;
}
#getResultsSec .info h3 {
	position: relative;
	margin: 0 0 25px 0;
	padding: 0 0 25px 0;
	font-family: "Geologica";
	font-size: 47px;
	color: #2A615B;
	font-weight: 500;
	line-height: 52px;
}
#getResultsSec .info h3::after {
	content: "";
	width: 34%;
	height: 1px;
	background: #C2AD9E;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.rtl #getResultsSec .info h3::after {
	left: auto;
	right: 0;
}
#getResultsSec .info p {
	margin: 0 0 15px 0;
	font-size: 19px;
	color: #222222;
	font-weight: 500;
	line-height: 26px;
}
#getResultsSec .info p:last-child {
	margin-bottom: 0;
}
#getResultsSec .image {
	position: relative;
	width: 100%;
}
#getResultsSec .image::after {
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(203, 166, 113, 0) 78.93%, #CBA671 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
#getResultsSec .image img {
	width: 100%;
	height: auto;
}
#marqueeSec {
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
	background: #CBA671;
	overflow: hidden;
}
.rtl #marqueeSec {
	direction: ltr;
}
#marqueeSec .marqueeBox {
	display: flex;
}
#marqueeSec .marqueeBox .mhTrack {
	display: flex;
	gap: 30px;
}
#marqueeSec .marqueeBox .mhTrack .item {
	user-select: none;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 30px;
}
#marqueeSec .marqueeBox .mhTrack .item .text {
	font-family: "Geologica";
	font-size: 22px;
	color: #ffffff;
	font-weight: 400;
	line-height: normal;
	white-space: nowrap;
}
#marqueeSec .marqueeBox .mhTrack .item .icon {
	display: block;
}
#marqueeSec .marqueeBox .mhTrack .item .icon img {
	min-width: 38px;
	height: auto;
}
#clearProcessSec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}
#clearProcessSec .topContent {
	max-width: 860px;
	width: 100%;
	margin: 0 auto 40px auto;
	text-align: center;
}
#clearProcessSec .topContent h2 {
	margin: 0;
	font-family: "Geologica";
	font-size: 47px;
	color: #2A615B;
	font-weight: 500;
	line-height: 52px;
}
#clearProcessSec .topContent p {
	margin: 15px 0 0 0;
	font-size: 19px;
	color: #000000;
	font-weight: 500;
	line-height: 26px;
}
#clearProcessSec .processContent {
	max-width: 1176px;
	width: 100%;
	margin: 0 auto;
}
#trustedBySec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #F3EFEC;
	background-image: url(../images/trusted-bg.png);
	background-repeat: no-repeat;
	background-position: right -450% top 20%;
	overflow: hidden;
}
#trustedBySec .topContent {
	max-width: 860px;
	width: 100%;
	margin: 0 auto 40px auto;
	text-align: center;
}
#trustedBySec .topContent h2 {
	position: relative;
	margin: 0;
	font-family: "Geologica";
	font-size: 47px;
	color: #2A615B;
	font-weight: 500;
	line-height: 52px;
}
#trustedBySec .topContent h2::before {
	content: "";
	display: inline-block;
	width: 37px;
	height: 48px;
	margin-top: -6px;
	transform: translateY(-25px);
	background: url(../images/stars.svg) no-repeat center;
	background-size: contain;
}
.rtl #trustedBySec .topContent h2::before {
	transform: translateY(-25px) scaleX(-1);
}
#trustedBySec .topContent p {
	margin: 15px 0 0 0;
	font-size: 19px;
	color: #000000;
	font-weight: 500;
	line-height: 26px;
}
#trustedBySec .trustedbyContent {
	width: 100%;
	margin: 0 auto;
}
#trustedBySec .trustedbyContent ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
#trustedBySec .trustedbyContent ul li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
	width: calc(33.333333% - 14px);
	padding: 10px 10px;
	background-color: #ffffff;
	font-size: 20px;
	color: #000000;
	font-weight: 500;
	line-height: 27px;
	transition: all .3s ease-in-out;
	cursor: default;
}
#trustedBySec .trustedbyContent ul li:hover {
	box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 7px 3px;
}
#trustedBySec .trustedbyContent ul li img {
	min-width: 50px;
	padding: 10px;
	background-color: #F7F2ED;
}
#trustedBySec .trustedbyContent ul li:last-child:after {
	content: "";
	display: inline-block;
	width: 37px;
	height: 48px;
	transform: scaleX(-1) scaleY(-1) translateX(-73px) translateY(-17px);
	background: url(../images/stars.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	right: 0;
	bottom: 0;
}
.rtl #trustedBySec .trustedbyContent ul li:last-child:after {
	transform: scaleX(1) scaleY(-1) translateX(-73px) translateY(-17px);
	right: auto;
	left: 0;
}
#clientsSaySec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}
#clientsSaySec .topContent {
	max-width: 860px;
	width: 100%;
	margin: 0 auto 40px auto;
	text-align: center;
}
#clientsSaySec .topContent h2 {
	margin: 0;
	font-family: "Geologica";
	font-size: 47px;
	color: #2A615B;
	font-weight: 500;
	line-height: 52px;
}
#clientsSaySec .topContent p {
	margin: 15px 0 0 0;
	font-size: 19px;
	color: #000000;
	font-weight: 500;
	line-height: 26px;
}
#clientsSaySec .clients-slider .owl-stage-outer {
	overflow: visible;
}
#clientsSaySec .clients-slider .owl-stage {
	transition-timing-function: linear !important;
}
#clientsSaySec .clients-slider .item {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 20px;
	background-color: #F7F7F7;
	transition: all .3s ease-in-out;
}
#clientsSaySec .clients-slider .item:hover {
	background-color: #F3EFEC;
}
#clientsSaySec .clients-slider .item .image {
	width: 50px;
	height: 50px;
}
#clientsSaySec .clients-slider .item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#clientsSaySec .clients-slider .item .info {
	min-height: 164px;
	max-height: 164px;
	overflow-x: hidden;
	overflow-y: auto;
}
#clientsSaySec .clients-slider .item .info::-webkit-scrollbar {
	width: 4px;
}
#clientsSaySec .clients-slider .item .info::-webkit-scrollbar-track {
	background: transparent;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
#clientsSaySec .clients-slider .item .info::-webkit-scrollbar-thumb {
	min-height: 40px;
	background: rgba(0, 0, 0, 0.07);
	-webkit-border-radius: 10px;
	border-radius: 10px;
	visibility: hidden;
}
#clientsSaySec .clients-slider .item .info:hover::-webkit-scrollbar-thumb {
	visibility: visible;
}
#clientsSaySec .clients-slider .item .info p {
	margin: 0 0 15px 0;
	font-size: 19px;
	color: #222222;
	font-weight: 500;
	line-height: 26px;
}
#clientsSaySec .clients-slider .item .info p:last-child {
	margin-bottom: 0;
}
#clientsSaySec .clients-slider .item .name {
	display: block;
	margin: 0;
	font-family: "Geologica";
	font-size: 25px;
	color: #000000;
	font-weight: 400;
	line-height: normal;
}
#clientsSaySec .clients-slider .item .name strong {
	font-size: 20px;
	color: #757575;
	font-weight: 400;
}
#clientsSaySec .clients-slider .owl-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
	position: static;
}
#clientsSaySec .clients-slider .owl-nav [class*=owl-] {
	position: static;
}
#weSpeakSec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}
#weSpeakSec .weSpeakContent {
	display: flex;
	align-items: center;
	gap: 150px;
}
#weSpeakSec .weSpeakContent .left {
	width: 50%;
}
#weSpeakSec .weSpeakContent .left h2 {
	margin: 0;
	font-family: "Geologica";
	font-size: 47px;
	color: #2A615B;
	font-weight: 500;
	line-height: 52px;
}
#weSpeakSec .weSpeakContent .left p {
	margin: 15px 0 0 0;
	font-size: 19px;
	color: #000000;
	font-weight: 500;
	line-height: 26px;
}
#weSpeakSec .weSpeakContent .right {
	max-width: 530px;
	width: 50%;
}
#weSpeakSec .weSpeakContent .right img {
	width: 100%;
	height: auto;
	border: 3px solid #F7F7F7;
}
#haveCondoSec {
	position: relative;
	z-index: 1;
	padding-top: 0;
	padding-bottom: 0;
	margin-bottom: -100px;
	overflow: hidden;
}
#haveCondoSec .container {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 1;
}
#haveCondoSec .info {
	max-width: 600px;
	width: 100%;
	padding: 0;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	text-align: right;
}
#haveCondoSec .info h3 {
	margin: 0 0 30px 0;
	font-family: "Geologica";
	font-size: 47px;
	color: #ffffff;
	font-weight: 500;
	line-height: 52px;
}
#haveCondoSec .info p {
	margin: 0 0 15px 0;
	font-size: 19px;
	color: #ffffff;
	font-weight: 500;
	line-height: 26px;
}
#haveCondoSec .info p br {
	display: block;
}
#haveCondoSec .info p:last-child {
	margin-bottom: 0;
}
#haveCondoSec .info a.button {
	display: inline-block;
	margin: 15px 0 0 0;
	padding: 13px 28px;
	border: 2px solid #CBA671;
	background: linear-gradient(180deg, #CBA671 0%, #BD8F4C 100%);
	border-radius: 0px;
	font-family: "Geologica";
	font-size: 16px;
	color: #ffffff;
	font-weight: 400;
	line-height: 20px;
	text-transform: none;
	text-decoration: none;
	transition: all .3s ease-in-out;
	position: relative;
	z-index: 0;
}
#haveCondoSec .info a.button::after {
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #BD8F4C 0%, #CBA671 100%);
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: opacity .3s linear;
}
#haveCondoSec .info a.button:hover::after {
	opacity: 1;
}
#haveCondoSec .image {
	position: relative;
	width: 100%;
}
#haveCondoSec .image::after {
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(262.33deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	-webkit-mask-image: linear-gradient(262.33deg,  rgba(0, 0, 0, 1) 0%,  rgba(0, 0, 0, 0) 65.13% );
	mask-image: linear-gradient(262.33deg,  rgba(0, 0, 0, 1) 0%,  rgba(0, 0, 0, 0) 65.13% );
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
#haveCondoSec .image img {
	width: 100%;
	height: auto;
}
#footer {
	position: relative;
	display: block;
	width: 100%;
	padding: 0 50px;
	padding-top: 150px;
	padding-bottom: 50px;
	background-color: #F3EFEC;
	overflow: hidden;
}
.rtl #footer {
	direction: ltr;
}
#footer .row {
	justify-content: space-between;
	gap: 30px;
}
#footer [class*="col-"]:nth-child(1) {
	flex: 0 0 auto;
	max-width: fit-content;
}
#footer [class*="col-"]:nth-child(2) {
	flex: 0 0 auto;
	max-width: fit-content;
}
#footer [class*="col-"]:nth-child(3) {
	flex: 0 0 auto;
	max-width: fit-content;
}
#footer [class*="col-"]:nth-child(4) {
	flex: 0 0 auto;
	max-width: fit-content;
	display: flex;
	flex-direction: column;
}
#footer h3 {
	margin: 0 0 10px 0;
	font-family: "Geologica";
	font-size: 27px;
	color: #2A615B;
	font-weight: 500;
	line-height: 34px;
}
#footer ul.menu {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 15px;
	padding: 0;
	margin: 0 0 38px 0;
	list-style-type: none;
}
#footer ul.menu:last-child {
	margin-bottom: 0;
}
#footer ul.menu li {
	width: 100%;
	margin: 0;
	font-size: 18px;
	color: #000000;
	font-weight: 500;
	line-height: normal;
}
#footer ul.menu li label {
	display: block;
	margin: 0 0 5px 0;
	font-size: 16px;
	color: #555555;
}
#footer ul.menu li a {
	display: inline-block;
	color: #000000;
	text-decoration: underline 1px transparent;
	text-underline-offset: 4px;
	transition: all .3s ease-in-out;
}
#footer ul.menu li a:hover {
	color: #000000;
	text-decoration: underline;
}
#footer ul.address li {
	line-height: 25px;
}
#footer ul.address li a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #2A615B;
	text-decoration: underline 1px;
}
#footer ul.address li a:hover {
	color: #2A615B;
	text-decoration: underline 1px transparent;
}
#footer ul.social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	padding: 0;
	margin: 0 0 38px 0;
	list-style-type: none;
}
#footer ul.social:last-child {
	margin-bottom: 0;
}
#footer ul.social li {
	display: block;
	font-size: 18px;
	color: #000000;
	font-weight: 500;
	line-height: normal;
}
#footer ul.social li a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #000000;
}
#footer ul.social li a span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: linear-gradient(180deg, #CBA671 0%, #BD8F4C 100%);
	border-radius: 100%;
	overflow: hidden;
	position: relative;
	z-index: 0;
}
#footer ul.social li a span::after {
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #BD8F4C 0%, #CBA671 100%);
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: opacity .3s linear;
}
#footer ul.social li a:hover span::after {
	opacity: 1;
}
#footer ul.social li a span img {
	width: 20px;
	filter: brightness(0) invert(1);
}
#footer .copyText {
	margin-top: auto;
	font-size: 16px;
	color: #000000;
	font-weight: 400;
	line-height: normal;
}
#footer .copyText strong {
	color: #5E5E5E;
	font-weight: 400;
}
[id*=chaty-widget-] .chaty-widget {
	right: 5px !important;
	bottom: 10px !important;
	z-index: 3;
}

/*----- contact form 7 -----*/
.wpcf7-form-control-wrap 				{ display: block; }
body .wpcf7 form .wpcf7-response-output { float: left; width: 100%; padding: 0; margin: 15px 0 0 0; border: 0; box-sizing: border-box; font-size: 14px; color:#ff0000; line-height: normal; }
body span.wpcf7-not-valid-tip 			{ position: static; margin-top: 2px; font-size: 12px; line-height: normal; white-space: nowrap; }
body .wpcf7-not-valid 					{ border-color: #f00 !important; }
body .wpcf7-not-valid + .form-control	{ border-color: #f00 !important; }
.wpcf7 form.sent .wpcf7-response-output { border-color: #46b450; color: #46b450; }
.wpcf7-spinner 							{ margin: 14px 14px; position: absolute; top: 10px; right: 15px; }

/*----------------- Modal Design -----------------*/
.modal-backdrop {
	background-color: #ede8e1;
}
.modal-backdrop.show {
	opacity: 0.85;
}
.modalDesign::-webkit-scrollbar {	
	width: 14px;
}
.modalDesign::-webkit-scrollbar-track {
	background: transparent;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
.modalDesign::-webkit-scrollbar-thumb {
	min-height: 40px;
	border: 4px solid rgb(237 232 225 / 100%);
	background: #e2d2b7;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	visibility: hidden;
}
.modalDesign:hover::-webkit-scrollbar-thumb {
	visibility: visible;
}
.modalDesign .modal-content {
	background-color: #fff;
	border: none;
	border-radius: 0px;
}
.modalDesign .modal-body {
	padding: 30px 50px;
}
.modalDesign .close {
	float: right;
	margin: -10px -30px 0 0;
	opacity: 1;
}
.modalDesign .close:hover {
	opacity: 0.5;
}
.modalDesign .modal-body h2 {
	margin: 0 0 20px 0;
	font-family: "Italiana";
	font-size: 44px;
	color: #000000;
	font-weight: 400;
	line-height: 54px;
}
.modalDesign .modal-body p {
	margin: 0 0 20px 0;
	font-size: 16px;
	color: #000000;
	font-weight: 400;
	line-height: 26px;
}
.modalDesign .modal-body p:last-child {
	margin-bottom: 0;
}

/*----------------- Inner Pages -----------------*/
#innerBanner {
	position: relative;
	float: left;
	width: 100%;
	overflow: hidden;
}
#innerBanner, #innerBanner .inner-slider, #innerBanner .owl-stage-outer, #innerBanner .owl-stage, #innerBanner .owl-item { width: 100vw; height: 70dvh; }
#innerBanner .inner-slider .item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#innerBanner .inner-slider .item:before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 35%);
	background: linear-gradient(262.33deg, rgba(0, 0, 0, 0) -0.5%, rgba(0, 0, 0, 0.8) 84.09%);
	position: absolute;
	top: 0;
	z-index: 1;
}
#innerBanner .inner-slider .item picture,
#innerBanner .inner-slider .item picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#innerBanner .inner-slider .owl-dots {
	width: 100%;
	margin: 0 auto;
	position: absolute;
	bottom: 20px;
	right: 0;
	left: 0;
}
#innerBanner .inner-slider .owl-dots .owl-dot span {
	border-color: #ffffff;
}
#innerBanner .inner-slider .owl-dots .owl-dot.active span,
#innerBanner .inner-slider .owl-dots .owl-dot:hover span {
	background: #ffffff;
}
#innerBanner > .container {
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
	left: 0;
}
#innerBanner .caption {
	max-width: 900px;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 2;
}
#innerBanner .caption h1 {
	display: block;
	margin: 0;
	font-family: "Geologica";
	font-size: 60px;
	color: #ffffff;
	font-weight: 500;
	line-height: 65px;
}
#innerBanner .caption h1 br {
	display: block;
}
#innerBanner .caption p {
	display: block;
	margin: 15px 0 0 0;
	font-size: 16px;
	color: #ffffff;
	font-weight: 500;
	line-height: 23px;
}
#innerBanner .caption a.button {
	display: inline-block;
	margin: 30px 0 0 0;
	padding: 13px 28px;
	border: 2px solid #2A615B;
	background: linear-gradient(180deg, #2A615B 0%, #39847C 100%);
	border-radius: 0px;
	font-family: "Geologica";
	font-size: 16px;
	color: #ffffff;
	font-weight: 400;
	line-height: 20px;
	text-transform: none;
	text-decoration: none;
	transition: all .3s ease-in-out;
	position: relative;
	z-index: 0;
}
#innerBanner .caption a.button::after {
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #39847C 0%, #2A615B 100%);
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: opacity .3s linear;
}
#innerBanner .caption a.button:hover::after {
	opacity: 1;
}
#innerSec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}
#innerSec .content {
	display: block;
}
#innerSec .content h2,
#innerSec .content h3,
#innerSec .content h4,
#innerSec .content h5,
#innerSec .content h6 {
	display: inline-block;
	width: 100%;
	margin: 15px 0 15px 0;
	font-family: "Geologica";
	color: #000000;
	font-weight: 400;
}
#innerSec .content h1 {
	font-size: 50px;
	line-height: 55px;
}
#innerSec .content h2 {
	font-size: 40px;
	line-height: 45px;
}
#innerSec .content h3 {
	font-size: 35px;
	line-height: 40px;
}
#innerSec .content h4 {
	font-size: 30px;
	line-height: 35px;
}
#innerSec .content h5 {
	font-size: 25px;
	line-height: 30px;
}
#innerSec .content h6 {
	font-size: 20px;
	line-height: 25px;
}
#innerSec .content p {
	margin: 0 0 15px 0;
	font-size: 18px;
	color: #232323;
	font-weight: 500;
	line-height: 28px;
}
#innerSec .content p:last-child {
	margin-bottom: 0;
}
#innerSec .content p strong {
	font-weight: 700;
}
#innerSec .content > strong {
	display: block;
	margin: 0 0 10px 0;
	font-size: 20px;
	color: #2A615B;
	font-weight: 700;
	line-height: 25px;
}
#innerSec .content ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0;
	margin: 0 0 15px 0;
	list-style-type: none;
}
#innerSec .content ul:last-child {
	margin-bottom: 0;
}
#innerSec .content ul li {
	position: relative;
	padding: 0 0 0 18px;
	font-size: 18px;
	color: #232323;
	font-weight: 500;
	line-height: 28px;
}
#innerSec .content ul li::before {
	content: "";
	width: 8px;
	height: 8px;
	background-color: #2A615B;
	border-radius: 100%;
	position: absolute;
	top: 10px;
	left: 0;
}
#innerSec .content ol {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0;
	margin: 0 0 15px 0;
	list-style-type: none;
}
#innerSec .content ol:last-child {
	margin-bottom: 0;
}
#innerSec .content ol li {
	counter-increment: item;
	position: relative;
	padding: 0 0 0 30px;
	font-size: 18px;
	color: #232323;
	font-weight: 500;
	line-height: 28px;
}
#innerSec .content ol li:before {
	content: counter(item, decimal-leading-zero);
	color: #2A615B;
	font-weight: 600;
	position: absolute;
	top: 0;
	left: 0;
}

/*----------------- About Page -----------------*/
#aboutSec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #F3EFEC;
	overflow: hidden;
}
#aboutSec .topContent {
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
}
#aboutSec .topContent h2 {
	margin: 0 0 40px 0;
	font-family: "Geologica";
	font-size: 40px;
	color: #000000;
	font-weight: 400;
	line-height: 50px;
}
#aboutSec .topContent h2 strong {
	color: #2A615B;
	font-weight: 400;
}
#aboutSec .topContent h2 br {
	display: block;
}
#aboutSec .topContent p {
	max-width: 860px;
	width: 100%;
	margin: 0 auto;
	margin-top: 15px;
	font-family: "Geologica";
	font-size: 20px;
	color: #000000;
	font-weight: 300;
	line-height: 28px;
}
#aboutSec .aboutContent {
	max-width: 860px;
	width: 100%;
	margin: 0 auto;
	margin-top: 40px;
}
#aboutSec .aboutContent .box {
	display: flex;
	gap: 60px;
}
#aboutSec .aboutContent .box .item {
	width: 50%;
}
#aboutSec .aboutContent h4 {
	margin: 0 0 15px 0;
	font-family: "Geologica";
	font-size: 20px;
	color: #000000;
	font-weight: 500;
	line-height: 28px;
}
#aboutSec .aboutContent p {
	margin: 15px 0 0 0;
	font-size: 16px;
	color: #000000;
	font-weight: 500;
	line-height: 23px;
}
#aboutListSec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}
#aboutListSec .item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 50px;
	margin-bottom: 100px;
}
#aboutListSec .item:nth-child(even) {
	flex-direction: row-reverse;
}
#aboutListSec .item:last-child {
	margin-bottom: 0;
}
#aboutListSec .item .image {
	width: 50%;
}
#aboutListSec .item .image img {
	width: 100%;
}
#aboutListSec .item .info {
	width: 50%;
}
#aboutListSec .item .info h3 {
	display: block;
	margin: 0 0 15px 0;
	font-family: "Geologica";
	font-size: 47px;
	color: #2A615B;
	font-weight: 500;
	line-height: 52px;
}
#aboutListSec .item .info p {
	margin: 0 0 15px 0;
	font-size: 16px;
	color: #000000;
	font-weight: 500;
	line-height: 23px;
}
#aboutListSec .item .info p:last-child {
	margin-bottom: 0;
}
#aboutListSec .item .info ul {
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0 0 15px 0;
	list-style-type: none;
}
#aboutListSec .item .info ul:last-child {
	margin-bottom: 0;
}
#aboutListSec .item .info ul li {
	position: relative;
	padding: 17px 20px 17px 40px;
	border-bottom: 1px solid #E7E7E7;
	font-family: "Geologica";
	font-size: 18px;
	color: #000000;
	font-weight: 300;
	line-height: 23px;
}
.rtl #aboutListSec .item .info ul li {
	padding: 17px 40px 17px 20px;
}
#aboutListSec .item .info ul li:last-child {
	border-bottom: none;
}
#aboutListSec .item .info ul li:before {
	content: "";
	width: 20px;
	height: 16px;
	background: url(../images/check-icon.svg) no-repeat center;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.rtl #aboutListSec .item .info ul li:before {
	left: auto;
	right: 0;
}
#unlockValueSec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}
#unlockValueSec .unlockValueContent {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	max-width: 1070px;
	width: 100%;
	margin: 0 auto;
}
#unlockValueSec .unlockValueContent h2 {
	margin: 0;
	margin-right: auto;
	font-family: "Geologica";
	font-size: 65px;
	color: #000000;
	font-weight: 400;
	line-height: 70px;
	text-align: center;
}
#unlockValueSec .unlockValueContent h2 + h2 {
	margin-right: 0;
	margin-left: auto;
	color: #2A615B;
}
#unlockValueSec .unlockValueContent img {
	width: 200px;
	height: 100px;
	object-fit: cover;
	margin-right: 30px;
}
#principlesSec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}
#principlesSec .topContent {
	max-width: 100%;
	width: 100%;
	margin: 0 auto 40px auto;
}
#principlesSec .topContent h2 {
	margin: 0;
	font-family: "Geologica";
	font-size: 47px;
	color: #2A615B;
	font-weight: 500;
	line-height: 52px;
}
#principlesSec .topContent p {
	margin: 15px 0 0 0;
	font-size: 16px;
	color: #000000;
	font-weight: 500;
	line-height: 23px;
}
#principlesSec .principlesContent {
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
}
#principlesSec .principlesContent ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
#principlesSec .principlesContent ul li {
	position: relative;
	padding: 14px 20px 14px 54px;
	border: 1px solid #2A615B;
	border-radius: 50px;
	font-family: "Geologica";
	font-size: 18px;
	color: #000000;
	font-weight: 400;
	line-height: 28px;
}
.rtl #principlesSec .principlesContent ul li {
	padding: 14px 54px 14px 20px;
}
#principlesSec .principlesContent ul li:before {
	content: "";
	width: 20px;
	height: 16px;
	background: url(../images/check-icon.svg) no-repeat center;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
}
.rtl #principlesSec .principlesContent ul li:before {
	left: auto;
	right: 20px;
}

/*----------------- Services Page -----------------*/
#servicesSec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
	counter-reset: custom;
}
#servicesSec .item {
	counter-increment: item;
	display: flex;
	flex-direction: row;
	gap: 50px;
	padding-bottom: 100px;
	margin-bottom: 100px;
	border-bottom: 1px solid #CBCBCB;
}
#servicesSec .item:nth-child(even) {
	flex-direction: row-reverse;
}
#servicesSec .item:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}
#servicesSec .item .image {
	width: 55%;
}
#servicesSec .item .image img {
	width: 100%;
}
#servicesSec .item .image h3 {
	display: flex;
    gap: 20px;
	margin: 0 0 30px 0;
	font-family: "Geologica";
	font-size: 37px;
	color: #2A615B;
	font-weight: 500;
	line-height: 42px;
}
#servicesSec .item .image h3::before {
	content: counter(item, decimal-leading-zero);
	font-weight: 200;
}
#servicesSec .item .info {
	width: 45%;
}
#servicesSec .item .info h5 {
	display: block;
	margin: 30px 0 20px 0;
	font-family: "Geologica";
	font-size: 20px;
	color: #000000;
	font-weight: 500;
	line-height: 25px;
}
#servicesSec .item .info p {
	margin: 0 0 15px 0;
	font-size: 16px;
	color: #000000;
	font-weight: 500;
	line-height: 23px;
}
#servicesSec .item .info p:last-child {
	margin-bottom: 0;
}
#servicesSec .item .info ul {
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0 0 15px 0;
	list-style-type: none;
}
#servicesSec .item .info ul:last-child {
	margin-bottom: 0;
}
#servicesSec .item .info ul li {
	position: relative;
	padding: 17px 20px 17px 40px;
	border-bottom: 1px solid #E7E7E7;
	font-family: "Geologica";
	font-size: 18px;
	color: #000000;
	font-weight: 300;
	line-height: 23px;
}
.rtl #servicesSec .item .info ul li {
	padding: 17px 40px 17px 20px;
}
#servicesSec .item .info ul li:last-child {
	border-bottom: none;
}
#servicesSec .item .info ul li:before {
	content: "";
	width: 20px;
	height: 16px;
	background: url(../images/check-icon.svg) no-repeat center;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.rtl #servicesSec .item .info ul li:before {
	left: auto;
	right: 0;
}
#servicesSec .item .info ul.ideal {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 0 0 15px 0;
	list-style-type: none;
}
#servicesSec .item .info ul.ideal:last-child {
	margin-bottom: 0;
}
#servicesSec .item .info ul.ideal li {
	position: relative;
	padding: 10px 20px;
	border: none;
	background: rgba(42, 97, 91, 0.15);
	border-radius: 50px;
	font-family: "Geologica";
	font-size: 18px;
	color: #2A615B;
	font-weight: 300;
	line-height: 20px;
}
#servicesSec .item .info ul.ideal li:before {
	display: none;
}

/*----------------- Faq Page -----------------*/
#faqSec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}
#faqSec .faqContent {
	width: 100%;
	margin: 0 auto;
}
#faqSec .faqContent .item {
	display: flex;
	align-items: flex-start;
	gap: 50px;
	margin-bottom: 50px;
}
#faqSec .faqContent .item:last-child {
	margin-bottom: 0;
}
#faqSec .faqContent .item h4 {
	max-width: 370px;
	width: 100%;
	margin: 17px 0 0 0;
	font-family: "Geologica";
	font-size: 25px;
	color: #2A615B;
	font-weight: 500;
	line-height: 30px;
}
#faqSec .faqContent .item .accordion {
	width: 100%;
}
#faqSec .faqContent .item .accordion .card {
	border: none;
	border-bottom: 1px solid #D6D6D6;
	background-color: transparent;
	border-radius: 0px;
}
#faqSec .faqContent .item .accordion .card .card-header {
	padding: 0;
	border: none;
	background-color: transparent;
	border-radius: 0px;
}
#faqSec .faqContent .item .accordion .card .card-header .link {
	position: relative;
	display: block;
	padding: 20px 0;
	padding-right: 20px;
	font-family: "Geologica";
	font-size: 18px;
	color: #000000;
	font-weight: 400;
	line-height: 28px;
	text-decoration: none;
}
.rtl #faqSec .faqContent .item .accordion .card .card-header .link {
	padding-right: 0;
	padding-left: 20px;
}
#faqSec .faqContent .item .accordion .card .card-header .link:after {
	content: "";
	width: 15px;
	height: 15px;
	background: url(../images/minus-icon.svg) no-repeat center;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-8px);
}
.rtl #faqSec .faqContent .item .accordion .card .card-header .link:after {
	right: auto;
	left: 0;
}
#faqSec .faqContent .item .accordion .card .card-header .link.collapsed:after {
	background-image: url(../images/plus-icon.svg);
}
#faqSec .faqContent .item .accordion .card .card-body {
	padding: 0 0 20px 0;
}
#faqSec .faqContent .item .accordion .card .card-body p {
	margin: 0 0 15px 0;
	font-family: "Geologica";
	font-size: 18px;
	color: #525252;
	font-weight: 300;
	line-height: 28px;
}
#faqSec .faqContent .item .accordion .card .card-body p:last-child {
	margin-bottom: 0;
}
#faqSec .faqContent .item .accordion .card .card-body ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0;
	margin: 0 0 15px 0;
	list-style-type: none;
}
#faqSec .faqContent .item .accordion .card .card-body ul:last-child {
	margin-bottom: 0;
}
#faqSec .faqContent .item .accordion .card .card-body ul li {
	position: relative;
	padding: 0 0 0 30px;
	font-family: "Geologica";
	font-size: 18px;
	color: #525252;
	font-weight: 300;
	line-height: 28px;
}
#faqSec .faqContent .item .accordion .card .card-body ul li::before {
	content: "";
	width: 20px;
	height: 16px;
	background: url(../images/check-icon.svg) no-repeat center;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

/*----------------- Blog Page -----------------*/
#blogFeaturedSec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #F3EFEC;
	overflow: hidden;
}
#blogFeaturedSec h4 {
	margin: 0 0 20px 0;
	font-family: "Geologica";
	font-size: 20px;
	color: #2A615B;
	font-weight: 400;
	line-height: 25px;
}
#blogFeaturedSec .featuredContent {
	display: flex;
	gap: 20px;
}
#blogFeaturedSec .featuredContent .image {
	width: 50%;
	overflow: hidden;
}
#blogFeaturedSec .featuredContent .image img {
	width: 100%;
	transform: scale(1);
	transition: all .3s ease-in-out;
}
#blogFeaturedSec .featuredContent:hover .image img {
	transform: scale(1.07);
}
#blogFeaturedSec .featuredContent .info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	width: 50%;
	padding: 20px 0;
}
#blogFeaturedSec .featuredContent .info .post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}
#blogFeaturedSec .featuredContent .info .post-meta .cat {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
#blogFeaturedSec .featuredContent .info .post-meta .cat a {
	display: block;
	padding: 8px 10px;
	background-color: #E5DDD6;
	font-size: 14px;
	color: #000000;
	font-weight: 500;
	line-height: 16px;
	text-decoration: none;
	transition: all .3s ease-in-out;
}
#blogFeaturedSec .featuredContent .info .post-meta .cat a:hover {
	background-color: #2A615B;
	color: #ffffff;
}
#blogFeaturedSec .featuredContent .info .post-meta .date {
	display: flex;
	flex-wrap: wrap;
	font-size: 16px;
	color: #000000;
	font-weight: 500;
	line-height: 20px;
}
#blogFeaturedSec .featuredContent .info h3 {
	margin: 0;
	font-family: "Geologica";
	font-size: 30px;
	color: #000000;
	font-weight: 400;
	line-height: 35px;
}
#blogFeaturedSec .featuredContent .info h3 a {
	color: #000000;
	text-decoration: none;
	transition: all .3s ease-in-out;
}
#blogFeaturedSec .featuredContent .info h3 a:hover {
	color: #2A615B;
}
#blogFeaturedSec .featuredContent .info p {
	margin: 0;
	font-size: 16px;
	color: #000000;
	font-weight: 500;
	line-height: 23px;
}
#blogFeaturedSec .featuredContent .info .readMoreBtn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	font-family: "Geologica";
	font-size: 16px;
	color: #000000;
	font-weight: 400;
	line-height: 23px;
	text-decoration: none;
	transition: all .3s ease-in-out;
}
#blogFeaturedSec .featuredContent .info .readMoreBtn:hover {
	gap: 15px;
	color: #2A615B;
}
#blogFeaturedSec .featuredContent .info .readMoreBtn:hover img {
	transition: all .3s ease-in-out;
}
#blogFeaturedSec .featuredContent .info .readMoreBtn:hover img {
	filter: brightness(0) saturate(100%) invert(30%) sepia(8%) saturate(2805%) hue-rotate(124deg) brightness(98%) contrast(83%);
}
.rtl #blogFeaturedSec .featuredContent .info .readMoreBtn img {
	transform: scale(-1);
}
#blogListingSec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}
#blogListingSec .titleFilter {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}
#blogListingSec .titleFilter h4 {
	margin: 0;
	font-family: "Geologica";
	font-size: 20px;
	color: #2A615B;
	font-weight: 400;
	line-height: 25px;
}
#blogListingSec .titleFilter .filterBox {
	display: flex;
	align-items: center;
	gap: 20px;
}
#blogListingSec .titleFilter .filterBox label {
	margin: 0;
	font-family: "Geologica";
	font-size: 16px;
	color: #575757;
	font-weight: 300;
	line-height: 20px;
}
#blogListingSec .titleFilter .filterBox .filterMenu {
	min-width: 170px;
	position: relative;
	z-index: 2;
}
#blogListingSec .titleFilter .filterBox .filterMenu > a {
	display: block;
	padding: 9px 15px;
	padding-right: 45px;
	border: 1px solid rgba(42, 97, 91, 0.5);
	background-color: #ffffff;
	border-radius: 0px;
	font-family: "Geologica";
	font-size: 16px;
	color: #2A615B;
	font-weight: 400;
	line-height: 20px;
}
#blogListingSec .titleFilter .filterBox .filterMenu > a::after {
	content: "";
	width: 15px;
	height: 15px;
	background-image: url("../images/select-menu-icon.svg");
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 13px;
	right: 15px;
}
#blogListingSec .titleFilter .filterBox .filterMenu a.open + ul {
	opacity: 1;
	visibility: visible;
}
#blogListingSec .titleFilter .filterBox .filterMenu ul {
	width: 100%;
	min-width: 100px;
	list-style-type: none;
	margin: -1px 0 0 0;
	padding: 0;
	border: 1px solid rgba(42, 97, 91, 0.5);
	background-color: #ffffff;
	border-radius: 0px;
	position: absolute;
	top: 100%;
	right: 0;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-in-out;
}
#blogListingSec .titleFilter .filterBox .filterMenu ul li {
	display: block;
	font-family: "Geologica";
	font-size: 16px;
	color: #4E4E4E;
	font-weight: 400;
	line-height: 20px;
}
#blogListingSec .titleFilter .filterBox .filterMenu ul li a {
	display: block;
	padding: 12px 15px;
	background-color: transparent;
	color: #4E4E4E;
	font-weight: 400;
	text-decoration: none;
	transition: all .3s ease-in-out;
}
#blogListingSec .titleFilter .filterBox .filterMenu ul li a:hover,
#blogListingSec .titleFilter .filterBox .filterMenu ul li.current > a {
	background: rgba(42, 97, 91, 0.5);
	color: #ffffff;
}
#blogListingSec .title {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	text-align: center;
}
#blogListingSec .title h3 {
	margin: 0;
	font-family: "Geologica";
	font-size: 37px;
	color: #2A615B;
	font-weight: 500;
	line-height: 42px;
}
#blogListingSec .blogListing {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 50px;
}
#blogListingSec .blogListing .wrapper {
	display: flex;
	flex-wrap: wrap;
	row-gap: 50px;
	column-gap: 20px;
}
#blogListingSec .blogListing .item {
	display: flex;
	flex-direction: column;
	width: calc(33.333333% - 13.5px);
}
#blogListingSec .blogListing .item .image {
	overflow: hidden;
}
#blogListingSec .blogListing .item .image img {
	width: 100%;
	transform: scale(1);
	transition: all .3s ease-in-out;
}
#blogListingSec .blogListing .item:hover .image img {
	transform: scale(1.10);
}
#blogListingSec .blogListing .item .info {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 10px 10px;
	padding-bottom: 0 !important;
}
#blogListingSec .blogListing .item .info .cat {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 10px;
}
#blogListingSec .blogListing .item .info .cat a {
	display: block;
	padding: 8px 10px;
	background-color: #F3EFEC;
	font-size: 14px;
	color: #000000;
	font-weight: 500;
	line-height: 16px;
	text-decoration: none;
	transition: all .3s ease-in-out;
}
#blogListingSec .blogListing .item .info .cat a:hover {
	background-color: #2A615B;
	color: #ffffff;
}
#blogListingSec .blogListing .item .info h3 {
	margin: 0 0 15px 0;
	font-family: "Geologica";
	font-size: 22px;
	color: #000000;
	font-weight: 400;
	line-height: 27px;
}
#blogListingSec .blogListing .item .info h3 a {
	color: #000000;
	text-decoration: none;
	transition: all .3s ease-in-out;
}
#blogListingSec .blogListing .item .info h3 a:hover {
	color: #2A615B;
}
#blogListingSec .blogListing .item .info .date {
	display: block;
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid #E7E7E7;
	font-size: 16px;
	color: #000000;
	font-weight: 500;
	line-height: 20px;
}
#blogListingSec .blogListing .pagination {
	display: flex;
	justify-content: center;
	align-items: center;
}
#blogListingSec .blogListing .pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 15px;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
#blogListingSec .blogListing .pagination ul li {
	display: block;
	font-family: "Geologica";
	font-size: 18px;
	color: #2A615B;
	font-weight: 400;
	line-height: normal;
}
#blogListingSec .blogListing .pagination ul li .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 50px;
	min-height: 50px;
	padding: 7px 15px;
	border: 1px solid #2A615B;
	background: transparent;
	color: #2A615B;
	text-decoration: none;
	transition: all .3s ease-in-out;
}
#blogListingSec .blogListing .pagination ul li .page-numbers:hover,
#blogListingSec .blogListing .pagination ul li .page-numbers.current {
	background: #2A615B;
	color: #ffffff;
}

/*----------------- Blog Detail Page -----------------*/
#blogDetailSec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}
#blogDetailSec .detailContent {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 35px;
}
#blogDetailSec .detailContent .title {
	display: flex;
	flex-direction: column;
	width: 83%;
}
#blogDetailSec .detailContent .title h1 {
	margin: 0;
	font-family: "Geologica";
	font-size: 50px;
	color: #2A615B;
	font-weight: 500;
	line-height: 55px;
}
#blogDetailSec .detailContent .title .post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #E7E7E7;
}
#blogDetailSec .detailContent .title .post-meta .cat {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
#blogDetailSec .detailContent .title .post-meta .cat a {
	display: block;
	padding: 8px 10px;
	background-color: #E5DDD6;
	font-size: 14px;
	color: #000000;
	font-weight: 500;
	line-height: 16px;
	text-decoration: none;
	transition: all .3s ease-in-out;
}
#blogDetailSec .detailContent .title .post-meta .cat a:hover {
	background-color: #2A615B;
	color: #ffffff;
}
#blogDetailSec .detailContent .title .post-meta .date {
	display: flex;
	flex-wrap: wrap;
	font-size: 16px;
	color: #000000;
	font-weight: 500;
	line-height: 20px;
}
#blogDetailSec .detailContent .image {
	width: 100%;
	margin-top: 15px;
}
#blogDetailSec .detailContent .image img {
	width: 100%;
}
#blogDetailSec .detailContent .info {
	width: 66%;
}
#blogDetailSec .detailContent .info h2,
#blogDetailSec .detailContent .info h3,
#blogDetailSec .detailContent .info h4,
#blogDetailSec .detailContent .info h5,
#blogDetailSec .detailContent .info h6 {
	display: inline-block;
	width: 100%;
	margin: 15px 0 15px 0;
	font-family: "Geologica";
	color: #000000;
	font-weight: 400;
}
#blogDetailSec .detailContent .info h2 {
	font-size: 40px;
	line-height: 45px;
}
#blogDetailSec .detailContent .info h3 {
	font-size: 35px;
	line-height: 40px;
}
#blogDetailSec .detailContent .info h4 {
	font-size: 30px;
	line-height: 35px;
}
#blogDetailSec .detailContent .info h5 {
	font-size: 25px;
	line-height: 30px;
}
#blogDetailSec .detailContent .info h6 {
	font-size: 20px;
	line-height: 25px;
}
#blogDetailSec .detailContent .info p {
	margin: 0 0 15px 0;
	font-size: 18px;
	color: #232323;
	font-weight: 500;
	line-height: 28px;
}
#blogDetailSec .detailContent .info p:last-child {
	margin-bottom: 0;
}
#blogDetailSec .detailContent .info p strong {
	font-weight: 700;
}
#blogDetailSec .detailContent .info > strong {
	display: block;
	margin: 0 0 10px 0;
	font-size: 20px;
	color: #2A615B;
	font-weight: 700;
	line-height: 25px;
}
#blogDetailSec .detailContent .info ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0;
	margin: 0 0 15px 0;
	list-style-type: none;
}
#blogDetailSec .detailContent .info ul:last-child {
	margin-bottom: 0;
}
#blogDetailSec .detailContent .info ul li {
	position: relative;
	padding: 0 0 0 18px;
	font-size: 18px;
	color: #232323;
	font-weight: 500;
	line-height: 28px;
}
.rtl #blogDetailSec .detailContent .info ul li {
	padding: 0 18px 0 0;
}
#blogDetailSec .detailContent .info ul li::before {
	content: "";
	width: 8px;
	height: 8px;
	background-color: #2A615B;
	border-radius: 100%;
	position: absolute;
	top: 10px;
	left: 0;
}
.rtl #blogDetailSec .detailContent .info ul li::before {
	left: auto;
	right: 0;
}
#blogDetailSec .detailContent .info ol {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0;
	margin: 0 0 15px 0;
	list-style-type: none;
}
#blogDetailSec .detailContent .info ol:last-child {
	margin-bottom: 0;
}
#blogDetailSec .detailContent .info ol li {
	counter-increment: item;
	position: relative;
	padding: 0 0 0 30px;
	font-size: 18px;
	color: #232323;
	font-weight: 500;
	line-height: 28px;
}
.rtl #blogDetailSec .detailContent .info ol li {
	padding: 0 30px 0 0;
}
#blogDetailSec .detailContent .info ol li:before {
	content: counter(item, decimal-leading-zero);
	color: #2A615B;
	font-weight: 600;
	position: absolute;
	top: 0;
	left: 0;
}
.rtl #blogDetailSec .detailContent .info ol li::before {
	left: auto;
	right: 0;
}
#blogDetailSec .detailContent .info .share {
	display: inline-block;
	width: 100%;
	vertical-align: top;
	position: relative;
	z-index: 0;
}
#blogDetailSec .detailContent .info .share .sfsi_widget {
	min-height: inherit;
}

/*----------------- Contact Page -----------------*/
#contactSec {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #F3EFEC;
	overflow: hidden;
}
#contactSec .contactBox {
	display: flex;
	gap: 100px;
}
#contactSec .contactBox .contactForm  {
	max-width: 750px;
	width: 60%;
}
#contactSec .contactBox .contactForm h2 {
	margin: 0;
	font-family: "Geologica";
	font-size: 47px;
	color: #2A615B;
	font-weight: 500;
	line-height: 52px;
}
#contactSec .contactBox .contactForm p {
	margin: 15px 0 0 0;
	font-size: 16px;
	color: #000000;
	font-weight: 500;
	line-height: 23px;
}
#contactSec .contactBox .contactForm .form-group {
	margin-bottom: 35px;
}
#contactSec .contactBox .contactForm .form-group:last-child {
	margin-bottom: 0;
}
#contactSec .contactBox .contactForm .form-group .floating-label-wrap {
	position: relative;
}
#contactSec .contactBox .contactForm .form-group note {
	margin: 0;
	font-size: 16px;
	color: #4E4E4E;
	font-weight: 600;
	line-height: 23px;
	position: absolute;
	top: 13px;
	right: 0;
	pointer-events: none;
}
#contactSec .contactBox .contactForm .form-group note + .wpcf7-form-control-wrap .form-control {
	padding-right: 40px;
}
#contactSec .contactBox .contactForm .form-group .form-control {
	display: block;
	width: 100%;
	height: auto;
	padding: 13px 0;
	border: none;
	border-bottom: 1px solid rgba(42, 97, 91, 0.5);
	background-color: transparent;
	border-radius: 0;
	font-size: 16px;
	color: #2A615B;
	font-weight: 600;
	line-height: 23px;
}
#contactSec .contactBox .contactForm .form-group .form-control::placeholder {
	color: transparent;
}
#contactSec .contactBox .contactForm .form-group .form-control:-webkit-autofill,
#contactSec .contactBox .contactForm .form-group .form-control:-webkit-autofill:hover, 
#contactSec .contactBox .contactForm .form-group .form-control:-webkit-autofill:focus {
	-webkit-text-fill-color: #2A615B !important;
}
#contactSec .contactBox .contactForm .form-group textarea.form-control {
	padding-top: 0;
	margin-top: 13px;
	resize: none;
}
#contactSec .contactBox .contactForm .form-group textarea.form-control::-webkit-scrollbar {
	width: 3px;
}
#contactSec .contactBox .contactForm .form-group textarea.form-control::-webkit-scrollbar-track {
	background: transparent;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
#contactSec .contactBox .contactForm .form-group textarea.form-control::-webkit-scrollbar-thumb {
	min-height: 40px;
	background: rgba(42, 97, 91, 0.5);
	-webkit-border-radius: 10px;
	border-radius: 10px;
	visibility: visible;
}
#contactSec .contactBox .contactForm .form-group textarea.form-control:hover::-webkit-scrollbar-thumb {
	visibility: visible;
}
#contactSec .contactBox .contactForm .form-group select.form-control,
#contactSec .contactBox .contactForm .form-group .select.form-control {
	padding-right: 20px;
	-webkit-appearance: initial;
	appearance: initial;
	background-image: url(../images/select-menu-icon.svg);
	background-repeat: no-repeat;
	background-position: right 0px center;
}
#contactSec .contactBox .contactForm .form-group .select-hidden {
	display: none;
	visibility: hidden;
}
#contactSec .contactBox .contactForm .form-group .select-options {
	user-select: none;
	display: none;
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-color: #F3EFEC;
	border: 1px solid rgba(42, 97, 91, 0.5);
	max-height: 190px;
	overflow-y: auto;
	position: absolute;
	top: calc(100% - 1px);
	right: 0;
	left: 0;
	z-index: 1;
}
#contactSec .contactBox .contactForm .form-group .select-options::-webkit-scrollbar {
	width: 3px;
}
#contactSec .contactBox .contactForm .form-group .select-options::-webkit-scrollbar-track {
	background: transparent;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
#contactSec .contactBox .contactForm .form-group .select-options::-webkit-scrollbar-thumb {
	min-height: 40px;
	background: rgba(42, 97, 91, 0.5);
	-webkit-border-radius: 10px;
	border-radius: 10px;
	visibility: visible;
}
#contactSec .contactBox .contactForm .form-group .select-options:hover::-webkit-scrollbar-thumb {
	visibility: visible;
}
#contactSec .contactBox .contactForm .form-group .select-options li {
	padding: 12px 15px;
	font-size: 16px;
	color: #4E4E4E;
	font-weight: 600;
	line-height: 23px;
	transition: all .3s ease-in-out;
	cursor: pointer;
}
#contactSec .contactBox .contactForm .form-group .select-options li:hover,
#contactSec .contactBox .contactForm .form-group .select-options li.is-selected {
	background: rgba(42, 97, 91, 0.5);
	color: #ffffff;
}
#contactSec .contactBox .contactForm .form-group label {
	margin: 0;
	font-size: 16px;
	color: #4E4E4E;
	font-weight: 600;
	line-height: 23px;
	position: absolute;
	top: 13px;
	left: 0;
	transition: 0.2s ease all;
	pointer-events: none;
}
#contactSec .contactBox .contactForm .form-group .wpcf7-form-control-wrap:has(input:focus) ~ label,
#contactSec .contactBox .contactForm .form-group .wpcf7-form-control-wrap:has(input:not(:placeholder-shown)) ~ label,
#contactSec .contactBox .contactForm .form-group .wpcf7-form-control-wrap:has(textarea:focus) ~ label,
#contactSec .contactBox .contactForm .form-group .wpcf7-form-control-wrap:has(textarea:not(:placeholder-shown)) ~ label,
#contactSec .contactBox .contactForm .form-group .wpcf7-form-control-wrap:has(.select.active) ~ label,
#contactSec .contactBox .contactForm .form-group .wpcf7-form-control-wrap:has(select:focus) ~ label,
#contactSec .contactBox .contactForm .form-group .wpcf7-form-control-wrap:has(select:not([value=""])) ~ label {
	font-size: 14px;
	font-weight: 500;
	color: #777777;
	top: -10px;
	left: 0;
}
#contactSec .contactBox .contactForm .form-group .wpcf7-form-control-wrap:has(textarea) ~ label {
	top: 0px;
}
#contactSec .contactBox .contactForm .form-group .wpcf7-form-control-wrap:has(textarea:focus) ~ label,
#contactSec .contactBox .contactForm .form-group .wpcf7-form-control-wrap:has(textarea:not(:placeholder-shown)) ~ label {
	top: -23px;
}
#contactSec .contactBox .contactForm .form-group .submitBtn {
	display: inline-block;
	margin: 0;
	padding: 13px 28px;
	border: 2px solid #2A615B;
	background: linear-gradient(180deg, #2A615B 0%, #39847C 100%);
	border-radius: 0px;
	font-family: "Geologica";
	font-size: 16px;
	color: #ffffff;
	font-weight: 400;
	line-height: 20px;
	text-transform: none;
	text-decoration: none;
	transition: all .3s ease-in-out;
}
#contactSec .contactBox .contactForm .form-group .submitBtn:hover {
	background: linear-gradient(180deg, #39847C 0%, #2A615B 100%);
}
#contactSec .contactBox .contactDetail {
	max-width: 450px;
	width: 40%;
}
#contactSec .contactBox .contactDetail .item {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 30px;
	padding: 30px 30px;
	background-color: #EFEAE6;
}
#contactSec .contactBox .contactDetail .item:last-child {
	margin-bottom: 0;
}
#contactSec .contactBox .contactDetail .item h4 {
	margin: 0;
	font-family: "Geologica";
	font-size: 20px;
	color: #000000;
	font-weight: 300;
	line-height: 28px;
}
#contactSec .contactBox .contactDetail .item h4 strong {
	font-weight: 500;
}
#contactSec .contactBox .contactDetail ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
#contactSec .contactBox .contactDetail ul li {
	position: relative;
	padding: 0 0 0 55px;
	font-family: "Geologica";
	font-size: 16px;
	color: #2A615B;
	font-weight: 400;
	line-height: 24px;
}
.rtl #contactSec .contactBox .contactDetail ul li {
	padding: 0 55px 0 0;
}
#contactSec .contactBox .contactDetail ul li::before,
#contactSec .contactBox .contactDetail ul li::after {
	content: "";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: linear-gradient(180deg, #CBA671 0%, #BD8F4C 100%);
	border-radius: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: background .3s linear;
}
.rtl #contactSec .contactBox .contactDetail ul li::before,
.rtl #contactSec .contactBox .contactDetail ul li::after {
	left: auto;
	right: 0;
}
#contactSec .contactBox .contactDetail ul li:has(a:hover)::before {
	background: linear-gradient(180deg, #BD8F4C 0%, #CBA671 100%);
}
#contactSec .contactBox .contactDetail ul li.phone::after {
	background: url(../images/phone-icon.svg) center no-repeat;
}
#contactSec .contactBox .contactDetail ul li.email::after {
	background: url(../images/email-icon.svg) center no-repeat;
}
#contactSec .contactBox .contactDetail ul li.lineid::after {
	background: url(../images/lineid-icon.svg) center no-repeat;
}
#contactSec .contactBox .contactDetail ul li.address::after {
	background: url(../images/address-icon.svg) center no-repeat;
}
#contactSec .contactBox .contactDetail ul li span {
	display: block;
	font-family: "Geologica";
	font-size: 14px;
	color: #000000;
	font-weight: 300;
	line-height: 18px;
}
#contactSec .contactBox .contactDetail ul li a {
	display: inline-block;
	color: #2A615B;
	text-decoration: underline 1px transparent;
	text-underline-offset: 4px;
	transition: all .3s ease-in-out;
}
#contactSec .contactBox .contactDetail ul li a:hover {
	color: #2A615B;
	text-decoration: underline;
}
#contactSec .contactBox .contactDetail ul li a br {
	display: block;
}
#contactSec .contactBox .contactDetail ul.checklist {
	gap: 10px;
}
#contactSec .contactBox .contactDetail ul.checklist li {
	padding: 0 0 0 30px;
}
.rtl #contactSec .contactBox .contactDetail ul.checklist li {
	padding: 0 30px 0 0;
}
#contactSec .contactBox .contactDetail ul.checklist li::before,
#contactSec .contactBox .contactDetail ul.checklist li::after {
	display: none;
}
#contactSec .contactBox .contactDetail ul.checklist li::after {
	content: "";
	display: block;
	width: 20px;
	height: 16px;
	background: url(../images/check-icon.svg) center no-repeat;
	border-radius: 0px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
