/*
	Theme Name: 	Sheikh Estates
	Datum: 			04. Juni 2025
	Version: 		1.0
	Author: 		id-script // grafik . print . web
	Author URI: 	https://www.id-script.com/
*/

/* =============================
    -- Default
============================= */

:root {
	--body:			#FFFAE2;
	--ff-p:			#656565;
	--white: 		#ffffff;
	--black:		#212529;
	--gold:			#C5972F;
	--gray:			#F8F9FA;
	--ff-headline:	'Minion Pro';
	--ff-par:		'Rubik';
}

::-moz-selection {color: var(--white); background: var(--black);}
::selection {color: var(--white); background: var(--black);}

body {
	background: var(--white);
	font-family: var(--ff-par), sans-serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.5px;
	line-height: 1.6;
	color: var(--ff-p);
	overflow-x: hidden;
}

h1 {
	font-size: 36px;
	font-weight: 600;
	letter-spacing: -.25px;
	line-height: 1.05;
	text-align: center;
	font-family: var(--ff-headline);
	color: var(--gold);
	margin-bottom: 30px;
}

h1 span {
	display: block;
	font-size: 24px;
	font-weight: 500;
	margin-top: 8px;
}

h2 {
	color: var(--black);
	font-family: var(--ff-par);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: .25px;
	margin-bottom: 16px;
}

@media (min-width: 768px){
	h2 {
		margin-bottom: 50px;
		border-bottom: 1px solid var(--black);
		display: inline-block;
		padding-right: 80px;
	}
}

h3 {
	color: var(--black);
	font-size: 21px;
	font-weight: 600;
}

h4 {
	color: var(--black);
	font-family: var(--ff-par);
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: .35px;
}

h5 {
	color: var(--black);
	font-size: 16px;
	font-weight: 500;
}

h6 {
	color: var(--gold);
	font-family: var(--ff-par);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.5px;
	line-height: 1.3;
	text-transform: uppercase;
}


b,
strong {
	color: var(--black);
	font-weight: 500;
}

ul {
	margin: 0;
	padding-left: 24px;
}

ul li {
	list-style-type: disc;
}

.px-1 {
	padding-left: 18px;
	padding-right: 18px;
}

.pt-1 {padding-top: 60px;}
.pb-1 {padding-bottom: 60px;}
.mb-1 {margin-bottom: 60px;}

@media (min-width: 1024px){
	.px-1 {
		padding-left: 54px;
		padding-right: 54px;
	}
	.pt-1 {padding-top: 80px;}
	.pb-1 {padding-bottom: 80px;}
}

@media (min-width: 1440px){
	.pt-1 {padding-top: 120px;}
	.pb-1 {padding-bottom: 120px;}
}

figure {margin-bottom: 12px;}

blockquote {
	font-family: var(--ff-headline), serif;
	color: var(--gold);
	font-size: 24px;
	line-height: 1.2;
	margin: 0;
	letter-spacing: 0;
	font-weight: 500;
	text-align: center;
}

@media (min-width: 960px){
	blockquote {
		font-size: 28px;
		line-height: 1.3;
	}
}

/* =============================
    -- Links
============================= */
a {
    text-decoration: none;
	color: var(--black);
	cursor: pointer;   
}

/* -- hover::underline -- */
.hua {
	display: inline-block;
	position: relative;
}

.hua::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: var(--gold);
	transform: scaleX(0);
	transform-origin: top left;
	transition: transform 0.3s ease;
}

.hua:hover::before {
	transform: scaleX(1);
}

/* -- Button -- */
a.button {
	display: block;
	color: var(--gold);
	border: 2px solid var(--gold);
	text-align: center;
	padding: 12px 38px;
	cursor: pointer;
	vertical-align: middle;
	text-decoration: none;
	transition: all .2s linear;
	max-width: 200px;
	margin: 40px auto 0 auto;
}

a.button i {
	display: inline-block;
	transition: 0.1s ease-in;
}

a.button:hover {
    color: white;
    background-color: var(--gold);
}

