/* Typo Import */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Poppins:wght@400;500&display=swap');


@font-face {
    font-family: 'Lucky Beauty';
    src: url('../fonts/Lucky-Beauty-Regular.woff2') format('woff2'),
        url('../fonts/Lucky-Beauty-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LT Museum';
    src: url('../fonts/LTMuseum-Bold.woff2') format('woff2'),
        url('../fonts/LTMuseum-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*Common css*/
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
	--cream: #C4A678;
	--black: #2C2C2C;
	--white: #fff;
	--grey: #f5f5f5;
	--normal: normal;
	--medium: 500;
	--bold: bold;
	--transition: 0.5s all ease-in-out;
	--font-poppins: 'Poppins', sans-serif;
	--font-montserrat: 'Montserrat', sans-serif;
	--font-lucky-beauty: 'Lucky Beauty', sans-serif;
	--font-lt-museum: 'LT Museum', sans-serif;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: var(--light-black);
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-lucky-beauty);
	margin: 0;
	font-size: 1rem;
	font-weight: var(--normal);
	line-height: 1.5;
	color: var(--black);
	font-style: normal;
	background-image: url("../../../../wp-content/uploads/2023/10/pattern.svg");
	/* overflow-x: clip; */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

img {
	max-width: 100%;
	width: 100%;
}

a {
	color: var(--blue);
	text-decoration: none;
	background-color: transparent;
	transition: var(--transition);
}

a:hover {
	color: var(--blue);
	transition: var(--transition);
}

h1,
h2,
h3 {

}

h4 {

}

h5,
h6 {

}

h1 {
	font-size: 4.4rem;
	line-height: 1.2em;
	font-weight: var(--bold);
}

h2 {
	font-size: 2.6rem;
	line-height: 1.2em;
	font-weight: var(--medium);
}

h3 {
	font-size: 2.2rem;
	line-height: 1.2em;
}

h4 {
	font-size: 1.3em;
}


/* Font Classes */

.font-weight-normal {
	font-weight: var(--normal);
}

.font-weight-medium {
	font-weight: var(--medium);
}

.font-weight-bold {
	font-weight: var(--bold);
}

.font-weight-extra-bold {
	font-weight: var(--extra-bold);
}


/* Color Classes */
.white-text {
	color: var(--white) !important;
}

.white-bg {
	background-color: var(--white);
}




/* Buttons */
.custom-button {
	color: var(--white);
	text-decoration: none;
	padding: 0.6rem 2rem;
	line-height: 1rem;
	background-color: var(--black);
	transition: var(--transition);
	display: inline-block;
	font-size: 1rem;
	border: 1px solid var(--black);
}
.custom-button:hover {
	color: var(--black);
	background-color: var(--white);
}
.custom-button.outline-button {
	background-color: transparent;
	color: var(--black);
}
.custom-button.outline-button:hover {
	background-color: var(--black);
	color: var(--white);
}



/* Presets Classes */
.container {
	max-width: 1300px;
}

.p-top {
	padding-top: 6rem;
}

.p-bottom {
	padding-bottom: 6rem;
}



/* Common Blocks */


/*Header CSS*/
/* Logo */
.custom-logo {
	width: auto;
	height: auto;
	position: relative;
	bottom: 0rem;
	max-width: 200px;
	transition: var(--transition);
}
.header-style.sticky .custom-logo {
	max-width: 130px;
	transition: var(--transition);
}

/* Header */
.header-style {
	position: fixed;
	z-index: 2;
	width: 100%;
	padding: 1rem 3rem;
	transition: var(--transition);
	background: var(--black);
}
body.home .header-style, body.single-project .header-style{
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0,0,0,0) 100%);
}
body.home .header-style.sticky, body.single-project .header-style.sticky {
	background: var(--black);
	transition: var(--transition);
}
.header-style > .container-fluid {
	display: flex;
	justify-content: center;
	align-items: center;
}
#navbar-list {
	justify-content: space-between;
}
.header-style > .container-fluid .navbar {
	flex: 1 1 40%;
}
.header-style > .container-fluid .navbar-brand {
	flex: 1 1 20%;
	text-align: center;
}
.header-style > .container-fluid .action-menu {
	flex: 1 1 40%;
}
.header-style > .container-fluid .menu_main_menu_ul {
	display: flex;
	list-style-type: none;
	gap: 2em;
	margin-bottom: 0em;
}
.header-style > .container-fluid .menu_action_menu_ul {
	justify-content: right;
	display: flex;
	list-style-type: none;
	margin-bottom: 0em;
}
.header-style > .container-fluid .menu_main_menu_ul a, .header-style > .container-fluid .menu_action_menu_ul a {
	font-family: var(--font-lucky-beauty);
	color: var(--white);
}






/*Footer CSS*/
.footer-top .container {
	display: flex;
	border-top: 1px solid var(--black);
	padding-top: 3em;
}
.footer-top .container .footer-menu {
	flex: 40%;
	font-family: var(--font-lucky-beauty);
	font-size: 1rem;
	padding-right: 8em;
}
.footer-top .container > .footer-menu-title {
	flex: 15%;
}
.footer-top .container .contact-menu {
	flex: 25%;
}
.footer-top .container .social-menu {
	flex: 20%;
}
.footer-top .footer-menu-title {
	font-family: var(--font-lucky-beauty);
	font-size: 1.3rem;
	margin-bottom: 1em;
}
.footer-top ul {
	padding: 0em;
	list-style-type: none;
}
.footer-top ul {
	padding: 0em;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: 0.7em;
}
.footer-top .container .social-menu a {
	position: relative;
}
.footer-top .container .social-menu a::before {
	content: '\f39e';
	font-family: 'FontAwesome';
	width: 25px;
	height: 25px;
	background-color: var(--black);
	position: absolute;
	color: var(--white);
	text-align: center;
	border-radius: 50%;
	line-height: 25px;
	left: -2em;
}
.footer-top .container .social-menu .facebook a::before {
	content: '\f39e';
}
.footer-top .container .social-menu .instagram a::before {
	content: '\f16d';
}
.footer-top .container .social-menu .linkedin a::before {
	content: '\f0e1';
}
.footer-top .social_menu_container ul {
	padding-left: 2em;
}
.footer-bottom {
	margin-top: 3em;
}
.footer-bottom .footer-menu-title {
	font-family: var(--font-lucky-beauty);
	font-size: 1.3rem;
}
.footer-bottom .footer-bottom_content p {
	font-family: var(--font-poppins);
	letter-spacing: 1px;
}
.footer-bottom .container {
	border-bottom: 1px solid var(--black);
	padding-bottom: 2em;
	margin-bottom: 2em;
}

/* Copyright */
.footer-copyright .col-sm-3 p {
	color: var(--cream);
	font-size: 0.9rem;
}
.footer-copyright p {
	font-family: var(--font-poppins);
}



/* Home */
#homeSlider > .elementor-widget-container .elementor-swiper:last-child {
	position: absolute;
	right: 4%;
	bottom: 10%;
	z-index: 1;
	width: 40%;
}
.homeSliderText {
	position: absolute !important;
	left: 5%;
	top: 50%;
	z-index: 1;
	font-family: var(--font-lucky-beauty);
	width: 20%;
	transform: translateY(-50%);
}
.homeSliderText h1 {
	font-family: var(--font-lucky-beauty) !important;
	color: var(--white) !important;
	font-size: 7rem;
}
.home-counter .elementor-counter .elementor-counter-number-prefix {
	flex-grow: 0;
}
.home-counter .elementor-counter .elementor-counter-title {
	text-align: left;
}


/* Projects */
.project-intro-content {
	padding-top: 13em;
}
.projects-grid .filter {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2em;
}
.projects-grid .filter .cat-filter ul {
	display: flex;
	list-style-type: none;
	gap: .5em;
	padding: 0em;
}
.projects-grid .filter .cat-filter ul li {
	border: 1px solid var(--black);
	padding: 0.5em 1em;
	font-family: var(--font-poppins);
	cursor: pointer;
}
.projects-grid .filter .cat-filter ul li:hover, .projects-grid .filter .cat-filter ul li.active{
	background-color: var(--black);
	color: var(--white);
}