a.button:hover i {
	transform: translateX(50%);
}


/* =============================
    -- Classes
============================= */

.entry {
	font-size: 16px;
	font-weight: 500;
	color: var(--black);
}

@media (min-width: 600px){
	.max-w600 {
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 960px){
	.max-w960 {
		max-width: 960px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1200px){
	.max-w1200 {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}
}





/* =============================
    -- Header
============================= */

#header_main {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: var(--black);
	z-index: 999999;
	padding-left: 18px;
	padding-right: 18px;
}

#header_main .inner {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

#header_main .logo {
	width: 100%;
	max-width: 300px;
}


/* =============================
    -- Home: Intro
============================= */
#home_intro {
	text-align: center;
	font-size: 17px;
	letter-spacing: .1px;
}

@media (min-width: 1024px){
	#about_intro .pt-1 {
		padding-top: 120px;
	}
}

/* =============================
    -- Latest Project
============================= */
#latest_projects {
	background: var(--gray);
}

#latest_projects .post_item figure {
	margin-bottom: 12px;
}

#latest_projects .post_item figure img {
	width: 100%;
}

/*  -- .post_meta -- */
.post_meta dl {
	display: inline-block;
	margin-bottom: 0;
	width: 100%;
}

.post_meta dt {
	color: var(--black);
	float: left;
	clear: left;
	width: 170px;
	font-weight: 500;
	margin-bottom: 8px;
}

.post_meta dt::after {
	content: ":";
}

.post_meta dd {
	margin: 0 0 0 170px;
	padding: 0 0 0.5em 0;
	text-align: right;
}

/* -- .post_payment -- */
.post_payment dl {
	margin-top: 40px;
	margin-bottom: 0;
	width: 100%;
}

.post_payment dt {
	color: var(--black);
	float: left;
	clear: left;
	width: 50%;
	font-weight: 500;
	margin-bottom: 8px;
}

.post_payment dt::after {
	content: ":";
}

.post_payment dd {
	color: var(--black);
	font-weight: 500;
	margin: 0 0 0 50%;
	padding: 0 0 0.5em 0;
	text-align: right;
}

/* -- .post_developer -- */
.post_developer {
  background: var(--gray);
}

.post_developer .inner {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.post_developer figure {
	margin-top: 30px;
	margin-bottom: 30px;
}


/* -- .slider -- */
.slick-list {
	z-index: 10;
}

.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev::before, .slick-next::before {
  font-family: 'isf';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev::before {
  content: '\e808';
}

.slick-next::before {
  content: '\e802';
}

.main_desc ul {
	margin-bottom: 12px;
}


@media (min-width: 768px){
	#latest_projects article {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		flex-direction: row-reverse;
	}
	
	#latest_projects article figure {
		width: 52%;
	}
	
	#latest_projects article .description {
		width: 42%;
	}
	
	.post_meta,
	.post_payment dl {
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.post_meta {
		margin-top: 80px;
	}
	
}


@media (min-width: 1024px){



}




/* =============================
    -- Developers
============================= */
#developers figure {
	text-align: center;
}







/* =============================
    -- About
============================= */
#about_intro {
	text-align: center;
}

#about_intro strong {
	font-size: 17px;
	letter-spacing: 0.25px;
}

#about_services .item,
#about_what .item {
	background: var(--gray);
	padding: 24px 12px;
	margin-bottom: 20px;
	border-radius: 10px;
}


@media (min-width: 768px){
	#about_us .items_wrapper,
	#about_why .items_subwrapper,
	#about_approach .items_wrapper,
	#about_what .items_wrapper,
	#about_join .items_subwrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	#about_us .item-1,
	#about_why .items_subwrapper .item-2,
	#about_approach .item-1,
	#about_join .item-2 {
		width: 40%;
	}
	
	#about_us .item-2,
	#about_why .items_subwrapper .item-3,
	#about_approach .item-2,
	#about_join .item-3 {
		width: 54%;
	}
	
	#about_what .item {
		width: 31%;
	}

	#about_why figure,
	#about_join figure {
		margin: 0 auto 30px auto;
	}
	
	
	
}
	