/*Styling Selectbox*/
.dropdown {
	width: auto;
	background-color: var(--white);
	box-shadow: 0 0 2px rgb(204, 204, 204);
	transition: all 0.5s ease;
	position: relative;
	min-width: 200px;
	height: 100%;
}
.dropdown:focus-visible{
	outline: none;
}
.dropdown .select {
	cursor: pointer;
	display: block;
	padding: .5em 1em;
	font-family: var(--font-poppins);
	border: 1px solid var(--black);
}
.dropdown .select:focus-visible {
	outline: 0;
}
.dropdown .select > i {
	font-size: 13px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	float: right;
	line-height: 20px;
}
  .dropdown:hover {
	box-shadow: 0 0 4px rgb(204, 204, 204);
  }
  .dropdown:active {
	background-color: #f8f8f8;
  }
  .dropdown.active:hover,
  .dropdown.active {
	box-shadow: 0 0 4px rgb(204, 204, 204);
	border-radius: 2px 2px 0 0;
	background-color: #f8f8f8;
  }
  .dropdown.active .select > i {
	transform: rotate(-90deg);
  }
  .dropdown .dropdown-menu {
	position: absolute;
	background-color: #fff;
	width: 100%;
	left: 0;
	margin-top: 1px;
	box-shadow: 0 1px 2px rgb(204, 204, 204);
	border-radius: 0 1px 2px 2px;
	overflow: hidden;
	display: none;
	max-height: 200px;
	overflow-y: auto;
	z-index: 9;
	padding: 0;
	list-style: none;
  }
  .dropdown .dropdown-menu li {
	padding: 10px;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
	font-family: var(--font-poppins);
}
.dropdown .dropdown-menu li:hover {
	background-color: #F7F8F8;
}
.dropdown .dropdown-menu li:active {
	background-color: #F7F8F8;
}
.projects-container {
	display: flex;
	gap: 1em;
}
.projects-grid .all_projects-item {
	position: relative;
	flex: 0 1 25%;
}
.projects-grid .all_projects-item .product-img img {
	width: 100%;
	height: auto;
}
.projects-grid .all_projects-item .meta-tag {
	position: absolute;
	right: 1em;
	top: 1em;
	background-color: var(--white);
	padding: 0.5em 1em;
	border-radius: 25px;
	font-family: var(--font-poppins);
	font-size: 0.8em;
	font-weight: var(--medium);
	text-transform: uppercase;
}
.projects-grid .all_projects-item .item_title {
	font-size: 2rem;
}
.projects-grid .all_projects-item .project-item-content {
	position: absolute;
	width: 100%;
	bottom: 0;
	color: var(--white);
	padding: 6em 1em 1em 1em;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.projects-grid .all_projects-item .meta-Categories span {
	font-size: 4em;
	line-height: 0;
	width: 22px;
	display: inline-block;
	text-align: center;
}
.projects-grid .all_projects-item .project-item-content .units {
	font-size: 1.1rem;
}

/* Single Project */
.elementor-element.project-intro-footer {
	position: absolute;
	width: 50%;
	bottom: -1px;
	right: 0;
}
.project-intro-footer-content p {
	margin-bottom: 0;
}
.project-intro-footer .imgs-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	pointer-events: none;
}

.form-container input {
	padding: 0.5em 1em;
	width: 100%;
	font-family: var(--font-poppins);
}
.form-container select {
	width: 100%;
	border-radius: 0px;
	border: 1px solid #808285;
	padding: 0.5em 1em;
	background-color: transparent;
	font-family: var(--font-poppins);
	color: #717171;
}


/*Responsive code*/
@media only screen and (min-width:1600px) and (max-width:1920px) {}

@media only screen and (max-width:1400px) {}

@media only screen and (min-width:1024px) and (max-width:1200px) {}

@media only screen and (max-width:1000px) {}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
	.header-style > .container-fluid .menu_action_menu_ul {
		padding-right: 1em !important;
	}

}