@media (min-width: 1024px){
	#about_services .items_wrapper,
	#about_why .items_wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	#about_services .item {
		width: 31%;
	}
	
	#about_why .items_wrapper .item-1 {
		width: 40%;
	}
	
	#about_why .items_subwrapper {
		display: block;
		width: 54%;
	}
	
	#about_why .items_subwrapper .item-2,
	#about_why .items_subwrapper .item-3 {
		width: 100%;
	}
	
}


/* =============================
    -- Contact 
============================= */
.cf_data a {
	background: var(--gray);
	padding: 20px 30px;
	border-radius: 10px;
	display: flex;
  flex-wrap: wrap;
	margin-bottom: 12px;
}

.cf_data a span {
	color: var(--black);
	font-weight: 500;
	width: 120px;
}

.cf_data a:hover {
	background: var(--black);
	color: var(--white);
}

.cf_data a:hover span {
	color: var(--white);
}


/* =============================
    -- Footer 
============================= */
#footer_main {
	background: var(--black);
	color: var(--white);
}

#footer_main a,
#footer_main strong {
	color: var(--white);
}

#footer_main .item {
	margin-bottom: 60px;
}

#footer_main .item-1 {
	text-align: center;
	max-width: 340px;
	hyphens: none;
	margin-left: auto;
	margin-right: auto;
}

#footer_main span {
	display: inline-block;
	font-weight: 500;
}

#footer_logo {
	display: block;
	width: 100%;
	max-width: 200px;
	margin: 0 auto 40px auto;
}

@media (min-width: 768px){

	#footer_main .inner {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
  		grid-auto-rows: max-content;
	}
	
	#footer_main .item-1 {
		grid-column: 1 / 3;
		grid-row: 1 / 2;
		margin-bottom: 100px;
	}
	
	#footer_main .item-2 {
		grid-column: 1 / 2;
		grid-row: 2 / 4;
	}
	
	#footer_main .item-3 {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}
	
	#footer_main .item-4 {
		grid-column: 2 / 3;
		grid-row: 3 / 4;
	}
}

@media (min-width: 1024px){
	
	#footer_main .inner {
		grid-template-columns: repeat(3, 1fr);
	}
	
	#footer_main .item-1 {
		grid-column: 1 / 4;
	}

	#footer_main .item-4 {
		grid-column: 3 / 4;
		grid-row: 2 / 3;
	}
	
}

/* =============================
    -- Footer Meta
============================= */
#footer-meta .inner {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-between;
	padding: 18px 0;
}

#footer-meta span {
	display: block;
	text-transform: uppercase;
}

#footer-meta,
#footer-meta a {
	font-size: 11px;
}

#footer-meta .wda {
	transition: 0.3s all;
}
#footer-meta .wda i {
	font-size: 18px;
	line-height: 14px;
	color: #00cbff !important;
}
#footer-meta [class^="icon-"]::before,
#footer-meta [class*=" icon-"]::before {
	font-weight: 400;
}
#footer-meta .wda:hover {
	font-weight: 600;
	color: #00cbff;
}

/* =============================
    -- Back To Top
============================= */
.back-to-top {
	position:fixed;text-indent:-999em;background:#f3f3f3 url(data:image/svg+xml;base64,PHN2ZyBpZD0iRWJlbmVfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTcuNCIgaGVpZ2h0PSIxMC44IiB2aWV3Qm94PSIwIDAgMTcuNCAxMC44Ij48c3R5bGU+LnN0MHtmaWxsOiMyQTMxMzY7fTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTTIgMTAuN2w2LjctNi42IDYuNyA2LjcgMi0yLTYuNy02LjdWMmwtMi0yTDAgOC43eiIvPjwvc3ZnPg==) center 50% no-repeat;border:1px solid rgb(0 0 0 / .75);border-radius:.1875em;height:40px;width:40px;bottom: 124px;
  right: 30px;opacity:.25;z-index:3000}.back-to-top:hover{opacity:1;background-position:center 45%}