@media only screen and (max-width:1023px) {

	/* Typography */


	/* Presets */


	/*Header*/
	.header-style {
		padding: 1rem 0rem 1rem;
		z-index: 2;
		overflow: visible;
	}

	.custom-logo {
		max-width: 200px;
	}

	.navbar-brand {
		padding: 0rem;
	}
	.header-style > .container-fluid .navbar {
		flex: 1 1 30%;
		position: unset;
	}
	.header-style > .container-fluid .action-menu {
		flex: 1 1 30%;
	}
	.header-style > .container-fluid {
		padding: 0em .5em !important;
	}
	.header-style > .container-fluid .menu_action_menu_ul {
		padding: 0em;
	}
	.navbar-toggler {
		outline: none !important;
		border: 0px !important;
		background-color: transparent !important;
		filter: invert(1);
	}
	.navbar-toggler:focus {
		box-shadow: none;
	}
	.header-style .container-fluid {
		padding: 0;
	}
	#navbar-list {
		position: absolute;
		background-color: var(--black);
		width: 100%;
		padding: 2em 0em 3em;
		top: 5.5em;
		left: 0;
	}
	.header-style .navbar #navbar-list ul {
		flex-wrap: wrap;
		flex-direction: column;
		padding: 0em;
	}
	.header-style .navbar #navbar-list ul {
		flex-wrap: wrap;
		flex-direction: column;
		padding: 0em;
		gap: 1.2em;
		text-align: center;
	}
	.header-style .navbar #navbar-list ul#menu-action-menu {
		flex-direction: revert;
		justify-content: center;
		margin-top: 2em;
	}
	.main_menu_container #menu-main-menu a {
		font-size: 1.2rem;
	}
	.main_menu_container .menu-item-has-children {
		position: relative;
		text-align: center;
	}
	.main_menu_container .menu-item-has-children .sub-menu {
		position: relative;
		min-width: auto;
		left: 0rem;
	}
	.main_menu_container .menu-item-has-children::after {
		right: auto;
		left: auto;
		bottom: auto;
		top: 1.2em;
		transform: translateX(600%);
	}
	.main_menu_container .menu-item-has-children .sub-menu a {
		font-size: 0.9rem !important;
	}
	.main_menu_container .menu-item-has-children.show-submenu .sub-menu {
		display: block;
	}




	/* Footer */
	.footer-top {
		padding: 4rem 0rem 2rem;
	}
	.footer-top .container .footer-menu {
		padding-right: 2em;
	}


	/* Home */
	.homeSliderText h1 {
		font-size: 5.5rem;
	}

	/* Projects */
	.projects-grid .all_projects-item {
		flex: 0 1 50%;
	}

	.elementor-element.project-intro-footer {
		position: absolute;
		width: 70%;
		bottom: 0px;
		right: 0;
	}

}

@media only screen and (max-width:767px) {

	h1 {
		font-size: 3.7rem;
	}

	.custom-logo {
		max-width: 150px;
	}


	/* Home */
	.homeSliderText h1 {
		font-size: 4rem;
	}

	/* Footer */
	.footer-top {
		padding: 4rem 0rem 2rem;
	}
	.footer-top .container {
		flex-direction: column;
	}
	.footer-top .container .footer-menu {
		padding-right: 0;
		margin-bottom: 2em;
	}
	.footer-top .footer-menu-title {
		margin-bottom: 0.3em;
	}
	.footer-top .container .contact-menu {
		margin-top: 1em;
		margin-bottom: 0.6em;
	}
	.footer-copyright {
		text-align: center;
	}
	.footer-copyright .col-sm-3.text-end {
		text-align: center !important;
	}

	/* Projects */
	.projects-grid .all_projects-item {
		flex: 0 1 100%;
	}
	.projects-grid .filter .cat-filter ul {
		flex-wrap: wrap;
	}
	.projects-grid .filter {
		flex-wrap: wrap;
	}
	.dropdown {
		margin-left: auto;
		margin-top: 1em;
		margin-bottom: 2em;
	}

}

@media (min-width: 320px) and (max-width: 415px) {}